frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What to Know About JavaScript in 2026

https://blog.master.dev/what-to-know-in-javascript-2026-edition/
1•eustoria•1m ago•0 comments

Lightspeed: Deterministic agent harness for Temporal (in Rust)

https://github.com/smartcomputer-ai/lightspeed
1•handfuloflight•1m ago•0 comments

Confronting Unknowns: A Framework for Anomalous Aerospace Events

https://sensemaking.wtf/work/cu26-p01
1•JMill•1m ago•0 comments

Proxy and Reflect

https://piccalil.li/blog/proxy-and-reflect/
1•eustoria•2m ago•0 comments

AMD-AGI/HyperLoom – Agentic system that auto-optimizes LLM workloads on AMD GPUs

https://github.com/AMD-AGI/Hyperloom
1•mindcrime•2m ago•0 comments

Gemini 3.8 text-to-speech says hello

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-text-to-speech/
1•swolpers•2m ago•0 comments

I See Dead Cars: A Mailman's Daily Trip Down Memory Lane

https://www.caranddriver.com/features/a15135647/classic-cars-left-for-dead/
1•samtheDamned•2m ago•0 comments

Paste.sh – Encrypted Pastebin

https://paste.sh/
1•eustoria•3m ago•0 comments

Why Human Informants Still Matter in the Age of AI Surveillance

https://smallwarsjournal.com/2026/08/20/why-human-informants-still-matter-in-the-age-of-ai-survei...
1•DemiGuru•3m ago•0 comments

You Can See Everything – Official Trailer – A24 [video]

https://www.youtube.com/watch?v=HvW_N5p1q44
1•handfuloflight•4m ago•0 comments

Valve's Linux Steam client now runs on an Android phone. No root

https://the412banner.github.io/Gamehub-Components/linux-steam-client/
1•speckx•4m ago•0 comments

Funding MIT Software with Commercial-Use Binaries

https://yaak.app/blog/funding-open-source
1•gschier•4m ago•0 comments

Show HN: Open Code for Jev

https://github.com/backant-io/jevelry
1•phegler•6m ago•0 comments

Radicle: Disclosure of Vulnerability in the Network Protocol

https://radicle.dev/2026/09/23/disclosure-of-vulnerability-in-network-protocol
1•lostmsu•8m ago•0 comments

A week in Beijing and Shanghai with the people building AI in China

https://earnedintuition.substack.com/p/involution-without-export-is-wasted
2•bluepeter•9m ago•0 comments

How to teach a robot to water the table

https://humansignal.com/blog/how-to-teach-a-robot-to-water-the-table/
1•ReDeiPirati•10m ago•0 comments

Amazon opens its seller tools to outside AI agents, starting with Anthropic

https://www.geekwire.com/2026/amazon-opens-its-seller-tools-to-outside-ai-agents-starting-with-an...
1•thm•10m ago•0 comments

Can you even "own" a passkey?

https://cendyne.dev/posts/2026-09-06-can-you-even-own-a-passkey.html
2•surprisetalk•11m ago•0 comments

Show HN: Attn – An open-source local Gmail client

https://github.com/stephenw310/attn
2•stephenw310•11m ago•0 comments

SEO Specialist

1•esraaelhaddad•12m ago•0 comments

Fixing the Portobello Police Station Clock

https://pointinthecloud.com/2026-04-11-211700.html
10•avidly•12m ago•2 comments

Show HN: OpenGET, an Old School RuneScape Grand Exchange Tracker

https://grandexchange.dreamstation.systems/
1•robinpie•13m ago•0 comments

Evaluator Optimizer

https://platform.claude.com/cookbook/patterns-agents-evaluator-optimizer
2•softwaredoug•13m ago•0 comments

Why are Opus 5.5 and GPT-6 Sol cheaper?

https://www.claudecodecamp.com/p/why-new-models-get-cheaper
1•aray07•16m ago•0 comments

Ask HN: Anyone working in Intellingent Doc Processing (IDP)? What do you do?

1•akudha•16m ago•0 comments

GPT-6 Astra has gained the ability to drive a car

https://drivingbench.com/
2•plurby•17m ago•0 comments

Jev does not play dice

https://kantahayashiai.github.io/posts/jev-does-not-play-dice/
1•someguy101010•18m ago•0 comments

Parakeet.java: Automatic Speech Recognition in Pure Java

https://github.com/qxoticai/qxotic/tree/main/jinfer/jinfer-parakeet
1•mukel•18m ago•1 comments

Step Code: MIT-licensed coding agent CLI built around Step 5 Preview

https://github.com/stepfun-ai/Step-Code
1•AnneWodell•19m ago•0 comments

Space Bunny Alpha

https://openrouter.ai/stealth/space-bunny-alpha
1•jfyne•19m 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...