The overnight bus that became the whole story
Missed the train, booked a bus at midnight, and ended up filming the best 4 minutes of footage from the whole trip out the window.
▸ Watch the logTravel logs shot on the move, office vlogs from the daily grind, coding basics broken down simply — and public challenges hosted right here — the first one's on its way.
Binary and Biceps is one channel run like two departments. One side lives in the terminal — clean code, small tools, the boring fundamentals explained without the jargon. The other side lives out of a backpack and an office chair — travel logs from wherever the next trip lands, and vlogs from the ordinary work week in between.
The idea is simple: building things and moving your body are the same discipline wearing different clothes. Show up daily, log the process, share what actually worked — including the money-and-time challenges that force all of it to happen on a deadline.
New uploads land across three lanes — Travel Logs, Office Vlogs, and Coding Basics — plus challenges posted here that any registered subscriber can accept, track, and discuss.
Every challenge on this site is posted by the channel. Register or log in to accept one and start tracking.
No challenges posted yet — check back soon.
Routes, delays, cheap stays, and the parts of the trip that don't make the thumbnail.
Missed the train, booked a bus at midnight, and ended up filming the best 4 minutes of footage from the whole trip out the window.
▸ Watch the logA budget breakdown video disguised as a travel log — every rupee tracked, every questionable meal included.
▸ Watch the logThe origin story — quitting the comfortable version of the plan for one that involves more trains and more terminal windows.
▸ Watch the logDesk setup, deep-work days, the meetings that could've been an email — filmed anyway.
Real-time edit of a normal Tuesday — three back-to-back calls, one shipped feature, one cold coffee.
▸ Watch the vlogWhat actually fits in one bag when half the month is spent working from somewhere else entirely.
▸ Watch the vlogTime-tracked, screen-recorded, no flattering edits. Where the hours actually went.
▸ Watch the vlogShort, practical breakdowns — the kind of basics that get skipped over everywhere else.
# a variable is just a labeled box distance_km = 42.3 rider_name = "you" is_travel_day = True print(f"{rider_name} logged {distance_km} km")
// loops without the fear const stops = ["Delhi", "Manali", "Leh"]; for (const city of stops) { console.log(`next stop: ${city}`); }
# functions: reusable, named steps def daily_target(goal, days_left): return goal / days_left print(daily_target(150000, 9))
# commit like the message is the log entry git add . git commit -m "log: day 3 of challenge_001" git push origin main