Thursday, February 20, 2025

Show HN: A new fork of OpenDeepResearcher with DeepSeek R1 https://ift.tt/8Hjr5bu

Show HN: A new fork of OpenDeepResearcher with DeepSeek R1 https://www.youtube.com/watch?v=aEOu9P4_2cU February 20, 2025 at 01:15AM

Wednesday, February 19, 2025

Show HN: Subtrace – Wireshark for Docker Containers https://ift.tt/hVSHQ07

Show HN: Subtrace – Wireshark for Docker Containers Hey HN, we built Subtrace ( https://subtrace.dev ) to let you see all incoming and outgoing requests in your backend server—like Wireshark, but for Docker containers. It comes with a Chrome DevTools-like interface. Check out this video: https://www.youtube.com/watch?v=OsGa6ZwVxdA , and see our docs for examples: https://ift.tt/XLlof79 . Subtrace lets you see every request with full payload, headers, status code, and latency details. Tools like Sentry and OpenTelemetry often leave out these crucial details, making prod debugging slow and annoying. Most of the time, all I want to see are the headers and JSON payload of real backend requests, but it's impossible to do that in today's tools without excessive logging, which just makes everything slower and more annoying. Subtrace shows you every backend request flowing through your system. You can use simple filters to search for the requests you care about and inspect their details. Internally, Subtrace intercepts all network-related Linux syscalls using Seccomp BPF so that it can act as a proxy for all incoming and outgoing TCP connections. It then parses HTTP requests out of the proxied TCP stream and sends them to the browser over WebSocket. The Chrome DevTools Network tab is already ubiquitous for viewing HTTP requests in the frontend, so we repurposed it to work in the browser like any other app (we were surprised that it's just a bunch of TypeScript). Setup is just one command for any Linux program written in any language. You can use Subtrace by adding a `subtrace run` prefix to your backend server startup command. No signup required. Try for yourself: https://ift.tt/XLlof79 https://ift.tt/VgWMDct February 19, 2025 at 04:59AM

Show HN: Streamer Emails – Quickly Find and Filter Twitch Streamers Emails https://ift.tt/nbfX1Vo

Show HN: Streamer Emails – Quickly Find and Filter Twitch Streamers Emails https://ift.tt/QTWsKmP February 19, 2025 at 03:33AM

Show HN: A GPU-accelerated binary vector index https://ift.tt/kO3vwMQ

Show HN: A GPU-accelerated binary vector index This is a vector index I built that supports insertion and k-nearest neighbors (k-NN) querying, optimized for GPUs. It operates entirely in CUDA and can process queries on half a billion vectors in under 200 milliseconds. The codebase is structured as a standalone library with an HTTP API for remote access. It’s intended for high-performance search tasks—think similarity search, AI model retrieval, or reinforcement learning replay buffers. The codebase is located at https://ift.tt/6dHvjpx . https://ift.tt/IhySljR February 17, 2025 at 06:15AM

Join Us Feb. 21 to Ride Local, Support Local – One Sip at a Time

Join Us Feb. 21 to Ride Local, Support Local – One Sip at a Time
By Sophia Scherr

We’re proud to announce a new civic partnership celebrating San Francisco Beer Week 2025 (Feb. 21 - March 2, 2025). In collaboration with Standard Deviant Brewing and San Francisco City Football Club (SFCFC), the SFMTA has authorized the creation of "Hop on Muni," a limited-edition India Pale Ale that pays homage to the city's public transit heritage. Join us on Friday, Feb. 21 to sip this new brew and take part in a Muni-themed beer crawl. Learn how to participate and why small businesses are at the heart of our partnership. “Hop on Muni” IPA Label is part of a collaboration with the SFMTA...



Published February 18, 2025 at 05:30AM
https://ift.tt/fXHFgL3

Tuesday, February 18, 2025

Show HN: Automate Expo QR Code Previews in GitHub PRs https://ift.tt/xiA8CcJ

Show HN: Automate Expo QR Code Previews in GitHub PRs Hey HN, Inspired by Vercel’s automated preview deployments, I built a GitHub Actions workflow that generates an Expo QR code per PR—so mobile previews are as easy as scanning a QR code. How it works: • Every PR triggers a GitHub Action • The action starts an Expo server • It posts a QR code in the PR comments for instant testing on mobile No more manually starting Expo. No more copying links. Just open a PR and scan the code. Full guide here: https://ift.tt/no715fE Would love to get feedback—how would you improve this workflow? https://ift.tt/no715fE February 17, 2025 at 10:03PM

Show HN: Kartoffels – Cellular Automata, Statistics, 32-bit RISC-V https://ift.tt/fmK1X9J

Show HN: Kartoffels – Cellular Automata, Statistics, 32-bit RISC-V https://ift.tt/HAegsmk February 17, 2025 at 10:21PM

Show HN: SQLite Graph – Graph database with Cypher queries (alpha, but working) https://ift.tt/lAMG0NU

Show HN: SQLite Graph – Graph database with Cypher queries (alpha, but working) I've been working on adding graph database capabilities ...