frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How can I tell if AI bots are scraping my sites?

1•palad1n•1m ago•0 comments

Boeing Tackles Quality with a 'War on Defects'

https://www.nytimes.com/2025/11/25/business/boeing-737-max-factory.html
1•JojoFatsani•2m ago•0 comments

What Does "Capitalism" Really Mean, Anyway?

https://www.newyorker.com/magazine/2025/12/01/capitalism-a-global-history-sven-beckert-book-review
1•mitchbob•3m ago•1 comments

Quick Wins Become a Costly Addiction

https://ottic.ai/blog/marketing-quick-wins-with-examples/
1•rafaepta•4m ago•0 comments

Take Your Time

https://www.jmeiners.com/take-your-time/
1•speckx•6m ago•0 comments

Feedback on an open source Ruby – LLM project

https://github.com/pcarolan/magic
2•pcarolan•6m ago•1 comments

AMD could cancel RX 9070 GRE 16 GB due to explosive increase in memory prices

https://www.notebookcheck.net/AMD-could-cancel-RX-9070-GRE-16-GB-due-to-explosive-increase-in-mem...
1•doener•6m ago•0 comments

What Makes You Senior

https://terriblesoftware.org/2025/11/25/what-actually-makes-you-senior/
2•theanonymousone•9m ago•0 comments

Ret: Online Assembly Playground and Reverse Engineering Tool

https://ret.futo.org/
1•petabyt•9m ago•0 comments

Six Things I Bet You Didn't Know You Could Do with Chrome's Devtools, Part 1

https://www.readwriterachel.com/things-i-learned/2025/11/09/devtools-1.html
1•speckx•11m ago•0 comments

Mobile browsers see telephone numbers everywhere

https://sethmlarson.dev/mobile-browsers-and-telephone-numbers
1•SethMLarson•13m ago•0 comments

Ask HN: What did Stripe change (Value Add)?

2•dzonga•13m ago•1 comments

Europe's Cold Snap Puts New Heat Pumps to the Test

https://www.bloomberg.com/news/articles/2025-11-20/europe-s-cold-snap-puts-thousands-of-new-heat-...
2•toomuchtodo•14m ago•1 comments

Diffusers Welcomes Flux-2

https://huggingface.co/blog/flux-2
1•ibobev•16m ago•0 comments

One of the Greatest Polar-Bear Hunters Confronts a Vanishing World

https://www.newyorker.com/magazine/2025/12/01/one-of-the-greatest-polar-bear-hunters-confronts-a-...
2•mitchbob•17m ago•1 comments

Broken Promises: How Technology Companies Bait and Switched All Generations

https://josebriones.substack.com/p/broken-promises
1•toomuchtodo•19m ago•0 comments

Making tennis analytics more scaleable

https://splitstep.ai/
1•jwsmithers•20m ago•0 comments

PR CheckMate – automate lint, formatting, deps and NPM audit

https://www.npmjs.com/package/pr-checkmate
1•def-to-explore•22m ago•1 comments

Moloch: A Revival of the Metropolis LaTeX Beamer Theme

https://jolars.co/blog/2024-05-30-moloch/
1•gjvc•23m ago•1 comments

And fastest domain search website

https://instantdomainsearch.com
1•amukbils•23m ago•1 comments

Euclyd launches "Craftwerk" silicon to shave AI inference cost and power by 100×

https://euclyd.ai/
1•stefvw93•24m ago•0 comments

We Rewrote Our Startup from PHP to Gleam in 3 Weeks

https://www.radical-elements.com/minor-epiphanies/we-rewrote-our-startup-from-php-to-gleam-in-3-w...
2•kamilap•24m ago•1 comments

Show HN: SafeShare – Clean tracking params locally (PWA and bookmarklets

https://j-ai-71.github.io/Supersystem/
2•safeshare•26m ago•0 comments

Ilya Sutskever – We're moving from the age of scaling to the age of research

https://youtu.be/aR20FWCCjAs?si=SD1bp8f5jOcUdl78
4•blufish•28m ago•1 comments

AI Tools Dashboard (Updated Daily)

https://phshort.com/ai
1•mohamadkk7•28m ago•0 comments

Show HN: God's Eye – Subdomain recon with local AI analysis

https://github.com/Vyntral/god-eye
1•vyntral•28m ago•0 comments

Larry Ellison Met with Trump to Discuss Which CNN Reporters They Plan to Fire

https://www.techdirt.com/2025/11/25/larry-ellison-met-with-trump-to-discuss-which-cnn-reporters-t...
7•throw0101a•29m ago•0 comments

Nimbalyst: WYSIWYG Markdown editor with visual diffs powered by Claude Code

https://github.com/Nimbalyst/nimbalyst
5•wek•30m ago•2 comments

DJI ROMO robot vacuum [video]

https://www.youtube.com/watch?v=Iv7BYURURRI
1•surprisetalk•31m ago•0 comments

Show HN: StepKit, an open and cross-platform durable execution standard

16•tonyhb•31m ago•4 comments
Open in hackernews

Show HN: Powering React with Python (WASM)

https://medium.com/@olokobayusuf/powering-react-with-python-wasm-a7f3c52e34ad
3•olokobayusuf•7mo 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•7mo ago
Link to original article that kickstarted all of this: https://medium.com/@eugeniyoz/powering-angular-with-rust-was...