this post was submitted on 30 May 2025
398 points (94.6% liked)

Programmer Humor

23800 readers
3121 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Goretantath@lemm.ee -5 points 1 week ago (2 children)

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..

[–] zaubentrucker@sopuli.xyz 6 points 6 days ago* (last edited 6 days ago) (1 children)

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.

[–] nickwitha_k@lemmy.sdf.org 1 points 6 days ago

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.

[–] piccolo@sh.itjust.works 5 points 6 days ago

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".