(no title)
gyomu | 11 days ago
It's funny how people feel the need to repeat that last mantra. Kind of similar to the "listening to audiobooks is reading" crowd.
Compare two high schoolers: one who vibe codes a game in English and generates the graphics with Nano Banana; vs one who actually learns how to program and draw to make the game.
Are they doing the same kind of activity? Getting the same kind of cognitive development out of it?
jimmaswell|11 days ago
Is this supposed to be an implicit dig at audiobooks? The scientific consensus seems to be that there's no difference to comprehension or retention.
https://time.com/5388681/audiobooks-reading-books/
coldtea|11 days ago
I wouldn't trust that "scientific consensus" if my life dependent on it.
For starters, there's no scientific consensus.
The linked post refers to merely 2 studies, both of doubtful quality. And one says "it's no different", the other says it's worse.
The one that says "it's no different" asked them to read/listen to mere two chapters of total ~ 3000 words.
That's a Substack essay or New Yorker article level, not a book, and only of one text type (non-fiction historical account. How does it translate to literature, technical, theoritical, philosophical, and so on?). The test to check retention was multiple choice - not qualitative comprehension. And several other issues besides.
And on the other study in the post, the audio group performed much worse.
jader201|11 days ago
You’re focusing only on the results, and not the difference in cognitive function necessary to achieve those results.
An illiterate person can “read” an audiobook.
Just like a person that knows zero about coding could (theoretically) vibe code a program with similar/same results.
So yes, if you focus 100% on only the results, then it could be argued they’re the same.
But the OP is saying there’s more to doing something than just the results.
gyomu|11 days ago
bondarchuk|11 days ago
tracker1|10 days ago
Everyone is definitely different in terms of how they learn best. That's not to say that listening to non-fiction is or isn't better for oneself than nothing, or even different forms of music may be different. There's nothing wrong with entertainment or factual knowledge... (See "Fat Electrician" on YouTube/Pepperbox for a lot of both.)
atoav|11 days ago
piltdownman|11 days ago
There doesn't need to be an implicit dig; audiobooks are explicitly a different medium, and in the Marshall McLuhan sense obviously thus impact comprehension, retention, and the overall grok.
StopDisinfo910|10 days ago
Who cares as long as the game is good? There is no inherent moral value in the how with artistic creation. What matters is the end result.
And if people are happy with what they produce, who am I to judge them? I will happily give my opinion on the game but the act of creation is them.
Same with audiobook. You are adding value judgment where there doesn't need to be one. Is the Odyssey less significant because it used to be an oral story?
TurdF3rguson|11 days ago
coldtea|11 days ago
Calculators make calculation much easier, but people doing math with them lose a sizable part of their mathematic skills.
To the point of kids not being able to do a simple addition or multiplication or percentage calculation (never mind division) with a calculator, even when someone used to pen and paper can trivially doing with just their mind.
ido|11 days ago
mmustapic|11 days ago
gyomu|11 days ago
xnx|11 days ago
Definitely not, but one activity isn't necessarily better than the other. A carpenter and an architect don't do the same activities either.
vbsd|10 days ago
With regular programming, you have a full specification of the program (the code) and it gets turned into an executable. When you want to change some behavior, you change the code parts that relate to the behavior and the whole thing is compiled again.
With agentic programming, there’s no full spec, no “codebase in English”. You write instructions but they are discarded as soon as you close your session, and what’s left is this lower level thing (the code written in a traditional programming language).
It’s almost like a difference between declarative and imperative paradigm for the process of creating software.