How to Make CLI Tools in TypeScript with Komutan
Learn how to create, develop, test, and publish CLI tools in TypeScript using Komutan. A comprehensive guide to building command-line applications with modern tooling.
Learn how to create, develop, test, and publish CLI tools in TypeScript using Komutan. A comprehensive guide to building command-line applications with modern tooling.
Learn how to achieve academic excellence while maintaining a balanced life. Discover proven strategies for getting a 4.0 GPA while building projects, exercising, and having a social life.
We use email daily and it is the invisible but most important marketing and communication tool. Us developers use email for several things but we (at least me) don't understand how it works under the hood.
This is my second project after I did a small compiler, and it took more time than I expected. Not because the project was complex or hard, but because I didn't have too much time for it since..
I ran into Vercel's 4.5MB serverless function limit when uploading PDFs to OpenAI. The solution? Use client-side uploads to cloud storage with signed URLs, then process files from there.
I had enough of vibe coding for around two months, so I wanted to take control back and learn more about computer science. So I built a simple Markdown to JSX compiler. I'm currently studying programming language fundamentals where we also go through this stuff!
Binary search is one of the fundamental sorting algorithms and a building block for more complex ones. It can be tricky to understand at first...