frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stone Tools: Exploring retro productivity software from the 8/16-bit era

https://stonetools.ghost.io/
1•PaulHoule•42s ago•0 comments

A Return to Discovery

https://analoghobbyist.bearblog.dev/a-return-to-discovery/
1•speckx•3m ago•0 comments

ADP stopped data sharing with Fed

https://prospect.org/2025/10/21/fed-making-key-economic-decisions-without-data/
1•jimmydoe•4m ago•0 comments

I built this AI photography app for small brands

https://pixelshot.ai/
1•ozgrozer•6m ago•1 comments

Bay Area tech startup will play the villain in a new TV drama

https://www.sfgate.com/sf-culture/article/bay-area-tech-startup-villain-tv-drama-21114640.php
1•jedberg•7m ago•2 comments

Show HN: Front end says back end changed again? Stop that with middlerok

https://www.middlerok.com/
1•rokontech•8m ago•0 comments

The Muscular Compassion of "Paper Girl"

https://www.newyorker.com/books/page-turner/the-muscular-compassion-of-paper-girl
3•mitchbob•10m ago•1 comments

Collatz Automata

https://gbragafibra.github.io/2025/10/23/collatz_automata.html
1•Fibra•10m ago•0 comments

What antidepressants do to your brain and body

https://www.telegraph.co.uk/health-fitness/wellbeing/mental-health/what-antidepressants-do-to-you...
2•wjb3•13m ago•0 comments

Linux Proposed Cache Aware Scheduling Benchmarks Show Big Potential on AMD Turin

https://www.phoronix.com/review/cache-aware-scheduling-amd-turin
2•rbanffy•14m ago•0 comments

Cyberthreats surge against US logistics infrastructure

https://www.freightwaves.com/news/cyberthreats-surge-against-us-logistics-infrastructure
1•crescit_eundo•15m ago•0 comments

Trump pauses federal surge to San Francisco

https://sfstandard.com/2025/10/23/lurie-trump-calls-off-federal-surge-san-francisco/
3•jzelinskie•15m ago•0 comments

Beyond Arithmetic: Understanding Computation and Computers

https://madeunraveled.xyz/blog/computation_revisited
1•rhythane•15m ago•0 comments

Avocados, auto parts, and ambushes: Inside Mexico's cargo theft crisis

https://www.freightwaves.com/news/avocados-auto-parts-and-ambushes-inside-mexicos-cargo-theft-crisis
1•crescit_eundo•16m ago•0 comments

Fat-chomping enzyme that moonlights as gene regulator could treat obesity

https://www.science.org/content/article/fat-chomping-enzyme-moonlights-gene-regulator-could-point...
1•rbanffy•16m ago•0 comments

Shahed-136 prototype was created in 1980s Germany, and it was called DAR

https://en.defence-ua.com/news/first_shahed_136_prototype_was_created_in_germany_in_the_1980s_and...
1•hooch•17m ago•0 comments

Trump pardons Binance founder Changpeng Zhao, high-profile cryptocurrency figure

https://apnews.com/article/trump-pardon-binance-changpeng-zhao-crypto-exchange-e1cb3fe516bc42b4c7...
5•philips•17m ago•1 comments

The Great AdTech Fork: Prebid vs. OpenAds

https://mixpeek.com/blog/prebid-openads-fork-2025
1•Beefin•17m ago•0 comments

Show HN: xCapture v3 for thread-level dimensional performance analysis with eBPF

https://tanelpoder.com/posts/xcapture-xtop-beta/
1•tanelpoder•19m ago•0 comments

Ireland Becomes an Associate Member State of CERN

https://www.interactions.org///press-release/ireland-becomes-an-associate-member-state-of-CERN
1•elashri•22m ago•0 comments

Use of full-body restraints during deportation raises humanitarian concerns

https://apnews.com/article/immigration-deportations-trump-administration-civil-rights-84309f534c6...
1•anigbrowl•23m ago•0 comments

Google drops a key program for boosting women in tech

https://www.cnn.com/2025/10/23/tech/google-diversity-programs-women-techmakers
3•methuselah_in•24m ago•0 comments

Chroma Cloud Sync

https://docs.trychroma.com/cloud/sync/overview
1•handfuloflight•25m ago•0 comments

Show HN: BesiegeField – LLM Agents Learn to Build Machines in a Physics Sandbox

https://besiegefield.github.io/
2•zepist•25m ago•0 comments

IBM Launches Granite Version 4.0 and Granite-Docling

https://www.i-programmer.info/news/80-java/18409-ibm-launches-granite-version-40-and-granite-docl...
1•aquastorm•26m ago•1 comments

Dinosaurs were thriving until asteroid struck, research suggests

https://www.theguardian.com/science/2025/oct/23/dinosaurs-asteroid-struck-research
1•pseudolus•28m ago•0 comments

GM says hands-free, eyes-off driving is coming to Escalade IQ in 2028

https://www.theverge.com/news/802452/gm-forward-ai-robot-level-3-autonomous
1•prossercj•29m ago•0 comments

One Year with Next.js App Router – Why We're Moving On

https://paperclover.net/blog/webdev/one-year-next-app-router#top
2•mcintyre1994•30m ago•0 comments

Show HN: OpenSnowcat – A fork of Snowplow to keep open analytics alive

https://opensnowcat.io/
7•joaocorreia•30m ago•1 comments

Apple considering buying Warner Bros., including HBO

https://appleinsider.com/articles/25/10/23/apple-is-considering-buying-hbo-owner-warner-bros-to-b...
4•walterbell•30m ago•2 comments
Open in hackernews

Show HN: hist: An overengineered solution to `sort|uniq -c` with 25x throughput

https://github.com/noamteyssier/hist-rs
3•noamteyssier•3h ago
Was sitting around in meetings yesterday and remembered an old shell script I had to count the number of unique lines in a file. Gave it a shot in rust and with a little bit of (over-engineering)™ I managed to get 25x throughput over the naive approach using coreutils as well as improve over some existing tools.

Some notes on the improvements:

1. using csv (serde) for writing leads to some big gains

2. arena allocation of incoming keys + storing references in the hashmap instead of storing owned values heavily reduced the number of allocations and improves cache efficiency (I'm guessing, I did not measure).

There are some regex functionalities and some table filtering built in as well.

happy hacking

Comments

southwindcg•2h ago
I don't [currently?] have a use case for this tool, but I love seeing existing tools made faster or more efficient.
noamteyssier•2h ago
I think that it's a pretty common use case for text processing - I end up needing to use it a lot in bioinformatics where there is a lot of text processing.

It's great when you quickly need to see what the distribution of classes in an input stream is. This pops up all the time. Like measuring different types of log messages, counting the variants of a field in a csv, finding the most common word or substring, etc.

southwindcg•59m ago
Oh, I meant me, personally, I don't have a use case for it. Without a doubt a lot of people are going to find this speed improvement valuable.