Ship Software That Does Nothing
https://kerrick.blog/articles/2025/ship-software-that-does-nothing/
Discussions: https://discu.eu/q/https://kerrick.blog/articles/2025/ship-software-that-does-nothing/

Ship Software That Does Nothing
https://kerrick.blog/articles/2025/ship-software-that-does-nothing/
Discussions: https://discu.eu/q/https://kerrick.blog/articles/2025/ship-software-that-does-nothing/
How We Moved from Sidekiq to Temporal in Ruby (and What We Learned)
https://release.com/blog/temporal-vs-sidekiq
Discussions: https://discu.eu/q/https://release.com/blog/temporal-vs-sidekiq
I made a programming language inspired by lisp
https://github.com/realdanvanth/telos/
Discussions: https://discu.eu/q/https://github.com/realdanvanth/telos/
Evaluating AI's Impact on Haskell Open Source Development
https://www.well-typed.com/blog/2025/04/ai-impact-open-source-haskell/
Discussions: https://discu.eu/q/https://www.well-typed.com/blog/2025/04/ai-impact-open-source-haskell/
Hacktical C - a practical hacker's guide to the C programming language
https://github.com/codr7/hacktical-c
Discussions: https://discu.eu/q/https://github.com/codr7/hacktical-c
Just built a tiny web browser with Python
https://github.com/Nicolasf1109-GitHub/CompactBrowser
Discussions: https://discu.eu/q/https://github.com/Nicolasf1109-GitHub/CompactBrowser
Introducing golits: a CLI tool to catch duplicate string literals in a Go file
https://github.com/ufukty/golits
Discussions: https://discu.eu/q/https://github.com/ufukty/golits
C stdlib isn't threadsafe and even safe Rust didn't save us
https://www.geldata.com/blog/c-stdlib-isn-t-threadsafe-and-even-safe-rust-didn-t-save-us
Discussions: https://discu.eu/q/https://www.geldata.com/blog/c-stdlib-isn-t-threadsafe-and-even-safe-rust-didn-t-save-us
Data modeling a course platform with Laravel and Stripe
https://www.youtube.com/watch?v=yoCTIqthNRw
Discussions: https://discu.eu/q/https://www.youtube.com/watch?v=yoCTIqthNRw
New candidate JEP: 507: Primitive Types in Patterns, instanceof, and switch (Third Preview)
https://mail.openjdk.org/pipermail/amber-dev/2025-April/009274.html
Discussions: https://discu.eu/q/https://mail.openjdk.org/pipermail/amber-dev/2025-April/009274.html
I decided to build my first library in Zig | Lots of information for beginners
https://www.youtube.com/watch?v=ORhyWVLWPTg
Discussions: https://discu.eu/q/https://www.youtube.com/watch?v=ORhyWVLWPTg
I've coded as a hobby for a long time - mostly scripts and simple text-based games.
Over the last couple years I've been working to formalize my software development expertise.
One reason I did this was for the potential of changing careers.
Seeing AI and Vibe Coding, I'm starting to think this is a dead-end for me.
I love Systems, Analytics, Automation, Optimization, etc.
Are there other potential careers for a late career re-direction?
One of the best programming skills you can have is knowing when to walk away for awhile.
— Oscar Godson
Indeed! "Perfection is when there is nothing more to take away, rather than nothing more to add".
There's also a joke in software circles that every program contains at least one bug and can be optimized by at least one instruction -- and that therefore all software is reducible to a single instruction that doesn't work
Roland’s Holistic Approach to AI for Music Creation – Paul McCabe, Ichiro Yazawa & Kazuyoshi Sasamori – ADC 2024
https://www.youtube.com/watch?v=ZvUGS754u5Y
#AI #coding #MusicProduction #programming
Stevens: a hackable AI assistant using a single SQLite table and a handful of cron jobs https://lobste.rs/s/pj7iwf #ai #programming
https://www.geoffreylitt.com/2025/04/12/how-i-made-a-useful-ai-assistant-with-one-sqlite-table-and-a-handful-of-cron-jobs.html
I've taken to writing up a document before I start a coding project. It contains a list of all the libraries and frameworks I think I'm going to use, with links to them where needed.
Then I have a "Resources" section, which includes all the information about the steps I'll need to take to get each thing working that I'm not 100% sure on. If I need to google it, the direct link to the documentation or StackOverflow post is provided under a heading for what its for.
How does #ziglang handle endian differences between architectures? #C sucks at this, and builds working on x86 but being buggy on ppc64 for example is the result. I ask, because I see Zig lacks a preprocessor by design. #programming