frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

CUDA C++ Best Practices Guide [pdf]

https://docs.nvidia.com/cuda/pdf/CUDA_C_Best_Practices_Guide.pdf
1•throwawaybutwhy•1m ago•1 comments

'It's a Mess': A Brain-Bending Trip to Quantum Theory's 100th Birthday Party

https://www.quantamagazine.org/its-a-mess-a-brain-bending-trip-to-quantum-theorys-100th-birthday-party-20250808/
1•nsoonhui•1m ago•0 comments

Cloudflare vs. Perplexity:Why AI Scraping Without Paying Is Digital Theft [video]

https://www.youtube.com/watch?v=qehRsBYawkY
1•real-hacker•3m ago•1 comments

Cheaters Spotted in Battlefield 6 Beta, Despite Secure Boot Requirement

https://www.ign.com/articles/cheaters-already-spotted-in-battlefield-6-open-beta-despite-secure-boot-requirement
1•josephcsible•7m ago•0 comments

Show HN: Bugs and Feedback Collection Tool

https://www.feedbugs.com/
1•vignzviki•12m ago•0 comments

Pepe Auth

https://en.wikipedia.org/wiki/Pepe_Auth
2•motorest•12m ago•0 comments

Vvveb – open-source CMS drag-and-drop site builder

https://www.vvveb.com/
1•nreece•14m ago•0 comments

Being a Good PM at Google

https://thechrisperry.substack.com/p/being-a-good-pm-at-google
1•bruckie•14m ago•0 comments

David Chalmers: Could a Large Language Model Be Conscious?

https://arxiv.org/abs/2303.07103
1•hackandthink•19m ago•0 comments

Useful GitHub template for Git projects and readme.md

https://github.com/dec0dOS/amazing-github-template
1•pinter69•19m ago•0 comments

How to Use Snprintf

https://bernsteinbear.com/blog/snprintf/
1•ingve•22m ago•0 comments

Automation Tools Are Fast... Until You Pay

https://medium.com/@mohamedalibenothmen1/why-automation-tools-get-slower-after-you-pay-them-953d08e2142d
1•dalibenothmen•31m ago•0 comments

Show HN: MinimaTXT – local-only .txt notes App for iPhone

https://apps.apple.com/us/app/minimatxt/id6749180676
1•Banev•33m ago•0 comments

Why do we even need SIMD instructions?

https://lemire.me/blog/2025/08/09/why-do-we-even-need-simd-instructions/
2•ingve•35m ago•0 comments

AI coding tools considered harmful

https://twitter.com/QuentinAnthon15/status/1943948791775998069
1•lr0•37m ago•0 comments

GPT-5 model price comparison via pelicans on a bicycle

https://nezhar.com/blog/gpt-5-model-price-comparison-via-pelicans-on-bicycle/
1•nezhar•40m ago•0 comments

Digital resurrection: fascination and fear over the rise of the deathbot

https://www.theguardian.com/news/ng-interactive/2025/aug/10/artificial-intellligence-avatar-death-grief-digital-resurrection-fascination-deathbot
1•devuo•45m ago•0 comments

Move fast and don't break (safety critical) things

https://substack.com/home/post/p-170571873
2•amusely•47m ago•0 comments

Agentic Web – Weaving the Next Web with AI Agents

https://arxiv.org/abs/2507.21206
1•hunglee2•48m ago•0 comments

A Cautionary Tale for Stupid Idiots Who Think They Can Lead with Integrity

https://jamesjboyer.substack.com/p/a-cautionary-tale-for-stupid-idiots
1•gpi•53m ago•0 comments

Getting Quality Sleep

4•Sleep_Well•55m ago•0 comments

Covid levels rising in much of U.S., with highest in West, CDC says

https://www.cbsnews.com/news/covid-wastewater-levels-rising-highest-west-cdc/
4•MilnerRoute•57m ago•0 comments

Before Ghostbusters: How Asperger's Shaped Young Dan Aykroyd

https://thewalrus.ca/before-ghostbusters-how-aspergers-shaped-young-dan-aykroyd/
1•pseudolus•58m ago•0 comments

IBM Selectric Typewriters Get DIY Typeballs (2023)

https://hackaday.com/2023/04/11/ibm-selectric-typewriters-finally-get-diy-typeballs/
1•tosh•59m ago•0 comments

Microsoft POML – Prompt Orchestration Markup Language

https://github.com/microsoft/poml
2•avestura•1h ago•0 comments

Ask HN: Canadian founders, how do you build in SF?

3•changisaac•1h ago•0 comments

Turning any tokenizer into a greedy one

http://stephantul.github.io/blog/greedy/
1•stephantul•1h ago•1 comments

Btrfs Has Saved Meta "Billions of Dollars" in Infrastructure Costs

https://www.phoronix.com/news/Btrfs-Saves-Meta-Billions
7•breve•1h ago•0 comments

A simple experiment revealed the complex 'thoughts' of fungi

https://www.popsci.com/environment/fungi-thoughts/
3•domofutu•1h ago•1 comments

red.anthropic.com

https://red.anthropic.com/
3•tosh•1h ago•0 comments
Open in hackernews

ChaCha12-BLAKE3: Secure, Simple and Fast authenticated and committing encryption

https://kerkour.com/chacha12-blake3
4•miggy•2d ago

Comments

jedisct1•2d ago
There's already ChaCha20-Poly1305-SIV which is way more elegant: https://github.com/C2SP/C2SP/blob/main/chacha20-poly1305-siv...
Keyb0ardWarri0r•2d ago
Interesting construction, thank you for sharing!

But:

- More and more people see ChaCha20 as wasteful (too many rounds)

- Poly1305 is "hard" to implement

- ChaCha12 + BLAKE3 can fulfill all the symmetric cryptography needs (MAC, AEAD, Hash, RNG...), which is untrue of ChaCha20 + Poly1305, therefore simplifying the deployment of secure cryptography

- ChaCha12 + BLAKE3 both scales with the width of SIMD vectors, opening the door to really really fast cryptography on general-purpose hardware, especially with ARM SVE & SVE2

- SIV construction requires to decrypt the entire payload before being able to verify the authentication tag, which can be costly and may lead to DoS attacks due to the asymmetry of the cost of attack / cost of defense

jedisct1•2d ago
Poly1305 is straightforward to implement and also scales with the width of SIMD vectors, just like other polynomial-based MACs. BLAKE3 is nice but tricky to implement and optimize; a textbook implementation performs very poorly.

Avoid using Rust implementations for serious benchmarks, especially in the context of symmetric cryptography.

For really fast ciphers on general-purpose hardware, check out AEGIS and HiAE. https://github.com/hiae-aead/benchmarks https://datatracker.ietf.org/doc/draft-irtf-cfrg-aegis-aead/ https://datatracker.ietf.org/doc/draft-pham-cfrg-hiae/