Are IDEs really like this ?
-
Also using 10GB memory ...
Hah, per window.
-
Just use vim, it usually comes preinstalled
wrote on last edited by [email protected]Unless you need to work on a solution with more than a few projects, such as Unity games. Then the LSPs go haywire and eat 20+Gb of memory, while not actually working.
Which, ofc, is Microsoft's fault, since it's their analyzer that has had the bug for years now. Rider didn't have that problem, but it shits itself when you change branches. You can't win
-
It has an integrated browser in Ultimate, not in Community.
No, it only has an integrated html previewer. They removed the full integrated browser because it was unnecessary and an actual browser did the trick
-
This post did not contain any content.
VSCode is the first development environment I’ve used that doesn’t make me feel like this. It’s not perfect but the base application is rock solid and the full DE experience is the more reliable than any other DE I’ve used.
P.S. I specifically said DE for those people who say VSCode isn’t an IDE. Personally I don’t see the point in differentiating.
P.P.S. Sublime is not a DE in my opinion. It’s an excellent text editor with syntax highlighting. The plugins were an afterthought and it was never intended to provide the full experience. Granted I haven’t used it in years.
-
I really never understood what benefits an IDE has over Notepad++, they take up SOOOO much drive space for me when all i want to do is make a mod to someone elses file..
If you all you need a text editor... great. But an IDE gives you tons of tools, such as debugging, breakpoints, memory inspection, intergated terminals, some may even include visual gui editors. Thats why they are called "Development environments".
-
If you all you need a text editor... great. But an IDE gives you tons of tools, such as debugging, breakpoints, memory inspection, intergated terminals, some may even include visual gui editors. Thats why they are called "Development environments".
debugging, breakpoints, memory inspection
glorified printf debugging
intergated terminal
real terminal
-
What is that hyperlink?
I swear to God if it is what I think it is, I'm going to jump into fucking traffic carrying as many baby ducks as I can.
What do you think it is?
-
Just use vim, it usually comes preinstalled
IIRC vi has been installed, or perhaps tinyvim, then I always go and install vim-gtk
-
This post did not contain any content.
The IDE is the worst part of being an iOS developer.
-
This post did not contain any content.
I'd argue the benefits outweigh the downsides
-
Before I started reading the meme I actually thought "just use Notepad++".
wrote on last edited by [email protected]I can't live without VIM keybinds. Maybe I'm a boomer. I do use it as a note taking or "collect my thoughts" app. Or just a place to paste shit when I'm working. Very useful for that. Though only when I'm forced to be on Windows.
-
This post did not contain any content.
Obligatory XKCD https://xkcd.com/378/
-
Meanwhile: vim and Emacs users, constantly installing and configuring plugins to emulate a fraction of the power of IDEs, go "just use vim/Emacs".
I only use nerdtree, and bind some scripts to F-keys. Haven't updated in a couple years, just works.
-
In the JetBrains IDEs (which, relatively speaking, I like), I have to use "Invalidate caches and restart" several times a day just to get past all the incorrect error highlighting.
Ah, is that the way to address that? I don't run into incorrect error highlighting often, and it's mostly great, but when it gets it wrong, it can be very stubborn about it.
-
This post did not contain any content.wrote on last edited by [email protected]
None of those issues for my main IDE, though Rider on some occasions do get stuck marking some spelling errors after they are fixed.
It has stuttered a few times, but pretty rare. But it does have a bug where it think it is building a project, but isn't. And requires a restart to fix... Easy to trigger if you try building a project while it's loading the project...
Visual Stuido with Resharper is the one where things would randomly stop working though. Especially hotkeys would sometimes stop working until I restarted it. Slow and stutter too.
-
This post did not contain any content.
The IDEs of March
-
You get the most out of them when working on bigger projects with many files and multiple contributers:
- Version control integration
- Automatic profiling
- Debugger integration
- Refactoring
- Jump to Definition/Parent/Children/Usages of a Symbol
- ...
For changing a single file, I'd often just launch a simple editor too.
Version control integration
Almost always garbage, in my experience. Except for merge conflict resolution. That's unbelievably nice. But git command lines have always been more reliable and less likely to end up with broken local branches.
Seriously though. The merge conflict resolution in three panes is super nice.
-
This post did not contain any content.
Neovim >>> any ide
-
VSCode is the first development environment I’ve used that doesn’t make me feel like this. It’s not perfect but the base application is rock solid and the full DE experience is the more reliable than any other DE I’ve used.
P.S. I specifically said DE for those people who say VSCode isn’t an IDE. Personally I don’t see the point in differentiating.
P.P.S. Sublime is not a DE in my opinion. It’s an excellent text editor with syntax highlighting. The plugins were an afterthought and it was never intended to provide the full experience. Granted I haven’t used it in years.
VSCode is by far and away the best thing Microsoft has ever done. (I'm sure therefore they will ruin it eventually, but that's a separate issue)
Its good for two main reasons IMO:
-
It is plugin-based
-
It is (therefore) language-agnostic
Plugins mean the DE starts as a very lightweight thing that is basically nothing more than a text editor. You can then add as much or as little as you want to get the level of features you are comfortable with but without being too bloated.
And then, because it's all plugins, you can work with any language and still stay within the same editor. Divine.
I personally love how lightweight it is compared to a full IDE because I don't like it when IDEs hide the magic behind UI. Press the button and it compiles huh? But how? What's going on there? What toolchain and commands are being executed?
I much prefer a good MAKEFILE where you know what your entry points are and what is going on, because it makes everything so much more portable and also improves your own knowledge and understanding.
-
-
Just use vim, it usually comes preinstalled
For a few files, sure. Idk how I'd use that on the large corporate Java codebase that I usually work with though. Despite all its memory hogging and unnecessary features, IntelliJ also proves remarkably useful when trying to find anything in these mega projects. Features like ctrl + clicking on a method call to get to its definition (even when it is in a different project that I don't have checked out), the refactoring tools, the debugger, etc are absolutely necessary to get anything done.