frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shopify moves back to Native from React Native

https://shopify.engineering/back-to-native
360•fnthawar2•2h ago•244 comments

Rust Is Tier-1 Language at Microsoft

https://rustfoundation.org/media/guest-post-rust-is-tier-1-language-at-microsoft/
262•mmastrac•3h ago•125 comments

Cognition launches new SWE-2 model, Rivaling Fable 5.1 and GPT-Astra

https://cognition.com/blog/swe-2
64•seelos•1h ago•23 comments

Neki by PlanetScale

https://neki.dev/
35•handfuloflight•57m ago•4 comments

More questions about whether researchers can trust OpenAI with unpublished math

https://mathstodon.xyz/@andreasthom/117240535270608201
87•pred_•9h ago•302 comments

Hitachi launches CO2 heat pump water heaters with solar-friendly tariff controls

https://www.pv-magazine.com/2026/09/07/hitachi-launches-co2-heat-pump-water-heaters-with-solar-fr...
201•thelastgallon•1d ago•157 comments

NASA Color Trick Was Meant for Mars. Now It's Unveiling Rock Art on Earth

https://gizmodo.com/this-nasa-color-trick-was-meant-for-mars-now-its-unveiling-rock-art-on-earth-...
19•gumby•1h ago•1 comments

>10x More Efficient Pretraining

https://magic.dev/blog/pretraining#
45•ronfriedhaber•1d ago•12 comments

DeepSeek v4.1 Flash

https://twitter.com/deepseek_ai/status/2097930608790167907
753•Liwink•10h ago•402 comments

Neki

https://planetscale.com/blog/introducing-neki
36•simon_weber•1h ago•5 comments

Casablanca: How an unproduced play marched into movie history

https://www.thecollector.com/casablanca-unproduced-play-movie-history/
14•mdp2021•53m ago•3 comments

Software Drives People Insane

https://graybeard.ing/software-drives-people-insane/
11•rglover•31m ago•2 comments

What algorithm did Windows XP use to choose your initial user picture?

https://devblogs.microsoft.com/oldnewthing/20260909-00/?p=112683
259•soheilpro•7h ago•125 comments

List of references on Sony websites to players "owning" their digital games

https://consumerrights.wiki/w/Sony_PlayStation_digital_game_ownership_lawsuit
215•haunter•4h ago•71 comments

One resignation turned the embers of AI fear into a wildfire

https://www.interconnects.ai/p/one-resignation-turned-the-embers
13•pretext•35m ago•10 comments

Stockfish 19

https://stockfishchess.org/blog/2026/stockfish-19/
186•atiedebee•3d ago•120 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1337•thecosmicfrog•22h ago•2334 comments

To write non-fiction, draw the trunk, then the rest of the tree

https://devz.cl/posts/how-to-write/
47•DanielVZ•2d ago•9 comments

Python sets and dictionaries can have quadratic-time performance

https://lemire.me/blog/2026/09/03/python-sets-and-dictionaries-can-have-quadratic-time-performance/
18•ibobev•2d ago•5 comments

Serverless DTLS

https://proxylity.com/docs/listeners/dtls.html
7•mlhpdx•54m ago•3 comments

Show HN: What if the speed of light was 5 km/h?

https://rivendell.dmitrybrant.com/relativity/
527•dmitrybrant•14h ago•224 comments

Native Python and TypeScript Drivers for ArcadeDB, from OpenAPI and Protobuf

https://arcadedb.com/blog/arcadedb-native-drivers-python-typescript/
4•lvca•30m ago•0 comments

The first drink-driving conviction may have happened in London

https://www.ianvisits.co.uk/articles/the-worlds-first-drink-driving-conviction-may-have-happened-...
12•beardyw•9h ago•15 comments

Show HN: Filament – Fast data movement engine in Go

https://github.com/galaxy-io/filament
14•ikswolzok•2d ago•1 comments

Silicon Valley Is Transforming the Military-Industrial Complex

https://costsofwar.watson.brown.edu/paper/how-big-tech-and-silicon-valley-are-transforming-milita...
4•paimapi•57m ago•1 comments

What do Visa and Mastercard do? An intro to card networks

https://tautology.town/2026/06/01/card-networks.html
632•evakhoury•1d ago•378 comments

Show HN: Art – draw one stroke, let symmetry complete it

https://mrdee.in/mandala/
68•cyb0rg0•5d ago•28 comments

Show HN: Syq – copy files between machines fast (better than rsync)

https://greaber.github.io/syq/
6•greaber•1h ago•2 comments

Who Dung It? (Turdle.fun)

https://turdle.fun/
12•nb_quant•2h ago•17 comments

Growing proof that autonomous cars save lives

https://spectrum.ieee.org/are-self-driving-cars-safe
427•bookofjoe•23h ago•750 comments
Open in hackernews

Serverless DTLS

https://proxylity.com/docs/listeners/dtls.html
6•mlhpdx•54m ago

Comments

mlhpdx•45m ago
Founder of Proxylity here. I'm happy to answer questions about how this works, why we built it, and where it is (and isn't) a good fit.
oarsinsync•14m ago
You provide a DTLS to clear-text proxy service, for applications where the client supports DTLS, but the server does not (or vice versa)?

Yeah, why did you build this? It's unclear what the value proposition is, paying for a MitM proxy. It effectively means it cannot be used with secrets, without trusting y'all to not be snooping?

mlhpdx•6m ago
Your summary is about right, but the use case is simply not wanting to run always-on servers around the world (we have anycast IPs backed by handlers around the world). So it's convenience and scale first, and wanting to build with event-driven architectures second.

Yes, your point on security is correct. Since our service terminates the DTLS connection we could see the cleartext (just as any gateway service does, like AWS API Gateway, etc.). We don't touch it except as strictly needed to pass it to the configured integrations.

EDIT: FWIW, using a plain UDP handler you could implement DTLS handling that runs in your control, in which case payloads would be opaque to us. That's a bit of an effort, though. We were asked for this, so we built it.