Page 1 of 127 (2534 total posts)

September 2025

07-09-2025
An Intuitive Guide to Interface Design

An Intuitive Guide to Interface Design

Source: photonlines.substack.com

A guide to creating web-sites and interfaces people will love using.

Notes:

Linked is a really great summary of basic and central hi design principles. I believe in them. Treat them as a checklist. If you do all that, you will have a good, professional and maybe even great UI

Tags: ui interface gui guide tutorial
04-09-2025
Tufte CSS

Tufte CSS

Source: edwardtufte.github.io

Magic css library to make your stuff look as good as Tufte

Notes:

Linked article is promising. Somehow Tufte’s book and opinions have become dogma among the technirati. Nothing against him but is the “Napoleon chart” the only example to admire? I’ve seen wall hangings, T-shirts, stickers and whole web sites admiring that one chart!

Tags: css design style Tufte
04-09-2025
MIT Study Finds Artificial Intelligence Use Reprograms the Brain, Leading to Cognitive Decline - Science, Public Health Policy and the Law

MIT Study Finds Artificial Intelligence Use Reprograms the Brain, Leading to Cognitive Decline - Science, Public Health Policy and the Law

Source: publichealthpolicyjournal.com

By Nicolas Hulscher, MPH

Notes:

Linked article makes a pretty depressing claim. Some bias in my brain immediately went to look for evidence that the paper was. It credible… who wrote it, are they scientists, how big was the sample size, etc. Funny how I didn’t like the claim, and instead of believing it I looked for ways to disqualify it.

Tags: AI science

August 2025

30-08-2025
asyncio: a library with too many sharp corners

asyncio: a library with too many sharp corners

Source: sailor.li

An explanation of some major issues with asyncio.

Notes:

Linked is a great article explaining async and await features of python. They allow you to write co-routines which gives you concurrency without threads or processes. And you are much safer from race conditions.

Tags: asyncio python concurrency coroutines async
30-08-2025
You might not need a Python class :: Adam Grant —

You might not need a Python class :: Adam Grant —

Source: adamgrant.micro.blog

Python is an incredibly versatile programming language known for its simplicity and readability. Among its features, the ability to use classes for object-oriented programming is both powerful and frequently recommended. However, classes aren’t always the best solution. In many cases, Python’s built-in types, functions, and standard library modules provide simpler, cleaner alternatives. Here are several scenarios where you might not need a Python class:
Simple Data Containers: Use Named Tuples or Data Classes Often, classes are created just to store data.

Notes:

Linked is a very nice article about Object Oriented coding in Python, and pointing to some simpler options than classes that might meet your needs

Tags: explainer python programming object-oriented oop
28-08-2025
I Managed a Swarm of 20 AI Agents for a Week and Built a Product. Here Are the 8 Rules I Learned. | zach wills

I Managed a Swarm of 20 AI Agents for a Week and Built a Product. Here Are the 8 Rules I Learned. | zach wills

Source: zachwills.net

A couple weeks ago I went heads-down and experimented with a new development model. The results were unexpected: a production-ready application, ~800 commits, and 100+ PRs in a single week. The core idea was to stop coding linearly and instead manage a swarm of ~20 parallel AI agents. This required building a custom parallelization tool, […]

Notes:

Linked is a pretty good article with some ideas on how to be most efficient and effective using Claude Code

Tags: software-engineering llm rules-of-thumb coding vibe-coding
22-08-2025
Everything I know about good system design

Everything I know about good system design

Source: seangoedecke.com

I see a lot of bad system design advice. One classic is the LinkedIn-optimized “bet you never heard of queues” style of post, presumably aimed at people who are…

Notes:

Linked is an outstanding summary of system design. It could be a book or a course! Of course good because I agree with just about every view and recommendation.

Tags: software-engineering architecture design system-design
17-08-2025
Everything I Know about Self-Publishing

Everything I Know about Self-Publishing

Source: kk.org

In my professional life, I’ve had several bestselling books published by New York publishers, as well as many other titles that sold modestly. I have also self-published a bunch of books, including one bestseller on Amazon and two massive hit … Continue reading →

Notes:

Linked is an article by the prolific writer Kevin Kelly about self publishing, how to approach it, who to talk to and so on.

Tags: tips book publishing how-to lessons-learned entrepreneurship
12-08-2025
12-08-2025
Linear sent me down a local-first rabbit hole | Bytemash

Linear sent me down a local-first rabbit hole | Bytemash

Source: bytemash.net

A deep dive into local-first architecture, triggered by wondering why Linear feels so fast. Looking at the technical implementation, exploring tools like Jazz and Electric SQL, and explaining why my next app might not need API endpoints.

Notes:

Linked is a great article explaining and evaluating various “local first” architectures. It

Tags: programming architecture local-first synchronization replication

July 2025

23-07-2025
Reading QR codes without a computer!

Reading QR codes without a computer!

Source: qr.blinry.org

Just with a pencil and paper

Notes:

Linked article covers something that’s always been a matter of some amusing fascination for me. Which is how QR codes work, and how there are apparently variations in the basic look which continue working with the same algorithms.

Tags: how-to how-it-works encoding decoding image processing
17-07-2025
Artisanal Handcrafted Git Repositories | drew's dev blog

Artisanal Handcrafted Git Repositories | drew's dev blog

Source: drew.silcock.dev

How to lovingly handcraft your own git repositories

Notes:

Linked is a madman’s tour of git’s persistent data structures. Yes, crazy, but pretty amazing. They use not-simple shall commands to create all the bits by hand. If you follow along you will know more than any of your friends how git work#!

Tags: git learn data-structure internals
16-07-2025
What can agents actually do?

What can agents actually do?

Source: lethain.com

There’s a lot of excitement about what AI (specifically the latest wave of LLM-anchored AI) can do,
and how AI-first companies are different from the prior generations of companies.
There are a lot of important and real opportunities at hand, but I find that many of these conversations
occur at such an abstract altitude that they border on meaningless.
Sort of like saying that your company could be much better if you merely adopted more software. That’s certainly true,
but it’s not a particularly helpful claim.

Notes:

Linked is a really good explanation of LLM agents, what they do, how they work more or less, and what they COULD do.

Tags: ai llm generative-ai agents ai-agents