Project guides.
Practical notes to help you choose, plan and understand your project.
Drone Build: Parts Selection Guide
Picking drone parts that actually work together is a sizing problem, not a shopping problem. This guide walks the compatibility chain — frame to props to motors to ESCs to battery — with the thrust math, firmware choices, LiPo safety, and the bench-test order that prevents disasters.
Read guideImage Segmentation: U-Net and Mask R-CNN
When projects need pixel-level answers, segmentation delivers. This guide explains semantic vs instance vs panoptic segmentation, U-Net's encoder-decoder with skip connections, Mask R-CNN's parallel mask head, Dice and IoU evaluation, paired augmentation, and how to choose the right architecture for your data and question.
Read guideDocker Compose for Full-Stack Projects
Stop juggling four terminals and setup docs that only work on your laptop. This guide builds a complete Docker Compose stack — frontend, API, database, cache — with annotated config, healthchecks, persistent volumes, and a dev/prod split that survives demo day.
Read guideZigbee vs Thread vs Matter Explained
Zigbee, Thread and Matter are not interchangeable. Learn what each one is (mesh standard vs IP networking layer vs interop application layer), how they stack together, which ESP32 variants support 802.15.4, and how to choose the right one for your smart-home project.
Read guideWorkManager for Background Tasks
Background sync that dies overnight? Learn WorkManager: the right API for guaranteed background work on modern Android. Covers one-time and periodic requests, constraints, chaining, retry/backoff, passing data, observing from UI, and debugging workers delayed by Doze or OEM battery optimizers.
Read guideXSS Attacks Explained for Students
Cross-site scripting turns your comment section into code running in visitors' browsers. Learn the three XSS types conceptually, why browsers execute injected input, what it enables, and the defender's toolkit: output encoding, Content Security Policy, safe DOM handling, and hardened cookies. No payloads — prevention only.
Read guideWebSockets Explained: Build a Chat App
HTTP can't push data to clients. WebSockets can. This guide explains the protocol, walks through building a chat app with Node.js, and covers the parts everyone skips: reconnection, heartbeats, authentication, and scaling.
Read guideWhisper for Speech-to-Text in Student Projects
Whisper transcribes speech in dozens of languages with no training required. This guide covers how it works, choosing among model sizes, running it locally with faster-whisper, handling hour-long audio, timestamps and speaker diarization, multilingual quirks, and honest evaluation with word error rate.
Read guideWebRTC Basics: Real-Time Communication
Video calls in the browser with no plugins — WebRTC makes it possible. This guide explains the three core APIs, how signaling introduces two peers, why STUN and TURN decide whether calls work on real networks, and the mistakes every beginner makes.
Read guide