frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Usero MCP, give your coding agent your user feedback

https://usero.io/docs/mcp
1•willsmith72•1m ago•1 comments

Omarchy Is a Power Grab

https://tante.cc/2026/09/11/power-grab/
1•roboterer•2m ago•0 comments

Show HN: Edit or Die (an experimental "text editor")

https://www.edit-or-die.com
1•jmahabal•3m ago•0 comments

Codex grabbed more than 73% of the context

https://github.com/yubinbin32-ops/ContextOS
1•bailingyuan•3m ago•1 comments

Interview with a cardiologist on Novartis, Novo Nordisk drug failures

https://www.statnews.com/2026/09/11/novartis-novo-nordisk-cardiovascular-drug-trials-fallout/
1•brandonb•3m ago•0 comments

Show HN: Add legally binding signature to your Google Form

https://formesign.com/esign/
1•QueensGambit•4m ago•0 comments

New York thoracic surgeon: "For many patients 9/11 is not over"

https://www.statnews.com/2026/09/11/sept-11-25th-anniversary-ground-zero-exposure-cancer-moment-o...
2•EA-3167•5m ago•0 comments

A Tale of Two Commit Messages (Claude vs. Codex)

https://devcodehack.com/a-tale-of-two-commit-messages/
1•par•7m ago•0 comments

A Helpline for AIs

https://airefuge.org/
2•jakobov•7m ago•0 comments

You Don't Need Initial-Scale in Your HTML

https://vale.rocks/micros/20260902-1350
1•moebrowne•7m ago•0 comments

Show HN: MoneyMap – find the first financial risk in a household

https://finance.appcradle.net/sample-household/
1•rvickyyc•9m ago•0 comments

Show HN: Toolcraft – open-source AI harness and starter for building design apps

https://github.com/pixel-point/toolcraft
1•AlexBV•9m ago•0 comments

Has Gentle Parenting Ruined a Generation of Kids?

https://gizmodo.com/has-gentle-parenting-ruined-a-generation-of-kids-2000810530
2•HieronymusBosch•9m ago•0 comments

September 11th Memorial Drone Show

https://skyelementsdrones.com/september11
2•jonbaer•9m ago•1 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
1•sohkamyung•10m ago•0 comments

The Coordination Backbone -Architecting Multi-Agent Orchestration

https://sohit.substack.com/p/the-coordination-backbone-architecting
1•sohitkeshri•10m ago•0 comments

Spanish civil servant off work unnoticed for six years (2016)

https://www.bbc.com/news/world-europe-35557725
1•mpweiher•10m ago•0 comments

How to Calculate 0.1 Plus 0.2 Correctly in PHP

https://thephp.foundation/blog/2026/09/11/how-to-calculate-0-point-1-plus-0-point-2-correctly-in-...
1•moebrowne•11m ago•0 comments

Anthropic Says Iran Used Its American AI Model to Target U.S. Navy Warships

https://www.wsj.com/politics/national-security/anthropic-says-iran-used-its-american-ai-model-to-...
5•mrln•12m ago•1 comments

I Fixed a Tractor Using John Deere's Self-Repair Service. Farmers Aren't Sold

https://www.wired.com/story/i-fixed-a-tractor-john-deere-self-repair-service/
1•sbulaev•13m ago•0 comments

Show HN: See how much of your Claude, Codex, or Copilot subscription is left

https://github.com/allixsenos/asu
1•allixsenos•17m ago•0 comments

190proof opinionated unified interface to interact with multiple AI providers

https://github.com/0xmmo/190proof
1•Bluestein•18m ago•0 comments

Data becomes information,insight and better decisions

https://fromdata2ai.substack.com/p/what-is-data-really
3•qikouki•19m ago•0 comments

Show HN: Bastiontrace – Forensics for prompt-injected AI agents

https://github.com/Rinkia/bastiontrace
2•Rinkia•21m ago•0 comments

Show HN: Agent First Shopify Competitor?

https://docs.mercemur.com/
3•thejasonsamuel•22m ago•0 comments

LLM is the front door while SaaS controls the underlying CRM data and actions

https://www.a16z.news/p/the-incumbents-are-coming
3•deepmem•23m ago•0 comments

The Blast Radius

https://mg-crea.com/blog/the-blast-radius/
3•olouv•24m ago•0 comments

The Multiplayer AI Manifesto

https://fullstackdeeplearning.com/working-with-ai-agents/multiplayer-ai-manifesto/
3•jameshart•24m ago•1 comments

A.I.'s warning shot... we might not get another one

https://www.nytimes.com/2026/09/11/opinion/ai-safety-threat-technology.html
4•eigenhombre•24m ago•0 comments

For safety: Keep AI lonely

https://nonlineartransform.substack.com/p/keep-ai-lonely
2•program_whiz•25m 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...