frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A key transparency self-audit can verify the wrong identity

http://gorokhov.dev/posts/key-transparency-self-audit/
1•Hexmere•28s ago•0 comments

Show HN: Card Shop Directory – Find trading card shops by state, city, and game

https://cardshopdir.com
1•laimingj•1m ago•0 comments

Which AI Do You Think Will Have the Greatest Impact on the World?

1•SudilaDasun•3m ago•0 comments

Show HN: I asked LLMs to choose between popular developer tools

https://github.com/betocmn/preseason
1•thedreammachine•4m ago•0 comments

CobaltC – The Successor to C?

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
1•SilentLambda•7m ago•0 comments

You Are the Harness

1•learningstud•7m ago•0 comments

Internet centralization and the original sin of NAT

https://dreamstation.systems/personal/ntppost.html
1•robinpie•10m ago•0 comments

Pentagon installs military influencers in civilian roles

https://www.washingtonpost.com/national-security/2026/08/30/pentagon-secretly-installs-military-i...
1•dataflow•11m ago•0 comments

Show HN: ScoutLayer – a simple API to find contacts from a domain

https://scoutlayer.io
2•yuangwya•11m ago•0 comments

Endless sitcom using Minimax H3 and a turbo LoRA

https://www.twitch.tv/dereactorwah
1•ttul•14m ago•0 comments

About YC Founder PG

https://twitter.com/PalmerLuckey/status/2094192472348098699
2•kappi•16m ago•0 comments

Exponential Smoothing

https://lisyarus.github.io/blog/posts/exponential-smoothing.html
1•ffin•21m ago•0 comments

The Part of Me That Doesn't Believe AI Is Fine

https://danunparsed.com/p/ai-is-fine
1•sambellll•23m ago•0 comments

HermOS – a local-first AI agent IDE

https://hermos.is-a.dev/
2•WFekik•23m ago•0 comments

We tackled the blockchain trilemma with multi‑bucket parallelism (niumeta)

https://github.com/niumeta/niumeta
1•niumeta_TZ•24m ago•1 comments

Lyft Charged Me $150 for Vomiting in a Car, but I Didn't Do It

https://www.nytimes.com/2026/08/20/travel/lyft-cleaning-charge.html
1•lxm•27m ago•0 comments

Domestic cats kill 1.3–4.0B birds and 6.3–22.3B mammals annually

https://www.nature.com/articles/ncomms2380
3•agnosticmantis•29m ago•0 comments

Just finished building a security audit tool

1•AIwebPageSEO•32m ago•0 comments

Stay logged out of Reddit and keep the old.reddit.com layout. Beta testers plz

https://github.com/kookaburrabarrel/sheddit/
2•kookaburrabarre•32m ago•1 comments

The Airlink Embraers just flew dangerously low over DHL Stadium in Cape Town

https://www.reddit.com/r/aviation/comments/1w1pcbs/the_airlink_embraers_just_flew_dangerously_low/
1•mcapodici•33m ago•0 comments

Show HN: RecQL – A portable query language for search and recommendation

https://github.com/recql
2•jonahharris•35m ago•0 comments

Show HN: Niu Lai Series Website

https://niulaify.com
1•bookbyter•36m ago•0 comments

Show HN: Shell utility for encrypting and decrypting files using scrypt

https://github.com/nodesocket/cryptr
1•nodesocket•37m ago•0 comments

Show HN: How to Fish Game Wiki

https://howtofish-game.org/
1•bookbyter•38m ago•0 comments

The Absurdity of Desktop Linux

https://www.augustl.com/blog/2026/absurdity-of-desktop-linux/
2•ingve•39m ago•2 comments

Copilot code review: Resolution reasons and expanded capabilities

https://github.blog/changelog/2026-08-27-copilot-code-review-resolution-reasons-and-expanded-capa...
1•kyisaiah47•48m ago•0 comments

Before NTP there were Time and Daytime

https://www.jeffgeerling.com/blog/2026/rfc-867-868-time/
1•ingve•52m ago•1 comments

The Shapes of Agent Memory – Files, Stores, and Experience

https://pinglin.tw/blog/the-shapes-of-agent-memory/
1•gmays•54m ago•0 comments

Special Is Optional

https://nik.art/special-is-optional/
2•herbertl•57m ago•0 comments

Creative Clarity

https://herbertlui.net/creative-clarity/
3•herbertl•58m 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...