Fifth deep-dive in a series about maintaining and developing a React Native app in production.
Part 5: Grafting In the MVVP Pattern Into a Legacy React Native Codebase
Questions or improvements? Open an issue on the repo or e-mail me.
The Craft Shop
Writing about technology, software engineering, the craft, and coding
Fifth deep-dive in a series about maintaining and developing a React Native app in production.
Questions or improvements? Open an issue on the repo or e-mail me.
Fourth deep-dive in a series about maintaining and developing a React Native app in production.
Questions or improvements? Open an issue on the repo or e-mail me.
I’ve open-sourced static-deploy-kit, a production-ready CI/CD framework that handles the complete deployment lifecycle for Next.js projects. It supports automatic semantic versioning, PR preview environments, and SFTP deployment with instant rollback capability.
Announcing static-deploy-kit – Three deployment contexts: production, releases, and PR sandboxes
– Automatic version bumping from PR markers (`[major]`, `[minor]`, `[patch]`)
– Smart test skipping for infrastructure-only changes
– Preview URLs automatically posted to PRs
– Backup-first deployment with symlink-based rollback
**Call to Action:**
Check out the repository, star it if useful, and feel free to open issues or PRs.

Second deep-dive in a series about maintaining and developing a React Native app in production.
Questions or improvements? Open an issue on the repo or e-mail me.
Original version was published in October 2025, updated: January 2026
This is a system design document for a Microsoft Teams bot that replaces JIRA’s clunky worklog UI with a single-view Adaptive Card interface.
This is a complete system design for a Teams bot that solves the weekly pain of JIRA time reporting:
Estimated reading time: 20-25 minutes
The document includes the actual Adaptive Card JSON structure, sequence diagrams, data models, and a mathematical load simulation proving that a single Lambda function handles the Friday afternoon spike comfortably.
Questions or improvements? Open an issue on the repo or e-mail me.
This is a technical post-mortem analyzing constraint-driven development with AI coding assistants.
Building a Route Optimization Engine in 4.5 Hours: An LLM-Assisted Hackathon Post-Mortem
This is a detailed analysis of building production-grade code under time constraints:
Estimated reading time: 15-20 minutes
The document includes the actual constraint prompt we used, architectural decisions with reasoning, and specific examples of where the LLM excelled (API integration) and where it failed (domain knowledge, architectural vision).
Questions or improvements? Open an issue on the repo or e-mail me.
This is a comprehensive, step-by-step guide for deploying containerized services to Amazon EKS. You’ll learn how to:
A Complete Guide to Deploying a Service to AWS EKS
This is a comprehensive, production-ready deployment guide covering:
– Infrastructure provisioning with Terraform
– Container builds and ECR push with GitHub Actions
– Kubernetes deployments with Helm
– IAM Roles for Service Accounts (IRSA) configuration
– Complete troubleshooting section
Estimated time: 2-3 hours first time, ~30 minutes after that.
The guide includes complete working examples – not snippets, but full Terraform modules, Helm charts, and GitHub Actions workflows you can adapt.
*Questions or improvements? Open an issue on the repo or message me on LinkedIn.*

I’m starting something simple to help fellow engineers.
Over the last few months, people reached out with questions about direction, strategy, and “what actually matters” when trying to get hired in Europe/Sweden. It was in response to an off-the-cuff post during the summer (the Hug-a-Platform-Engineer one).
I’m grateful actually for some of the humor getting lost in translation! It’s opened up an opportunity to do something new.
So, I’m starting a weekly series: Office Hours: Ask a Senior Engineer on Fridays from 9am to 3pm CEST.
If you’re a junior engineer, a career-switcher, mid-and-stuck, senior-and-stuck, or just trying to break into engineering in the EU, drop one question below.
Anything about:
* skill focus
* job search strategy
* what EU/Sweden roles really require
* technical direction
* getting unstuck
To make it easier, here’s an example:
Question
“I’m a platform engineer outside of Europe. How do I get noticed by EU teams?”
Mini-answer
Make one small public project that demonstrates reliability work — something like a simple service with a playbook + basic telemetry. Show deployment with CI and basic secrets management. Hiring managers trust what they can see, and you can build credibility in 2–4 weeks this way.
So, that’s it!
What’s one question you want clarity on?
I’ll pick one each week, and I’ll answer it honestly and practically — no grift, no sales pitch.

I posted last week about writing some scripts to sanity-check and validate Android bundles before uploading to Google Play Store (and having them rejected!).
I’ve made the scripts – one for AABs and APKs – open source as public gists.
curl -s https://gist.githubusercontent.com/minademian/71a5a3d0243496ce6a2a49956c01e4cd/raw/05189c8da3c8833595546a68325a3617cbd1944f/verify_aab_release.sh | bash
curl -s https://gist.githubusercontent.com/minademian/6e841c8e1a84308c6b3dc937a2d4a4cd/raw/4768df88d3d3111c134700c0637ed030a97af3a9/verify_apk_release.sh | bash
You can take it one step further and add it to your precommit hook, using the hook management tooling of your choice.
It will look like this:
yarn test || exit 1
# script in package.json: "bash./scripts/verify_aab_release.sh",
yarn validate-packages || exit 1
npx lint-staged || exit 1
Continuing my foray into OSS, I’ve been spending more time with my first (tech) love of the command-line and am teaching myself how to write shell completion scripts.
Second-born: yarn-shell-completion! https://github.com/ursine-code/yarn-shell-completion
Big h/t to @Felipe Contreras on YouTube for inspiring me to delve into this area of engineering and making it easy(-ish) to get into!