1
interface
Developer {
2
name:
"Mike Chumba";
3
role:
"Full Stack Engineer & Mentor";
4
location:
"Nairobi, Kenya";
5
background:
"Electrical Engineer";
6
skills: [
7
"Full Stack Development",
8
"Cloud Infrastructure",
9
"DevOps & Automation"
10
];
11
passion:
"Building & sharing knowledge";
12
}
13
14
const
intro = (dev: Developer) =>
{
15
return
`Hello! I'm ${dev.name},
16
an Electrical Engineer turned Developer.
17
I build modern web apps and share
18
my journey in technology.`;
19
};
20
21
// Let's connect!
22
console.log(intro(mike));
23
24
// Quick Links
25
const
links = {
26
blog:
"/posts/",
27
about:
"/about/",
28
email:
"info@drmhse.com"
29
};
Recent Posts
View allYour AI Coding Agent Deserves a Real Review Desk
Software Engineering
Developer Tools
+1

Dream TTS: A Quiet Case Study in Local Speech
Software Engineering
AI
+1

Make Local TTS Trustworthy: Pronunciation, Latency, Tests, and Release Gates
Software Engineering
AI
+1

One Speech API, Many Machines: Designing a Cross-Platform Local TTS Layer
Software Engineering
AI
+1

Ship Your First Local Voice with Piper, Then Make It Boring
Software Engineering
AI
+1

Local TTS Without the Cloud: A Field Guide for Builders
Software Engineering
AI
+1
What 800ms of API Gateway Latency Really Cost Us
Software Engineering
API Management
+1
Cache Tokens Without Fighting Your API Gateway
Software Engineering
API Management
+1
Is Your API Gateway Burning 800ms on Every Request?
Software Engineering
API Management
+1

Resizing a Linux VM Disk: The Five Layers Nobody Warns You About
Linux
Infrastructure
+1
