Skip to main content

Posts

Recent posts

3 Claude Code Skills Every Developer Should Know

You sit down with Claude Code. You've got a plan. Three hours in, the context window is full, the conversation is tangled, and you've built half of the wrong thing. That's not a Claude problem. It's a workflow problem — and it's exactly what Matt Pocock designed his open-source skills library to fix. Pocock, best known as the creator of Total TypeScript, published these skills straight from his own .claude directory with a clear pitch: "Skills for Real Engineers." No bloated process frameworks. No opinionated orchestration. Just small, composable slash commands you can hack and extend. In June 2026, the mattpocock/skills repo has 150,773 GitHub stars and 13,032 forks — accumulated in under 5 months since its February 2026 release. That's the kind of adoption that tells you developers are hitting the same walls and finding the same fixes. This post covers the three productivity skills: grill-me , handoff , and teach . Key Takeaways As of June 2026, th...

Why the Smartest Builders Are Running AI On Their Own Hardware

Key Takeaways What you'll take away from this Cloud AI models can disappear overnight — a government letter, policy update, or pricing shift is all it takes Local models are now good enough for roughly 80% of everyday AI tasks Ollama and LM Studio make setup fast, even without a technical background Qwen 3, DeepSeek, Gemma, and Llama are the four models worth knowing right now Privacy, zero marginal cost, and always-on availability are the three core advantages of going local Five concrete startup opportunities open up the moment intelligence runs free on your desk The weekend was supposed to be spent building. The plan was locked in, the idea was sitting right there — and then, on a Friday evening, a government letter arrived at an AI lab. By Friday night, one of the most powerful models on the planet was gone. Disabled for everyone. No warning. No appeal window. That moment clarifies something...

Add flutter to existing app — Challenges

I am using flutter last 2 year & successfully released 2 flutter apps on production before 2–3 month, decide to add flutter in existing android & iOS app(while it was in beta-experimental stage). Flutter team have provide better way to add same in flutter v1.2 —  Good document than beta. Article is not about integrate flutter in existing app but, It’s about challenges which i have faced after adding flutter in existing app. I have integrate flutter module with my existing iOS & Android App (Same Application for both platform), developed 2 new features in flutter module & released successfully. In last week I have to add new feature in flutter module which user is able to pick file from phone & upload it on server. I have decided to use  file_picker: ^1.4.3+2 . Now, what I have is Native Application + Flutter Module < = > Image_picker Plugin in one App. In which I faced below challenges. Same time flutter v1.12 released A...