codeinabox

joined 10 months ago
MODERATOR OF
 

TIL: git (the command line tool) now contains LLM generated code (I'm still unsure, we're calling this generative AI, right?). Landed in Jan 2026.

 

My guess is that people who work on small codebases with low-turnover teams (say, Redis or games like The Witness) would say “obviously you have to understand it completely, otherwise you can’t do good work”. I’d also guess that people who work on large codebases with high-turnover teams (say, the Google web search backend or GitHub) would say “obviously you can’t understand it completely, you just have to do the best you can in your local area”.

These are two largely different ways of programming with different methods, practices and cultures. However, the first group is over-represented in online discussion about software engineering. I want to defend the second group against the first.

 

ColorSym is a free, open-source color-identification system that pairs every color with a unique, memorable symbol. When color alone isn't enough to tell things apart, the symbol does the job, so the roughly 1 in 12 men and 1 in 200 women with color vision deficiency can read your components, charts, or UI with confidence.

[–] codeinabox@programming.dev 0 points 5 months ago (1 children)

People who care about performance are using loops

Well that depends, generators are faster than loops when you're using Bun or Node.

[–] codeinabox@programming.dev 4 points 5 months ago

There are some really good tips on delivery and best practice, in summary:

Speed comes from making the safe thing easy, not from being brave about doing dangerous things.

Fast teams have:

  • Feature flags so they can turn things off instantly
  • Monitoring that actually tells them when something’s wrong
  • Rollback procedures they’ve practiced
  • Small changes that are easy to understand when they break

Slow teams are stuck because every deploy feels risky. And it is risky, because they don’t have the safety nets.

[–] codeinabox@programming.dev 3 points 5 months ago

I think there's many solutions to this, including setting a minimum account age to accept pull requests from, or using Vouch.

[–] codeinabox@programming.dev 2 points 5 months ago (2 children)

Guys, can we add a rule that all posts that deal with using LLM bots to code must be marked? I am sick of this topic.

How would you like them to be marked? AFAIK Lemmy doesn't support post tags

[–] codeinabox@programming.dev 6 points 5 months ago (1 children)

What I'm saying is the post is broadly about programming, and how that has changed over the decades, so I posted it in the community I thought was most appropriate.

If you're arguing that articles posted in this community can't discuss AI and its impact on programming, then that's something you'll need to take up with the moderators.

[–] codeinabox@programming.dev 14 points 5 months ago (5 children)

In fact, this garbage blogspam should go on the AI coding community that was made specifically because the subscribers of the programming community didn't want it here.

This article may mention AI coding but I made a very considered decision to post it in here because the primary focus is the author's relationship to programming, and hence worth sharing with the wider programming community.

Considering how many people have voted this up, I would take that as a sign I posted it in the appropriate community. If you don't feel this post is appropriate in this community, I'm happy to discuss that.

[–] codeinabox@programming.dev 1 points 5 months ago

My nuanced reply was in response to the nuances of the parent comment. I thought we shared articles to discuss their content, not the grammar.

[–] codeinabox@programming.dev 6 points 5 months ago (5 children)

Regardless of what the author says about AI, they are bang on with this point:

You have the truth (your code), and then you have a human-written description of that truth (your docs). Every time you update the code, someone has to remember to update the description. They won't. Not because they're lazy, but because they're shipping features, fixing bugs, responding to incidents. Documentation updates don't page anyone at 3am.

A previous project I worked on we had a manually maintained Swagger document, which was the source of truth for the API, and kept in sync with the code. However no one kept it in sync, except for when I reminded them to do so.

Based on that and other past experiences, I think it's easier for the code to be the source of truth, and use that to generate your API documentation.

[–] codeinabox@programming.dev 6 points 5 months ago

There are plenty of humans using em dash, how do you think large language models learnt to use them in the first place? NPR even did an episode on it called Inside the unofficial movement to save the em dash — from A.I.

[–] codeinabox@programming.dev 9 points 5 months ago (12 children)

There is much debate about whether the use em-dash is a reliable signal for AI generated content.

It would be more effective to compare this post with the author's posts before gen AI, and see if there has been a change in writing style.

[–] codeinabox@programming.dev 114 points 5 months ago (44 children)

This quote on the abstraction tower really stood out for me:

I saw someone on LinkedIn recently — early twenties, a few years into their career — lamenting that with AI they “didn’t really know what was going on anymore.” And I thought: mate, you were already so far up the abstraction chain you didn’t even realise you were teetering on top of a wobbly Jenga tower.

They’re writing TypeScript that compiles to JavaScript that runs in a V8 engine written in C++ that’s making system calls to an OS kernel that’s scheduling threads across cores they’ve never thought about, hitting RAM through a memory controller with caching layers they couldn’t diagram, all while npm pulls in 400 packages they’ve never read a line of.

But sure. AI is the moment they lost track of what’s happening.

The abstraction ship sailed decades ago. We just didn’t notice because each layer arrived gradually enough that we could pretend we still understood the whole stack. AI is just the layer that made the pretence impossible to maintain.

[–] codeinabox@programming.dev 1 points 5 months ago (1 children)

Even if the bubble pops, the existing large language models will remain, as will AI assisted coding.

view more: ‹ prev next ›