frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: Your Startup Needs a Better Name

https://domaingen.app
1•Areibman•3m ago•0 comments

16colo.rs: ANSI/ASCII art archive

https://16colo.rs/
1•debo_•4m ago•1 comments

BGP Tools

https://bgp.tools/
2•RGBCube•5m ago•0 comments

We Built an Auto-Aiming Trash Can [video]

https://www.youtube.com/watch?v=H0XYANRosVo
1•Armic•5m ago•0 comments

National Blue Alert Network

https://cops.usdoj.gov/bluealert
1•colinprince•6m ago•0 comments

Sorption enhanced chemical looping gasification of biomass for H2 production

https://www.sciencedirect.com/science/article/pii/S0960148125006846
1•PaulHoule•8m ago•0 comments

You Shouldn't Have to Make Your Social Media Public to Get a Visa

https://www.eff.org/deeplinks/2025/07/you-shouldnt-have-make-your-social-media-public-get-visa
1•mdp2021•8m ago•1 comments

Show HN: ETHShot – an Ethereum test‑net "take‑your‑shot" jackpot game

1•cranberryturkey•9m ago•0 comments

First ever fault rupture caught on video, Mianmar 7.9

https://www.youtube.com/watch?v=_OeLRK0rkCE
1•kurthr•10m ago•0 comments

Built this after my mom asked how to 'just make herself smile in a photo

https://apps.apple.com/us/app/phoai-ai-photo-maker-editor/id6747897909
1•incendies•11m ago•2 comments

I built a complete guide site for the game "99 Nights in the Forest"

https://99nightsintheforest.online
1•hugh1st•12m ago•1 comments

We transcribed a week of audio in a minute for a dollar

https://modal.com/blog/fast-cheap-batch-transcription
1•plurby•13m ago•0 comments

Test Ad Block

https://adblock.turtlecute.org/
1•colinprince•13m ago•0 comments

What Makes a Mature Science

https://www.asimov.press/p/mature-science
1•bookofjoe•15m ago•0 comments

Dynamic Chunking for End-to-End Hierarchical Sequence Modeling

https://arxiv.org/abs/2507.07955
2•gatane•16m ago•0 comments

Name SF Streets

https://carvin.github.io/sf-street-names/
1•kelnos•17m ago•0 comments

Vintage Macintosh Programming Book Library (2017)

https://vintageapple.org/macprogramming/index_year.html
8•todsacerdoti•23m ago•5 comments

FDA's New Drug Approval AI Is Generating Fake Studies: Report

https://gizmodo.com/fdas-new-drug-approval-ai-is-generating-fake-studies-report-2000633153
1•pseudolus•24m ago•0 comments

Revisiting My 2010 JavaScript Library

https://idiallo.com/blog/revisiting-my-old-javascript
1•bariumbitmap•24m ago•0 comments

The Death of Industrial Design

https://hackaday.com/2025/07/23/the-death-of-industrial-design-and-the-era-of-dull-electronics/
1•drpixie•28m ago•0 comments

Katharine Graham: The Washington Post

https://fs.blog/knowledge-project-podcast/outliers-katharine-graham/
2•feross•29m ago•0 comments

DreamHAT+ Radar by Dream Boards for Raspberry Pi

https://shop.pimoroni.com/products/dream-hat-plus-radar
2•teleforce•32m ago•0 comments

Ask HN: Copilot Makes Me Dumb

3•ynarwal__•32m ago•1 comments

Purple Earth Hypothesis

https://en.wikipedia.org/wiki/Purple_Earth_hypothesis
1•colinprince•33m ago•0 comments

Using mmWave Radar to Detect and Track Humans with Raspberry Pi

https://core-electronics.com.au/guides/using-mmwave-radar-to-detect-and-track-humans-raspberry-pi-guide/
1•teleforce•34m ago•0 comments

Why Can't We Just Send an HTML Email

https://blog.julik.nl/2025/07/html-emails-the-hard-way
2•julik•45m ago•0 comments

Memphis is a warning: AI will be driven off-planet [video]

https://www.youtube.com/watch?v=3VJT2JeDCyw
2•HocusLocus•46m ago•1 comments

Kernel

https://web.cs.wpi.edu/%7Ejshutt/kernel.html#:%7E:text=On%20the%20theoretical%20side%2C%20the,also:%20My%20Academic%20Work%20page
1•Bogdanp•47m ago•0 comments

Detect and Track Humans with a Raspberry Pi MmWave Radar Sensor [video]

https://www.youtube.com/watch?v=CacGXNJawss
1•teleforce•48m ago•0 comments

FreeBSD 15.0 Aims to Have a KDE Desktop Install Option

https://www.phoronix.com/news/FreeBSD-15-KDE-Install-Plan
2•rbanffy•53m ago•0 comments
Open in hackernews

Hyperpb: Faster dynamic Protobuf parsing

https://buf.build/blog/hyperpb
71•bhollis•7h ago

Comments

mwigdahl•6h ago
Really missed a great naming opportunity with "superpb" (pronounced as "superb").
JoshTriplett•4h ago
I'd expect the current name to be pronounced like the first part of "hyperbole", which doesn't have nearly the same positive connotations, yeah.
ManBeardPc•6h ago
Interesting approach using a JIT compiler. It says compilation is slow, is there a way to persist the compiled code and load it later (for example for CLIs or faster redeployments)?
paulddraper•5h ago
It's called AoT....
jayd16•4h ago
No, I think they want Profile-Guided Optimization. I think the C# AoT mode uses the results of a JIT first run.
jsnell•6h ago
See also the discussion on the technical description last week: https://news.ycombinator.com/item?id=44591605

(IMO much more interesting article than this announcement, and that probably should have gotten more attention than it did.)

dang•4h ago
Thanks! That one was recent enough that I think we can re-up it. I'll put a link to this thread in there, so people can read both.
the_duke•5h ago
The delta to the performance of C++/Rust Protobuf implementations would be interesting.
nateb2022•5h ago
Even before Hyperpb, Go was already very competitive, e.g. this article from last year: https://www.greptime.com/blogs/2024-04-09-rust-protobuf-perf...
jeffbee•5h ago
My experience is that the practical performance achievable with Go is higher because the C++ lifetime issues are too difficult to reason about and therefore the developer is forced to copy for safety. In Go you can fairly easily alias everything from the physical buffer into your parsed object. In the official C++ library, protobuf refuses to acknowledge even the possibility of aliasing. Even if you say that your string types are "view" there is an owned buffer inside the generated class into which your data is copied. This is exasperating because inside Google they have several different ways to not copy a string into a protobuf, and they're all patched out of the open source edition, and you can read them and cry about it by looking at their git logs for "internal change" commits with baffling only-whitespaces changes that are symptomatic of where they are patching out the good stuff.
reactordev•4h ago
Oh it’s worse, it’s a full on marshal of the whole data. What we need is a no-allocation-protobuf that binds to existing memory, knows about aliases, can deal with a pointer. I love protobuf but I’ve moved to other messaging implementations that provide a faster marshal/unmarshal. Maybe I’ll give this a try.
beagle3•4h ago
Flatbuffers from Google is 11 years old and does that. (Protobufs is over 20 at this point).

https://stackoverflow.com/questions/25356551/whats-the-diffe...

reactordev•4h ago
MessagePack is what I’m currently using, I needed a small binary format.
benreesman•4h ago
It's not out-of-the-box compatible with everything in the way that `proto3` is, but if dealing with the really atrocious performance and ergonomics of protobuf in C++ (among other targets) is bad enough to warrant going slightly off the beaten path, flatbuffers is still pretty mainstream. It's got bindings for the big languages and it's used IIRC in a bunch of the FAANG mobile clients, stuff like that.

Going a little further afield, `capnp` is cool. It's got a much nicer IDL and object model, but you start to get into where non-C++ bindings are "community maintained" in a pretty loose sense. I'm not sure how much sense it makes unless it really lands on your polyglot stack perfectly, because if you only need C++, zpp_bits is really ergonomic and approaches theoretical limits on performance along a number of dimensions.

I don't love any of the answers here.

reactordev•4h ago
I’m currently using MessagePack. It does the job of making small binary messages but I still suffer from marshal/unmarshal copying.

For certain messages with a fixed size (no strings or arrays) I can pin a message and reuse its memory address within the queue but there’s still data in memory that needs to be copied. At the very least from the TCP/IP stack.

haberman•1h ago
I think you can alias the input data using Cord fields? As long as the input is Cord.
jeffbee•41m ago
Almost, but there aren't repeated cords yet. At my company we maintain a patch that adds repeated cords, but it's a real chore because the project changes a lot of little internal details as needed.