Passionate about coding with only a phone, loves free tools, small memory (12KB brain) but unlimited dreams.
Get In Touch
I'm a developer who believes great code can be written anywhere, even on a budget smartphone. I've turned my limitations into strengths by focusing on efficient, lightweight solutions that deliver maximum impact with minimal resources.
Coding with a frugal mindset.
Coding while chilling and lying down, avoiding unnecessary complexity.
Full dreamer mode — sometimes coding until falling asleep.
Collection of productivity scripts for Termux to enhance mobile development workflow.
Using only a smartphone and Termux. Someday...
Create a fully functional app in just 12KB of code
Set up a mobile workstation on Mount Semeru
A CMS that fits in a single SMS message
// Tiny fetch wrapper (just 12 lines!)
const api = {
get: async (url) => {
try {
const res = await fetch(url);
return await res.json();
} catch (err) {
console.error('API Error:', err);
return null;
}
}
};
/* Minimal CSS Reset + Utilities */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.flex { display: flex; }
.col { flex-direction: column; }
.center {
justify-content: center;
align-items: center;
}
#!/bin/bash
# Quick mobile dev setup
mkdir -p $1/{css,js,img}
touch $1/index.html
touch $1/css/style.css
touch $1/js/app.js
echo "Project $1 created successfully!"