London based software development consultant
- 305 Posts
- 39 Comments
codeinabox@programming.devOPto
Programming@programming.dev•The Bet On Juniors Just Got BetterEnglish
71·3 days 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·8 days 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
291·11 days 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.
codeinabox@programming.devOPto
Neovim@programming.dev•Tips for configuring Neovim for Claude CodeEnglish
6·14 days agoThank you! When I stumble across the Neovim posts, I try to share them here if I think someone will find them useful.
codeinabox@programming.devOPto
Web Development@programming.dev•The Performance Inequality Gap, 2026English
5·16 days agoThis quote really sums up the situation:
This is a technical and business challenge, but also an ethical crisis. Anyone who cares to look can see the tragic consequences for those who most need the help technology can offer. Meanwhile, the lies, half-truths, and excuses made by frontend’s influencer class are in defence of these approaches are, if anything, getting worse.
Through no action of their own, frontend developers have been blessed with more compute and bandwidth every year. Instead of converting that bounty into delightful experiences and positive business results, the dominant culture of frontend has leant into self-aggrandising narratives that venerate failure as success. The result is a web that increasingly punishes the poor for their bad luck while paying developers huge salaries to deliver business-undermining results.
The developer community really needs to be building websites that work on all devices and connections, and not just for those who can afford the latest technology and high-speed internet connections.
codeinabox@programming.devOPto
AI - Artificial intelligence@programming.dev•Major insurers move to avoid liability for AI lawsuits as multi-billion dollar risks emerge — Recent public incidents have lead to costly repercussionsEnglish
2·18 days agoI’m curious what this means for business insurance across the board as generative AI is so pervasive, and lots of businesses of all sizes are using it, but will their insurance policies cover any incidents that happen as a result?
On a related note, if I subcontracted someone to perform a task, and there were defects, they would be contractually liable for that. However, if someone used ChatGPT to help with a task, they would have a tough time trying to take OpenAPI to court.
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·24 days 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
112·28 days agoWhat about developers who are required to use AI as part of their job?
codeinabox@programming.devOPto
Neovim@programming.dev•Reconcile two conflicting LSP servers in Neovim 0.11+English
2·1 month agoI stumbled upon this article as I was having issues with my LSP setup for TypeScript projects. However, in my case, it appears the bug is in the plug-in nvim-lspconfig.
codeinabox@programming.devOPto
AI - Artificial intelligence@programming.dev•AI's 70% ProblemEnglish
5·1 month agoHis experiences reveal a pattern: AI can rapidly produce 70% of a solution, but that final 30% – edge cases, security, production integration – remains as challenging as ever. Meanwhile, trust in AI-generated code is declining even as adoption increases.
I’m very much intrigued by this contradiction where where adoption of AI is increasing, but the trust in the code it generates is declining. Is it a case of the more developers use AI coding tools, the more they become aware of the shortcomings and problems?
codeinabox@programming.devOPto
HTML@programming.dev•Is <style> in <body> a good idea?English
1·1 month agoI’m guessing that the author said this to warn people not to rely on this technique, as it’s not part of the specification. Does it behave consistently across all browsers?
I know what you mean. Quite often when I’ve worked in a project where there is a pull request template, a lot of the time people don’t bother to fill it out. However, in an ideal world, people would be proud of the work that they’ve delivered, and take the time to describe the changes when raising a pull request.
codeinabox@programming.devOPto
AI - Artificial intelligence@programming.dev•Small language models: Why the future of AI agents might be tinyEnglish
31·2 months agoI’m confused why people are voting down an article about AI in an AI community, discussing small language models, which are much better in terms of energy consumption and the environment.
codeinabox@programming.devOPto
Software Testing@programming.dev•Unit testing a non-abstract base class?English
1·2 months agoI stumbled upon this article after reviewing a pull request, where someone was unit testing the abstract base class. I’m of the opinion that base classes should not be tested. We don’t want to be testing the architecture of an application, we want to be testing the behaviour. The author sums this up nicely with this point:
For tests, though, it shouldn’t matter whether the classes under test share the domain logic or duplicate it. Tests should view all production code as a black box, and approach verifying it with a blank slate. Otherwise, such tests will start couple to the code’s implementation details.
codeinabox@programming.devto
IndieWeb@programming.dev•Who on #Fediverse self-host #Indieweb static website with #ActivityPub #ActivityStream , with 3rd party webhook endpoint gateway, and use desktop client\script to send json REST POST replies in toEnglish
1·2 months agoI am wondering about this too. The article, ActivityPub on a (mostly) static website, goes into detail about what is involved.
codeinabox@programming.devOPto
Programming@programming.dev•Octoverse: A new developer joins GitHub every second as AI leads TypeScript to #1English
4·2 months agoThings are getting easier. Many of the JavaScript runtimes support TypeScript out of the box now.
codeinabox@programming.devOPto
Programming@programming.dev•Mistakes I see engineers making in their code reviewsEnglish
3·2 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
CSS@programming.dev•[Web dev for beginners] CSS layout: flexbox, grid, media queries and container queriesEnglish
1·2 months agoThe issue was they changed their server URL and added www, so I’ve updated the link accordingly.


















Based 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.