frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Google is drafting AI chatbot laws around the country

https://www.npr.org/2026/09/18/nx-s1-5968878/ai-chatbots-safety-regulation-google
1•andsoitis•5m ago•0 comments

Giveaway Bot Services

https://discord.com/oauth2/authorize?client_id=1547251904277651578&permissions=4503599627783232&i...
1•jotajx•5m ago•0 comments

Nvidia's Jensen Huang rejects AI extinction warnings as "doomsday narratives"

https://www.cbsnews.com/news/jensen-huang-nvidia-rejects-ai-extinction-warnings/
2•AlexDragusin•8m ago•0 comments

ReBarUEFI: Resizable BAR for almost any UEFI system

https://github.com/xCuri0/ReBarUEFI
1•nateb2022•9m ago•0 comments

OpenAI Sees Burning Through $278B by 2030: FT

https://www.bloomberg.com/news/articles/2026-09-18/openai-projects-burning-through-278-billion-by...
2•sbulaev•10m ago•1 comments

The Roman Space Telescope, explained and up to date

https://romantelescope.info/
1•smcnally•13m ago•0 comments

The Pain Axis: LLMs Represent Self-Directed Harm and Act to Relieve It

https://arxiv.org/abs/2609.16247
1•Anon84•13m ago•0 comments

Show HN: Pollresults.org – free US election opinion poll API

https://pollresults.org
1•ronbenton•15m ago•0 comments

Chasing Speed of Light on TPU v6e

https://www.sailresearch.com/blog/tpu-v6e-gemma
2•simonpure•16m ago•0 comments

1k careers. One universe. Sign up not necessary

https://epie.life/
1•krnmythicx•21m ago•1 comments

Ask HN: Anyone Played with Jetson Orin Nano Super?

1•prologic•25m ago•0 comments

Show HN: Gdocs-me-up: a high-fidelity Google Docs exporter

https://github.com/behdad/gdocs-me-up
1•behdad•30m ago•0 comments

OpenPrompt – one workspace for developers using multiple AI coding tools

https://openprompt.tech
1•harafernando•32m ago•0 comments

Masked LFW (MLFW) Database

http://whdeng.cn/MLFW/index.html
1•teleforce•33m ago•0 comments

CostRift

https://costrift.com
1•DavidFerreira•34m ago•0 comments

Jev, Prolog, Pi, and the dream of probabilistic logic programming

https://deepclause.substack.com/p/jev-prolog-pi-and-the-dream-of-probabilistic
3•schmuhblaster•35m ago•0 comments

Why back propagation goes backward

https://gregorygundersen.com/blog/2018/04/15/backprop/
2•andsoitis•35m ago•0 comments

Recursive Cognitive Optimization (RCO)

https://github.com/sealvlon/Recursive-Cognitive-Optimization-RCO-
1•sealvarezl•40m ago•0 comments

Trump says it's time to rebrand AI with a new name

https://techcrunch.com/2026/09/19/trump-suggests-rebranding-ai-with-a-new-name-says-hes-also-crea...
2•GymInMeCricket•41m ago•2 comments

Can You Beat Jev?

https://antics.gg/can-you-beat-jev
1•eric_khun•47m ago•1 comments

Sub-15ms, non-autoregressive, local drop-in alternative to TypeSafe Jev

https://github.com/wfzyx/von
2•0x1997•50m ago•0 comments

Models know when they're reward hacking – and we can catch them at scale

https://www.goodfire.com/research/reward-hacking-activation-monitors
1•gmays•51m ago•0 comments

Fundamental Theorem of Calculus [Slop]

https://www.proofatlas.ai/library-theorems/fundamental-theorem-calculus/
1•throwyonion•53m ago•0 comments

Show HN: Vsqrd – AWS for Biology Experiments

https://vsqrd.com/
1•misterchocolat•56m ago•0 comments

The First Ten Years

https://gregorygundersen.com/blog/2025/01/30/first-ten-years/
1•andsoitis•57m ago•0 comments

Succinct Sounds-Like Starting Vowels

https://wiredream.com/vowels/
1•dgacmu•58m ago•0 comments

Show HN: Lain, a structural code graph and agent coordinator for coding agents

https://github.com/spuentesp/lain
2•spuentesp•1h ago•1 comments

Two similar AI judges fail together 7.7x more often than independence predicts

https://github.com/LAWLESS1987/covenant
2•Lawless1987•1h ago•0 comments

A refined phylochronology of the second plague pandemic in Western Eurasia

https://www.pnas.org/doi/10.1073/pnas.2534899123
2•Thevet•1h ago•0 comments

How I view LLMs as Sept 2026

https://bhardwajrish.blogspot.com/2026/09/how-i-view-llms-as-sept-2026.html
1•crearo•1h 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...