Are IDEs really like this ?
Are IDEs really like this ?
Are IDEs really like this ?
Before I started reading the meme I actually thought "just use Notepad++".
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.
I've had everything on this list with Visual Studio alone, with the exception of #2 maybe.
You should refer to Visual Studio by its full title: "Visual Studio (not responding)".
Also using 10GB memory ...
Hah, per window.
When I started working for my current employer, I was surprised by how much ram my VDI has. We're not allowed to code on our own devices (but those are still specced out) but 64 Gs of ram in a virtual desktop was a welcome environment to work in.
Just use vim, it usually comes preinstalled
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 :(
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.
Maybe use tags for that but I've never personally messed with it.
IIRC vi has been installed, or perhaps tinyvim, then I always go and install vim-gtk
vim fast, IDE slow, I use vim because I'm impatient
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:
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.
Yeah it's great because even without a make plugin, you can just add your make command to the vscode actions that'll run your makefile.
Or even better, get the plugin which will auto populate targets from the makefile lol
Obligatory XKCD https://xkcd.com/378/
I use Jetbrains IDEs now for 5 years, I've used VSCode, Sublime, Atom, Vim, Neovim but I feel like Jetbrains IDEs are just better if you have the RAM to run it.
So it's not all bad, but comes with a lot of good such as "invert if statement", "use template strings" and "extract method" thingies along with a load of plugins.
I'm so spoiled by searchable settings that it feels like I'm back in the 50s if I actually have to manually click around menus looking for a setting.
Oh, you get the benefit of explicit scanning?
We get the beauty of every file that's modified being scanned before the write "completes". It's an absolute joy starting a build and watching ~80% of the available compute be consumed by antivirus software.
Or, you know, normal filesystem caching as part of your tool's workflow.
Or dependency installing and unpacking....
Or anything actually that touches a lot of files.
Agree. I used a ton of different IDEs too and I can say Rider was the least terrible one I've used professionally (mostly on Unreal Engine projects, so having the thing not kill itself when trying to compute large, complex codebases for syntax highlighting/autocomplete was a requirement).
Number 3 happens all the time to me when using VSCode with Copilot as autocomplete. Copilot sometimes works, sometimes doesn't. Also happens a lot when using Pycharm with Python. Sometimes it's great at autocompleting, sometimes it completely gets lost and has no idea what my Python script is doing.
Number 5 also happens a lot on VSCode + Platformio. It also frequently happens on Intellij IDEA for me, but mostly when I am concurrently running build or test while writing. My crappy work laptop suffers from Windows 11 related performance issues, and when there's not enough performance available, underlines do get wonky quite frequently.
I also had issue when I was working on a pycharm project back when I was on windows. During setup it asked me "What's your name?" and my name has a cheeky accent which Windows was decided should be the name of my Home folder. Home folder also has appdata and whatnon so which the build system didn't expect to have a an accent in the folder path.
I ended up having to create a different folder and link to it then move all the path configurations to that folder link just so I could get imports working.
I just use Kate
Kate is great for being a compiled C++ program, making it nice and lightweight. Plus lots of syntax highlighting. Not quite the same as IDEs with auto completion, but pretty good for plain text editing.
It can give autocompletion based on the current file, which is good for writing self contained classes. You can also enable an LSP to get language autocompletion :D
XCode would randomly stop syntax highlighting for years because their engineering was so shit.
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.
Definitely #1. I've encountered #2 with a very specific IDE and #4 and #5 on occasion.
The IDE is the worst part of being an iOS developer.
Yes, and the worst part is that XCode is only available on OSX.
I once had to make an iOS app once and didn't have a Mac so I developed the entire thing in a VM. There was no video encoding, the FPS was in the low single digits, which made it very difficult to even type. So I ended up writing the code using VSCode through SSH through Wireguard connected to the VM on the host machine, which actually worked surprisingly well. But hey, the app did work in the end.
I legit swore off the entire OS when one of my teachers forced us to use macOS + X code to write Objective C code
No, no they are not.
Bad ones? Yeah, just like that.
It's almost enough to make me feel nostalgic for the DOS version of Borland Turbo Pascal, which wasn't bright enough to do any of this stuff. (Well, it could freeze up, I suppose, but the only time I actually managed to do anything like that, it involved a null pointer dereference that would have triggered a segfault on any modern system.)
Sublime Text + sometimes LSP is all you need. It might be difficult for people who don't know how to use a build system directly, but those people are underachievers anyways.
Depends, for Android app dev, once you gain experience in writing code, and use Kotlin which is way less verbose, it becomes easier. But in reality, the IDE's autocompletion, syntax error highlights and other niceties do save a lot of time.
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.
I mainly code Java with IntelliJ.
basic settings being buried deep in the menus is definitely a thing ✅
Nah, there is:
So even though things are buried somewhere deep, it's easy to find them.
freezing at critical moments can occasionally be a thing ✅
Sounds like a skill hardware issue tbh.
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
#1 and 3, definitely, although 3 is usually not really the IDEs fault.
The others, either not really (#2, 5), who cares, (#4), or maybe occasionally but not really specific to IDEs (#6).
How is #6 not specific to IDEs? I've never had vim, np++, or any other dedicated editor freeze; and I've used them to edit multi-gigabyte log files before.
At least the number of times I have to use the Clean Java Language Workspace in VS Code has declined recently. I mean, I still have to, just not as often.
Yeah, IntelliJ has become worse over time. Or atleast Android Studio has. IntelliJ used to be amazing.
IntelliJ now requires like 8GiB of RAM to even open.
The IDEs of March
I'd argue the benefits outweigh the downsides
Neovim >>> any ide
All of those are things that have happened to me (except an IDE that could not handle externally edited files). They are very rare occurrences, but still annoying when I have to get something done.
This is why everyone should go back to ed
Too many features but also autocomplete isn't working? So I guess you do want many features?
In my experience, yes. Even coding in the basic notepad makes more sense.
Thanks for sharing this here 😊😊😊
Meanwhile: vim and Emacs users, constantly installing and configuring plugins to emulate a fraction of the power of IDEs, go "just use vim/Emacs".
So, you've never actually used Emacs?
And possibly also never used vi either?
LOL. Let me guess "just use Emacs/vim"?
No thank you bruv. Been there, done that. Terrible experience.
https://github.com/emacs-tw/awesome-emacs
https://github.com/lunarvim/lunarvim
All of these emulated only a fraction of the power of IDEs, even after weeks of trying to get them configured properly.
Inb4 "you're doing it wrong". Nah mate, IDEs work out of the box and don't require opening a text file to change settings while going through reams of documentation.
I right click in a file and it shows me the most important contextual commands. No need to find the " leader key", scroll through all the 1 billion commands, I don't have to "download a LSP and DAP" then "configure treesitter" or whatever the fuck kind of apes are in the editor.
Those editors have steep learning curves and get you productive eventually. IDEs get you there much more quickly. Yeah yeah, they hide complexity and "people don't know what's actually going on anymore" but sometimes I just want to get going instead of fighting my editor first. Feel me?
I only use nerdtree, and bind some scripts to F-keys. Haven't updated in a couple years, just works.
Easymotion is the only plugin I need to be happy.
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..
You get the most out of them when working on bigger projects with many files and multiple contributers:
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.
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