Tip for AI CLI: ask it to suggest topics to research to fix a problem, get a chat AI to do the research with web search, and paste the results into the CLI, save it to an adoc|md for future reference
21.11.2025 07:55 β π 0 π 0 π¬ 0 π 0@peterlawrey.bsky.social
Java Champion | Vanilla Java Blog (6M views) | CEO of Chronicle Software with 8 out the top 11 investment banks as clients. Six kids from 3 to 26
Tip for AI CLI: ask it to suggest topics to research to fix a problem, get a chat AI to do the research with web search, and paste the results into the CLI, save it to an adoc|md for future reference
21.11.2025 07:55 β π 0 π 0 π¬ 0 π 0Oddly specific rety time for Gemini CLI
16.11.2025 20:27 β π 1 π 0 π¬ 0 π 0to avoid an empty block complaint.
while (methodReader.readOne()) {
continue;
}
A test that never failed doesn't add much value. Ask an AI to write a failing test, and it will write a broken test.
The solution I have found is:
1. Ask it to find/fix a bug and write a test to exercise it
2. Keeping only that test, check it fails without a fix
3. Write the fix
"Much of the most valuable Gen AI usage will grow out of existing business applications, rather than be wholly new. These applications will draw on existing domain models and infrastructure, and be more robust and useful as a result."
medium.com/@springrod/d...
I find AI is more useful as a simulated developer user of the software.
It doesn't find bugs as often as it stumbles on usability issues.
The AI boom isnβt just about algorithms β itβs about money, power, and a race to build infrastructure on a scale weβve never seen before
youtu.be/NbL7yZCF-6Q?...
Running codex cli via ssh from my phone, works surprisingly well while doing house work and other tasks
25.10.2025 20:38 β π 0 π 0 π¬ 1 π 0Visiting Zegreb for some consulting
30.09.2025 05:23 β π 3 π 0 π¬ 0 π 0On 20 Sep 2025, the UK had its third mass shooting for the year, the highest number in a year since 2006.
Also on 20 Sep 2025, the US had 3 mass shootings that day, which has the highest in one day since 18 Sep 2025.
The US has 5x the population of the UK, not 365x.
The war no one talks about
22.09.2025 11:16 β π 2 π 0 π¬ 0 π 0It turns out that Reasoning LLM can also get distracted by cats.
"Cats Confuse Reasoning LLM: Query Agnostic Adversarial Triggers for Reasoning Models"
arxiv.org/abs/2503.01781
While Generative AI can increase the overall volume of documentation and code, in terms of curated and validated release content, the increase might only be +20%. The following represents the number of lines of ~6 months of work on similar projects, both before and after using AI.
19.09.2025 12:46 β π 1 π 0 π¬ 0 π 0Reporter: The president of Venezuela called the strike on the boat illegal
Trump: Whatβs illegal is the fact that 300 million people died last year from drugs
Parwill was the name of an Australian food product from 1928 to 1935, originally branded as Vegemite, which was a failed attempt to compete with the popular British brand Marmite. The name was a pun on Marmite.
uk.pcmag.com/ai/159686/el...
Coding is a mystery story where you are the detective, perpetrator, and the victim
25.08.2025 11:58 β π 3 π 0 π¬ 0 π 0The minimum tarrif for goods mailed into the US will be $80 to $200 depending on the country. A $5 cup direct from China will have a $200 tarrif.
24.08.2025 09:29 β π 1 π 0 π¬ 1 π 0#!/usr/bin/tail +2
Hello World
GPT-5: Generate a Where's Waldo, and find Waldo
17.08.2025 15:33 β π 3 π 0 π¬ 0 π 0In Australia, the government covers a certain level of expense for any candidate who receives at least 4% of the vote. www.aec.gov.au/parties_and_...
28.07.2025 08:29 β π 3 π 0 π¬ 0 π 0AI coding tools are powerful for certain tasks with significant caveats. They can enhance developer learning and enjoyment
The human developerβs role is still central. Understanding the problem, ensuring quality, and making architectural decisions remain human responsibilities that AI canβt shoulder
I find most people want AI to produce a correct answer, which means the AI needs to be cautious.
I look for ideas that will inspire me, something I wouldn't have thought of, cherry-picking from a selection of more "creative" ideas
I refined a prompt across multiple AI models to consistently generate low-latency Java code for formatting timezone offsets, moving beyond one-shot requests to detailed instructions that bridge performance gaps
blog.vanillajava.blog/2025/07/impr...
I walk through a single βlow-latencyβ Java in six different AI models (Gemini 2.5 Pro, OpenAI o3-Pro, o4-Mini-High, Claude 4, Grok 3 Think, Copilot) each rework it. I consider how models deliver different trade-offs
blog.vanillajava.blog/2025/07/aski...
For comparison, I asked it to review code that had been accepted. blog.vanillajava.blog/2025/07/aski...
16.07.2025 21:12 β π 0 π 0 π¬ 0 π 0As AI is a statistical tool, implemented differently, you get different results for each one. Even two models from the same vendor. So, if you are "mining for diamonds," give the same prompt to multiple models.
16.07.2025 20:27 β π 0 π 0 π¬ 0 π 0Gemini suggested that the `compile` in the Groovy configuration could be replaced with `implementation`; however, since this still works, albeit with a warning, perhaps it's not worth changing.
I wouldn't have considered this if not for AI.