frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made a social accountability app to make me ship

https://www.shipstreak.fyi/
1•Cbagenal•2m ago•1 comments

Google Is Using Nvidia's Playbook to Build a Rival AI Chip Business

https://www.wsj.com/tech/ai/google-is-using-nvidias-playbook-to-build-a-rival-ai-chip-business-1e...
1•gmays•3m ago•0 comments

Artificial

https://www.inkandswitch.com/tangents/artificial/
1•FelipeCortez•3m ago•0 comments

35°C Wet-Bulb – Narration of Robinson's 'The Ministry for the Future' Opening

https://www.youtube.com/watch?v=hXTbfBoRnao
1•SpiralLibrarium•10m ago•0 comments

Show HN: Souso – plan your week, fill your AH/Jumbo basket (MEGATHON Amsterdam)

https://souso.app
2•ntorresdev•13m ago•1 comments

Taste turns your Git history into enforceable coding judgment

https://github.com/dvcoolarun/taste-ai
1•dvcoolarun•13m ago•0 comments

Chrome Breaks Records Again on Speedometer 3.1 and Jetstream 3

https://blog.google/chromium/a-double-victory-for-web-speed-chrome-breaks-records-again-on-speedo...
4•gurgunday•14m ago•1 comments

Secure Boot certificate changes in 2026: Guidance for RHEL environments

https://developers.redhat.com/articles/2026/02/04/secure-boot-certificate-changes-2026-guidance-r...
1•Bender•14m ago•0 comments

Brain the Size of a Planet: Are LLMs Thonking Too Hard?

https://parsiya.net/blog/llm-thonking/
1•gmays•15m ago•0 comments

Show HN: Autolectures – lecture videos from prompts with Remotion

https://www.holma.io/blog/posts/autolectures
3•lapurita•16m ago•0 comments

ECBSV

https://www.ssa.gov/dataexchange/eCBSV/index.html
1•mooreds•17m ago•0 comments

Erasing Existentials

https://wolfgirl.dev/blog/2026-05-20-erasing-existentials/
2•birdculture•24m ago•0 comments

Show HN: Exploring a More Pythonic AWS SDK

https://github.com/kap-sh/aws-sdk-python
2•karpetrosyan•24m ago•0 comments

AI Boom Hits Labor Market Reality Check

https://fivetakes.news/workers-are-emerging-as-the-next-big-ai-logjam
1•mmeirovich•25m ago•1 comments

Claude Guillemot: Ubisoft founder killed in plane crash

https://news.sky.com/story/claude-guillemot-ubisoft-founder-killed-in-plane-crash-13556248
1•austinallegro•25m ago•0 comments

Show HN: Scalable reversi – infinite undo available via a1 style

https://h1yapp.com/en/scripting/pwa/scalablereversi/
1•h1yapp•26m ago•0 comments

Apple Internals: Swift in the Kernel

https://blog.calif.io/p/apple-internals-swift-in-the-kernel
2•haeseong•28m ago•0 comments

Robotics Teams Are Rebuilding the Data Stack from Scratch

https://rerun.io/blog/data-layer-tax
2•Tycho87•29m ago•0 comments

I was wrong about the Midjourney ultra-sound scanner

https://twitter.com/MattZirwas/status/2068365802491834541
4•MrBuddyCasino•31m ago•0 comments

Backtest Is Lying to You

https://moai.studio/blog/posts/your-backtest-is-lying.html
3•ionwake•31m ago•0 comments

How to Build a Marketplace Startup That Solves the Chicken-and-Egg Problem

https://startupfortune.com/how-to-build-a-marketplace-startup-that-solves-the-chicken-and-egg-pro...
2•insanetech•32m ago•0 comments

Why the Cookbook Endures

https://tastecooking.com/why-the-cookbook-endures/
3•Tomte•35m ago•0 comments

Electric air taxis are stuck in the courtroom

https://www.theverge.com/column/950975/electric-air-taxis-lawsuits
3•Brajeshwar•35m ago•1 comments

Backporting bug fixes is dead, Project Valkey now sends in the bots

https://thenewstack.io/valkey-ai-backporting-agents/
2•Brajeshwar•35m ago•0 comments

Linux '95

https://www.linuxjournal.com/article/2682
2•theanonymousone•35m ago•0 comments

Vulgar Materialism

https://borretti.me/article/on-vulgar-materialism
3•Tomte•36m ago•0 comments

Show HN: Teach your kids absolute (perfect) pitch

https://github.com/paytonjjones/bsharp
3•paytonjjones•36m ago•0 comments

Printing Gaussian Splats

https://www.patreon.com/DanyBittel/posts/printing-splats-161333338
4•ilnmtlbnm•37m ago•0 comments

Show HN: TermType – a terminal typing game where words fall like Space Invaders

https://github.com/GiovanniCst/termtype
3•J_cst•38m ago•0 comments

Anthropic to Require ID Verification for Certain Capabilities Starting July 8

https://old.reddit.com/r/ClaudeAI/comments/1ubm53n/official_anthropic_to_require_identity/
53•bathory•42m ago•32 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...