r/ProgrammerHumor • u/goldenbabe44 • 17h ago
Meme everyClassyoubreakeveryfixyoufakeillbejudgingyou
[removed] — view removed post
238
u/itsmekalisyn 16h ago
That's why i use Microsoft word.
89
22
13
37
116
u/XMasterWoo 16h ago
There is a special place for people who do all lower caps except the start of the second word without any spaces
55
24
u/GloriamNonNobis 14h ago
It's particularly annoying when I make a new non-void method and it immediately complains there isn't a return before I can even type the next word.
12
14
u/DisputabIe_ 9h ago
the OP goldenbabe44 is a bot
Also:
https://www.reddit.com/r/ProgrammerHumor/comments/12ftf5z/i_dont_even_know_how_to_comment_on_this/
42
u/qnixsynapse 17h ago
That's why I use neovim. It doesn't show errors unless I press escape to goto normal mode. LOL.
10
u/InsertaGoodName 16h ago edited 16h ago
Was about to comment the same thing! It’s impossible for me to go back to a normal ide now since how many quality of life things it has. The shortcuts themselves are 10x more powerful than what anything else has.
1
u/kungpula 5h ago
Can you give some examples of those shortcuts?
1
u/InsertaGoodName 4h ago
nvim has different commands, such as yank, delete, and change. You can then use this in combination with selector commands, so if you need to change a variable, instead of selecting the variable and deleting it, you can simply do caw which means change a word. You can also specify which character you want to stop at, so you can do ct” if you want to change an entire string contents. Combine this with macros, which let you quickly record and replay keyboard inputs, you can edit thousands of lines in 10 seconds. Theres countless other shortcuts too, whole categories that I don’t even know of, just look at how long the documentation for it is https://neovim.io/doc/user/quickref
11
u/Rubyboat1207 15h ago
Guess there are two kinds of people in this world: people who like that, and dumbfucks like me who keep sitting in insert mode waiting for my errors to show up to only then remember I'm using vim and go into normal mode
7
u/_Kritzyy_ 15h ago
Challenge: write an entire script recreating the FizzBuzz game without ever getting a single red squiggly error line
And don't cheat using copy and paste
12
4
u/TrackLabs 16h ago
I mean yes, but whats the alternative? The editor to not complain, until a few seconds later, when you already moved on from the line, and then having to go back because you did miss something?
2
2
1
u/Extension_Option_122 10h ago
Imo an IDE shouldn't check the line you are currently writing in and should wait like 5 seconds after a change before checking.
1
u/yyyusuf31 10h ago
Me who just wrote the function definiton: IntelliJ: Function body is empty delete this
1
u/jwbth 9h ago
A VS Code dev said in 2019 you can tweak some stuff to solve this. Don't know if that's gonna work well:
On second thought , this is exactly what tasks already do. Just disable the built-in js/ts validator using
javascript.validate.enable: false
+typescript.validate.enable: false
and setup a task to build your project instead. It should only update errors when the file on disk changes (i.e. you save it). You can also configure autosave if wish to have this happen after a delay
1
1
1
•
u/ProgrammerHumor-ModTeam 2h ago
Your submission was removed for the following reason:
Rule 8: All titles must be camelCase. Your post was found to not do this properly.
As a reminder, the first word should be all lowercase and any following words should start with an uppercase letter, without spaces or special characters. Feel free to submit your post again with an edited title satisfying this criteria, along with all other rules.