London based software development consultant
- 79 Posts
- 26 Comments
codeinabox@programming.devto
Opensource@programming.dev•All my new code will be closed-source from now on - Marc J. SchmidtEnglish
5·2 days agoI had originally meant to post it here, but I accidentally posted it to a different instance.
codeinabox@programming.devOPto
Programming@programming.dev•“Because of GenAI, coding is no longer the bottleneck”English
17·8 days agoThank you! I’ve added the image to the post as well.
I use AI coding tools, and I often find them quite useful, but I completely agree with this statement:
And if you think of LLMs as an extra teammate, there’s no fun in managing them either. Nurturing the personal growth of an LLM is an obvious waste of time.___
At first I found AI coding tools like a junior developer, in that it will keep trying to solve the problem, and never give up or grow frustrated. However, I can’t teach an LLM, yes I can give it guard rails and detailed prompts, but it can’t learn in the same way a teammate can. It will always require supervision and review of its output. Whereas, I can teach a teammate new or different ways to do things, and over time their skills and knowledge will grow, as will my trust in them.
codeinabox@programming.devOPto
Programming@programming.dev•The Efficiency Paradox: Why Making Software Easier to Write Means We'll Write Exponentially MoreEnglish
26·14 days agoMy understanding of how this relates to Jevons paradox, is because it had been believed that advances in tooling would mean that companies could lower their headcount, because developers would become more efficient, however it has the opposite effect:
Every abstraction layer - from assembly to C to Python to frameworks to low-code - followed the same pattern. Each one was supposed to mean we’d need fewer developers. Each one instead enabled us to build more software.
The meta-point here is that we keep making the same prediction error. Every time we make something more efficient, we predict it will mean less of that thing. But efficiency improvements don’t reduce demand - they reveal latent demand that was previously uneconomic to address. Coal. Computing. Cloud infrastructure. And now, knowledge work.
codeinabox@programming.devOPto
Programming@programming.dev•Party of One for Code Review!English
43·18 days agoKent Beck does mention CodeRabbit, however he also highlights the benefits of pairing with humans, as he later goes on to say:
It’s not pairing. Pairing is a conversation with someone who pushes back, who has their own ideas, who brings experience I don’t have. CodeRabbit is more like… a very thorough checklist that can read code.
I’d rather be pairing.
I miss the back-and-forth with another human who cares about the code. I miss being surprised by someone else’s solution. I miss the social pressure to explain my thinking out loud, which always makes the thinking better.
codeinabox@programming.devOPto
Programming@programming.dev•JustHTML: Addressing some questionsEnglish
2·23 days agoI’m open to a conversation discussing the pros and cons of large language models. Whilst I use AI coding tools myself, I also consider myself quite a sceptic, and often share articles critical of these tools.
codeinabox@programming.devOPto
Programming@programming.dev•JustHTML: Addressing some questionsEnglish
64·24 days agoEven when I share these articles in the AI community, they get voted down. 🫤 I know these articles aren’t popular, because there is quite a lot of prejudice against AI coding tools. However, I do find them interesting, which is why I share them.
codeinabox@programming.devto
Programming@programming.dev•LLM's hallucinating or taking our jobs?English
21·1 month agoBased on my own experience of using Claude for AI coding, and using the Whisper model on my phone for dictation, for the most part AI tools can be very useful. Yet there is nearly always mistakes, even if they are quite minor at times, which is why I am sceptical of AI taking my job.
Perhaps the biggest reason AI won’t take my job is it has no accountability. For example, if an AI coding tool introduces a major bug into the codebase, I doubt you’d be able to make OpenAI or Anthropic accountable. However if you have a human developer supervising it, that person is very much accountable. This is something that Cory Doctorow talks about in his reverse-centaur article.
“And if the AI misses a tumor, this will be the human radiologist’s fault, because they are the ‘human in the loop.’ It’s their signature on the diagnosis.”
This is a reverse centaur, and it’s a specific kind of reverse-centaur: it’s what Dan Davies calls an “accountability sink.” The radiologist’s job isn’t really to oversee the AI’s work, it’s to take the blame for the AI’s mistakes.
codeinabox@programming.devOPto
Programming@programming.dev•The Bet On Juniors Just Got BetterEnglish
71·1 month agoThis really sums up Beck’s argument, that now is the perfect time to invest in junior developers, because AI allows them to learn and skill up faster:
The juniors working this way compress their ramp dramatically. Tasks that used to take days take hours. Not because the AI does the work, but because the AI collapses the search space. Instead of spending three hours figuring out which API to use, they spend twenty minutes evaluating options the AI surfaced. The time freed this way isn’t invested in another unprofitable feature, though, it’s invested in learning.
codeinabox@programming.devto
Opensource@programming.dev•What open-source Android apps should people know about?English
5·1 month agoThat sounds like Léon – The URL Cleaner, which I use on a daily basis.
codeinabox@programming.devOPto
Programming@programming.dev•AI Is still making code worse: A new CMU study confirmsEnglish
331·1 month agoThis quote from the article very much sums up my own experience of Claude:
In my recent experience at least, these improvements mean you can generate good quality code, with the right guardrails in place. However without them (or when it ignores them, which is another matter) the output still trends towards the same issues: long functions, heavy nesting of conditional logic, unnecessary comments, repeated logic – code that is far more complex than it needs to be.
AI coding tools definitely helpful with boilerplate code but they still require a lot of supervision. I am interested to see if these tools can be used to tackle tech debt, as often the argument for not addressing tech debt is a lack of time, or if they would just contribute it to it, even with thorough instructions and guardrails.
The way the author described programming in 2025 did make me chuckle, and I do think he makes some excellent points in the process.
It’s 2025. We write JavaScript with types now. It runs not just in a browser, but on Linux. It has a dependency manager, and in true JavaScript style, there’s a central repository which anyone can push anything to. Nowadays it’s mostly used to inject Bitcoin miners or ransomware onto unsuspecting servers, but you might find a useful utility to pad a string if you need it.
In order to test our application, we build it regularly. On a modern computer, with approximately 16 cores, each running at 3 GHz, TypeScript only takes a few seconds to compile and run.
codeinabox@programming.devto
Programming@programming.dev•FAWK: LLMs can write a language interpreterEnglish
6·2 months agoAs the author notes, it is very impressive what generative AI can produce these days.
The frontier of what the LLMs can do has moved since the last time I tried to vibe-code something. I didn’t expect to have a working interpreter the same day I dreamt of a new programming language. It now seems possible.
However, as they point out, there’s definitely downsides to this approach.
The downside of vibe coding the whole interpreter is that I have zero knowledge of the code. I only interacted with the agent by telling it to implement a thing and write tests for it, and I only really reviewed the tests. I reckon this would be an issue in the future when I want to manually make some change in the actual code, because I have no familiarity with it.
codeinabox@programming.devOPto
Programming@programming.dev•Programming Languages in the Age of AI AgentsEnglish
213·2 months agoWhat about developers who are required to use AI as part of their job?
codeinabox@programming.devto
Programming@programming.dev•Serverless Is An Architectural Handicap (And I'm Tired of Pretending it Isn't)English
6·2 months agoI’m not an architect, but I do dislike how much of development work has AWS wrangling, dealing with the architectural hoops that are mentioned in the article
codeinabox@programming.devOPto
Programming@programming.dev•Octoverse: A new developer joins GitHub every second as AI leads TypeScript to #1English
4·3 months agoThings are getting easier. Many of the JavaScript runtimes support TypeScript out of the box now.
codeinabox@programming.devOPto
Programming@programming.dev•'AI' Sucks the Joy Out of ProgrammingEnglish
51·3 months agoBack in the day, I used CakePHP to build websites, and it had a tool that could “bake” all the boilerplate code.
You could use a snippet engine or templates with your editor, but unless you get a lot of reuse out of them, it’s probably easier and quicker to use an LLM for the boilerplate.
codeinabox@programming.devOPto
Programming@programming.dev•Mistakes I see engineers making in their code reviewsEnglish
3·3 months agoI also make use of ‘⚠’ to mark significant/blocking comments and bullet points. Other labels, like or similar to conventional comment prefixes, like “thought:” or “note:”, can indicate other priorities and significance of comments.
Thank you for introducing me to conventional comments! I hadn’t heard of them before, and I can see how they’d be really useful, particularly in a neurodiverse team.
codeinabox@programming.devOPto
Programming@programming.dev•AI and the age of probabilistic programmingEnglish
3·3 months agoHow does one measure code quality? I’m a big advocate of linting, and have used rules including cyclomatic complexity, but is that, or tools such as SonarQube, an effective measure of quality? You can code that passes those checks, but what if it doesn’t address the acceptance criteria - is it still quality code then?










This article is quite interesting! There are a few standout quotes for me:
The democratisation effect is something I’ve been thinking about myself, as hiring developers or learning to code doesn’t come cheap. However, if it allows non-profits to build ideas that can make our world a better place, then that is a good thing.
I’ve not thought about it in this way but this is a really good point. When you make code cheap, it makes it easier to create bespoke short-lived solutions.
Though, as much as these tools might democratise software development, they still require engineering expertise to be sustainable.