Earlier quoted context omitted.
You double click the icon. And then you start typing code. Visual Studio has never been quite that fast. It may not have as comprehensive a feature set as VS. But it's an excellent hackable IDE for enthusiasts.
I will have to disagree here. Visual Studio's C++ tools are fundamental for any C++ development beyond toy "hello world" and prototypes. I've been a Linux user for 8 years now and my biggest pain is the lack of a proper C++ IDE with decent debugging. Even if you forget an IDE, there are no decent debuggers[0][1]. [0]: https://scattered-thoughts.net/writing/looking-for-debugger/ [1]: https://scattered-thoughts.net/wri…
Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
31–40 of 84 posts
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#32On Windows it is mostly meh in my opinion as it is hard to compete with the Visual Studio feature wise. Had they ported it to Linux I'd be way more interested. I am not particularly fond of native C++ IDE choices on Linux. Currently using CodeLite for that purpose.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#33On Windows it is mostly meh in my opinion as it is hard to compete with the Visual Studio feature wise. Had they ported it to Linux I'd be way more interested. I am not particularly fond of native C++ IDE choices on Linux. Currently using CodeLite for that purpose.
You double click the icon. And then you start typing code. Visual Studio has never been quite that fast. It may not have as comprehensive a feature set as VS. But it's an excellent hackable IDE for enthusiasts.
Dev C++ might be faster in this particular matter (been a very big while since I've used it so can't really verify) but I would not trade loosing 3 seconds a day for the whole shebang of features that are way more robust and plentiful in Visual Studio.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#34Dev-cpp, mingw, and allegro where my gateway drug back in 2000 or so, nice to hear it’s still around.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#35Earlier quoted context omitted.
You double click the icon. And then you start typing code. Visual Studio has never been quite that fast. It may not have as comprehensive a feature set as VS. But it's an excellent hackable IDE for enthusiasts.
I will have to disagree here. Visual Studio's C++ tools are fundamental for any C++ development beyond toy "hello world" and prototypes. I've been a Linux user for 8 years now and my biggest pain is the lack of a proper C++ IDE with decent debugging. Even if you forget an IDE, there are no decent debuggers[0][1]. [0]: https://scattered-thoughts.net/writing/looking-for-debugger/ [1]: https://scattered-thoughts.net/wri…
I tried CLion and bugs / crashes with debugging and some other parts (do not remember exactly as it's been a while) prevented me from using it. Was not fond of its sluggishness either.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#36Earlier quoted context omitted.
You double click the icon. And then you start typing code. Visual Studio has never been quite that fast. It may not have as comprehensive a feature set as VS. But it's an excellent hackable IDE for enthusiasts.
I just checked. From cold start it takes 3 seconds for me to start typing in Visual Studio in my current project. Dev C++ might be faster in this particular matter (been a very big while since I've used it so can't really verify) but I would not trade loosing 3 seconds a day for the whole shebang of features that are way more robust and plentiful in Visual Studio.
Not to mention, DevC++ was free. VS was not.
I'm not saying Dev C++ is better than VS. It was just a solid choice for it's loyal community of users.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#37Earlier quoted context omitted.
How is it more hackable than VS?
I don't think Visual Studio is "hackable" at all. Are you thinking of Visual Studio Code? Aren't the two very different? The first is a very large and commercial Windows application written by Microsoft and the latter is a free/open-source IDE with numerous plugins written as an electron app.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#38Dev-cpp, mingw, and allegro where my gateway drug back in 2000 or so, nice to hear it’s still around.
> Dev-cpp, mingw, and allegro where my gateway drug back in 2000 or so, nice to here it’s still around. Same, when I saw Dev-cpp, my first thought was "bloodshed.net"; I'm glad to see a fork alive and well. This IDE in particular was a stepping stone/turning point in my career.
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#39Earlier quoted context omitted.
To be clear, the posts you are referencing are about debugging an executable with no source code available, which is not the normal use case for a programmer.
It seems you have not read the post or you don't have experience with gdb or with Linux debuggers/ide combos. He's debugging zig, but his issues are with the ux and iirc he mentions few zig-specific bugs. I have been through the same ordeals while debugging C++ on Linux. In the end, there's only gdb with a command line interface. Couldn't get any nice IDE with watch, memory view or even simple breakpoints to work. So…
Re: Dev-C++ Is a Low Memory Windows Native C++ IDE Built in Delphi
#40Earlier quoted context omitted.
You double click the icon. And then you start typing code. Visual Studio has never been quite that fast. It may not have as comprehensive a feature set as VS. But it's an excellent hackable IDE for enthusiasts.
I will have to disagree here. Visual Studio's C++ tools are fundamental for any C++ development beyond toy "hello world" and prototypes. I've been a Linux user for 8 years now and my biggest pain is the lack of a proper C++ IDE with decent debugging. Even if you forget an IDE, there are no decent debuggers[0][1]. [0]: https://scattered-thoughts.net/writing/looking-for-debugger/ [1]: https://scattered-thoughts.net/wri…
I think it must just be one of those things where the tool you use shapes the way you work, and so then when you switch tools, but try to work in the same way, you get frustrated.