Our Blog

Insights, tutorials, and best practices from our team of experienced developers.

Software Engineering

Five States That Can't Exist, and Your Code Allows All of Them

We gave an agent an ordinary task — a product list screen with loading, an error and data — and it returned a class with one boolean and two nullable fields. That is eight combinations, three of which mean anything; the other five compile, pass review, ship, and wait. This is what an impossible state is, why it is the same thing as a broken invariant, why the real cost is not runtime bugs but the unwritten conventions every reader has to reconstruct, and how sealed classes plus exhaustiveness turn a whole category of mistakes into a build failure. Also: why an enum plus nullable fields makes it worse, the one line that silently switches the check off, and the four places where algebraic data types do not help at all.

August 31, 2026
Cybersecurity

Your SSL Pinning Probably Isn't Working

Google says certificate pinning "is not recommended for Android apps." Apple says "in most cases, pinning is not necessary and should be avoided." OWASP now says the answer to "should I pin?" is "probably never." Meanwhile pinning ships in roughly half the mobile apps we audit — and on Flutter it usually protects nothing at all, because Dart does not use the platform networking stack, so the pin-set in your network_security_config.xml is never read. Here is what pinning actually buys you in 2026, whether you need it, five rules if you do, why Flutter breaks all of them, and how to find out in half an hour which of those applies to your app.

August 27, 2026
Software Engineering

Everyone Got the Timeline Wrong: AI, Juniors, and Quantum

Two years ago the loudest voices in tech said software engineers would be obsolete by now. They were wrong: developer employment did not collapse. But the same wave that failed to remove developers removed something else — the routine work that turned beginners into seniors. Employment of developers aged 22 to 25 is down roughly 20% since late 2022 while their older colleagues held flat or grew. Meanwhile quantum computing is running the identical hype cycle one lap behind, and the milestone that actually matters is not the one in the headlines. Here is what the evidence supports, what it does not, and how to tell the two apart.

August 18, 2026
dxpdf 0.5.0: Teaching a DOCX Converter to Read the Rest of the World
Software Engineering

dxpdf 0.5.0: Teaching a DOCX Converter to Read the Rest of the World

dxpdf converts Word documents to PDF without Office, LibreOffice, or a cloud API. Version 0.5.0 is the release where it stopped quietly assuming every document is written in English — UAX #14 line breaking, UAX #9 bidirectional text, and CLDR-driven numbers and dates that follow the document's own language. Here is what shipped, the design decisions behind it, and the measured numbers.

August 11, 2026
Orosu: Why We Replaced SSH Deploy Keys With Signed WebSocket Jobs
DevOps

Orosu: Why We Replaced SSH Deploy Keys With Signed WebSocket Jobs

Every CI pipeline eventually has to get a build onto a server, and most teams solve it with SSH keys in secrets and a copy-pasted rsync script. We built Orosu instead — an open-source Rust tool that turns deployment into an authenticated, bounded WebSocket job instead of an open shell. Here is the problem it fixes, how it works, and where its edges are.

August 8, 2026
How End-to-End Encryption Actually Works: Key Exchange, the Double Ratchet, and Its Real Trade-offs
Cybersecurity

How End-to-End Encryption Actually Works: Key Exchange, the Double Ratchet, and Its Real Trade-offs

A deep dive into how end-to-end encryption is established and kept secure over time — the X3DH handshake, the Double Ratchet algorithm behind Signal and WhatsApp, group messaging with sender keys, and an honest look at what E2EE protects and what it does not.

August 3, 2026
The Flutter App Development Process: How We Take an App From Idea to App Store
Flutter

The Flutter App Development Process: How We Take an App From Idea to App Store

The actual process behind a Flutter build — discovery, design, architecture, iterative development, QA, release, and maintenance — run as short feedback loops rather than a waterfall. What happens in each phase, what you get out of it, who is in the room, how long it takes, and the specific places the process breaks.

July 29, 2026