frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show Me the First Padawan Braid

https://hothtakes.wordpress.com/2025/11/24/hoth-takes-65-show-me-the-first-padawan-braid/
1•mooreds•2m ago•0 comments

Seal Milk Is the Cream of the Molecular Crop

https://www.nytimes.com/2025/11/25/science/seal-milk.html
1•quapster•2m ago•0 comments

Genetic Burden of Neuropsychiatric Conditions in Suicides W No Prior Suicidality

https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2840358
1•bookofjoe•3m ago•0 comments

Show HN: Romforth Ported to the IBM 1130

https://github.com/romforth/romforth
1•romforth•3m ago•0 comments

Giget: Download templates and Git repositories with pleasure

https://github.com/unjs/giget
1•nateb2022•3m ago•0 comments

Two Years of Listening to the Universe's Most Violent Events

https://www.universetoday.com/articles/two-years-of-listening-to-the-universes-most-violent-events
1•belter•5m ago•0 comments

The Thinking Game: Google DeepMind documentary about the AlphaFold team [video]

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

Speak So They Can Hear You

https://jessitron.com/2025/11/16/speak-so-they-can-hear-you/
1•mooreds•6m ago•0 comments

Brand New Layouts with CSS Subgrid

https://www.joshwcomeau.com/css/subgrid/
1•joshwcomeau•8m ago•0 comments

Matrix Core Programming on AMD CDNA Architecture

https://rocm.blogs.amd.com/software-tools-optimization/matrix-cores-cdna/README.html
1•salykova•8m ago•0 comments

Major US Banks Impacted by SitusAMC Hack

https://www.securityweek.com/major-us-banks-impacted-by-situsamc-hack/
3•Bender•9m ago•0 comments

Third-party hack may have spread to JPMorgan, Citi, and Morgan Stanley

https://www.scworld.com/news/third-party-hack-may-have-spread-to-jpmorgan-citi-and-morgan-stanley
3•Bender•9m ago•0 comments

New Agent Workspace feature comes with security warning from Microsoft

https://www.scworld.com/news/new-agent-workspace-feature-comes-with-security-warning-from-microsoft
1•Bender•9m ago•0 comments

Show HN: A single tool for all web monitoring needs

https://robotalp.com/tr/
1•evrimsel•11m ago•0 comments

Speculative Whiteness: Science Fiction and the Alt-Right

https://www.upress.umn.edu/9781517917081/speculative-whiteness/
2•KittenInABox•12m ago•0 comments

The EFF we need now

https://werd.io/the-eff-we-need-now/
3•benwerd•13m ago•0 comments

Wingio: New parental control phone in UK

https://www.mywingio.com/
1•neeloor2004•13m ago•0 comments

50% BlackFriday Off for Mac Screenshot App

https://www.screensnap.pro/pricing
1•m_0_r_g_a_n_•14m ago•0 comments

The Big Shift in MCP: Why AI Guides Will Replace API Wrappers

https://www.tigerdata.com/blog/big-shift-mcp-why-ai-guides-will-replace-api-wrappers
1•thenoahhein•15m ago•0 comments

'Friends block you': NW Mutual sold grads a dream job that left them ruined

https://www.theguardian.com/business/2025/nov/24/northwestern-mutual-insurance-jobs-hiring
3•randycupertino•15m ago•1 comments

Genesis

https://twitter.com/ENERGY/status/1993288788265599102
1•keepamovin•16m ago•1 comments

Black-forest-labs/FLUX.2-dev

https://huggingface.co/black-forest-labs/FLUX.2-dev
1•Philpax•16m ago•0 comments

I tried to change my flight and accidentally accessed everyone else's

https://alexschapiro.com/blog/security/vulnerability/2025/11/20/avelo-airline-reservation-api-vul...
3•makinandbreakin•17m ago•0 comments

Rust Foundation tries to stop maintainers corroding

https://www.theregister.com/2025/11/05/rust_foundation_announces_maintainers_fund/
1•rsecora•17m ago•0 comments

Flexible Code, Rigid Org

https://avivbenyosef.com/flexible-code-rigid-org/
1•gpi•18m ago•0 comments

US$60M wasted on Australian Govt Meteorology website redesign

https://www.theguardian.com/australia-news/2025/nov/24/bom-website-redesign-cost-revealed-96-5-m
1•ctphipps•19m ago•0 comments

FLUX.2: Frontier Visual Intelligence

https://bfl.ai/blog/flux-2
4•meetpateltech•19m ago•0 comments

'Destroyed' Usenet Provider NSE and Brein End 16-Year Battle with Settlement

https://torrentfreak.com/destroyed-usenet-provider-nse-and-brein-end-16-year-battle-with-secret-s...
2•iamnothere•20m ago•0 comments

The Math of Why You Can't Focus at Work

https://justoffbyone.com/posts/math-of-why-you-cant-focus-at-work/
2•cancan•20m ago•0 comments

Meta is helping fraudsters scam you and doesn't care

https://proton.me/blog/meta-scam-ads
3•mikece•21m ago•0 comments
Open in hackernews

Show HN: A seeded, deterministic chaos simulation runtime for async Rust

https://github.com/ZA1815/fracture
1•Crroak•56m ago

Comments

Crroak•56m ago
Hi HN,

I’ve been working on Fracture, a testing framework that brings deterministic chaos engineering to async Rust.

We all know the pain: async code often passes unit test but fails in production due to timeouts, race conditions, or network blips. I built Fracture to reproduce these failures locally and deterministically.

What it does: Fracture is a drop-in replacement for Tokio during testing. It runs your async code in a pure in-memory simulation. This allows it to:

Inject Chaos: simulate packet loss, connection resets, high latency, and task aborts.

Control Time: fast-forward timeouts instantly (no real sleeping).

Guarantee Determinism: It uses a seeded RNG. If a test fails due to a specific sequence of race conditions and network drops, it gives you the seed. You can re-run that seed to trigger the exact same bug again.

How it handles dependencies: One of the hardest parts of testing async Rust is dealing with external crates (like reqwest or sqlx) that depend on the real Tokio runtime. Fracture solves this via a "shim" crate strategy. You can patch tokio in your Cargo.toml to redirect the dependency tree to Fracture’s simulation runtime, meaning you can chaos-test your entire stack without changing your production code.

Current Status: This is an Alpha (v0.1.2) release. The core concepts work, but there are edge cases we haven't found yet.

I’d love for you to try breaking it (and your code).