frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cortex – Local context retrieval for AI coding agents

https://github.com/DanielBlomma/cortex
1•dannepanne•1m ago•0 comments

Don't Screw the Crew

https://henryaj.substack.com/p/dont-screw-the-crew
1•devanian•5m ago•0 comments

Contributing to Open-Source in 2026

https://am17an.bearblog.dev/contributing-to-open-source-software-in-2026/
1•am17an•5m ago•0 comments

Show HN: Dotenv-Diff v3.4.0

https://github.com/Chrilleweb/dotenv-diff
1•chrillemn•6m ago•0 comments

Show HN: Mess Arts

https://messarts.org/
2•not_wowinter14•8m ago•0 comments

200B Tokens Later: A Month of Letting AI Agents Decompile MW2

https://momo5502.com/posts/2026-08-17-mw2-decompilation/
1•Gander5739•9m ago•0 comments

NIP-05 maps Nostr public keys to human-readable internet identifiers

https://nostrcompass.org/en/topics/nip-05/
1•Bluestein•11m ago•0 comments

The Prenatal Sex Steroid Theory of Autism – 2026 Jephcott Lecture [video]

https://www.youtube.com/watch?v=Zpd2r6ktO1Y
1•meindnoch•11m ago•0 comments

Trump Threatens to Raise Tariffs on Canadian Automobiles to 50%

https://moztako.me/trump-tariffs-on-canadian-automobiles/
1•Cacara•12m ago•0 comments

Quantum battery upends the rules of charging

https://www.bbc.com/future/article/20260824-this-quantum-battery-charges-faster-the-larger-it-gets
1•reconnecting•13m ago•0 comments

What Is a SQL Database Schema and How Do You Design One?

https://visualeaf.com/blog/what-is-a-sql-database-schema-and-how-do-you-design-one/
2•kyle_mongo•14m ago•0 comments

VirtuProbe Studio

https://virtuprobe.studio/
1•UseWok•14m ago•0 comments

I built a forgetting curve for an agent with one user

https://eris-system.dev/blog/forgetting-curve
1•hagbardCelin3•15m ago•0 comments

CRDT: Tree-Based Indexing (2022)

https://madebyevan.com/algos/crdt-tree-based-indexing/
1•thomasnowhere•16m ago•0 comments

French spies used malware from GitHub to hack EncroChat cryptophone network

https://www.computerweekly.com/news/366649396/Revealed-Cyber-spies-used-malware-from-GitHub-to-ha...
1•rithdmc•18m ago•0 comments

Show HN: Building a C Lexer from Scratch

https://github.com/Iya-lang/Ciyac
2•johnryzon123•18m ago•1 comments

Vigilance – Catch supply chain attacks without the noise or the work

https://vigihq.com/
1•fathermarz•19m ago•1 comments

EmoSend transfers files without receiving them

https://emosend.com/principles
1•entrep•20m ago•0 comments

We open-sourced Myli: a harness for AI design agents

https://github.com/EightPotions/Myli
1•yelboudouri•27m ago•0 comments

Up to 30x More Work per Watt: Nvidia Vera Rubin NVL72

https://blogs.nvidia.com/blog/vera-rubin-nvl72-efficiency-ai-agents/
2•hakkikonu•27m ago•0 comments

Anatomy of an Autonomous Attack: 5 Alarming A.I. Capabilities

https://www.nytimes.com/2026/08/24/science/openai-huggingface-alarming-capabilities.html
1•bookofjoe•29m ago•1 comments

From Natural Language to Executable Action

https://geoffreychen.com/from-natural-language-to-executable-action-the-structural-problem-in-age...
1•ankitg12•30m ago•0 comments

Suno introduces song download limits

https://suno.com/blog/suno-updates-tos
3•agluszak•33m ago•1 comments

The Threats to 'Swiss Made'

https://www.ft.com/content/db7494b8-c590-4a50-8644-211d154a8f7b
2•throwaway_20357•34m ago•2 comments

Why some US restaurants are banning tips

https://www.bbc.com/news/articles/c4g36yze692o
65•rock_artist•37m ago•55 comments

Show HN: SkillPreflight – score AI agent skills before installing them

https://github.com/agent-contracts/skill-preflight
1•807092862•39m ago•0 comments

The Interaction Tax: When Communication Erases Diversity in Multi-Agent Teams

https://arxiv.org/abs/2608.23541
1•sbulaev•40m ago•0 comments

The People Are Still There

https://emsh.cat/en/the-people-are-still-there/
1•embedding-shape•42m ago•1 comments

Show HN: Local Personally Identifiable Information Anonymization

https://dataanonymiser.com
1•Lindizz•46m ago•1 comments

SHOW HN: a CLI that runs 15 prompt-injection attacks against your LLM

https://github.com/Ventrova/sentinel-scan-cli
1•ventrovadev•50m 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...