this post was submitted on 22 Oct 2024
228 points (86.5% liked)
Technology
59589 readers
6400 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
That's...how the world works. We move on. We aren't programming computers by flipping toggle switches or moving patch cables around anymore either.
'Try directly hand-coding bits into regions of memory without a compiler/linker and experience how pathetic you feel without it.'
Naw man, the other day I pulled a moth out of my code.
code in some mothballs if its gonna be unmantained for a while. thats like programming 101
What a dumb take (in your quote). Autocompletion showing me all the members of an object is nothing like ChatGPT hallucinating members that don't exist. Autocomplete will show you members you haven't seen, or aren't even documented.
Not to mention they said syntax highlighting is a bad thing... Why use computers at all? Go back to the golden days of punchcards
From later in the article (emphasis author's)
That might be the goal but it is a long way away. The current models have no chance of replacing a skilled engineer. We will need completely new types of models to start getting close to that.
Without syntax highlighting?? Sorry I guess my pretty colors are a weakness. Some people just want to be curmudgeons
As always
There was article about programming atmega with pulling electrodes in and out of salty water.
I've been coding in Vim for decades. Depending on my terminal emulator, I don't always get console colors (and so, no syntax highlighting). Never bothered me.
People keep trying to tell me to use an IDE "to keep track of everything", that they couldn't keep it all in their heads.
I keep telling them that their code is too [complicated|bloated], or they need to [study|document] it [more|better].
Different strokes for different folks. The colors help my ADHD brain. I only have to quickly glance at it to know what it is without even reading it as I'm juggling seven different things at once in my head. It does the job of grouping things together, like "these are variables, this is a class, this is a member of an enumerated list, this is a macro" and so on and so forth. And I can quickly get that info from the color alone faster than I can from reading it and trying to remember what is was or trying to drill down where it came from.
I also have ADHD, but I hold the shape of the code in my head as I code it. I have to actually read things to remember what they are. Colors wouldn't help me much (other than finding missing parentheses, etc).