Hello World
First post. Why I'm starting a blog after 10 years of writing code.
On this page
So, a blog.
I've been building software for over 10 years now. Fintech platforms, enterprise systems, mobile apps, no-code sites. I've shipped a lot of stuff. But I never really wrote about any of it.
That changes today.
Why now?
Honestly? I kept running into the same problems, googling the same things, explaining the same concepts to junior devs on my team. At some point it just made sense to write things down properly. If I'm going to explain how to set up a CI/CD pipeline for the third time this year, might as well put it somewhere useful.
Also, I recently rebuilt this entire portfolio from a Framer site into a Nuxt 4 app with a headless CMS. That process alone gave me enough material for like five posts.
What I'll write about
Mostly things I actually deal with day to day:
- Building fullstack apps with TypeScript, React, Next.js, Vue, Node.js
- Cloud stuff. AWS, Docker, Kubernetes, CI/CD pipelines
- Mobile dev with React Native and Flutter
- No-code tools like Framer, Webflow, n8n (yes, I use these too)
- Lessons from working across fintech, edtech, and enterprise
No fluff. No "10 reasons why React is amazing" listicles. Just real problems, real solutions, and the occasional opinion.
A quick hello in code
Since this is a dev blog, here's how I'd introduce myself in TypeScript:
interface Developer {
name: string;
skills: string[];
yearsOfExperience: number;
}
const sheriff: Developer = {
name: "Sherifdeen Adebayo",
skills: ["TypeScript", "React", "Node.js", "AWS", "Docker"],
yearsOfExperience: 10,
};
console.log(`Hello from ${sheriff.name}!`);
Let's talk
If you want to work together or just nerd out about tech, book a call or find me on LinkedIn, X, or GitHub.
More posts coming soon. For real this time.