frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I made an app to live longer (free, open source, no tracking)

https://apps.apple.com/us/app/illll-live-longer/id6760903742
2•bdav24•1h ago•1 comments

Show HN: A (marginally) useful x86-64 ELF executable in 301 bytes

https://github.com/meribold/btry
31•meribold•2d ago•8 comments

Show HN: Is Hormuz open yet?

https://www.ishormuzopenyet.com/
392•anonfunction•11h ago•158 comments

Show HN: Orange Juice – Small UX improvements that make HN easier to read

http://oj-hn.com/
117•latchkey•14h ago•135 comments

Show HN: Guardians – Verify tool-using agent workflows before execution

https://github.com/metareflection/guardians
3•namin•2h ago•0 comments

Show HN: Agent Skill Based on "Open Source Security at Astral"

https://github.com/backnotprop/oss-security-audit
2•ramoz•2h ago•0 comments

Show HN: Stricline: A meta-framework to easily build robust CLI apps w/stricli

https://codeberg.org/reesericci/stricline/
2•reesericci•2h ago•0 comments

Show HN: Unicode Steganography

https://steganography.patrickvuscan.com
50•PatrickVuscan•1d ago•13 comments

Show HN: Go-Bt: Minimalist Behavior Trees for Go

https://github.com/rvitorper/go-bt
57•rvitorper•18h ago•8 comments

Show HN: 8d – Agent-Native Version Control, where Git breaks

4•8dazo•2h ago•3 comments

Show HN: TUI-use: Let AI agents control interactive terminal programs

https://github.com/onesuper/tui-use
43•dreamsome•16h ago•35 comments

Show HN: Skrun – Deploy any agent skill as an API

https://github.com/skrun-dev/skrun
51•frizull•20h ago•9 comments

Show HN: I pipe free sports streams into Jellyfin – no ads, just HLS

https://github.com/pcruz1905/hls-restream-proxy
102•pruz•20h ago•30 comments

Show HN: I built a navigation app that displays weather along the route

https://navimodo.com/
51•vkatluri•2d ago•22 comments

Show HN: Image to Music AI – Turn Any Photo into an Original Soundtrack

https://imagetomusicai.com/
4•airobus•5h ago•2 comments

Show HN: We built a camera only robot vacuum for less than 300$ (Well almost)

https://indraneelpatil.github.io/blog/2026/robot-vacuum/
103•indraneelpatil•3d ago•57 comments

Show HN: Brutalist Concrete Laptop Stand (2024)

https://sam-burns.com/posts/concrete-laptop-stand/
776•sam-bee•1d ago•233 comments

Show HN: An interactive map of Tolkien's Middle-earth

https://middle-earth-interactive-map.web.app/
283•frasermarlow•1d ago•66 comments

Show HN: AudioEditor – Free Online Audio Tools

https://audioeditor.org
5•Airyisland•6h ago•0 comments

Show HN: CCG – Block merges until devs prove they read their own diff

https://github.com/islandbytesio/commit_comprehension_gate
3•islandbytes•6h ago•0 comments

Show HN: Explore the Silk Roads through an interactive map

https://www.intofarlands.com/silk-roads-map
47•intofarlands•18h ago•6 comments

Show HN: 500k+ events/sec transformations for ClickHouse ingestion

https://github.com/glassflow/clickhouse-etl
11•super_ar•15h ago•3 comments

Show HN: AccessGuard – Scan your site for accessibility lawsuit risks

https://getaccessguard.com/
2•chille87•2h ago•0 comments

Show HN: Gemma 4 Multimodal Fine-Tuner for Apple Silicon

https://github.com/mattmireles/gemma-tuner-multimodal
224•MediaSquirrel•1d ago•27 comments

Show HN: A cartographer's attempt to realistically map Tolkien's world

https://www.intofarlands.com/atlasofarda
162•intofarlands•1d ago•31 comments

Show HN: I built a local data lake for AI powered data engineering and analytics

https://stream-sock-3f5.notion.site/Nile-Local-an-AI-Data-IDE-that-runs-on-your-local-machine-33b...
9•vpfaiz•11h ago•4 comments

Show HN: LadderRank: Rank anything with ELO ratings

https://ladderrank.app/ladder/77DTlDNxd2dsbmAAMO7o8/vote
2•douglaswlance•8h ago•0 comments

Show HN: Ghost Pepper – Local hold-to-talk speech-to-text for macOS

https://github.com/matthartman/ghost-pepper
464•MattHart88•2d ago•197 comments

Show HN: Composer – Diagram Your Codebase with MCP

https://www.usecomposer.com/
3•olivergrabner•9h ago•0 comments

Show HN: Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V

https://github.com/roscopeco/anos
115•noone_youknow•5d ago•31 comments
Open in hackernews

Show HN: Gecit – DPI bypass using eBPF sock_ops, no proxy or VPN

https://github.com/boratanrikulu/gecit
9•boratanrikulu•3d ago

Comments

btdmaster•3d ago
That's so cool.

This is interestingly very similar to domain fronting, except in this case the server doesn't need to work around it because it will still see the correct SNI.

Do DPI servers in your experience only check the first SNI packet for a given connection?

boratanrikulu•2d ago
Thanks! Yes, the DPI systems I've tested against only look at the first ClientHello in a connection. They don't do full TCP reassembly. The fake packet arrives first (eBPF fires synchronously before the app sends data), DPI records that SNI, and the real ClientHello passes through unchecked.

More sophisticated DPI (like China's GFW) does reassembly and would likely catch this. But for simpler stateless DPI, it works.

Good analogy with domain fronting. The key difference is exactly what you said: the server sees the real SNI, so no server-side cooperation needed.