Yash
best book for dsa?
Ludovic 'Archivist'
a person who is junior how much knowledge should have
How do you suppose knowledge is quantified?
Pouya
How do you suppose knowledge is quantified?
I mean, do we need to know OOP or data structures, or can we program with understanding of basic concepts
crypt
Does anybody have any opinion on drogoon
Martin
Does anybody have any opinion on drogoon
Best C++ HTTP framework Source: I am a maintainer of dorgon
🏳️‍🌈GNU/Линуксяша-libre🏳️‍🌈
Martin
I had to support my own library :)
Martin
Also I don't think userver supports C++20 coroutines
🏳️‍🌈GNU/Линуксяша-libre🏳️‍🌈
Yash
is C++ different from C++20 or C++23
🏳️‍🌈GNU/Линуксяша-libre🏳️‍🌈
23 very small standard
Danya🔥
is C++ different from C++20 or C++23
C++ is both C++20 and C++23
Martin
C++ (mostly) is backwards compatible. All valid C++20 code is also valid C++23
🏳️‍🌈GNU/Линуксяша-libre🏳️‍🌈
23 very small standard
Deduction this + std::print + std::ranges fixes
Yash
oh okay
Yash
do you guys know any good dsa books?
Martin
Data Structures and Algorithms or Digital Signing Algorithms?
Yash
Data structures amd algorithms
Yash
what are Digital signing Algorithms? where are they used
Rose
You need to be an admin to do this.
Ludovic 'Archivist'
Best C++ HTTP framework Source: I am a maintainer of dorgon
Oooh may I capture your username for later use? (also, I may feel compelled to smack your cheeks with a wad of bills)
Ludovic 'Archivist'
I mean, do we need to know OOP or data structures, or can we program with understanding of basic concepts
You will need some knowledge. Just try to make a small project by yourself, like a website with your resume and a second page with links to your social medias and like something dynamic (like internationalisation for example)
Martin
Oooh may I capture your username for later use? (also, I may feel compelled to smack your cheeks with a wad of bills)
Yeah whatever you see fit. Also we have a discord community. Asking there gets help faster
Aniket
Hi
Aniket
Hello
klimi
Hello
you haven't read the rules... have you
Aniket
No
Aniket
Sorry
Aniket
I can't say hello
Aniket
But why
harmony5 🇺🇳 ⌤
But why
nohello.net
aaswq1
But why
Because you spend our and your time
Anonymous
Could Someone Tell Me How to be a C/C++ Core developer? I am 21years old. I start C/C++ Yesterday. Code is funny. I want to do sth for myself
CupCake
Huh
Jonathan
huh,he is chinese,because some book translate [something deep]into chinese the word(核心),when u translate this word into english ,it's core. i think he is try to say is how to be like senior or staff c++ dev,
Ludovic 'Archivist'
Could Someone Tell Me How to be a C/C++ Core developer? I am 21years old. I start C/C++ Yesterday. Code is funny. I want to do sth for myself
Practice. Make things, watch conferences in your language and in English, and don't be afraid to try stupid ideas
Anonymous
Thanks
Shoaib
Hey programmers
Ashok
/start@MissRose_bot
Rose
/start@MissRose_bot
Heya :) PM me if you have any questions on how to use me!
klimi
maybe wrong group posted?
Brooklyn
Abdulazeez
I need help from Nigeria who can help me in one way or the other 🙏🙏🙏
Rose
I need help from Nigeria who can help me in one way or the other 🙏🙏🙏
Don't ask meta questions. In other words, don't ask to ask. Questions like "Does anyone know XYZ?", "Has anyone used XYZ?" or "Can someone help me?" are all considered meta questions because they don't specify what your actual problem is. These questions give the impression that you want people to approach you and offer their help as if they don't have any other work to do. Now doesn't that expectation make you look like an idiot? If you have a question ask it directly. You are more likely to get a response that way.
Brooklyn
How to use AI in C++
klimi
hm... maybe we should ban asking about AI here...
Brooklyn
hm... maybe we should ban asking about AI here...
Let me just open up my question how do I code a project that can monitor and speed up an electrical v8 engine which can be controlled by raspberry pi 5 or equivalent
Rose
User </return> has no warnings!
Thomas
hm... maybe we should ban asking about AI here...
AI does play a big role in the coding industry and there’s no denying that, so we may as well embrace it and use it as a tool to boost coder’s productivity
Danya🔥
How to use AI in C++
Do you know what AI is? :)
Danya🔥
Brooklyn
Do you know what AI is? :)
If you say that your program uses a algorithm to do stuff no one would be interested but the moment you say AI everybody’s interested
Brooklyn
My point is simple I am trying to do a project that is simple but by adding The word AI my teachers will be interested and give me an A+ for my project I am not that interested in AI and think that normal coding works but if the word AI gives me A+ I willing to do anything
Vlad
*sigh*
Brooklyn
Bullshit AI papers inflation
AI is still not that accurate especially google Gemini
Kk
Hi everyone. Could you help me on how to connect SQLITE to Qt and how to create,read, update and delete data from the database using the UI
Brooklyn
/rules
Rose
/rules
Click on the button to see the chat rules!
Chat Boss
Sounds like homework
Read the pinned message regarding homework. https://t.me/programminginc/453966
...
When I create a server with winsock2, only those connected to my local network server can connect. So how do I connect to a computer that is not connected to the same local network?
olli
When I create a server with winsock2, only those connected to my local network server can connect. So how do I connect to a computer that is not connected to the same local network?
this is unrelated to winsock2, most likely your router blocks the incoming traffic. Look into the "Port Forwarding" and the Firewall settings of your router.
...
this is unrelated to winsock2, most likely your router blocks the incoming traffic. Look into the "Port Forwarding" and the Firewall settings of your router.
What I meant was this : IResult = getaddrinfo(IP, DEFAULT_PORT, hints, result); what do I type in the IP section so that those who are not on my local network can connect to this server?
olli
What I meant was this : IResult = getaddrinfo(IP, DEFAULT_PORT, hints, result); what do I type in the IP section so that those who are not on my local network can connect to this server?
in this on the client or the server? On the server you don't need to specify any IP as demonstrated in the example on MSDN https://learn.microsoft.com/en-us/windows/win32/winsock/complete-server-code
...
server
olli
// Resolve the local address and port to be used by the server iResult = getaddrinfo(NULL, DEFAULT_PORT, &hints, &result);
exactly, if in doubt, you can use the sample server and client code from MSDN to make sure it's working as expected.
...
exactly, if in doubt, you can use the sample server and client code from MSDN to make sure it's working as expected.
I've already used it, but it worked on my local network and it didn't happen when I tried to connect from other networks
olli
I've already used it, but it worked on my local network and it didn't happen when I tried to connect from other networks
Again, that’s most likely related to your network configuration and not the actual code.