Mar!o
And I prefer not to speak to Nazis
yeah wtf is up with this guy
Ehsan
yeah wtf is up with this guy
Danya is racist to nazis ‘-_-
Anonymous
Danya is racist to nazis ‘-_-
Racism is about races I'm anti-nazist as any clear thinking adult
Anonymous
I was able to learn without books
May you tell us a piece of your story? It is interesting enough to be known. AND it cannot be googled up.
Engineer
The swastikas symbol roots go back to ancient times. Many temples in Japan have them
Anonymous
Racism is about races I'm anti-nazist as any clear thinking adult
It's programming group not race or history or whatever
Engineer
https://www.bbc.co.uk/news/magazine-29644591
Anonymous
May you tell us a piece of your story? It is interesting enough to be known. AND it cannot be googled up.
I've completed a pretty good Russian C++ course (that's interesting that there's a lot of good C++ video courses in Russian, not English) and then watched a bunch of CppCon and C++ Russia conferences and then got an internship at Intel Corporation
Anonymous
And stop offtop now
Anonymous
what about uni/college?
It doesn't help me in learning C++ But I had good Computer Architecture and x86 Assembly classes
Anonymous
did you learn only c++ or other languages too?
I can code in Java / C# / Python
сумбула
great)
Ehsan
I can code in Java / C# / Python
Java because of uni right?
Michael
Thank you☺
Anonymous
The swastikas symbol roots go back to ancient times. Many temples in Japan have them
it's part of the language; 卍 you read it as まんじ ("manji"), and although it can be translated as sawastika, it also means flyfot, gammadion and a slang for really?!, yeah!, wow etc, that you usually add to the start/end of your sentence sorry for the offtopic 👀
Roxifλsz 🇱🇹
Can you people shut the fuck up already
Anonymous
we can move it to the offtopic group #OT
Roxifλsz 🇱🇹
swastika this swastika that
Roxifλsz 🇱🇹
peepee poopoo
Roxifλsz 🇱🇹
Who the fuck cares
Engineer
In C++ what is the best way to store data structures? Should we store them in binary notation which is user defined? 8KB should be good to store alot of information like a data set? But once there are 500K individual pieces of information then 8KBytes blows up to be 4,000,000,000 bytes
Diego
Store data structures you mean, serialization?
Diego
If the problem is size then definitely not any string based solution like Json I hear message pack is good
Diego
And when everything is stored and done, compress the file
Diego
If it's a cache that needs constant access then there's no way around it honestly, trim down on your data
Ilya
Store data structures you mean, serialization?
Googles protobuffers and flat buffers suits well)
🫥
Thank you!
klimi
We don't support cheating here
Anonymous
/warn help yourself
Jezuel
Hi, I like to learn programming language I'm a self taught do you know where I can find resources for beginners like me who don't have experience or knowledge at all at programming. I installed Visual Basic Studio already and pre requisite requirements for programming. I want to learn is C
Jezuel
I meant C, sorry keyboard auto-correction
Anonymous
C/C++/C#/God...
Ritesh
Can any one help me on heap sorting In C++
Engineer
Can I use VM Box?
Yes if you are referring to https://www.virtualbox.org/
Engineer
Learning C++ is not a short journey, make sure you enjoy learning new things otherwise learning it will be painful.
Jezuel
What is your motivation to learn C?
For fun and new challenges I guess.
Pankaj
/warn
Pankaj
Who knows c++ language we'll?
Pavel
Who knows c++ language we'll?
Hi, ask your question, and read this: dontasktoask.com
Engineer
@unterumarmung What are you currently working on? Are you a student at university?
Anonymous
Can any help me on c++ project on pharmacy mangement system
Ammar
Can any help me on c++ project on pharmacy mangement system
Just tell the specific part you're in trouble.
Anonymous
In whole process
Anonymous
Give hint or smt
Ammar
Give hint or smt
No, please be specific. Do it yourself, get back here with technical question about C/C++. That should be fine.
Anonymous
Ok thanks
Ammar
Take it, you need this. How To Ask Questions The Smart Way by Eric Steven Raymond http://catb.org/~esr/faqs/smart-questions.html
Carlos
You are so rude at asking for help, none will help you
Anonymous
Why
Carlos
Why
You are not even asking, you are demanding help, learn how to ask
Carlos
Helping is not a problem, the problem are the help vampires: https://communitymgt.fandom.com/wiki/Help_Vampire
Ammar
Don't be stupid, just show the specific problem you're having in technical way, people may help you if you do it correctly. The best way to improve your chances of getting a help is by making it easier for us to help you.
Anonymous
beginner problem sorry
Carlos
beginner problem sorry
That is why is important to read the rules first, then learning how to make questions and how to ask for help, and before asking for help, trying to do something by yourself
Anonymous
Ok mr
Sandeep
That is why is important to read the rules first, then learning how to make questions and how to ask for help, and before asking for help, trying to do something by yourself
static ShaderProgramSource ParseShader (const std::string& filepath){} ShaderprogramSource is a struct that contains two strings... And Inside the function we have created two standard strings Can I return those strings like this... return {vs, fs };
Ilya
Yep, after return keyword, double check if you specified suitable constructor for this arguments. You can even write no constructor, fields would be initialized with this strings. Also you can move them (using std::move) to avoid unnecessary memory allocations and copying
Ilya
Like struct A { std::string a; std::string b; }; A create() { std::string newA{„Some text“}; std::string newB{„Some text“}; return {std::move(newA), std::move(newB)}; }
Ilya
I'm returning struct..so.what constructor
If there is no ctr specified compiler would write it for you)