frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Only Crypto Story You Need, by Matt Levine (2022)

https://www.bloomberg.com/features/2022-the-crypto-story/
1•Tomte•1m ago•0 comments

Two Wrong Answers, One Exact Solution: The Arithmetic Method Schools Forgot

https://valeman.medium.com/two-wrong-answers-one-exact-solution-the-arithmetic-method-schools-for...
1•ibobev•1m ago•0 comments

Show HN: PHP-fts 2.0 – Pure-PHP full-text search, now in 26 writing systems

https://github.com/olivier-ls/php-fts/releases/tag/v2.0.0
1•asmodios•1m ago•0 comments

Most people prefer traditional architecture

https://www.worksinprogress.news/p/do-people-prefer-traditional-architecture
1•alihm•1m ago•0 comments

Airbnb Sets Up $250M Fund to Invest in Housing Construction

https://www.wsj.com/real-estate/airbnb-sets-up-250-million-fund-to-invest-in-housing-construction...
1•lode•1m ago•1 comments

It's All About the Permissions Recovery

https://blog.master.dev/its-all-about-the-permissions-recovery/
2•ibobev•2m ago•0 comments

What the Hugging Face Incident Means for Security Leaders

https://www.netskope.com/blog/when-the-attacker-is-your-own-model-what-the-hugging-face-incident-...
2•danielmorozoff•2m ago•0 comments

Dropping eBPF CPU Cost by About 90% with Memoization (Not AI Gen)

https://nathannaveen.dev/posts/dropping-ebpf-cpu-cost-by-90/
5•nathannaveen•2m ago•0 comments

How to make the most out of community

https://www.pawlean.com/posts/how-to-make-the-most-out-of-community
3•mooreds•2m ago•0 comments

Michaelsoft Binbows '97

https://uploads.ungrounded.net/alternate/1819000/1819914_alternate_173941_r106.zip/
2•austinallegro•3m ago•0 comments

Hypothesis – The #1 Social Annotation Tool for Higher Education

https://web.hypothes.is/
2•Tomte•3m ago•0 comments

Graphic Rants: Nanite Tessellation

http://graphicrants.blogspot.com/2026/02/nanite-tessellation.html
2•ibobev•4m ago•0 comments

My Health Insurance Denied My Cancer Treatment. I Emailed the CEO

https://www.vanityfair.com/story/healthcare-cancer-treatment-essay
3•mooreds•4m ago•0 comments

Canada's oil windfall may yet wipe out its losses from tariffs

https://www.cbc.ca/news/politics/canada-oil-prices-trump-iran-trade-war-tariffs-9.7341298
1•JumpCrisscross•4m ago•0 comments

Canada seeks Ukraine loan role to deepen EU ties

https://www.ft.com/content/9cd8cc79-e98a-449f-a903-609b034a56e3
1•JumpCrisscross•5m ago•0 comments

Ask HN: Why do HN admins kill whistleblowers like orangeberrytea

3•WhyCensor•5m ago•0 comments

Show HN: Prmptree – AI email agent with a trust dial, not an on/off switch

https://www.prmptree.com/
1•doingmybest1•6m ago•0 comments

WebGPU-Bench: A WebGPU Microbenchmark

https://ben3d.ca/blog/introducing-webgpu-bench
2•bhouston•6m ago•0 comments

Anthropic team lead: AI >10% to kill all humans in next decade

https://twitter.com/EvanHub/status/2097497037956891126
2•highfrequency•6m ago•0 comments

Free Book "Rust Projects – Write a Redis Clone" 3rd Edition

https://rust-projects-write-a-redis-clone.github.io/#3.0.0
2•thedigicat•8m ago•0 comments

Show HN: Fluidify – A wiki of the industrial world being built (post-2026)

https://www.fluidify.org/map
2•gts_nesov•8m ago•0 comments

Agents building research-ready datasets in mins

https://mostlyright.md/
3•Bobono•8m ago•0 comments

Sunday Tool Scrutiny

https://randsinrepose.com/archives/sunday-tool-scrutiny/
2•mooreds•8m ago•0 comments

A repo gained 3,278 stars while GitHub showed Andrej Karpathy as a contributor

3•newshackee•9m ago•0 comments

We caught our coding agents reading the answer key

https://aistackimec.substack.com/p/we-caught-our-coding-agents-reading
2•flifenstein•10m ago•0 comments

WalShadow: Sub-second Postgres replication to ClickHouse from physical WAL

https://clickhouse.com/blog/introducing-walshadow
3•saisrirampur•10m ago•0 comments

Fuzzy Graph

https://fuzzygraph.com
1•vismit2000•11m ago•0 comments

Russian Navy paints ships to resemble homes to deceive AI drones

https://twitter.com/JayinKyiv/status/2099403626712068129
2•ilamont•13m ago•0 comments

Unintuitive Software, Incessant Updates and Bloat

https://www.containsmoderateperil.com/blog/2026/9/12/unintuitive-software-incessant-updates-and-b...
2•speckx•13m ago•0 comments

Roblox is making easier to build games with AI and play outside of it

https://techcrunch.com/2026/09/11/roblox-is-making-it-easier-to-build-games-with-ai-and-play-them...
1•ltononro•15m 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...