frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Exoplanets Around Barnard's Star Are Uninhabitable

https://www.universetoday.com/articles/astronomers-determine-that-exoplanets-around-barnards-star...
1•root-parent•53s ago•0 comments

Launching Courieroo – P2P Delivery

https://landing.courieroo.com/
1•sitesouk•3m ago•0 comments

Andrew Ng made an open source agent

https://openworker.com/
1•sudo_cowsay•7m ago•0 comments

Claude Code hooks that block find/sed/cat, redirect to native tools

https://github.com/HabibiCodeCH/claude-no-bash-detour
1•habibicode•8m ago•0 comments

Kitboga manipulates AI scam call into hallucination

https://www.youtube.com/watch?v=lk3jCuITwcE
1•platevoltage•9m ago•0 comments

A Master of the Traveling Salesperson Problem Finds His Own Path

https://www.quantamagazine.org/shayan-oveis-gharan-wins-2026-imu-abacus-medal-20260723/
1•pykello•10m ago•0 comments

Police Keep Losing Their Jobs for Using Flock Cameras to Stalk People

https://www.motherjones.com/politics/2026/07/police-losing-jobs-flock-cameras-alprs/
1•baranul•11m ago•0 comments

Are emoji allowed in XMPP addresses?

https://op-co.de/blog/posts/emoji_xmpp_address/
1•fanf2•12m ago•0 comments

Show HN: Forje Studio – data-driven design and motion, entirely client-side

https://studio.forjelo.com
1•teutrindade•17m ago•0 comments

Uncle Bob: My current strategy is to not read any of the code by my agents

https://twitter.com/unclebobmartin/status/2080257779395154409
2•jameslk•17m ago•0 comments

Audit: Skill library for agentic app audit

https://github.com/metacircu1ar/audit
1•metacircu1ar•18m ago•1 comments

Euro Banknotes Design Proposals

https://surveys.ecb.europa.eu/10b/neweuro/
3•wise_blood•19m ago•0 comments

Rare contagious cancer found in fish from Quebec and U.S. lakes

https://www.cbc.ca/news/science/fish-transmissible-cancer-9.7279045
3•jnord•21m ago•0 comments

ZenFS: Node's fs API in the Browser

https://zenfs.dev/
1•Nars088•21m ago•0 comments

AI-first development: Stories as a source of truth - by toby [video]

https://www.youtube.com/watch?v=1YoP7u_rqgQ
2•puuush•21m ago•1 comments

Show HN: Krypter – simple offline message and file encryption mobile app

1•nobodyshere•22m ago•0 comments

All your coding agents, synced everywhere, free forever

https://www.ade-app.dev/
1•arul28•23m ago•1 comments

The Book Prize Index

https://book-prize-index.vercel.app
2•Luc•25m ago•0 comments

Show HN: Photo of a handwritten alphabet to installable TTF, open source

https://github.com/danilo-znamerovszkij/draw-your-font
1•danilo_z_j•26m ago•0 comments

Mohabi: Disaggregating and Sandboxing the Firefox JavaScript Engine

https://www.usenix.org/conference/osdi26/presentation/sharma
1•matt_d•28m ago•0 comments

Knowledge Graph Is Making Your Agent Dumber

https://praveenvijayan.substack.com/p/your-knowledge-graph-is-making-your
1•praveenvijayan•29m ago•0 comments

Python built-in functions to know (2019)

https://www.pythonmorsels.com/built-in-functions-in-python/
1•downbad_•29m ago•0 comments

Hive_review: Multi-agent AI code-review loop

https://github.com/metacircu1ar/hive_review
1•metacircu1ar•29m ago•1 comments

Webhound MCP – Deep research with depth control

https://github.com/WebhoundAI/webhound-mcp
1•mfkhalil•30m ago•0 comments

OnePanel – run all your work apps in one desktop workspace

https://onepanel.it/?lang=en
1•evhalon•31m ago•0 comments

Building a transparent high-performance proxy cache for DoorDash services

https://careersatdoordash.com/blog/high-performance-proxy-cache-for-doordash-services/
1•pmg1991•33m ago•0 comments

Stop the NDAA: Congress Is Giving Away America's Sovereignty [video]

https://www.youtube.com/watch?v=K0860p-QK8c
1•baranul•33m ago•0 comments

Worksheet: On Using the Internet Mindfully

https://thecreativeindependent.com/library/worksheet-on-using-the-internet-mindfully/
1•cesarrg•34m ago•0 comments

Topcoat: framework for building fullstack reactive web apps with Rust

https://tokio.rs/blog/2026-07-22-announcing-topcoat
1•praseodym•34m ago•0 comments

It's getting harder to focus every day

https://glyphack.com/attention/
2•peykar•36m 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•1y 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•1y ago
Link to original article that kickstarted all of this: https://medium.com/@eugeniyoz/powering-angular-with-rust-was...