this post was submitted on 05 Feb 2025
365 points (96.9% liked)

Greentext

4979 readers
1078 users here now

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:

If you find yourself getting angry (or god forbid, agreeing) with something Anon has said, you might be doing it wrong.

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] SoftestSapphic@lemmy.world 47 points 18 hours ago (4 children)

This person is LARPing as a CS major on 4chan

It's not possible to write functional code without understanding it, even with ChatGPT's help.

[–] ILikeBoobies@lemmy.ca 6 points 16 hours ago (1 children)
[–] nthavoc@lemmy.today 9 points 15 hours ago (1 children)

Giving me flashbacks to a college instructor that marked my entire functioning code block, written on paper, as wrong because I did not clearly make a ; on one line of about 100 lines. I argued that a compiler would mark that in the real world, but he countered with "It still won't run without that ; " That made me rethink my career path in CS. Fuck that guy.

[–] wizardbeard@lemmy.dbzer0.com 4 points 14 hours ago

That was/is one of my biggest complaints about CS courses: the horrendous, uncontrolled, inconsistent-across-course/instructor/TA mixture of concept and implementation skills expected of the students.

Ultimately you need to develop both to be successful in a CS/Software Dev/Programming career, but I've watched so fucking many people fail to progress in courses and learning because they're trying to learn both the concept and how it needs to be formatted in the class specific language's syntax at the same time. They hit a roadblock in one and the whole thing comes tumbling down because if your code doesn't work you can't just work around it to get the other parts done and then come back later. Being able to stub something out to do that requires skills that they're taking the class to learn in the first place!


Minor mistakes with syntax creates a situation where they can't get a working example of the concept to play around with. So then they don't have something hands on to use to cement their conceptual understanding.

Minor mistakes with the conceptual understanding lead to a complete inability to understand why the syntax works (if it even does) to create an example of the concept, leaving them high and dry when the class asks them to think outside the box and make something new or modified based off what came before.


I've worked as a Lab Assistant (TA who doesn't grade) for intro to programming courses. Due to transfer credit shaningans, combined with a "soon to retire" professor getting saddled with the bueracratic duties for their whole department, I ended up running lectures for an intermediate course I effectively had to take twice. I regularly led study sessions in college for my friends in programming classes. Even now, I'm the most experienced programmer on my team of sysadmins/engineers at work and regularly assist co-workers with scripts when I'm not coding custom automations and system integrations.

So I have experience teaching and using this shit.

In my opinion, courses should be split into two repeatedly alternating parts: concept and implementation/syntax. They are separate skill sets.

You need a certain set of skills to be able to communicate. You need a different set of skills to do so in a specific language.


Plus, classwork needs to better mimic real world situations. Even crazy motherfuckers using sed or nano to code should be using linters in this day and age, and no one should be working in an environment where they only have one chance to get it 100% right with no means of testing.

[–] billwashere@lemmy.world 3 points 16 hours ago

You would think eventually some of it would sink in. I mean I use LLMs to write code all the time but it’s very rarely 100% correct, often with syntax errors or logic problems. Having to fix that stuff is an excellent way to at least learn the syntax.

[–] HotCoffee@lemm.ee 2 points 18 hours ago (1 children)

U underestimate the power of the darkside, how powerful ctrl+c ctrl+v is young padawan

[–] SoftestSapphic@lemmy.world 6 points 15 hours ago* (last edited 15 hours ago) (1 children)

If you copy and paste from ChatGPT your code won't compile.

You need to know what the peices of code do and how to peice them together to make it work.

Which is kind of impossible to do without understanding it

[–] Eheran@lemmy.world 3 points 14 hours ago (1 children)

Since version 4 it has no problem generating working code. The question is how complex the code can get etc. But currently with o1 (o3 mini perhaps a bit less) a dozen functions with 1000 lines of code are really possible without a flaw.

[–] SoftestSapphic@lemmy.world 1 points 12 hours ago

If I tell ChatGPT "write me a program in python that does X, Y, and Z" it will not output code that can be compiled or ran without editing