frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Hundred-Year Language (2003)

https://www.paulgraham.com/hundred.html
1•swatson741•2m ago•0 comments

Bullsquid.com

https://bullsquid.com/
1•sergiotapia•3m ago•0 comments

Harley-Davidson Dealerships Are Shutting Down Across America

https://www.jalopnik.com/2029438/why-harley-davidson-dealerships-are-shutting-down/
1•bookofjoe•3m ago•0 comments

Why synthetic emerald-green pigments degrade over time

https://arstechnica.com/science/2025/11/why-synthetic-emerald-green-pigments-degrade-over-time/
1•pseudolus•9m ago•0 comments

Probing Chinese LLM Safety Layers: Reverse-Engineering Kimi and Ernie 4.5

https://zenodo.org/records/17681837
1•dennisdeman•9m ago•1 comments

A visual guide to Cloudflare Primitives

https://momito.co.uk/cloudflare-primitives/
2•NicoJuicy•10m ago•0 comments

A Cell So Minimal That It Challenges Definitions of Life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
2•pseudolus•13m ago•0 comments

Show HN: My first published app – track contraception ring cycle

https://apps.apple.com/us/app/lunella/id6755366887
2•matsucks•18m ago•0 comments

Australia establishes new institute to strengthen AI safety

https://www.industry.gov.au/news/australia-establishes-new-institute-strengthen-ai-safety
1•ajdlinux•18m ago•0 comments

AWS's Project Rainier: the most powerful computer for training AI

https://www.aboutamazon.com/news/aws/aws-project-rainier-ai-trainium-chips-compute-cluster
2•kristianp•19m ago•0 comments

The Cost of Resetting a Password

https://www.pwndefend.com/2025/11/22/the-cost-of-resetting-a-password/
2•gm678•21m ago•0 comments

John Searle's Campus War

https://fusionaier.org/2025/john-searles-campus-war/
1•B1FF_PSUVM•24m ago•0 comments

EPA just approved new 'forever chemical' pesticides for use on food

https://www.washingtonpost.com/climate-environment/2025/11/22/forever-chemicals-pesticides/
6•measurablefunc•25m ago•3 comments

Show HN: Bringing stacked diff workflow to Perforce

https://github.com/minhkhoango/p4-stack
1•kai2006•28m ago•0 comments

MCP Ultimately Leads to Closed Gardens

https://chatbotkit.com/reflections/mcp-ultimately-leads-to-closed-gardens
2•_pdp_•33m ago•0 comments

New software toolbox enables brain-like models to learn directly from data

https://www.biorxiv.org/content/10.1101/2024.08.21.608979v2
1•PaulHoule•34m ago•0 comments

Kimchi's Immune System Benefits

https://www.nature.com/articles/s41538-025-00593-7
4•DaveZale•35m ago•0 comments

We Built the v0 iOS App

https://vercel.com/blog/how-we-built-the-v0-ios-app
3•MaxLeiter•37m ago•0 comments

Have You Considered Load-Bearing Shell History? (2022)

https://blog.tjll.net/load-bearing-shell-history/
3•wonger_•37m ago•0 comments

Terraform Industries' Business Case Doesn't Add Up

https://klaasnotfound.com/2025/06/03/terraform-industries-business-case-doesnt-add-up/
1•verzali•38m ago•0 comments

A tool for dealing with GPS time in Ns

https://andrew.diamonds/gpsnanos
1•andrewxdiamond•40m ago•0 comments

Show HN: Realtime, expressive AI personas that you can video call

https://playground.keyframelabs.com/playground/persona-1-live
3•kraddypatties•43m ago•2 comments

Ask HN: GitHub vs. self-hosted forges – What's your first impression?

2•bitbasher•45m ago•1 comments

We're Helping Companies Turn Open Source Contributions into Hiring

https://issuepay.app
1•Mario10•45m ago•1 comments

The Web Install API is ready for testing

https://blogs.windows.com/msedgedev/2025/11/24/the-web-install-api-is-ready-for-testing/
2•syx•50m ago•0 comments

Avian Influenza H5N5 Washington Death

https://www.idse.net/Influenza/Article/12-25/First-Person-Dies-From-H5N5-Bird-Flu/78941
4•howard941•52m ago•0 comments

One of the Greatest Polar-Bear Hunters Confronts a Vanishing World

https://www.newyorker.com/magazine/2025/12/01/one-of-the-greatest-polar-bear-hunters-confronts-a-...
2•bookofjoe•56m ago•1 comments

Launching the Genesis Mission

https://www.whitehouse.gov/presidential-actions/2025/11/launching-the-genesis-mission/
2•oidar•56m ago•0 comments

A P2P Grindr alternative I built in a weekend: no server, no accounts

https://meateor2.netlify.app/
1•guiprav•59m ago•1 comments

Pornhub Is Urging Tech Giants to Enact Device-Based Age Verification

https://www.wired.com/story/pornhub-is-urging-tech-giants-to-enact-device-based-age-verification/
3•toomuchtodo•1h ago•1 comments
Open in hackernews

Show HN: A faster day-count to Y,M,D algorithm – 30-40% speedup

https://www.benjoffe.com/fast-date-64
2•benjoffe•1h ago
Converting that integer to a Year, Month and Day is a fundamental calculation made in almost all programming languages and standard libraries. It runs every time a date is displayed, whether it's in a user interface, log, API etc.

While it is rarely a bottleneck, it is a very frequently run algorithm, and thus has attracted a lot of attention over the years.

In 2021, Cassio Neri and Lorenz Schneider developed the Neri-Schneider algorithm, which was a major breakthrough in this niche area.

Lately, I have been studying this function deeply, and found what I believe may be the last remaining substantial improvements achievable on current hardware. The gains come mainly from counting dates backwards, and from reducing the number of multiplications from 7 to 4.

Adoption will depend on whether library maintainers consider the performance benefit to outweigh the readability. If this is rejected on readability grounds, then in those cases my algorithm outlined in Article 1 (linked in the blog post navigation) is likely to be simpler and faster than what almost all existing libraries are currently doing.

I found this a very interesting challenge to work on, and I believe some of the techniques outlined may be applicable to other areas of optimisation.