Why Attention Is All You Need — A Dimensional and Mathematical Intuition Guide1. Introduction In 2017, Vaswani et al. dropped a paper titled “Attention Is All You Need,” and it quietly rewired the entire field of deep learning. Within a few years, its architecture — the Transformer — became the foundation for nearly every mode...Oct 6, 2025·17 min read
Deploy your TypeScript Express App to Vercel (2024)Disclaimer: This blog does not discuss express and how to build server logic. This only focuses on deploying the app to Vercel as a Serverless Function. Step 1: Export app instead of listening on a certain port. Export the app in ES6 fashion rather t...Jan 18, 2024·2 min read
Setting Up My Simple Home Server: A Practical GuideChapter 1: Formatting the Old PC Introduction Welcome to the kickoff of my home server project! Imagine this: this forgotten PC, originally my dad's ex-workstation, is sitting idle. Armed with an Intel i3 8th gen processor, no flashy GPU, and a humbl...Jan 14, 2024·8 min read
Striking the Right Chord: Gaming and Beyond with Python-Powered Audio MagicOkay! I agree the title sounds too overly technical. Long story short, I made a program to play Counter-Strike using my guitar. Why write a blog about a program that lets you play Counter-Strike with a guitar? Well, truth be told, it doesn't have muc...Oct 5, 2023·11 min read
Introduction to MongoDB - Part 1MongoDB is a popular NoSQL document database that stores data in flexible, JSON-like documents. Unlike traditional SQL databases, MongoDB does not require a predefined schema, making it easier to store and query data of varying types and structures. ...Mar 17, 2023·9 min read
Introduction to Machine LearningMachine Learning (ML) is a subset of Artificial Intelligence (AI) that involves teaching machines to learn from data without being explicitly programmed. The machine learning algorithms automatically learn patterns and insights from the data and use ...Mar 16, 2023·5 min read
Web Basics - Part 4What are Cookies, Local Storage, and Session Storage? Cookies, local storage, and session storage are all ways to store data in a user's browser while they are interacting with a website. Cookies are small text files that are stored on a user's compu...Mar 15, 2023·8 min read