Showing posts with label Hacker News. Show all posts
Showing posts with label Hacker News. Show all posts

Wednesday, August 13, 2025

Show HN: Gitego – Automatic Git identity switcher https://ift.tt/Lw1BevC

Show HN: Gitego – Automatic Git identity switcher # gitego: Automatic Git Identity Switcher I was juggling work and personal GitHub accounts with separate PATs for a long time and constantly forgetting to switch between them. Needed a way to commit to personal and work projects without the mental overhead of managing two Git identities. My issue: ``` cd ~/work/important-project git push # Authentication failed - using personal PAT for work repo ``` Then the dance: ``` git config user.email "work@company.com" # Update Git credential helper or remember which PAT to use # Rinse and repeat every time I switch contexts ``` My solution (I'm sure others exist?) ``` # One-time setup gitego add work --name "John Doe" --email "john@company.com" --pat "ghp_work_token" gitego add personal --name "John" --email "john.personal@gmail.com" --pat "ghp_personal_token" gitego auto ~/work/ work gitego auto ~/personal/ personal # Now it just works cd ~/work/any-project git commit -m "fix bug" && git push # Uses work identity + PAT automatically cd ~/personal/side-project git commit -m "new feature" && git push # Uses personal identity PAT automatically ``` How It Works - Uses Git's native `includeIf` for identity switching - Acts as a Git credential helper for automatic PAT selection - Stores PATs securely in your OS keychain - Single Go binary, works on macOS/Windows/Linux No more context switching overhead. Just cd and commit. GitHub: https://ift.tt/DVPZCc3 Install: go install github.com/bgreenwell/gitego@latest Feedback welcome! Keep in mind, I built this as a personal tool, making it public in case others have the similar problems and can benefit from the solution! https://ift.tt/DVPZCc3 August 14, 2025 at 12:49AM

Show HN: Real-time privacy protection for smart glasses https://ift.tt/vjazbBI

Show HN: Real-time privacy protection for smart glasses I built a live video privacy filter that helps smart glasses app developers handle privacy automatically. How it works: You can replace a raw camera feed with the filtered stream in your app. The filter processes a live video stream, applies privacy protections, and outputs a privacy-compliant stream in real time. You can use this processed stream for AI apps, social apps, or anything else. Features: Currently, the filter blurs all faces except those who have given consent. Consent can be granted verbally by saying something like "I consent to be captured" to the camera. I'll be adding more features, such as detecting and redacting other private information, speech anonymization, and automatic video shut-off in certain locations or situations. Why I built it: While developing an always-on AI assistant/memory for glasses, I realized privacy concerns would be a critical problem, for both bystanders and the wearer. Addressing this involves complex issues like GDPR, CCPA, data deletion requests, and consent management, so I built this privacy layer first for myself and other developers. Reference app: There's a sample app (./examples/rewind/) that uses the filter. The demo video is in the README, please check it out! The app shows the current camera stream and past recordings, both privacy-protected, and will include AI features using the recordings. Tech: Runs offline on a laptop. Built with FFmpeg (stream decode/encode), OpenCV (face recognition/blurring), Faster Whisper (voice transcription), and Phi-3.1 Mini (LLM for transcription analysis). I'd love feedback and ideas for tackling the privacy challenges in wearable camera apps! https://ift.tt/mIl6Asw August 12, 2025 at 01:10AM

Show HN: Mock Interviews for Software Engineers https://ift.tt/QtL7DFS

Show HN: Mock Interviews for Software Engineers https://ift.tt/pDivL5R August 14, 2025 at 04:32AM

Show HN: Emailcore – write chiptune in plain text in the browser https://ift.tt/IxVsTym

Show HN: Emailcore – write chiptune in plain text in the browser I tried using the AudioContext API to make the most primitive browser-based multi-voice chiptune tracker conceivable. No frameworks or external dependencies were used, and the page source ought to be very readable. Songs are written in plain, 7-bit safe text. Every line makes a voice/channel. The examples given on the page should hopefully illustrate every feature, but as a quick overview: Sounds are specified using Anglo-style note names, with flat (black) keys being the lowercase version of the white key above so as to maintain one character per note. Hence, a full chromatic scale is AbBCdDeEFgGa. Every note name is interpreted as the closest instance of that note to the preceding one. +- skips up or down an octave, ~ holds the previous note for a beat, . skips a beat, 01234 chooses one of 5 preset timbres, <> makes beats slower or faster (for all channels), () makes the current channel louder or quieter. All other characters are ignored. If you come up with a good tune, please share it in the comments! https://ift.tt/HxzjCQU August 14, 2025 at 03:23AM

Tuesday, August 12, 2025

Show HN: Nocturne – Your Car Thing's Second Chapter https://ift.tt/Jk6Zf4j

Show HN: Nocturne – Your Car Thing's Second Chapter Hello HN! Recently, we have released Nocturne 3.0.0, which is a complete replacement for the (now unusable) Spotify Car Thing stock firmware. We're proud to eliminate more e-waste in the world. # Changes from v2 - Bluetooth tethering for car use (no more Raspberry Pi in the car) - Full graphics acceleration - Native Spotify login (no more client ID/secret) - Start DJ from the Car Thing - Podcast support - Gesture control - New settings - Boot to Now Playing - Spotify Connect device switcher - Support for Japanese, Simplified Chinese, Traditional Chinese, Korean, Arabic, Devanagari, Hebrew, Bengali, Tamil, Thai, Cyrillic, Vietnamese, and Greek - Full knob control support - Local file support - Preset button support - Status bar on home (shows time & Bluetooth/Wi-Fi) - Auto brightness - Hold settings button for power menu - Lock screen showing time full screen (press settings button) - DJ preset binding (hold preset button while DJ is playing in Now Playing) - Spotify mixes in Radio tab (Discover Weekly, daily mixes, etc.) - OTA updates - + MUCH more (this is just the important stuff!) # Flashing A guide to flashing Nocturne 3.0.0 is in the README. Bluetooth will work out of the box, or choose an alternative in the Setting up Network section. Hotspot capability from your phone and plan are required for Bluetooth. # Notes This wouldn’t be possible without our donors and the rest of the Nocturne Team. We hope you’ll enjoy it, as we've spent thousands of hours working on it! Consider buying the team a coffee if you can https://ift.tt/FqAbhEc https://ift.tt/91C0WfS https://usenocturne.com August 12, 2025 at 10:53PM

Show HN: I accidentally built a startup idea validation tool https://ift.tt/xnEdvAI

Show HN: I accidentally built a startup idea validation tool I was working on validating some of my own project ideas. While trying to find how to validate my idea, I realized the process itself could be turned into a tool. A few late nights later, I had something that takes any startup idea, fetches discussions, summarizes sentiment, and gives a quick “validation score.” It’s very rough, but it works, and it’s already making me rethink a few of my own ideas. It's still a work in progress. I don't actually know what I'm doing, but I know it's worth it. Honest feedback welcomed! Live demo here: https://validationly.com/ https://validationly.com/ August 13, 2025 at 01:59AM

Show HN: Minimal Claude-Powered Bookmark Manager https://ift.tt/iHDOmow

Show HN: Minimal Claude-Powered Bookmark Manager https://tryeyeball.com/ August 12, 2025 at 11:34PM

Monday, August 11, 2025

Show HN: A Choose-Your-Own-Adventure Constructed by Claude Code https://ift.tt/OBUySAN

Show HN: A Choose-Your-Own-Adventure Constructed by Claude Code https://ift.tt/P0Qi8EY August 12, 2025 at 03:49AM

Show HN: Play Pokémon to unlock your Wayland session https://ift.tt/hMLfuxQ

Show HN: Play Pokémon to unlock your Wayland session Hello everyone! I've created a gameboy emulator to unlock my Wayland session and wanted to share this project to everyone here! I've been a Linux enthusiast since I was a kid. What always captivated me was the freedom to customize my system exactly the way I wanted. With Wayland, we've reached an incredible level of performance. It's like turning your operating system into a video game! I've always been fascinated by the blend of fun and the serious, technical nature of an OS. That’s what inspired me to create this project. I started by studying Wayland, its protocol and how to build a compositor. Then I became particularly intrigued by the concept of a locker, which reminded me a bit of an escape game. That’s when I thought: how cool would it be to solve a puzzle to unlock your session, instead of just typing a password? Since I’ve worked with emulators in the past and I’m a huge Pokémon fan, the idea of building the puzzle around that game came to me instantly! Technically, the locker code and the wayland protocol have been implemented from scratch ( using EGL and wl_keyboard_listeners ). My locker runs a version of the gbcc emulator modded by myself. This emulator waits for one precise value to be set in a given memory address. I have modded the Pokémon game to my needs: when the password is good, I put the good value in the good memory address so the emulator knows it needs to unlock the session. Hope you will appreciate this project! https://ift.tt/VDbwTIs August 10, 2025 at 05:45PM

Show HN: ToDiagram AI – From text to diagram, fast and easy https://ift.tt/4aNFpKs

Show HN: ToDiagram AI – From text to diagram, fast and easy I’ve been working on creating diagrams from JSON, YAML and similar formats for about three years. Over time it has grown into a general-purpose diagramming tool. With the recent addition of the MCP Server and ToDiagram Chat, I’m optimistic about where it’s headed. You can use your own OpenAI key, stored locally, without needing to sign up and generate diagrams by using natural language. https://ift.tt/RT38rjI August 12, 2025 at 01:22AM

Show HN: pywebview 6 is out https://ift.tt/eE3KsUp

Show HN: pywebview 6 is out I am happy to announce the next major version of pywebview, a lightweight Python framework for building modern desktop applications with web technologies. The new version introduces powerful state management, network event handling, and significant improvements to Android support. See https://ift.tt/1xuAUvr for details. https://ift.tt/1xuAUvr August 12, 2025 at 12:07AM

Sunday, August 10, 2025

Show HN: A Sinclair ZX81 retro web assembler+simulator https://ift.tt/d3EQeVw

Show HN: A Sinclair ZX81 retro web assembler+simulator Lots of fun to do. I would have not taken the time without the speedup provided by Claude. https://andyrosa.github.io/Sinclaude/simulator.html August 11, 2025 at 06:14AM

Show HN: I analyzed why my post got 0 votes and built this https://ift.tt/iRSr7sD

Show HN: I analyzed why my post got 0 votes and built this Maybe you've had this experience too: You build something you're proud of, post it on HN with your low-karma account, and... crickets. Zero votes, zero comments. That's what happened to me last Monday. I posted my coding tool (XaresAICoder - an open-source browser IDE) that I'd built with AI assistance. In my mind it was revolutionary. On HN? Completely ignored. Then I wondered: How many other potentially great projects suffer the same fate? What "hidden gems" are we missing because they come from low-karma accounts? So I built hn-gems (with help from Claude and my own XaresAICoder). It works in two stages: Continuous scanning: Analyzes all new HN posts from accounts with <100 karma, scoring them for technical merit, originality, and problem-solving value AI curation: Every 12 hours, an LLM deep-dives into the top 10 candidates, checking GitHub repos, documentation quality, and actual utility The result is what you see at the link - a curated list of overlooked quality posts that deserve more attention. The interesting part: I barely wrote any criteria. I just told Claude "open source good, pure commercial bad, working demos good" and let it figure out the scoring. The AI assessment varies slightly each run, which actually makes it more interesting. GitHub: https://github.com/DG1001/hn-gems Is this useful? Do you have ideas how to improve this tool if necessary? (And yes, my XaresAICoder that got 0 votes? The AI thinks it's actually pretty good. I'll take that as a win.) https://hn-gems.sensem.de/ August 11, 2025 at 01:05AM

Show HN: Bolt – A super-fast, statically-typed scripting language written in C https://ift.tt/G3euLX0

Show HN: Bolt – A super-fast, statically-typed scripting language written in C I've built many interpreters over the years, and Bolt represents my attempt at building the scripting language I always wanted. This is the first public release, 0.1.0! I've felt like most embedded languages have been moving towards safety and typing over years, with things like Python type hints, the explosive popularity of typescript, and even typing in Luau, which powers one of the largest scripted evironments in the world. Bolt attempts to harness this directly in the lagnauge rather than as a preprocessing step, and reap benefits in terms of both safety and performance. I intend to be publishing toys and examples of applications embedding Bolt over the coming few weeks, but be sure to check out the examples and the programming guide in the repo if you're interested! https://ift.tt/XlHxvcC August 10, 2025 at 11:23PM

Show HN: A reading to remind us to keep raising our voices against oppression https://ift.tt/e4C2KkE

Show HN: A reading to remind us to keep raising our voices against oppression https://ift.tt/AwYK2rW August 10, 2025 at 05:54PM

Show HN: Play Brainrot Games Online https://ift.tt/b8TBz4L

Show HN: Play Brainrot Games Online Brainrot Game is a free-to-play, browser-based hub that serves up instant, meme-fueled mini-games—think Italian sharks in sneakers, Tralalero Tralala remix levels, and Tung Tung Sahur puzzle chaos—all without downloads, logins, or paywalls. Every Brainrot game runs on lightweight HTML5 technology, so you can jump straight into the action on Chromebooks, phones, or PCs at school, work, or home. Updated weekly with new viral characters and trending sound bites, Brainrot Game keeps the dopamine hits coming and the brainrot growing. Is there any other game you want to play? https://brainrot-game.xyz August 10, 2025 at 03:21PM

Show HN: AI Coloring Pages Generator https://ift.tt/tdSuCsJ

Show HN: AI Coloring Pages Generator Hey Ycombinator News community! I'm excited to share AI Coloring Pages Generator with you all! As a parent myself, I noticed how hard it was to find fresh, engaging coloring pages that my kids actually wanted to color. So I built this AI-powered tool that lets anyone create custom coloring pages in seconds - just describe what you want and watch the magic happen! Whether it's "unicorn princess," "summer theme," or "cute kittens," the AI generates beautiful, printable coloring pages that are perfect for kids and adults alike. The best part? It's completely free to use! I've already seen families, teachers, and even therapists using it to create personalized activities. There's something special about seeing a child's face light up when they get to color exactly what they imagined. Would love to hear what you think and what kind of coloring pages you'd create! https://ift.tt/QTHaKt8 August 10, 2025 at 01:04PM

Saturday, August 9, 2025

Show HN: I made a Ruby on Rails-like framework in PHP (Still in progress) https://ift.tt/eJzKI51

Show HN: I made a Ruby on Rails-like framework in PHP (Still in progress) Play with it and let me know what you think of the architecture & how we can improve it with PHP native functions + speed. https://ift.tt/cUMtdLn August 9, 2025 at 06:35PM

Show HN: Keywords for Self-Talk https://ift.tt/QL5kFi1

Show HN: Keywords for Self-Talk https://plastithink.com August 9, 2025 at 12:59PM

Friday, August 8, 2025

Show HN: I made a safe anonymous message app https://ift.tt/IXUycdA

Show HN: I made a safe anonymous message app Subrosa is an anonymous message-sharing platform where anyone can visit your unique link and write whatever’s on their mind: secret confessions, honest thoughts, or wild opinions, completely anonymously. You get to read what people say about you on your personal dashboard. What sets this apart is the AI-powered moderation that filters out hate speech, abuse, and spam before it ever reaches you, creating a safe space for honesty without toxicity. This is an alpha release with a basic UI as we focus on testing core functionality. Try it out, share your link, and experience raw, honest, and clean anonymous messaging like never before. To test the moderation you can send messages to me at https://subrosa.vercel.app/martianmanhunter Relevant links: https://subrosa.vercel.app/ : Homepage https://subrosa.vercel.app/signup https://subrosa.vercel.app/login https://subrosa.vercel.app/dashboard : Where you can see the messages you received https://subrosa.vercel.app/[username] : Your personal link that you can post on your socials etc. to attract comments. P.S. Please dont share personal or sensitive information. https://subrosa.vercel.app/ August 9, 2025 at 06:50AM

Show HN: Gitego – Automatic Git identity switcher https://ift.tt/Lw1BevC

Show HN: Gitego – Automatic Git identity switcher # gitego: Automatic Git Identity Switcher I was juggling work and personal GitHub accounts...