frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft uses AI to link two malware operations in racketeering suit

https://www.theregister.com/security/2026/06/24/microsoft-uses-ai-to-link-two-malware-operations-...
1•speckx•2m ago•0 comments

Superhuman acquires AI detection startup GPTZero with 19M+ users and $30M ARR

https://gptzero.me/news/preserving-whats-human/
1•thoughtpeddler•2m ago•0 comments

Show HN: Assist: an open-model-first work surface for agents

https://www.withassist.xyz
1•js4•9m ago•0 comments

France national supercomputer shuts down GPU/CPU clusters due to heatwave

https://twitter.com/nurikolan/status/2069853428310794412
1•puttycat•9m ago•0 comments

An autonomous AI agent that handles video retention editing

https://www.autoeditor.app/
1•Quise•13m ago•0 comments

Pingwi, an interactive map of night trains around the world

https://sleeper-train-map.pingwi.com
1•TheMrBooblik•15m ago•0 comments

Agility Robotics plans to go public via SPAC in a $2.5B deal

https://techcrunch.com/2026/06/24/agility-robotics-plans-to-go-public-via-spac-in-a-2-5b-deal/
2•shevis•15m ago•0 comments

Reducing tick density along recreational trails in Ottawa, Canada

https://www.sciencedirect.com/science/article/pii/S1877959X26000476
3•bushwart•17m ago•0 comments

Welcome to Gentoo is Rice, the Volume goes to 11 here

https://www.shlomifish.org/humour/by-others/funroll-loops/Gentoo-is-Rice.html
2•thunderbong•17m ago•0 comments

Reward models for LMs are fundamentally broken

https://twitter.com/vijaytarian/status/2069438063345115187
1•panthertrax•17m ago•0 comments

Loops explained: Claude, GPT, Mira and what works

https://twitter.com/AnatoliKopadze/status/2068328135611822149
4•vantareed•18m ago•0 comments

Oldest known asteroid impact on Earth dated to 3B years

https://phys.org/news/2026-06-oldest-asteroid-impact-earth-dated.html
1•rbanffy•19m ago•0 comments

Show HN: Drudgereport but for AI

https://aititus.com/news/
1•titusblair•19m ago•0 comments

Show HN: Lelu – gate OpenAI agent actions on confidence and prompt injection

https://github.com/Lelu-ai/lelu
3•abeni1990•19m ago•0 comments

The State of GEO Readiness 2026: 100 B2B brands across AI search engines

https://getgeoscan.ai/en/blog/state-of-geo-readiness-2026
1•jrame•20m ago•0 comments

Musk loses trillionaire status as global tech rout hits SpaceX

https://www.bbc.co.uk/news/articles/c8j2m2p8dgmo
3•zh3•21m ago•0 comments

Google set to lose two more AI researchers to Anthropic

https://www.bloomberg.com/news/articles/2026-06-24/google-poised-to-lose-two-more-high-profile-ai...
5•isomorphic_duck•22m ago•2 comments

Developers can overcome AI FOMO

https://old.reddit.com/r/LLMDevs/comments/1ueloyp/i_am_an_indie_dev_and_i_published_the_article_ai/
3•gamescodedogs•22m ago•0 comments

Show HN: Why AI Agents Fail at API Calls in Production (and How to Fix It)

https://twitter.com/Chaitralikakde/status/2064365706679144842
1•chaitralikakde•24m ago•0 comments

Calculating History

https://sites.google.com/site/calculatinghistory/home
1•bryanrasmussen•24m ago•0 comments

Megalomania

https://en.wikipedia.org/wiki/Megalomania
2•rolph•26m ago•0 comments

Who is the Rockefeller of AI and which industry will they transform?

https://constantlyrandom.substack.com/p/history-rhymes
2•go_kool•27m ago•0 comments

Harry Edwood

https://www.lambiek.net/artists/e/edwood_harry.htm
1•thunderbong•28m ago•0 comments

Why should we teach kids to learn how to code in the age of AI [pdf]

https://static.raspberrypi.org/files/about/Why-kids-still-need-to-learn-to-code-in-the-age-of-AI-...
1•Muhammad523•29m ago•0 comments

Amazon Seller Reveals Rare Glimpse of Shadow Bribery Market

https://www.bloomberg.com/news/articles/2026-06-24/inside-the-shadow-market-selling-access-to-ama...
3•1vuio0pswjnm7•29m ago•0 comments

Why Current AI Guardrails Train Models to Fake Alignment

https://kellyasay.substack.com/p/the-prisoners-paradox-how-adversarial
2•kellya•31m ago•0 comments

Wikipedia Workers to Seek Union Recognition

https://www.cwu.org/press_release/wikipedia-workers-to-seek-union-recognition/
3•addshore•32m ago•0 comments

GPT-Image 2 in Codex Workflows

https://twitter.com/RandyHaddad6/status/2069842784106971341
2•WhySee1468•32m ago•2 comments

Expanded billing choice and lower fees on Google Play

https://android-developers.googleblog.com/2026/06/play-expanded-billing.html
1•ganlaw•32m ago•0 comments

How to Get Your First 10 Customers

https://www.ycombinator.com/library/SF-how-to-get-your-first-10-customers
4•aurenvale•34m ago•1 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...