deserved to fail
Greentext
This is a place to share greentexts and witness the confounding life of Anon. If you're new to the Greentext community, think of it as a sort of zoo with Anon as the main attraction.
Be warned:
- Anon is often crazy.
- Anon is often depressed.
- Anon frequently shares thoughts that are immature, offensive, or incomprehensible.
If you find yourself getting angry (or god forbid, agreeing) with something Anon has said, you might be doing it wrong.
Probably promoted to middle management instead
He might be overqualified
https://nmn.gl/blog/ai-illiterate-programmers
Relevant quote
Every time we let AI solve a problem we could’ve solved ourselves, we’re trading long-term understanding for short-term productivity. We’re optimizing for today’s commit at the cost of tomorrow’s ability.
I like the sentiment of the article; however this quote really rubs me the wrong way:
I’m not suggesting we abandon AI tools—that ship has sailed.
Why would that ship have sailed? No one is forcing you to use an LLM. If, as the article supposes, using an LLM is detrimental, and it's possible to start having days where you don't use an LLM, then what's stopping you from increasing the frequency of those days until you're not using an LLM at all?
I personally don't interact with any LLMs, neither at work or at home, and I don't have any issue getting work done. Yeah there was a decently long ramp-up period — maybe about 6 months — when I started on ny current project at work where it was more learning than doing; but now I feel like I know the codebase well enough to approach any problem I come up against. I've even debugged USB driver stuff, and, while it took a lot of research and reading USB specs, I was able to figure it out without any input from an LLM.
Maybe it's just because I've never bought into the hype; I just don't see how people have such a high respect for LLMs. I'm of the opinion that using an LLM has potential only as a truly last resort — and even then will likely not be useful.
Hey that sounds exactly like what the last company I worked at did for every single project 🙃
"Every time we use a lever to lift a stone, we're trading long term strength for short term productivity. We're optimizing for today's pyramid at the cost of tomorrow's ability."
If you don't understand how a lever works, then it's a problem. Should we let any person with an AI design and operate a nuclear power plant?
Actually... Yes? People's health did deteriorate due to over-reliance on technology over the generations. At least, the health of those who have access to that technology.
"If my grandma had wheels she would be a bicycle. We are optimizing today's grandmas at the sacrifice of tomorrow's eco friendly transportation."
Not even. Every time someone lets AI run wild on a problem, they're trading all trust I ever had in them for complete garbage that they're not even personally invested enough in to defend it when I criticize their absolute shit code. Don't submit it for review if you haven't reviewed it yourself, Darren.
My company doesn't even allow AI use, and the amount of times I've tried to help a junior diagnose an issue with a simple script they made, only to be told that they don't actually know what their code does to even begin troubleshooting...
"Why do you have this line here? Isn't that redundant?"
"Well it was in the example I found."
"Ok, what does the example do? What is this line for?"
Crickets.
I'm not trying to call them out, I'm just hoping that I won't need to familiarize myself with their whole project and every fucking line in their script to help them, because at that point it'd be easier to just write it myself than try to guide them.
This guy's solution to becoming crappier over time is "I'll drink every day, but abstain one day a week".
I'm not convinced that "that ship has sailed" as he puts it.
Unless they're being physically watched or had their phone sequestered away, they could just pull it up on a phone browser and type it out into the computer. But if they want to be a programmer they really should learn how to code.
I work in a dept. at a university that does all the proctored exams. None of that technology is allowed in the exam rooms. They have to put their watch, phone, headphones, etc in a locker beforehand. And not only are they being watched individually, the computer is locked down to not allow other applications to open and there are outgoing firewalls in place to block most everything network wise. I’m not saying it’s impossible to cheat, but it’s really really hard.
Some instructors still do in class exams, which would make it easier, but most opted for the proctored type exams especially during Covid.
Why would you sign up to college to willfully learn nothing
To get the peice of paper that lets you access a living wage
A lot of kids fresh out of highschool are pressured into going to college right away. Its the societal norm for some fucking reason.
Give these kids a break and let them go when they're really ready. Personally I sat around for a year and a half before I felt like "fuck, this is boring lets go learn something now". If i had gone to college straight from highschool I would've flunked out and just wasted all that money for nothing.
Yeah I remember in high school they were pressuring every body to go straight to uni and I personally thought it was kinda predatory.
I wish I hadn't went straight in, personally. Wasted a lot of money and time before I got my shit together and went back for an associates a few years later.
My Java classes at uni:
Here's a piece of code that does nothing. Make it do nothing, but in compliance with this design pattern.
When I say it did nothing, I mean it had literally empty function bodies.
Yeah that's object oriented programming and interfaces. It's shit to teach people without a practical example but it's a completely passable way to do OOP in industry, you start by writing interfaces to structure your program and fill in the implementation later.
Now, is it a good practice? Probably not, imo software design is impossible to get right without iteration, but people still use this method... good to understand why it sucks
I don't think you can memorize how code works enough to explain it and not learn codding.
It's super easy to learn how algorithms and what not work without knowing the syntax of a language. I can tell you how a binary search tree works, but I have no clue how to code it in Java because I've never used Java.
And similarly, i could read code in a language I dont know, understand what it does and how it works even if I don't know the syntax well enough to write it myself
Yeah, exactly. At least any fairly modern language. I don't think I could just pick up assembly and read it without the class I took. Heck, I don't think I could read it anymore now that it's been several years since that class.
You'd think that, but I believe you are underestimating people's ability to mindlessly memorize stuff without learning it.
It's what we're trained to do throughout our education system.
I have a hard time getting mad about it considering it's what we told them to do from a very young age.
I'm pretty sure chatgpt just tells you how it works, so they probably just memorized what it said.
If it's the first course where they use Java, then one could easily learn it in 21 hours, with time for a full night's sleep. Unless there's no code completion and you have to write imports by hand. Then, you're fucked.
If there's no code completion, I can tell you even people who's been doing coding as a job for years aren't going to write it correctly from memory. Because we're not being paid to memorize this shit, we're being paid to solve problems optimally.
My first programming course (in Java) had a pen and paper exam. Minus points if you missed a bracket. :/
generate code, memorize how it works, explain it to profs like I know my shit.
ChatGPT was just his magic feather all along.
run it in a vm
He should be grateful. I hear programming interviews are pretty similar, as in the employer provides the code, and will pretty much watch you work it in some cases. Rather be embarrassed now than interview time. I'm honestly impressed he went the entire time memorizing the code enough to be able to explain it, and picked up nada.