{
"name" : "Wisnu Alfian Nur Ashar",
"nickname" : "wi5nuu",
"location" : "Bekasi Kota, West Java",
"education" : "Software Engineering Student",
"role" : "Full-Stack Developer",
"interests" : ["Web Dev", "AI/ML", "Cloud Arch", "Open Source"],
"available" : true
}- Building scalable microservices with Go & Spring Boot
- Exploring AI/ML integration in web applications
- Deep diving into cloud architecture on AWS & GCP
- Mastering DevOps practices with Docker & CI/CD
Go · Laravel · Next.js · Java/Spring · Docker · REST APIs · PostgreSQL
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." — Martin Fowler
╔══════════════════════════════════════════════════════════╗
║ BACKEND DEVELOPMENT ║
╠══════════════════════════════════════════════════════════╣
║ Go / Golang ████████████████████░░ 88% ║
║ Java / Spring ███████████████████░░░ 82% ║
║ PHP / Laravel ██████████████████░░░░ 78% ║
║ Node.js ████████████████░░░░░░ 70% ║
║ FastAPI / Python █████████████░░░░░░░░░ 58% ║
╠══════════════════════════════════════════════════════════╣
║ FRONTEND DEVELOPMENT ║
╠══════════════════════════════════════════════════════════╣
║ React / Next.js ████████████████████░░ 85% ║
║ TypeScript ██████████████████░░░░ 78% ║
║ JavaScript ██████████████████░░░░ 76% ║
║ Flutter / Dart ████████████░░░░░░░░░░ 52% ║
╠══════════════════════════════════════════════════════════╣
║ DEVOPS & CLOUD ║
╠══════════════════════════════════════════════════════════╣
║ Docker ████████████████░░░░░░ 68% ║
║ AWS ██████████████░░░░░░░░ 60% ║
║ GCP / Firebase ████████████░░░░░░░░░░ 52% ║
╠══════════════════════════════════════════════════════════╣
║ AI / ML INTEGRATION ║
╠══════════════════════════════════════════════════════════╣
║ PyTorch / NumPy ████████░░░░░░░░░░░░░░ 38% ║
║ LLM Integration ███████░░░░░░░░░░░░░░░ 32% ║
╚══════════════════════════════════════════════════════════╝
// What I'm building in Go
type Developer struct {
Name string
Focus []string
Building []string
}
me := Developer{
Name: "Wisnu Alfian",
Focus: []string{
"Microservices",
"REST & gRPC APIs",
"Clean Architecture",
},
Building: []string{
"Go services",
"Spring Boot apps",
"Laravel platforms",
},
} |
// What I'm crafting
interface MyStack {
web: string[]
mobile: string[]
styling: string[]
state: string[]
}
const stack: MyStack = {
web: ["Next.js 14", "React 18"],
mobile: ["Flutter", "Dart"],
styling: ["Tailwind", "shadcn/ui"],
state: ["Zustand", "React Query"],
} |

