LEGION 5
Work well
Ludovic 'Archivist'
How is KDevelop?
It is not bad
Nomid Íkorni-Sciurus
Ludovic 'Archivist'
But NetBeans for C++ is complete garbage tier dumpster fire
LEGION 5
NetBeans!! I think ..it is for java
olli
NetBeans!! I think ..it is for java
NetBeans also supports C++
olli
Another IDE worth mentioning is Eclipse CDT. It's cross platform, a lot of features
aleksey
Clion is really good
Anonymous
Hi
Anonymous
Anyone online
Anonymous
How to learn c+ language ?
olli
How to learn c+ language ?
practice, practice a lot. You can read a book, watch tutorials, althoug h I haven't seen a good C++ tutorial on YouTube...
BinaryByter
How to learn c+ language ?
Did you know that I have mastered c++ at the age of 7?
Prometheus
Anonymous
How I can learn please tell
BinaryByter
i asked vishnu
BinaryByter
i prayed to him for three days through meditation
BinaryByter
I said each and every prayer
BinaryByter
and learned C++
Anonymous
and learned C++
Teach me the language
BinaryByter
No
BinaryByter
vishnu will
BinaryByter
Pray to him
BinaryByter
Lol i was merely kidding
Aloknath
/notes
Aloknath
/findprojects
Aloknath
#findprojects
L.M
✌🏼
Walter
Where can I find some C program based projects
Harshit
Thanks rose
olli
I am writting a self-mutation code with its behaviour should be 42 instead of original value 1 , but I think I am mising something cause it always overwrite with 1 original and mutation function .So what am I doing wrong? https://gist.github.com/SkyBulk/f0269e521be027f9c0a97c9f98bf20a7
Anonymous
/get
Prometheus
Nope
What’s wrong with them?
klimi
What’s wrong with them?
I was looking at his OpenGL series, and it is working for msvc, and also he doesn't have right methods to do things , he worked in ea and got some bad habits
olli
What’s wrong with them?
I just watched the type punning video right now but multiple statements he makes are wrong e.g. "us being able to say: I am treating this memory I have than as a different type than it actually is. And you can see we can do that really freely." C++ has strict aliasing rules, hence type punning as he describes it is not possible. Furthermore there is no way to guarantee that a struct does not contain any padding. (yes compiler extensions exist to support it, that's however not part of ISO C++). In my opinion this a serious concern, since especially new people trying learn will get these wrong habits and once learned it's hard to get rid of them. Instead I would recommend reading a book, written by people who really have a deep understanding of the language. ————- looked into the Union Video, undefined behavior again... While I have seen worse, I would still not recommend these
Mihail
Maybe just a habit of game devs?
BinaryByter
Also he teaches people to use the "raw" pointers which is imo only good in very specific situations
IMHO raw pointers should be an appendix to a good youtube tutorial on C++
Mihail
But primarily using them instead of "smart" pointers?
BinaryByter
MEHHH
BinaryByter
fuck
BinaryByter
you are better at me
Dima
Yes I still can’t floor/ceil floats
BinaryByter
LETS HAVE A FLOAT COMPARISON THEN
BinaryByter
TO SEE WHO IS TRULY GREATER
BinaryByter
Yes I still can’t floor/ceil floats
just cast to int ¯\_(ツ)_/¯
Dima
E = 0.19999999
BinaryByter
E = 1.0000000001
Shubh
See the no. Of members now 😂😂
BinaryByter
yes xD
Daniele°
klimi
Vim
thats editor
Anonymous
childish jokes...
BinaryByter
Ř.Ö.Ÿ
Any female programmer here
Anonymous
Guys I m writing Restourant R keeper program as my final homework. It is console application and works fine. But I dont like the design of it. I Created a Windows form application(clr) with c++ on visual studie.....put some buttons to the working screen but i can not fiqure out how to make my console functions work with these button clicks. Any suggestion?
BinaryByter
umm
BinaryByter
events
Anonymous
events
Does that mean something that I dont know?🙄
BinaryByter
yes
Mat
Hopefully your app is implemented independently from your CLI
Anonymous
Thank u guys. 👌
BinaryByter
Sure :D
BinaryByter
thank you for being the first question that makes sense in the last 200 questions
Amir
Hye😃
Pavel
What good cross-platform GUI framework can you suggest? I want to make an editor for my game. For now it should be just kind of window where you can see list of world actors, add/remove their components and change parameters of these components. So pretty simple thing.