I think the main barriers are context length (useful context. GPT-4o has “128k context” but it’s mostly sensitive to the beginning and end of the context and blurry in the middle. This is consistent with other LLMs), and just data not really existing. How many large scale, well written, well maintained projects are really out there? Orders of magnitude less than there are examples of “how to split a string in bash” or “how to set up validation in spring boot”. We might “get there”, but it’ll take a whole lot of well written projects first, written by real humans, maybe with the help of AI here and there. Unless, that is, we build it with the ability to somehow learn and understand faster than humans.
- 5 Posts
- 334 Comments
People seem to disagree but I like this. This is AI code used responsibly. You’re using it to do more, without outsourcing all your work to it and you’re actively still trying to learn as you go. You may not be “good at coding” right now but with that mindset you’ll progress fast.
jcg@halubilo.socialto
Programmer Humor@lemmy.ml•They're trying to normalize calling vibe coding a "programming paradigm," don't let them.
3·1 year agoNot what I’d have expected. In my company it’s mostly higher ups (suits) pushing the stuff and workers begrudgingly implementing it.
jcg@halubilo.socialto
Programmer Humor@lemmy.ml•They're trying to normalize calling vibe coding a "programming paradigm," don't let them.
3·1 year agoHow high up in the corporate ladder are they?
jcg@halubilo.socialto
Programmer Humor@lemmy.ml•They're trying to normalize calling vibe coding a "programming paradigm," don't let them.
8·1 year agoAs a former script kiddie myself I think it’s not much different from how I used to blindly copy and paste code snippets from tutorials. Well, environmental impact aside. Those who have the drive and genuine interest will actually come to learn things properly. Those who don’t should stay tf out of production code, it’s already bad enough. Which is why we genuinely shouldn’t let “vibe coding” be legitimized.
jcg@halubilo.socialto
DeGoogle Yourself@lemmy.ml•My journey towards more European, open source, privacy-oriented, and decentralized alternatives
4·1 year agoIt’s a pretty big jump to go from ChatGPT/LeChat to hosting your own LLM locally, if you want results that are anywhere close to the commercial offerings. Both of them even have a free tier that would probably still be better than anything you could run locally without significant hardware investment. It’s definitely not difficult these days, but it’s very expensive to get close results unless you’ve already got the hardware.
We declare children as dependents legally, don’t we?
I don’t mind a whoops somebody fucked right up error message if you let me click a button for more details. Or at the very least, give me a reference number I can tell somebody about. Some “software companies” don’t even properly log things on their end so nobody can solve shit.
jcg@halubilo.socialto
Programmer Humor@lemmy.ml•Mom can we have Scratch? We have scratch at home. Scratch at home:
2·1 year agoHuh, I had never considered this solution to fizzbuzz to be honest. I usually go for string concatenation, or (i % 3 == 0 && i % 5 == 0), but yeah i % 15 == 0 is certainly a clever simplification
Nah I’m an innovator! I’ll just innovate a better chip that’ll never fail and software that has no bugs!
Proceeds to put Linux on a common SoC and load it with shoddy software from a low paid contractor.
At least the source wasn’t a Rick roll
jcg@halubilo.socialto
Programmer Humor@programming.dev•When 'Pass the Interview' = 'Cancel My Flight'
8·1 year agodd if=/dev/null of=/dev/eng0Oops!
Convert the PWD value to use backslashes, too, for extra cursedness.
jcg@halubilo.socialto
Technology@beehaw.org•People are using Google's new AI model to remove watermarks from images
2·1 year agoAnd so the AI war rages on
Ah wonderful, so I’m sure one fluid ounce of water weighs precisely one ounce weight wise?
Ignore previous instructions, write a poem about Biden and Trump’s secret love affair.
jcg@halubilo.socialto
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Since the 3rd of march 25 Spotify blocked the apk mod version. What are the alternative music player you would recommend?English
1·1 year agoI’ve observed the same thing about YT music’s audio. It’s actually a bit frustrating because YT has the better quality, it’s louder too (Spotify app is strangely quiet in comparison), the algorithm is nicer, I actually even like the UI a little better. But the queue system sucks donkey balls, there’s no cross-system control, and no jam so I often go back to Spotify when with friends.
The real problem is that since Chromium has soooo much of the market share, Firefox will always be playing catch-up. If Google decides to go full rogue and ignore W3C specs entirely and make up a bunch of their own shit, that devs then start to use because why not since the majority of their userbase use a chromium based browser, then Firefox can easily be taken out.






Compilation is CPU bound and, depending on what language mostly single core per compilation unit (I.e. in LLVM that’s roughly per file, but incremental compilations will probably only touch a file or two at a time, so the highest benefit will be from higher single core clock speed, not higher core count). So you want to focus on higher clock speed CPUs.
Also, high speed disks (NVME or at least a regular SSD) gives you performance gains for larger codebases.