V01D
Nah
V01D
Bots are required to have a name ending with _bot
V01D
The botfather has spoken load and clear "Good. Now let's choose a username for your bot. It must end in bot. Like this, for example: TetrisBot or tetris_bot."
V01D
nope, there are also userbots
Oh. He asked and replied to questions and the corresponding answers though
V01D
...i think...
V01D
Thanks
Renan
nope, there are also userbots
Definitely! 😅 👍
Roxifλsz 🇱🇹
klimi
V01D
Idk about that until now
Linda
Hello
Renan
Hello
Hello! 👋
Danny
hello world
Anonymous
Boys no simp September hasn't ended.. Repent for your sins by writing a radix sort in assembly with nothing but movs.
Hello
Is there any Telugu language people in this Group ?
Valentine
Hi! Are there any possible chances to make circle diagram on pure c++, that’s what my teacher in university told me to do
Valentine
(Neaely) Anything is possible....
So, if everything is possible, how do i do it?
Anonymous
What's your definition of "pure" C++?
The only definition of pure C++ is the C++ standard
Zel
On pure C++ there's no way to work with graphics
Um, you just need to pick a graphics API like with any other language. To just make 2D chart on Windows probably Direct2D would do it.
Anonymous
There's no graphics API in C++ standard
Zel
You can use a graphics API and still meet ISO with your code
Zel
Portability was not specified in the original description.
Anonymous
You can use a graphics API and still meet ISO with your code
It's not pure, again Pure C++ is what described in the C++ standard
Vlad
It's not pure, again Pure C++ is what described in the C++ standard
I'm sure that he meant smth different by "pure". You can't do graphics in raw C++
Zel
Probably meant no boost and no compiler extensions only ISO compliant code
Vlad
Probably meant no boost and no compiler extensions only ISO compliant code
Is code that uses OpenGL per say ISO compliant? C++ standard doesn't describe opengl
Zel
it does describe the practices you must use.
Zel
so you can still compile -pedantic with openGL APIs
Zel
Either way they need clarification
Valentine
On pure C++ there's no way to work with graphics
Should i tell my professor that he is stupid and does it worth being suspended?
Zel
If the Professor does not allow anything not in the STL then get ready to learn what ASCII art is.
Vlad
Well you can store table of characters by the brightness, and create really choppy monochrome images :P
Vlad
In the console
Valentine
If the Professor does not allow anything not in the STL then get ready to learn what ASCII art is.
I’d laugh if it wasnt so sad 🙁 I’ve got to draw this thing lol
Vlad
Looking at it I'm convinced that they want you to use graphics.h :P
Zel
^
Zel
Yeah there is no way that you are going to draw that using just console chars.
Valentine
May Russians universities be THAT bad?
actually yes, it’s government standart
Vlad
I’d laugh if it wasnt so sad 🙁 I’ve got to draw this thing lol
Well if I were you I would convince the prof. to let you use opengl
Anonymous
actually yes, it’s government standart
Well.. there's no word in government standard to teach you graphics.h
Zel
actually yes, it’s government standart
Government standard and Russia, I think we found the source of the issue.
Valentine
GOST ROLLS IN
Valentine
that’s the key to all of the problems. as a future mobile developer i have to learn a shit-ton of phylosophy and teology
Anonymous
Ask the professor what functions, headers you should use for this task
asterix
If i typecast char array with structure pointer, then if i access structure elements and make changes in them, will that be stored in the char array memory, am i right?
Anonymous
Probably you right
Zel
Ask the professor what functions, headers you should use for this task
He prolly doesn't know, atleast it isn't an American Professor, literally hands us an impossible assignment and steps out of the room saying "Ill be back to see your code in an hour."
Anonymous
He prolly doesn't know, atleast it isn't an American Professor, literally hands us an impossible assignment and steps out of the room saying "Ill be back to see your code in an hour."
Dude, if you had bad experience with Russian professors, it doesn't mean that ALL Russian teachers, professors are bad It's not black and white, be open-minded The topic is closed
asterix
Probably you right
Thank you for clarification
asterix
I’d laugh if it wasnt so sad 🙁 I’ve got to draw this thing lol
There is an article by knuth where he makes use of bits to solve such things
asterix
I dnt remember exactly, he makes some mathematical notation behind it. I ll share that link if i find it
Pablo humano
How can I list the files in a directory in C++? (I know the option system('ls') but I don't want this because I can't get a string with the files)
Anonymous
hello, everyone has a good day, i have a question: does C++ have a stuff like Python depending on third-party libs Using ‘python3 install ….’
MP
C11
unfortunately, std::filesystem comes in c++17
MP
in C++11 you should use system calls so you need to write cross platform solution
MP
or you could use boost::filesystem
Pablo humano
MP
search on internet