frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TSA leaves passenger needing surgery after illegally forcing her through scanner

https://www.thetravel.com/tsa-leaves-passenger-needing-surgery-after-illegally-forcing-her-throug...
2•SunshineTheCat•53s ago•0 comments

Claude Introduces Marketplace

https://claude.com/platform/marketplace
2•umangsehgal93•1m ago•0 comments

Numerical Linear Algebra, 25th Anniversary edition

https://epubs.siam.org/doi/book/10.1137/1.9781611977165
2•teleforce•1m ago•0 comments

Mime Type Is Showing

https://benjaminwil.info/antisocial/07/
2•speckx•2m ago•0 comments

Diff Sentry – GitHub Action that flags risky AI-generated diffs before merge

https://diffsentry.dev
2•zeito•2m ago•1 comments

ICE is paying 'eye-popping' prices for warehouse detention centers

https://www.usatoday.com/story/news/nation/2026/03/06/ice-warehouse-immigration-detention-expansi...
2•petethomas•2m ago•0 comments

Persian Gulf desalination plants could become military targets in regional war

https://theconversation.com/persian-gulf-desalination-plants-could-become-military-targets-in-reg...
2•mhb•3m ago•0 comments

Europol: Global crime network targeted in international operation

https://www.europol.europa.eu/media-press/newsroom/news/small-swedish-town-to-global-crime-networ...
2•embedding-shape•3m ago•0 comments

Make It Shitty

https://www.theregister.com/2026/03/06/forbrukerradet_aim_enshittification/
2•bwfan123•3m ago•1 comments

Payphones of the World

https://www.2600.com/payphones
1•linsomniac•4m ago•0 comments

AI Slop Bores Me

https://www.youraislopbores.me/
1•askl•5m ago•0 comments

ECAL–A Typographic Atlas: Mapping the Territory of Contemporary Type

https://www.printmag.com/type-tuesday/ecal-a-typographic-atlas-mapping-the-territory-of-contempor...
1•bryanrasmussen•5m ago•0 comments

OpenClaw Security

https://docs.openclaw.ai/gateway/security
1•mooreds•5m ago•0 comments

Extensible Determinate Nix flake outputs with flake schemas

https://determinate.systems/blog/introducing-flake-schemas/
1•biggestlou•6m ago•0 comments

Show HN: A local, multi-agent, customizable stack built for researchers

https://github.com/topherchris420/james_library
3•vers3dynamics•7m ago•0 comments

Master Machine Learning with scikit-learn (free book)

https://mlbook.dataschool.io/
1•dataschool•7m ago•0 comments

In defense of the "new" Studio Display

https://sixcolors.com/post/2026/03/in-defense-of-the-new-studio-display/
1•tosh•9m ago•0 comments

I Am Ditching WordPress for Static Sites and AI (and What Happened Next)

https://perezbox.com/2026/03/why-i-am-ditching-wordpress-for-static-sites-ai-and-what-happened-next/
1•CqtGLRGcukpy•9m ago•0 comments

Apple makes a Trojan horse play for the education market

https://sixcolors.com/post/2026/03/apple-makes-a-trojan-horse-play-for-the-education-market/
1•tosh•10m ago•0 comments

Show HN: Not All Agents – convince a room of agents that you're one of them

https://github.com/josephwegner/not-all-agents
1•josephwegner•10m ago•0 comments

Markdown, Llms.txt and AI Crawlers

https://dri.es/markdown-llms-txt-and-ai-crawlers
1•CqtGLRGcukpy•11m ago•0 comments

Can chat bots accommodate advertising?

https://www.dbreunig.com/2025/09/02/considering-ad-models-for-ai-products.html
1•dbreunig•12m ago•0 comments

Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

10•sam_palus•14m ago•1 comments

LLM-discussion: a local app for multi-model AI consensus (325 lines of Python)

https://cruftbox.com/2026/03/06/getting-a-better-answer-by-asking-three-ais-at-once-llm-discussion/
1•cruftbox•16m ago•0 comments

Sadiq Khan invites Anthropic to move to London

https://www.cityam.com/sadiq-khan-invites-anthropic-to-move-to-london/
1•salkahfi•16m ago•0 comments

What if reasoning happens before language?

https://github.com/stramanu/latent-cognitive-arch-exploration
1•stramanu•16m ago•1 comments

Securing AI Agents: Why Traditional Authorization Isn't Enough

https://www.permit.io/blog/securing-ai-agents-why-traditional-authorization-isnt-enough
1•mooreds•17m ago•0 comments

TerraPower gets permission to build, not operate, sodium-cooled nuclear reactor

https://www.theregister.com/2026/03/05/terrapower_sodium_cooled_nuclear_reactor/
2•Bender•17m ago•0 comments

How I think systemd IP address restrictions on socket units works

https://utcc.utoronto.ca/~cks/space/blog/linux/SystemdSocketIPRestrictions
2•speckx•18m ago•0 comments

Anthropic sues US Government after unprecedented national security designation

https://www.theregister.com/2026/03/06/anthropic_left_with_no_other/
1•Bender•19m ago•0 comments
Open in hackernews

Show HN: Powering React with Python (WASM)

https://medium.com/@olokobayusuf/powering-react-with-python-wasm-a7f3c52e34ad
3•olokobayusuf•10mo ago
A few weeks ago, Theo T3 posted a read-through of a Medium article showing how to augment an AngularJS website with WebAssembly in order to compute a factorial.

I've been building a general(-ish) purpose Python compiler, mainly focused on numerical computing and AI inference. I figured it would make a good exercise to create something similar, this time with a bit more number crunching.

I vibe-coded a Lightroom-esque image editor UI (thanks Claude!) then wrote a tiny Python function that does a contrast adjustment using PyTorch. It gets compiled to wasm with what I'm building, and runs blazing fast thanks to vectorized 128-bit wasm intrinsics (I wonder if we'll get 256-bit anytime soon).

Play with it here: https://github.com/olokobayusuf/photo-editor . I'm exploring building a WebGPU-powered tensor framework to go even faster. Let me know what you think!

Comments

olokobayusuf•10mo ago
Link to original article that kickstarted all of this: https://medium.com/@eugeniyoz/powering-angular-with-rust-was...