frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Baby is healed with first personalized gene-editing treatment

https://www.nytimes.com/2025/05/15/health/gene-editing-personalized-rare-disorders.html
670•jbredeche•10h ago•289 comments

Cracked - method chaining/CSS-style selector web audio library

https://github.com/billorcutt/i_dropped_my_phone_the_screen_cracked
33•stephenhandley•2h ago•7 comments

A leap year check in three instructions

https://hueffner.de/falk/blog/a-leap-year-check-in-three-instructions.html
229•gnabgib•6h ago•79 comments

Teal – A statically-typed dialect of Lua

https://teal-language.org/
77•generichuman•4h ago•47 comments

Ollama's new engine for multimodal models

https://ollama.com/blog/multimodal-models
66•LorenDB•3h ago•7 comments

Initialization in C++ is bonkers (2017)

https://blog.tartanllama.xyz/initialization-is-bonkers/
116•todsacerdoti•7h ago•87 comments

The Awful German Language

https://faculty.georgetown.edu/jod/texts/twain.german.html
9•nalinidash•47m ago•9 comments

Sitting for a long time shrinks your brain even if you exercise

https://alz-journals.onlinelibrary.wiley.com/doi/full/10.1002/alz.70157
50•codexon•4h ago•24 comments

"Goodwill", key member of the SoCal Python Community has passed away

https://socalpython.org/in-memoriam-michael/
7•rdegges•55m ago•2 comments

Launch HN: Tinfoil (YC X25): Verifiable Privacy for Cloud AI

115•FrasiertheLion•12h ago•82 comments

Tek – A music making program for 24-bit Unicode terminals

https://codeberg.org/unspeaker/tek
105•smartmic•9h ago•13 comments

The unreasonable effectiveness of an LLM agent loop with tool use

https://sketch.dev/blog/agent-loop
269•crawshaw•9h ago•169 comments

Dia – An Early Review

https://www.fldr.zip/blog/dia-review
17•wyxuan•2d ago•2 comments

NASA keeps ancient Voyager 1 spacecraft alive with Hail Mary thruster fix

https://www.theregister.com/2025/05/15/voyager_1_survives_with_thruster_fix/
167•nullhole•4h ago•22 comments

Lock-Free Rust: How to Build a Rollercoaster While It's on Fire

https://yeet.cx/blog/lock-free-rust/
31•r3tr0•2d ago•6 comments

GTK Krell Monitors

https://gkrellm.srcbox.net/
36•Deeg9rie9usi•2d ago•12 comments

The current state of TLA⁺ development

https://ahelwer.ca/post/2025-05-15-tla-dev-status/
102•todsacerdoti•10h ago•23 comments

Rolling Highway

https://en.wikipedia.org/wiki/Rolling_highway
25•taubek•2d ago•13 comments

Bringing 3D shoppable products online with generative AI

https://research.google/blog/bringing-3d-shoppable-products-online-with-generative-ai/
3•bookofjoe•2d ago•1 comments

A Tiny Boltzmann Machine

https://eoinmurray.info/boltzmann-machine
229•anomancer•15h ago•39 comments

Show HN: Easel – Code multiplayer games like singleplayer

https://easel.games/about
62•BSTRhino•1d ago•38 comments

Náhuatl and Mayan Language Renaissance Occurring in Mexico

https://yucatanmagazine.com/mayan-language-renaissance/
3•bryanrasmussen•2d ago•0 comments

Malicious compliance by booking an available meeting room

https://www.clientserver.dev/p/malicious-compliance-by-booking-an
321•jakevoytko•15h ago•299 comments

Meta Battles an 'Epidemic of Scams' as Criminals Flood Instagram and Facebook

https://www.wsj.com/tech/meta-fraud-facebook-instagram-813363c8
16•erehweb•1h ago•5 comments

Show HN: Min.js style compression of tech docs for LLM context

https://github.com/marv1nnnnn/llm-min.txt
160•marv1nnnnn•15h ago•46 comments

Huawei is spamming open source community for its Harmony ecosystem (See Comment)

https://github.com/search?q=%22Proposal+for+OpenHarmony+Adaptation+of%22&type=issues
21•fernvenue•46m ago•5 comments

"The Mind in the Wheel" lays out a new foundation for the science of mind

https://www.experimental-history.com/p/new-paradigm-for-psychology-just
58•CharlesW•10h ago•54 comments

Fetii (YC S22) Is Hiring

https://www.ycombinator.com/companies/fetii/jobs/QDjleWs-senior-operations-manager-fetii
1•Mattiommi•11h ago

Windsurf SWE-1: Our First Frontier Models

https://windsurf.com/blog/windsurf-wave-9-swe-1
23•arittr•10h ago•1 comments

Improving Naval Ship Acquisition

https://www.construction-physics.com/p/fixing-naval-ship-acquisition
48•Luc•10h ago•76 comments
Open in hackernews

A Tale of a Trailing Dot (2022)

https://daniel.haxx.se/blog/2022/05/12/a-tale-of-a-trailing-dot/
28•dcminter•2d ago

Comments

recursive•6h ago
> The cookie spec RFC 6265 section 5.1.2 defines the host name in a way that makes it ignore trailing dots. Cookies set for a domain with a dot are valid for the same domain without one and vice versa.

Well... that's not what the browsers do. If you're logged in to HN, try it now. Add a dot to the host name. Cookie is gone. Remove the dot. It's back.

simoncion•4h ago
That wouldn't be the first time web browsers do something that's contrary to spec (and sanity).

Also, I think the section that was intended to be referenced was section 5.1.3.

watersb•4h ago
Another fun interaction of trailing dot in URLs and web browsers: password management.

This is layers far above the curl internals discussed in the article.

On some platforms, the built in web password management considers web passwords for URLs with or without a trailing dot as distinct situations. Same for the 1Password manager.

I can't think of problems this might cause.

As long as we're trying to break things, I presume it would be easy enough to use JavaScript to switch the current URL to the one with a different trailing dot situation than the current application flow. Like in the middle of a hand-off from one authorization screen to another.

I tend to consider multi-page web application issues as a much higher plane than something curl library internals. But essentially, the back-and-forth of web communication isn't so different.

bonki•1h ago
I don't understand the HSTS part/situation. If trailing dot vs. non-trailing dot are to be treated as different identities because they could theoretically serve different vhosts, why is it (technically) not correct to ignore HSTS for one if only set by the other?