Published contributor

Steven

Steven is credited as a contributor to GeekBye's articles. This profile brings together work published under that byline.

Editorial standards and commercial disclosure

Articles and guides

  • Why Your Screen Recording Turns Black (It Is Not a Bug)

    You hit record, everything on your screen captures fine, and the one video you wanted is a black box. That is protected playback working as designed. Here is what happens between the encrypted stream and your screen recorder, and why one browser setting can change it.

  • GeekBye Free Plan: How the 30-Minute Monthly Allowance Works

    Starter includes 30 minutes of Listen audio per month. The allowance is checked when a session starts; an active session continues. Here are the current limits, study context and Pro options.

  • How Long Does a Technical Interview Last? Data from 403 GeekBye Sessions

    Across 403 GeekBye listening sessions lasting at least 20 minutes, the median recorded duration was 36.1 minutes and 66% exceeded 30 minutes. Read the measured distribution, cohort selection and limits before applying it to your interview.

  • What to Do in the 24 Hours Before a Technical Interview

    A realistic checklist for the last day: what to rehearse, what to leave alone, the setup checks that actually fail, and what to do in the final fifteen minutes. Includes preparation context from a selected sample of 403 GeekBye listening sessions, with its limits explained.

  • What Technical Interviews Actually Ask in 2026: Patterns From Real Sessions

    We reviewed anonymized GeekBye sessions from August 2026 and pulled out the question patterns candidates actually faced: live coding from a blank file, production troubleshooting walkthroughs, advanced SQL with live bug-finding, and the delivery habits interviewers flagged again and again.

  • Cluely vs Parakeet AI: Pricing, Privacy & Stealth Compared

    Cluely vs Parakeet is subscription versus credits: Cluely charges $149.99/mo to stay hidden, Parakeet sells hours from $38. Both contradict themselves.

  • GeekBye vs Interview Coder: Is $799 Worth It?

    Interview Coder wants $799 up front for a coding-only tool with no published refund policy. Here is the honest head-to-head against GeekBye.

  • LockedIn AI vs Cluely: Which Interview Copilot Holds Up?

    LockedIn AI vs Cluely: LockedIn includes stealth from $69.99/mo, Cluely charges $149.99/mo for it. Both publish numbers that contradict themselves.

  • GeekBye vs Cluely: Which One Actually Fits an Interview?

    Cluely is a broad meeting assistant that charges extra to stay hidden. GeekBye is built for interviews and includes invisibility on every plan, free ones too. Here is the honest head-to-head.

  • How Undetectable Interview Assistants Actually Work

    Screen-share invisibility is not a trick or a hack. It is two operating-system APIs and one architectural decision. Here is exactly what happens to the pixels, and what it cannot do.

  • The Silence Was Load-Bearing

    The last two releases of GeekBye v1 are about the same uncomfortable truth: realtime transcription over a real network is not lossless, and the honest move is to stop pretending it is. v1.8.20 kept a copy of every audio chunk on disk before dropping it during a reconnect, and started marking the gaps in the transcript out loud. v1.9.0 stopped sending silence to save bandwidth β€” and discovered the silence was the exact signal the transcriber used to know a sentence had ended. Two releases about the cost of throwing things away.

  • The Three Verbs That Keep Web Audio Alive

    Two GeekBye point releases, two months apart and in two different files, taught our audio code the same lesson from opposite ends: stop treating the browser's AudioContext as disposable. One release learned to resume() a context macOS had silently suspended mid-recording; the other learned to suspend() instead of close() so back-to-back sessions stop slamming into Chromium's roughly-six-context ceiling. Resume, suspend, close β€” that's the whole plot.

  • Telling a Call From an Open App

    GeekBye can notice you've joined a video meeting and offer to record it. The detection turns out to be the easy half β€” a Swift binary reading window titles every ten seconds. The hard half is precision: not firing when Zoom is merely open, not prompting for a meeting you're already recording, and not muting the microphone in the call you're actually in. Three releases, and each one is a guard that had to learn to not defeat itself.

  • Taking the Backend Out of the Upload Path

    GeekBye records your screen and saves the video to your Google Drive. The first version shipped every recording through GeekBye's own servers on the way there; a release later, the file went straight from your machine to Drive, and the backend was demoted to holding a single pointer. The interesting part is how little code the 'direct, resumable' version actually contains β€” because the resumability came from deleting a proxy, not from writing one.

  • Born and Fixed in Twelve Minutes

    GeekBye v1.8.10's changelog says it fixed a crash while editing keyboard shortcuts. It did β€” but the crash was introduced and fixed in the same pull request, twelve minutes apart, and never reached a single user. The real story is the reliability cascade that produced it: a small, correct change to when shortcuts are suspended, and the React teardown bug that fell out of one line meant to make the editor safer.

  • Printing a Meeting to PDF Without a PDF Library

    GeekBye exports a meeting as a PDF, and there is no PDF library anywhere in the code. It renders HTML in an invisible browser window and prints it. That choice is the whole story: it made the feature easy to build and gave it every failure a real browser has β€” a white flash, a URL length limit, and a page break that cut screenshots in half. The fix for the ugliest bug was one line of CSS.

  • From OCR to Pixels Without Losing the Fallback

    GeekBye stopped reading your screenshots with OCR and started sending the actual image to vision models β€” which is the easy part. The instructive part is the optimization that skipped OCR entirely for vision users, quietly broke the fallback to non-vision models, and had to be walked back to a version where the safety net runs in parallel and costs nothing.

  • The Two Failure Modes of a Click-Through Overlay

    GeekBye's window floats on top of everything and lets your clicks pass through it β€” except where it has buttons. That is a two-sided contract, and v1.8.5 and v1.8.14 are what it looks like when each side breaks: one release where the overlay swallowed a system dialog, one where it stole your keystrokes. The winning fix for the second was deleting code.

  • Putting the Release in CI, Twice

    GeekBye v1.8.4 moved release builds to CI for macOS and Windows. What the changelog does not say is that we tried this once before, deleted it a month later over runner costs, and only made it stick the second time β€” because by then the release script already worked by hand.

  • Shipping Thirty Languages Without a Safety Net

    GeekBye v1.8.3 wired react-i18next and translated the whole app into 30 languages. The library part was routine. The interesting part is what was missing: no key-parity check and no string extractor β€” so hardcoded English leaked, a Danish typo shipped, and the changelog could not agree whether the app spoke 28, 29, or 30 languages.

  • Four Releases in Twenty-Six Hours: Language Plumbing and a Bridge Release

    GeekBye v1.7.6 through v1.8.1: a language setting that had never left the laptop, a Cmd+/ overlay that shows your real keybindings, a version with zero code changes β€” and the chicken-and-egg of migrating your auto-update feed.

  • Redesigning the Dashboard Around One Wave Chart

    GeekBye v1.8.2 turned the dashboard from a recording remote control into a read-only analytics view β€” a stats strip and a 7-day wave chart. Both signature elements were second drafts, shipped within twenty minutes of their first drafts, in the same afternoon.

  • The Login Page IS the Demo

    GeekBye v1.7.5 added a product screenshot to the login page and deleted it the same day β€” rebuilding it as real components instead. Plus: the user who was faster than the OCR, and what 25 style commits in one day actually look like.

  • Meetings You Can Actually Find Again: The Timeline Release

    GeekBye v1.7.3 replaced the meetings dropdown with a real timeline β€” human dates, search, a breadcrumb that says which meeting you are in. Underneath: an auto-select race, a screenshot that predates its own meeting, and five Windows fixes in twenty-eight minutes.

  • A Dropped Connection Shouldn't Crash Your Whole App β€” But Ours Did

    When our backend went offline mid-meeting, it didn't just pause transcription β€” it crashed the entire app. The cause was a single unhandled event, and the fix was ten lines. This is the release cluster that made GeekBye stay signed in and stay connected through the things that used to kill it.

  • The Anatomy of Shipping Software to Perfection: How Code Review Caught What Tests Couldn't

    Across the GeekBye v2 series, the same thing keeps happening: a fix passes every test on the developer's machine, and then code review proves it would have failed for almost everyone. This is the workflow behind nine releases β€” the review gate, the fix-first catches, and the test-before-ship discipline that turns "it works for me" into "it works."

  • Your Mac App Grants Microphone Access β€” Then Forgets It Every Launch

    GeekBye asked for microphone permission, you granted it, and it worked. Next launch: gone. And the app never showed up in System Settings β†’ Microphone at all. The culprit was a macOS security feature quietly running the app from a path that disappears β€” here is the diagnosis and the one-prompt fix.

  • How to Stream a Live Report Without the Flicker

    When your meeting ends, GeekBye's summary now fills in live instead of making you stare at a spinner. Getting streaming UI to feel calm instead of jittery took solving flicker twice β€” once for structured fields, once for markdown β€” and the second fix was a renderer we already owned.

  • One Codebase, Two Apps: How to White-Label Without Forking

    GeekBye and Pavleur are two differently-branded desktop apps built from a single repository β€” no fork, no duplicated codebase. Here is the build-time machinery that makes one codebase compile into two products, and the one-line bug that made our second app introduce itself by the wrong name.

  • One CSS Variable, Five Review Rounds, and a Swift Toolchain That Lied

    GeekBye v2.0.7 made the whole overlay adjustably translucent β€” which sounds like a one-line CSS change and absolutely was not. The real story is what code review caught: two surfaces that refused to fade, a recording bar that looked wrong at the same opacity, and a compiled binary that flip-flopped 672 bytes because our own docs told a reviewer the wrong Swift version.

  • We Deleted 5,000 Lines of Audio Code β€” and Transcripts Started Showing Up Twice

    GeekBye v1.6 tore out two on-device Swift transcribers and replaced them with one unified pipeline β€” a net deletion of over 5,000 lines, done while people were mid-meeting on the app. Then transcripts began appearing twice, because the bug moved to the one layer that still thought there were two engines.

  • The Safety Check That Made Our App Impossible to Quit

    Auto-update was the hardest feature we ever shipped β€” six releases in four days to stop it bricking the app. The worst bug was one we introduced trying to be careful: a 500-millisecond "safety" check that turned a failed update into a process you literally could not quit.

  • What a 127-Commit Release Actually Is

    GeekBye v1.7.0 was 127 commits in eleven days. From the outside that looks like a hundred little things. From the inside it was two big features braided together β€” and one of them got built in the wrong place, then torn out and rebuilt mid-release. Here is the anatomy of a large release.

  • The Earbuds Bug: When the Other Person Vanished From Our Transcript

    Dual-channel transcription worked perfectly on laptop speakers and over-ear headphones. Then someone plugged in earbuds, and the person they were talking to simply disappeared from the transcript β€” because Chromium silently muted our audio the instant they spoke. Eleven fixes failed. The twelfth changed the whole architecture.

  • Calm Software: Killing a Flickering Toggle and Teaching Chat to Say What Mode It's In

    Two small GeekBye releases, no headline features β€” just a settings toggle that stopped flickering and a chat assistant that finally tells you whether it answered in meeting mode or coding mode. This is what "calm software" actually costs, one detail at a time.

  • Live Transcription When the Firewall Blocks WebSockets

    Corporate networks love to allow HTTPS and quietly kill WebSocket upgrades. That silently breaks real-time transcription. GeekBye v2.0.8 falls back to a pure-HTTPS transport automatically β€” and shipping it uncovered a bug that would have made the whole feature useless.

  • Why Screen Recording Captures the Wrong Monitor (and Our Fix)

    On a two-monitor setup, GeekBye recorded and screenshotted the primary display no matter which screen you were working on. The fix was one small function β€” but the first version of it was wrong, and code review caught why.

  • The Day Our App DDoSed Itself

    A backlog of pending uploads, released all at once on startup, turned every GeekBye client into a small denial-of-service attack on our own servers. The fix β€” and the connection-liveness ladder it forced us to build β€” is one of the most useful things v2 taught us.

  • What a Version 2 Actually Takes: 206 Commits of Honest States

    GeekBye v2 was not a feature release. It was 206 commits aimed at a single idea: the app should never lie about its own state. Here is what that costs β€” including the one-line lockfile mistake that nearly stopped us from shipping any of it.

  • Why Your AI Notetaker Stops Recording Mid-Meeting

    Our own app ended two of our meetings while the other side was mid-sentence. The forensic trail led to a well-intentioned idle timer that could not hear anyone but you β€” and a second bug that could lock your whole desktop. Both fixed in GeekBye v2.0.9.

  • Why AI Transcription Mishears Technical Terms (and How We Fixed It)

    A live session heard "what is the pointer in C++" as "what is the point in life". Here is the forensic trail from that transcript to GeekBye v2.0.11 β€” keyterm biasing, a connection-dropping race, and the day our own fix backfired.

  • An AI Assistant for Interview Prep That Stays Discreet

    Rehearse answers, run mock interviews, and review your own performance afterward. Keep prep in reusable profiles. Private, on your Mac, no telemetry.

  • How to Choose an AI Meeting Assistant in 2026

    Most AI meeting assistants look great in a demo and fall apart in real use. Here are the 6 criteria that matter - and how to test them yourself.

  • GeekBye Privacy and Local Session Material

    Understand local session material, authenticated backend requests, encryption, video files, and privacy controls before sharing sensitive material.

  • Why Your AI Notetaker Stops on Bad Wi‑Fi

    AI notetakers love to die on flaky Wi‑Fi and lose your transcript. Here's why it happens, and how GeekBye stays connected and recovers itself.

  • Transcribe Lectures on Mac β€” Then Actually Study Them

    Transcribe lectures live on your Mac, then get searchable notes, summaries, and key points. Stays connected on campus Wi‑Fi. Stays on your device.

  • GeekBye v2: A Calmer, More Reliable AI Assistant

    GeekBye v2 stays connected through bad Wi-Fi, keeps your library on your device, and drops the surprise limits.

  • Ship Your Own AI Notetaker, White-Labeled

    Deliver a private, reliable AI meeting assistant under your own brand. Local-first by default, no telemetry, resilient on real-world networks.

  • 8 Best Cluely Alternatives: Free and Paid Options (2026)

    Compare 8 Cluely alternatives by price, platform, interview features, and privacy. Find a free open-source option or a paid assistant that fits your workflow.

  • How to Get Instant AI Help with One Keyboard Shortcut

    Press Cmd+Enter and get AI assistance for anything on your screen. No copy-pasting, no explaining - GeekBye sees what you see and helps immediately.

  • Stop Guessing How Your Interview Went

    GeekBye automatically analyzes your interviews and meetings, giving you detailed notes plus brutally honest feedback on how you performed.

  • GeekBye Listen: Current Data Handling

    Understand how Listen handles local session material, authenticated backend requests, encryption, and video files before sharing sensitive material.

  • Hide Private Notes During Screen Sharing: Zoom, Meet and Teams

    Check what others can see on Zoom, Google Meet, and Teams. Follow a recipient-view test for private notes and overlays, with capture limitations explained.

  • How to Change Language in GeekBye: Complete Multilingual Setup Guide

    Learn how to configure transcription and output languages in GeekBye. Supports 33 languages including English, Spanish, Chinese, Japanese, German, French, and more for global interview success.

  • Tired of Failing Interviews? Here's How to Finally Ace Them

    Discover why talented developers fail technical interviews and the AI powered system that helped hundreds land jobs at top tech companies in weeks, not months.

  • Can't Get Hired? Here's the Real Reason Why

    Hundreds of applications. Zero offers. Stop blaming the market. The real problem is how you perform when it matters most.

For questions about an article or its attribution, contact GeekBye.