Earlier quoted context omitted.
[Edit: I agree] I've also grown to dislike even this use case. I did this back in 2023 but as AI text is spreading, the style - yes, even with prompt adjustments it leaks through - is recognized by more and more people and it's a very very bad look. If I see AI-like text from someone, I take it as an insult. It means they don't feel that it's worth their time to brush up the text themselves. And sure, it may well be…
I think the poster you replied to said the same thing.
I'd rather read the prompt
61–70 of 880 posts
Re: I'd rather read the prompt
#62I am thinking about creating a proof-of-writing signature. Basically an editor with an "anti-cheat", you can't paste text into it. It signs your text with a public key.
Re: I'd rather read the prompt
#63I used to teach, years before LLMs, and got lots of copy-pasted crap submitted. I always marked it zero, never mentioning plagiarism (which would require some university administration) and just commenting that I asked for X and instead got some pasted together nonsense. As long as LLM output is what it is, there is little threat of it actually being competitive on assignments. If students are attentive enough to par…
Are you just assuming that a student who you think used an LLM would be unwilling to escalate? I would have thought that giving 0s to correct solutions would lead to successful complaints/appeals.
Re: I'd rather read the prompt
#64Re: I'd rather read the prompt
#65Time to go back to writing essays in exams, live, on paper.
It's challenging. Assignments (and particularly programming assignments) were by far the larger and more difficult part of my CS degree, and also the place where I learned the most. I cannot imagine losing that portion of my education and just replacing it with a few exams.
Re: I'd rather read the prompt
#66I fully support the author’s point but it’s hard to argue with the economics and hurdles around obtaining degrees. Most people do view obtaining a degree as just a hurdle to getting a decent job, that’s just the economics of it. And unfortunately the employers these days are encouraging this kind of copy/paste work. Look at how Meta and Google claim the majority of the new code written there is AI created? The world…
> Most people do view obtaining a degree as just a hurdle to getting a decent job Then fail to actually learn anything and apply for jobs and try to cheat the interviewers using the same AI that helped them graduate. I fear that LLMs have already fostered the first batch of developers who cannot function without it. I don't even mind that you use an LLM for parts of your job, but you need to be able to function witho…
That is, the job of a professional programmer includes having produced code that they understand the behavior of. Otherwise you’ve failed to do your due diligence.
If people are using LLMs to generate code, and then actually doing the work of understanding how that code works… that’s fine! Who cares!
If people are just vibe coding and pushing the results to customers without understanding it—they are wildly unethical and irresponsible. (People have been doing this for decades, they didn’t have the AI to optimize the situation, but they managed to do it by copy-pasting from stack overflow).
Re: I'd rather read the prompt
#67I like the author's take: it isn't a value judgement on the individual using ChatGPT (or Gemini or whichever LLM you like this week), it's that the thought that went into making the prompt is, inevitably, more interesting/original/human than the output the LLM generates afterwards. In my experiments with LLMs for writing code, I find that the code is objectively garbage if my prompt is garbage. If I don't know what I…
This is the CRUX of the issue. Even with SOTA models (Sonnet 3.5, etc) - the more open-ended your prompt - the more banal and generic the response. It's GIGO turtles all the way down. I pointed this out a few weeks ago with respect to why the current state of LLMs will never make great campaign creators in Dungeons and Dragons. We as humans don't need to be "constrained" - ask any competent writer to sit quietly and…
The output is pretty non-sensical: https://pastebin.com/raw/hetAvjSG
Re: I'd rather read the prompt
#68LLM cheating detection is an interesting case of the toupee fallacy. The most obvious ChatGPT cheating, like that mentioned in this article, is pretty easy to detect. However, a decent cheater will quickly discover ways to conduce their LLM into producing text that is very difficult to detect. I think if I was in the teaching profession I'd just leave, to be honest. The joy of reviewing student work will inevitably b…
Re: I'd rather read the prompt
#69I think people who don’t like writing shouldn’t be forced to write, just like people who don’t like music shouldn’t be forced to play music. Ditto for math. Forcing people to do these things supposedly results in a better, more competitive society. But does it really? Would you rather have someone on your team who did math because it let them solve problems efficiently, or did math because it’s the trick to get the r…
There are greater difficulties that people will have to do in their daily lives than being "forced" to learn how to read, write and do arithmetic. Maybe learning the lesson of overcoming smaller, difficult tasks will allow them to adapt to greater difficulties in the future.
To quote Seneca:
A gem can not be polished with friction, nor a man perfected without trials.Re: I'd rather read the prompt
#70Earlier quoted context omitted.
> Most people do view obtaining a degree as just a hurdle to getting a decent job Then fail to actually learn anything and apply for jobs and try to cheat the interviewers using the same AI that helped them graduate. I fear that LLMs have already fostered the first batch of developers who cannot function without it. I don't even mind that you use an LLM for parts of your job, but you need to be able to function witho…
> I fear that LLMs have already fostered the first batch of developers who cannot function without it. Playing the contrarian here, but I'm from a batch of developers that can't function without a compiler, and I'm at 10% of what I can do without an IDE and static analysis.
Sure, there's a huge jump from a line editor like `ed` to a screen editor like `vi` or `emacs`, but from there on, it was diminishing returns really (a good debugger was usually the biggest benefit next) — I've also had the "pleasure" of having to use `echo`, `cat` and `sed` to edit complex code in a restricted, embedded environment, and while it made iterations slower, not that much more slower than if I had a full IDE at my disposal.
In general, if I am in a good mood (and thus not annoyed at having to do so many things "manually"), I am probably only 20% slower than with my fully configured IDE at coding things up, which translates to less than 5% of slow down on actually delivering the thing I am working on.