Tags: web-review, databases, supply-chain, tools, graphics, optimization, surveillance, decentralized, shader, fediverse, bindings, git, caching, design, compiler, xslt, social-media, html, safety, debugging, system, sqlite, gui, xml, culture, psychology, leadership, ux, pattern, craftsmanship, pbr, web, imposter-syndrome, agile, game, sociology, tech, rust, asynchronous, 3d, security, geometry, wikipedia, foss, standard, project-management, dependencies, refactoring, performance, c++, mathematics, hardware, architecture, css, memory, bluesky, parsing, codereview, criticism, language, vendor-lockin, complexity, search, frontend, javascript, python, politics, multithreading, animation, type-systems, physics, cpu, management
Let’s go for my web review for the week 2025-36.
Tags: tech, surveillance, politics
Interesting point of view. We point to China’s system, but it’s of course already in Western countries too… we just like to lie about it.
https://www.thenexus.media/your-phone-already-has-social-credit-we-just-lie-about-it/
Tags: tech, web, social-media, criticism, culture
This is already an old article now. Still the core of it rings true. The optimistic note at the end of it didn’t come to pass though.
https://www.anildash.com/2012/12/13/the_web_we_lost/
Tags: tech, web, search, wikipedia
The idea is interesting… Seeing how the search engine space is degrading quickly I’m tempted to try this actually.
https://paste.sr.ht/~awal/2310cfca431e9f723df281d02558eaebd77e2091
Tags: tech, social-media, fediverse, bluesky, decentralized
Nice and clear indicators of how decentralized the fediverse and the “atmosphere” really are.
https://arewedecentralizedyet.online/
Tags: tech, security, vendor-lockin
This is quite a rant. Now I admit I’m not in love with passkeys and this piece shows quite well a lot of arguments against them.
https://www.dedoimedo.com/life/passwords-passkeys.html
Tags: tech, hardware, system, vendor-lockin, foss
Interesting point, let’s not forget those devices indeed don’t give us enough access to run whatever operating system you want on them.
https://hugotunius.se/2025/08/31/what-every-argument-about-sideloading-gets-wrong.html
Tags: tech, hardware, cpu
Interesting trend in the CPU space. We’re getting more simultaneous instructions with the passing generations.
https://lemire.me/blog/2025/09/01/processors-are-getting-wider/
Tags: tech, databases, safety, sqlite
This is indeed an area which could be better handled in SQLite. It needs to be carefully checked when introduced in a project.
https://www.agwa.name/blog/post/sqlite_durability
Tags: tech, git, tools
A nice git trick, there are options between the global .gitignore file and the local ones in the repository.
Tags: tech, python, multithreading, asynchronous
Its use cases are indeed limited. It’s a success for network IO. For everything else, the free threading might be the path forward once it stabilizes.
https://tonybaloney.github.io/posts/why-isnt-python-async-more-popular.html
Tags: tech, rust, python, type-systems, bindings
This is not an easy case, even with the support of PyO3. This short article gives a nice blueprint to share a reference between Rust and Python.
https://blog.lilyf.org/posts/python-mutable-reference/
Tags: tech, parsing, rust
Need a refresher on how to write a parser? This is a good one. Also gives a few ideas of Rust libraries you can use to make the task easier.
https://jhwlr.io/intro-to-parsing/
Tags: tech, design, pattern, type-systems, refactoring, rust
It’s indeed a nice little pattern to use when the type system allows for exhaustiveness checks of destructure operations. Allows to gracefully handle extension of structs in the future.
https://home.expurple.me/posts/destructure-as-a-reminder/
Tags: tech, rust, type-systems, memory
Due to the strict type system this kind of conversion is not necessarily a given. There are ways though, and you can even keep it performing well.
https://sailor.li/ints-to-enums
Tags: tech, rust, compiler, performance, optimization
Nice bag of tricks for better Rust performance at low level. The compiler is indeed helping quite a bit here.
https://davidlattimore.github.io/posts/2025/09/02/rustforge-wild-performance-tricks.html
Tags: tech, rust, type-systems
Nice chapter to better understand Rust dyn traits (also called trait objects).
https://quinedot.github.io/rust-learning/dyn-trait.html
Tags: tech, rust, pattern, language
This is indeed a welcome improvement in my opinion. It’s nice to get a glimpse of the process of adding such features in Rust.
https://kobzol.github.io/rust/2025/09/02/adding-derive-from-to-rust.html
Tags: tech, c++, type-systems
We got this nice feature a while ago now. It deserved to be used more, and it keeps improving.
https://www.cppstories.com/2025/structured-bindings-cpp26-updates/
Tags: tech, c++
A good reminder to use std::exchange more. Years after it’s been introduced it’s clearly still underused.
Tags: tech, c++
It’s indeed quite possible to sneak in some symbols even in capture less lambdas. It all makes sense in the end.
http://videocortex.io/2016/leaky-closures-captureless-lambdas/
Tags: tech, c++, standard, criticism
Yes, this one feature in the standard doesn’t seem to reap much benefits… It’s sad that it got there.
https://nibblestew.blogspot.com/2025/08/we-need-to-seriously-think-about-what.html
Tags: tech, game, mathematics, geometry
A little article about a different type of grids for strategy games. Some of the consequences are very interesting.
https://kvachev.com/blog/posts/triangular-grid/
Tags: tech, graphics, 3d, pbr, shader, physics, mathematics
Nice deep dive into the theory behind PBR approaches.
Tags: tech, graphics, shader, game, gui, 3d
Very interesting exploration of the various types of blurs used in games and GUIs. Starting simple then building up all the way to the Dual Kawase Blur… and a bit beyond.
https://blog.frost.kiwi/dual-kawase/
Tags: tech, graphics, shader, pbr
Nice effect, well explained with a shader implementation.
https://www.4rknova.com/blog/2025/08/30/foil-sticker
Tags: tech, xml, html, xslt, javascript, css
This is indeed a nice trick. There are ways without XSLT, it might even be less painful.
https://jakearchibald.com/2025/making-xml-human-readable-without-xslt/
Tags: tech, web, frontend, css, ux
We got many options nowadays. Most of them are likely better than just making the underline disappear on links.
https://adactio.com/journal/22084
Tags: tech, ux, animation
Some good point in there. For sure you don’t want to animate everything.
https://emilkowal.ski/ui/you-dont-need-animations
Tags: tech, codereview, debugging
Indeed, carefully reading larger chunks of code and looking for the historical context around it can go a long way in finding bugs.
https://matklad.github.io/2025/09/04/look-for-bugs.html
Tags: tech, architecture, databases, caching
Databases do improve and provide more “cache like” features, but such caches are still needed for the time being.
https://avi.im/blag/2025/db-cache/
Tags: tech, architecture
A short and to the point reminder on how to manage properly a “layer cake” architecture.
https://martinfowler.com/bliki/PresentationDomainDataLayering.html
Tags: tech, dependencies, supply-chain, complexity
Sometimes, it’s indeed better to not pull an extra dependency.
https://taggart-tech.com/reinventing-wheels/
Tags: tech, architecture, complexity
Good reminder of this important but imperfect guide to software design. There is some ambiguity on what “simplest” actually means. Still it helps keeping in mind that simple is rarely easy to find.
https://www.seangoedecke.com/the-simplest-thing-that-could-possibly-work/
Tags: tech, craftsmanship
It’s been around for a long while now. This is an interesting way to complete the software craftsmanship view which didn’t quite capture the “living ecosystem” side of our field.
https://codingjourneyman.com/2015/08/03/software-gardening/
Tags: tech, agile, project-management
This is indeed one of the core questions on you “agile” project management. If the feedback loops are very long, you’re in for trouble.
Tags: tech, leadership, management, psychology, imposter-syndrome
This is a widespread syndrome. It’s not only in our industry of course but has real consequences in terms of leadership.
https://mikefisher.substack.com/p/imposter-syndrome
Tags: sociology, psychology
Nice visualization of a study where people are paired with strangers for a 30 minutes conversation. It’s a fascinating social experiment with neat outcomes.
https://pudding.cool/2025/06/hello-stranger/
Bye for now!