惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
WordPress大学
WordPress大学
爱范儿
爱范儿
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
博客园_首页
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
MyScale Blog
MyScale Blog
IT之家
IT之家
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a free DSA interview prep site because I was tire...
Piyush Hajare · 2026-05-25 · via DEV Community

Piyush Hajare

So here's the thing - I've been prepping for DSA interviews on and off for like 2 years now. And every time I open up one of those big platforms (you know the ones), I get hit with this wall of 2000+ problems and immediately close the tab. Classic.

The problem isn't that those platforms are bad. They're great if you have months to grind. But most of us don't. We've got jobs, side projects, lives. What I actually needed was something that told me "hey, do THIS today, it'll take 15 minutes, and you'll actually learn something."

So I built it.

What is CrackCode?

CrackCode is a free DSA interview prep platform with a structured 30-day curriculum. Each day covers one topic with a short lesson and curated problems. The whole point is that you can do your daily prep while having your morning tea/coffee.

No account needed to browse the curriculum. Sign up if you wanna track your progress.

What it covers

The 30 days go through the standard stuff you'd expect:

  • Arrays, strings, hashmaps
  • Linked lists, stacks, queues
  • Trees, graphs, BFS/DFS
  • Dynamic programming (yes, the scary one)
  • Sorting, searching, bit manipulation
  • System design basics

Each day has a lesson page with explanations and then links to practice problems. Nothing groundbreaking in terms of content - it's more about the structure and pacing. You're not drowning in choices.

The tech stack (for the curious)

Built this as a side project over a few weeks:

  • Backend: Python/FastAPI running as ASGI on Vercel
  • Database: Cloudflare D1 (SQLite at the edge, surprisingly good)
  • Auth: Supabase for Google OAuth + email/password
  • Frontend: Server-rendered HTML with Jinja2 templates, vanilla CSS
  • Hosting: Vercel (free tier)

Yeah I know, no React. Fight me. For a content-heavy site like this, server-rendered HTML is honestly perfect. Pages load fast, SEO works out of the box, and I didn't have to wrestle with hydration bugs at 2am.

The D1 + Supabase combo is interesting. Supabase handles auth really well but I wanted edge-cached reads for the curriculum content, so D1 made sense there. Wouldn't do this for everything but for read-heavy content it's pretty solid.

What I learned building this

  1. Scope creep is real. I originally wanted gamification, streaks, a community forum... stripped all of that. The MVP is just lessons + progress tracking and honestly that's enough for now.

  2. SEO matters more than I thought. Spent a decent amount of time on meta tags, structured data, sitemap, the whole thing. Turns out Google actually indexes you faster if you do this stuff right. Who knew.

  3. FastAPI on Vercel actually works. Was skeptical but the ASGI adapter handles it fine. Cold starts are noticeable but acceptable.

  4. Simple UIs can still look good. No component library, just some CSS custom properties and a dark theme. Keeping it minimal actually made the design process way easier.

Why free?

Because I built it for myself first. I'm using it to prep for my own interviews. Figured other people might find it useful too. Maybe I'll add premium stuff later but for now everything is free, no paywalls, no "sign up to see the answer" nonsense.

Try it out

Check it out at crackcode.dev and let me know what you think. I'm genuinely looking for feedback - what topics are missing, what's confusing, what sucks.

Also just launched on Product Hunt today if you wanna show some support there.

If you're prepping for interviews right now, hope this helps. And if you've already landed your dream job... well, bookmark it for next time. We all know how this industry works lol.


Building in public @ iodevz.com