Introducing Googlebook, the first laptop designed for Gemini Intelligence. It’s crafted for heavyweight performance, built with Gemini at the core and perfectly synced with your Android phone. Coming this fall. 💻✨
#TheAndroidShow
Google Cloud AI engineer just showed how they go from idea to deployed app at Google in 30-minutes using Claude.
26-minutes. free. by Google AI team.
one person + Claude + Google Cloud = a full engineering org running on a laptop.
worth more than any $500 vibe-coding course.
Two Anthropic engineers spent 24 minutes exposing every Claude Code feature you didn't know existed.
Most people will scroll past this. Don't be most people.
Vibe coding PRO Hack :
How i structure every new client project folder in Cursor from day one.
Most vibe coders start with the feature. I start with the scaffold.
Drop this prompt into Cursor before anything else:
"Create the complete folder structure for a production [Next.js / Express] project.
Include:
- /src/app — pages and routing only, no logic
- /src/components — ui/ for base components, shared/ for composed ones
- /src/services — all business logic, one file per domain (auth, users, payments)
- /src/lib — third-party client setup (db, stripe, resend, etc.)
- /src/hooks — custom React hooks only
- /src/utils — pure utility functions with no side effects
- /src/types — all TypeScript interfaces and types
- /src/middleware — auth, rate limiting, logging
- /tests — mirror the src structure
Create all directories and add a one-line comment in each explaining what belongs there and what doesn't.
Also create: .env.example with all variables the app will need (values empty), CLAUDE.md with the stack and folder conventions, and a README with local setup instructions."
Nearly 23K stars for a collection of markdown files I wrote
I guess they must be pretty good
I want to invest more time in this repo. So, folks who starred it, what can I do to make these skills more obvious to you?
- A docs site for the skills?
- Send them to plugin marketplaces?
Help me help you
https://t.co/64UuxC8V0T
FYI I just shipped a huge improvement to /improve-codebase-architecture
It now ships with a glossary of terminology to describe good/bad codebases
Essential reading for anyone wanting to improve their codebases:
https://t.co/mz3BRV044f
🚨 BREAKING: Someone just built a web-based System Design Simulator.
It's called Paperdraw. It lets you drag and drop components to see how they handle real-world conditions like traffic, failures, latency, and scaling in real time.
100% free to try.
My exact tech stack for every client MVP in 2026 :
After 50+ projects, I stopped experimenting.
This stack ships fast and survives production.
FRONTEND
- Next.js 14 (App Router)
- Tailwind CSS + shadcn/ui
- React Query for server state
- Zustand for client state
- TypeScript. Always.
BACKEND
- Next.js API routes for straightforward MVPs
- Node.js + Express when the API needs to be a separate service
- Zod for input validation on every single endpoint
DATABASE
- Supabase (Postgres) for most projects
- Drizzle ORM — type-safe, fast, no magic
- Upstash Redis for caching and rate limiting
AUTH
- NextAuth.js or Supabase Auth
- Never rolling custom JWT auth from scratch
STORAGE
- Cloudinary for images (free tier is generous enough for early MVPs)
- Supabase Storage for documents and user uploads
PAYMENTS
- Stripe. Always Stripe.
DEPLOYMENT
- Vercel for frontend and Next.js API routes
- Railway for standalone backends
- Supabase for managed Postgres
MONITORING
- Sentry for error tracking (free tier covers early stage)
- Vercel Analytics for frontend
Total monthly cost for a new MVP before it gets traction: under $20.
This exact stack has shipped projects that went on to close $50K+ in client contracts.
Save it.