frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Qwen3-Coder: Agentic coding in the world

https://qwenlm.github.io/blog/qwen3-coder/
310•danielhanchen•5h ago•109 comments

Why you can't color calibrate deep space photos

https://maurycyz.com/misc/cc/
53•LorenDB•2h ago•33 comments

More than you wanted to know about how Game Boy cartridges work

https://abc.decontextualize.com/more-than-you-wanted-to-know/
199•todsacerdoti•7h ago•19 comments

Algorithms for Modern Processor Architectures

https://lemire.github.io/talks/2025/sea/sea2025.html
68•matt_d•3h ago•5 comments

Android Earthquake Alerts: A global system for early warning

https://research.google/blog/android-earthquake-alerts-a-global-system-for-early-warning/
189•michaefe•8h ago•64 comments

Swift-erlang-actor-system

https://forums.swift.org/t/introducing-swift-erlang-actor-system/81248
227•todsacerdoti•7h ago•45 comments

We built an air-gapped Jira alternative for regulated industries

https://plane.so/blog/everything-you-need-to-know-about-plane-air-gapped
155•viharkurama•7h ago•94 comments

TapTrap: Animation‑Driven Tapjacking on Android

https://taptrap.click/
25•Bogdanp•2h ago•1 comments

Don't animate height

https://www.granola.ai/blog/dont-animate-height
294•birdculture•3d ago•166 comments

Subliminal learning: Models transmit behaviors via hidden signals in data

https://alignment.anthropic.com/2025/subliminal-learning/
127•treebrained•8h ago•30 comments

A media company demanded a license fee for an Open Graph image I used

https://alistairshepherd.uk/writing/open-graph-licensing/
96•cheeaun•2h ago•35 comments

TODOs aren't for doing

https://sophiebits.com/2025/07/21/todos-arent-for-doing
277•todsacerdoti•13h ago•166 comments

Comparing the Glove80 and Maltron Keyboards

https://tratt.net/laurie/blog/2025/comparing_the_glove80_and_maltron_keyboards.html
37•ltratt•4h ago•18 comments

Hegel Dust

https://www.bookforum.com/print/3201/hegel-dust-62209
13•pepys•1d ago•2 comments

Gemini North telescope discovers long-predicted stellar companion of Betelgeuse

https://www.science.org/content/article/betelgeuse-s-long-predicted-stellar-companion-may-have-been-found-last
105•layer8•10h ago•27 comments

Show HN: Phind.design – Image editor & design tool powered by 4o / custom models

https://phind.design
34•rushingcreek•9h ago•12 comments

I watched Gemini CLI hallucinate and delete my files

https://anuraag2601.github.io/gemini_cli_disaster.html
88•anuraag2601•7h ago•103 comments

Firebender (YC W24) Is Hiring

https://www.ycombinator.com/companies/firebender/jobs/yisDXr5-founding-engineer-generalist
1•kevo1ution•5h ago

CAMARA: Open-source API for telecom and 5G networks

https://www.gsma.com/solutions-and-impact/technologies/networks/operator-platform-hp/camara-2/
7•teleforce•2h ago•1 comments

Font Comparison: Atkinson Hyperlegible Mono vs. JetBrains Mono and Fira Code

https://www.anthes.is/font-comparison-review-atkinson-hyperlegible-mono.html
181•maybebyte•12h ago•121 comments

Tiny Code Reader: a $7 QR code sensor

https://excamera.substack.com/p/tiny-code-reader-a-7-qr-code-sensor
116•jamesbowman•10h ago•36 comments

Show HN: Compass CNC – Open-source handheld CNC router

https://www.compassrouter.com
114•camchaney•3d ago•25 comments

Fun with gzip bombs and email clients

https://www.grepular.com/Fun_with_Gzip_Bombs_and_Email_Clients
112•bundie•7h ago•36 comments

My favourite German word

https://vurt.org/articles/my-favourite-german-word/
62•taubek•3d ago•56 comments

OSS Rebuild: open-source, rebuilt to last

https://security.googleblog.com/2025/07/introducing-oss-rebuild-open-source.html
140•tasn•12h ago•48 comments

Many lung cancers are now in nonsmokers

https://www.nytimes.com/2025/07/22/well/lung-cancer-nonsmokers.html
109•alexcos•11h ago•135 comments

Gitea Private, Fast, Reliable DevOps Platform

https://about.gitea.com/
30•Bluestein•2d ago•31 comments

The Perils of an .xyz Domain

https://www.spotvirtual.com/blog/the-perils-of-an-xyz-domain
6•PaulHoule•1h ago•3 comments

Can Dave Hurwitz Save Classical Recording?

https://www.newyorker.com/culture/persons-of-interest/can-dave-hurwitz-save-classical-recording
6•FinnLobsien•1d ago•1 comments

First Hubble telescope images of interstellar comet 3I/ATLAS

https://bsky.app/profile/astrafoxen.bsky.social/post/3luiwnar3j22o
90•jandrewrogers•10h ago•20 comments
Open in hackernews

Reverse proxy deep dive: Why HTTP parsing at the edge is harder than it looks

https://startwithawhy.com/reverseproxy/2025/07/20/ReverseProxy-Deep-Dive-Part2.html
51•miggy•11h ago

Comments

pixl97•10h ago
Oh, and it can get messy and lead to exploits really quick.

Incorrect parsing and parsing differences between libraries can lead to exciting exploits.

Like what do you do when there is multiple of the same headers with odd line breaks?

GET /example HTTP/1.1 Host: bad-stuff-here Host: vulnerable-website.com

freeone3000•9h ago
It’s a good thing we have RFCs! For duplicate Host, you MUST respond with a 400. If the Host is different than the authority, Host must be ignored. If Host is not specified, it must be provided to upstream. See “Host” in RFC 7230:

https://www.rfc-editor.org/rfc/rfc7230#section-5.4

ranger_danger•8h ago
it's a good thing all RFCs are 100% specified with no ambiguities.

EDIT: Sorry I dropped my /s. I was only trying to say that unfortunately not all RFCs are sufficiently specified... and that I think saying "good thing we have RFCs" should not imply they will all be sufficiently specified, which is how I interpreted their comment... and didn't feel like typing all this out, but I guess it was necessary anyway.

necovek•7h ago
That's a very weird take as a reply on a bit that is sufficiently specified.
ranger_danger•7h ago
Sorry, what I was implying is that "It’s a good thing we have RFCs" doesn't mean that they ARE always sufficiently specified... even if this one is.
pixl97•7h ago
I mean, I was pointing out one in a chain of security failures reverse proxies have had. I could probably point out 20-30 other ones that have cropped up. Adding the binary complexity to H2 has really increased the number of these coming.
TechDebtDevin•10h ago
I've been building out a very large network of reverse proxies the last year. Very fun, and your article is very relatable. Go has been my friend. Been spending the last couple months testing trying to figure out all the weird things that can happen and its quite a bit.
bithavoc•6h ago
me too, what are you building?
TechDebtDevin•6h ago
A sort of boutique mobile-first proxy, with emphasis on geography spread/accuracy. I've been running my own proxies for a long time via friends and families networks, but in those instances security/safety wasn't as big of a deal. Yourself?
bithavoc•5h ago
that’s cool, I’m working on branded artifact delivery. Docker, Go, NPM, Pypi repos delivered on free custom sub-domains. Vultr BGP services doing the trick so far.
TechDebtDevin•5h ago
Awesome, that sounds like it could be really useful.
TechDebtDevin•4h ago
And my solution is primarily SOCKS5 reverse, on top of tailscale (moving away from ts, although no complaints) with lots of routing in the middle.