frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I simulated closing the Strait of Hormuz on real oil trade data

https://globaloilnetwork.staffinganalytics.io/
28•eliotho•1d ago•14 comments

Show HN: Max Studio Tools – C++ DSP Modules for Max and Ableton Live

https://github.com/apresta/max-studio-tools
8•apresta•1h ago•0 comments

Show HN: Echo – Fable-level results at 1/3 the cost using open-weight models

449•adam_rida•1d ago•214 comments

Show HN: Open-weight OCR got so cheap I had to share it

https://www.openparser.dev/cheapest-ocr
4•TimurKramar•2h ago•1 comments

Show HN: Palmier Pro – Open-source macOS video editor built for AI

https://github.com/palmier-io/palmier-pro
183•harrisontin•1d ago•32 comments

Show HN: Jixp, a Lisp DSL for describing Jax neural nets

https://github.com/baileywickham/jixp
4•baileywickham•6h ago•0 comments

Show HN: OneCLI – OSS credential gateway that keeps secrets out of AI agents

https://github.com/onecli/onecli
103•Jonathanfishner•1d ago•31 comments

Show HN: X402vps – Docker containers for AI agents, paid per hour with USDC

https://x402vps.com
12•z1z2z3•10h ago•0 comments

Show HN: Crisp – Open-source display manager for macOS (DDC, HiDPI, presets)

https://github.com/didriksg/Crisp
3•didriksg•6h ago•0 comments

Show HN: Claude-thermos keeps your Claude session warm for you

https://github.com/izeigerman/claude-thermos
106•s0ck_r4w•1d ago•83 comments

Show HN: A representation of a chapter of your life through music

https://www.cuecard.live
2•alicoredi•4h ago•2 comments

Show HN: Audio Player with "Binaural Beats" tuned to the same key as your music

https://github.com/henrygabriels/binaural-studio
17•gabriel666smith•12h ago•4 comments

Show HN: Remux – an open-source tmux workspace designed for iPhone

https://github.com/h3nock/remux
97•bitwise42•1d ago•34 comments

Show HN: Corv v1.1 is out! Solving SSH execution for AI agents

https://github.com/khalid-src/corv-client
2•khalid_0002•5h ago•0 comments

Show HN: Uploads.sh – the missing upload command for coding agents (open-source)

https://uploads.sh/
9•zachdunn•10h ago•0 comments

Show HN: Trifle – Open-source analytics that stores answers, not events

https://trifle.io/
49•iluzone•2d ago•13 comments

Show HN: PBasic is a modern BASIC interpreter with a retro vibe

https://apps.apple.com/ca/app/pbasic/id6789459761?mt=12
2•johnrpenner•5h ago•0 comments

Show HN: Sourceminder.org - token-efficient code search

https://sourceminder.org/
4•ebcode•5h ago•1 comments

Show HN: I made Rung a daily word/clue game of nerve

https://dailyrung.com/
4•amaanster•6h ago•3 comments

Show HN: Poddie – A local-first, text-based video and podcast editor

https://github.com/SinanTang/poddie
2•sinan_tang•6h ago•0 comments

Show HN: An AI agent skill repo built around evals, not demos

https://github.com/sourishkrout/skills
3•sourishkrout•6h ago•0 comments

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
1005•starfallg•2d ago•234 comments

Show HN: Drive your real logged-in Chrome from Claude Code and Codex (MCP)

https://github.com/vitalysim/browser-bridge
2•vitalysim•6h ago•0 comments

Show HN: LanView CLI – Fixing the localhost problem when testing on your phone

https://github.com/PrashantDhuri08/lanview-cli
2•prashantdhuri08•6h ago•0 comments

Show HN: A 100% client-side steganography tool to hide messages in images

https://zlvox.com/blog/free-steganography-tools-2026-hide-messages-in-images
3•mrdisloyal•6h ago•0 comments

Show HN: Compile computation graphs into transformer weights – no training

https://github.com/physicsrob/torchwright
2•physicsrob•6h ago•0 comments

Show HN: Millenium Bug, retro-banking CSS stylesheet

https://mtct.github.io/millenium-bug/demo/index.html
2•mtct88•6h ago•0 comments

Show HN: Rabbit Hole. A daily word chain puzzle (rhymes, synonyms, antonyms)

https://rabbit-hole-game.com/
3•nwarner0•7h ago•1 comments

Show HN: I vibe coded tinypopups – a simple tool for in-app popups and feedback

https://tinypopups.com/
2•ibuildproducts•7h ago•2 comments

Show HN: Open-source AI scientist for semi-autonomous theory discovery

https://github.com/imbue-ai/catalyst
2•danielmewes•7h ago•0 comments
Open in hackernews

Show HN: Rabbit Hole. A daily word chain puzzle (rhymes, synonyms, antonyms)

https://rabbit-hole-game.com/
3•nwarner0•7h ago

Comments

nwarner0•7h ago
Solo project. I'm a .NET developer doing some new work but mainly maintaining legacy sites so this was my excuse to play with the Cloudflare stack (Pages, Workers, D1, KV). The game: get from a start word to a target word in as few hops as possible e.g. COLD → HOT (antonym) → SPOT (rhyme) → PLACE (synonym) → PLAICE (rhyme). Each hop must be a rhyme, synonym or antonym of the previous word. All the puzzles are human created (mainly by my wife!) so there is at least one route that works. I tried creating from scripts that daisy-chained words but the results were just not fun for some reason.

The main problem turned out to be validation. I hugely underestimated this! The validation stack ended up as: blocklist (offensive words), already-used check, stored-path check, connections payload, human-approved matches from previous games (we queue all of these to audit), WordNet subset, ConceptNet subset, extra-pairs, lemma exceptions, hypernyms, troponyms, non-rhotic rhymes. If no match found after all those client side checks we hit some APIs (Datamuse and RhymeBrain in both directions). If all else fails lemma suffix-strip, prefix-antonym check and a local rhyme check. Despite those checks there are some obvious connections that still get rejected but hopefully enough accepted ones that the player does not give up. I was quite pleased with the share dynamic; the recipient will be presented with a challenge where their result will be compared with yours at the end.

It's free, no signup, no ads. Honest feedback would be great and anything constructive even better.