frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: CADara – I made an open-source in-browser CAD

https://cadara.app
7•ttouch•1h ago•2 comments

Show HN: GETadb.com – every GET request creates a DB

https://www.getadb.com/
23•nezaj•8h ago•31 comments

Show HN: Git for AI Agents

https://github.com/regent-vcs/re_gent
92•doshay•10h ago•44 comments

Show HN: I mirrored war.gov's UAP archive in pure Rail with verifiable bytes

https://ledatic.org/aliens
2•zem0g•1h ago•0 comments

Show HN: TRUST – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
155•wojtczyk•1d ago•80 comments

Show HN: tltv – Federation protocol for 24/7 TV channels

https://timelooptv.org/
3•tltv•5h ago•0 comments

Show HN: A lie detector game that reads your pulse through your phone camera

https://kouh.me/tells
3•mrkn1•6h ago•0 comments

Show HN: We built a tool that generates 3D objects with editable, separate parts

https://nova3d.xyz/
5•baigy•7h ago•1 comments

Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem

https://tilde.run/
196•ozkatz•2d ago•131 comments

Show HN: UltraCompress – first mathematically lossless 5-bit LLM compression

https://github.com/sipsalabs/ultracompress
4•mounnar•7h ago•0 comments

Show HN: Rejected by YC

https://rejectedbyyc-ten.vercel.app/
4•leonagano•8h ago•3 comments

Show HN: Agent-skills-eval – Test whether Agent Skills improve outputs

https://github.com/darkrishabh/agent-skills-eval
73•darkrishabh•1d ago•36 comments

Show HN: Stage CLI – An easier way of reading your AI generated changes locally

https://github.com/ReviewStage/stage-cli
44•cpan22•1d ago•31 comments

Show HN: Airbyte Agents – context for agents across multiple data sources

148•mtricot•3d ago•46 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
157•oahmadov•2d ago•44 comments

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code

https://github.com/kubetail-org/kstack
22•andres•1d ago•7 comments

Show HN: AnamDB – An AI-native, differentiable Datalog engine written in Rust

https://github.com/jam5991/anam
10•jam5991•22h ago•1 comments

Show HN: Crit – local review tool for agent plans and code diffs

https://crit.md/
10•tomasz-tomczyk•11h ago•3 comments

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions

https://github.com/olivier-ls/php-fts
86•asmodios•2d ago•23 comments

Show HN: Runs AI coding agents inside isolated Docker containers

https://github.com/marvincaspar/agent-sanbox
6•matt_callmann•16h ago•0 comments

Show HN: Hallucinopedia

http://halupedia.com/
301•bstrama•2d ago•266 comments

Show HN: NanoCorp – Create autonomous companies run by AI

https://www.nanocorp.so
6•AdrienBA•12h ago•5 comments

Show HN: HeatSpectra: Realtime 3D Surface Heat Simulation

https://github.com/tsun3doku/HeatSpectra
3•tsun3doku•22h ago•0 comments

Show HN: Corsproxy – Fix CORS Errors Instantly – Free for Development

https://corsproxy.io/
5•mariusbolik•16h ago•4 comments

Show HN: Disputron – AI small claims court for petty disputes

https://disputron.ai
8•etaheri•1d ago•4 comments

Show HN: Explore color palettes inspired by 3000 master painter artworks

https://paletteinspiration.com/
211•ouli•3d ago•82 comments

Show HN: DiffCAD, a FreeCAD workbench to review model changes like code

https://github.com/eblanshey/DiffCAD
6•eblanshey•1d ago•1 comments

Show HN: Apple's SHARP running in the browser via ONNX runtime web

https://github.com/bring-shrubbery/ml-sharp-web
182•bring-shrubbery•5d ago•46 comments

Show HN: DAG-based Kanji learning through components

https://mykanji.app/
3•barisozmen•1d ago•0 comments

Show HN: Agentctl, a local control plane for coding agents

https://github.com/chocks/agentctl
2•chocks•22h ago•0 comments
Open in hackernews

Show HN: tltv – Federation protocol for 24/7 TV channels

https://timelooptv.org/
3•tltv•5h ago
I spent six years trying to build a tv channel server. rewrote it eight times. flask, fastapi, ffmpeg, gstreamer, named pipes. every version got more complicated and none of them worked right.

turns out I was building the wrong thing. the thing I actually wanted was a protocol.

so tltv is that. a channel is an ed25519 key pair. you sign your metadata with it. you serve hls video from wherever you want. your public key becomes a tltv:// address that anyone can tune into.

relay nodes can re-serve your stream but they can't modify it. they verify signatures on everything. you can move servers and keep your channel because the key is the identity, not the hostname. nodes find each other through peer exchange. no central registry.

the cli is probably the fastest way to see what I mean:

  curl -fsSL timelooptv.org/install | sh

  tltv keygen

  tltv server test --name "my channel" -k TV*.key
that's a fully compliant origin server. pure go, generates smpte bars with audio, no ffmpeg. one binary, ~20mb of ram. there's also a full gstreamer-based server (cathode), a web viewer (phosphor), and bridge/relay servers in the cli. everything mit licensed.

live demo at https://demo.timelooptv.org

https://github.com/tltv-org