frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LiteLLM Supply Chain Attack: Defense in Depth Is the Only AI Security Strategy

https://www.runtimeai.io/blog-litellm-attack.html
1•roshanshaik•1m ago•0 comments

Zipcode specific inflation to understand local price changes

https://whatchanged.us/
1•ryan_j_naughton•6m ago•0 comments

Show HN: Spectator – A programming language for Cybersecurity and Hacking

1•CzaxTanmay•6m ago•0 comments

Spotting issues in DeFi with dimensional analysis

https://blog.trailofbits.com/2026/03/24/spotting-issues-in-defi-with-dimensional-analysis/
1•anitil•9m ago•1 comments

Iran rejects US proposal, lays out five conditions for ending war

https://www.presstv.ir/Detail/2026/03/25/765835/iran-rejects-us-proposal-lays-out-five-conditions...
1•Jimmc414•11m ago•0 comments

OmniWM – Niri and Dwindle tiling window manager for macOS

https://github.com/BarutSRB/OmniWM
1•gedy•21m ago•0 comments

Should Investors Demand Better Liquidation Terms for SAFEs?

https://natlawreview.com/article/should-investors-demand-better-liquidation-terms-safes
1•petethomas•23m ago•0 comments

Injecting Tracing the Hot Way

https://underjord.io/injecting-tracing-the-hot-way.html
1•lawik•27m ago•0 comments

The coming PLG to SLG apocalypse

https://www.withsahel.com/blog/plg-to-enterprise-timeline-compression
1•iajiboye•28m ago•1 comments

Ask HN: Can I somehow exit HN desktop view on mobile?

1•hxugufjfjf•30m ago•1 comments

Show HN: AutoSW-Like AutoResearch but for software:SW Systems that Builds itself

https://pub.towardsai.net/the-software-that-built-itself-well-defined-intents-are-all-you-need-06...
1•alexcpn•32m ago•1 comments

Show HN: Orloj – agent infrastructure as code (YAML and GitOps)

https://github.com/OrlojHQ/orloj
1•An0n_Jon•32m ago•0 comments

AI Arbitrator

https://www.adr.org/ai-arbitrator/
1•dqv•36m ago•0 comments

Show HN: Scope – a beautiful open-source web client for Stremio

https://github.com/scope-player/scope
1•judekim•38m ago•0 comments

Show HN: Agent Ruler new update v0.1.9

1•steadeepanda•42m ago•1 comments

Show HN: I built a lawyer game with AI

https://legalarena.app
1•divyanthj•43m ago•0 comments

Proactively Parasocial

https://nicklandolfi.com/posts/proactively-parasocial.html
1•jxmorris12•46m ago•0 comments

One man company is possible

https://mdalpha.ai/
1•sam890306•47m ago•1 comments

Show HN: Prompt Guard–MitM proxy that blocks secrets before they reach AI APIs

https://github.com/chaudharydeepak/prompt-guard
2•chaudharydeepak•50m ago•2 comments

I didn't understand TurboQuant, so I made this explainer

https://cyrusradfar.com/thoughts/turboquant-explainer
3•cyrusradfar•53m ago•0 comments

Terafab

https://en.wikipedia.org/wiki/Terafab
1•gnarlouse•57m ago•1 comments

My 1k Favorite Books

https://kylebenzle.com/bookreviews.php
1•hilliardfarmer•58m ago•0 comments

Show HN: Agent Kernel – Three Markdown files that make any AI agent stateful

https://agent-kernel.dev/?v=1.0.0
1•obilgic•1h ago•0 comments

HN: Surviving the litellm supply chain attack with a pure ctypes OS Vault

https://github.com/MACCRE-2026/MACCRE-Sovereign-Auth
2•MACCRE•1h ago•0 comments

Creating Readerly

https://nicoverbruggen.be/blog/creating-readerly
3•ganksalot•1h ago•0 comments

Squirrel seen 'vaping' in London park

https://www.telegraph.co.uk/news/2026/03/23/squirrel-seen-vaping-in-london-park/
12•walterbell•1h ago•1 comments

Research Shows Verbatim Recall of Copyrighted Books in LLMs

https://cauchy221.github.io/Alignment-Whack-a-Mole/
2•nsagent•1h ago•0 comments

Show HN: Send Love, Send Letters (at cost)

https://mappymail.com
2•pruetj•1h ago•0 comments

OpenAI backs AI "bot army" startup Isara ($94M, $650M valuation)

https://www.wsj.com/tech/ai/openai-backs-new-ai-startup-seeking-bot-army-breakthroughs-a0b1fedc
2•MoritzWall•1h ago•2 comments

Made this tool so your docs never get stale just in 2 simple steps

1•AYSgood•1h ago•0 comments
Open in hackernews

Show HN: DualMix128 – A fast, simple PRNG passing PractRand (32TB) and BigCrush

https://github.com/the-othernet/DualMix128
5•the_othernet•10mo ago
Hi HN,

I'd like to share DualMix128, a pseudo-random number generator I developed. It's written in C and achieves very high speed while maintaining strong statistical properties for non-cryptographic use.

GitHub (MIT License): https://github.com/the-othernet/DualMix128

Key points:

* *Fast:* Benchmarked at ~0.36 ns per 64-bit generation on GCC 11.4 (-O3 -march=native). This was over 2x faster than `xoroshiro128++` (~0.74 ns) and competitive with `wyrand` (~0.36 ns) in the same tests. (Benchmark code/results in repo).

* *Robust:* Passes the full TestU01 BigCrush suite and PractRand up to 32TB with no anomalies reported. (Test harnesses/logs in repo).

* *Simple Algorithm:* Uses a 128-bit state (two `uint64_t`) with simple mixing based on addition, XOR, rotation, and a final multiplication by the golden ratio constant.

* *C Implementation:* Minimal dependencies (`stdint.h` for core), straightforward C code.

This came out of exploring simple constructions for efficient PRNGs that still hold up under heavy statistical testing.

Curious to hear feedback on the design, performance, potential applications, or any weaknesses you might spot. Thanks!

Comments

thomaskoopman•10mo ago
Very cool, fast and looks like it should vectorize too. Do you have a jump function for parallel seeding?

How did you come up with this, some number-theoretic basis or more experimental?