frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Samosa Chat: Run Qwen3.6-35B-A3B Locally on a 16 GB Apple Silicon Mac

https://github.com/deepanwadhwa/samosa-chat
2•dwa3592•10m ago•0 comments

Ptolemaic and LLM Architecture Compared (In 3D)

https://celestial-llm-mirror.vercel.app/
1•mikemangialardi•13m ago•0 comments

Dell Is on a Roll with the XPS

https://world.hey.com/dhh/dell-is-on-a-roll-with-the-xps-5a09a84e
2•dotcoma•13m ago•0 comments

GPT 5.6 Sol Pro disproves long-standing hypothesis in statistics

https://twitter.com/i/status/2077082912021786660
1•qsi•14m ago•1 comments

John Archibald Wheeler: It from Bit

https://en.wikipedia.org/wiki/John_Archibald_Wheeler
1•lioeters•19m ago•1 comments

Fix CSS Problems

https://www.fix-css.com/
1•ilreb•20m ago•0 comments

vLLM prefill paired with TileRT decode

https://vllm.ai/blog/2026-07-14-vllm-tilert-pd
2•ilreb•22m ago•0 comments

3k-year-old Egyptian tomb with vivid afterlife paintings uncovered near Luxor

https://www.euronews.com/culture/2026/07/14/3000-year-old-egyptian-tomb-with-vivid-afterlife-pain...
3•devonnull•24m ago•0 comments

White House launches AI cybersecurity clearinghouse

https://www.cnn.com/2026/07/14/tech/ai-cybersecurity-clearing-house-white-house
1•1659447091•24m ago•0 comments

Cicada- an agentic Python IDE Free to use ( comes with built in small model)

https://github.com/godsonj64/Cicada/releases/tag/v0.4.0
1•godsonj64•25m ago•1 comments

Show HN: PullCard – Pull your AI coding style as a holographic trading card

https://pullcard.sakimyto.com
1•sakimyto•27m ago•0 comments

Show HN: I built an AI agent memory engine because Obsidian wasn't cutting it

https://perseus.observer/blog/built-perseus-vault-obsidian-wasnt-cutting-it/
1•perseusai•31m ago•0 comments

TPU and GPU Clusters: The Anatomy of Collective Communication

https://www.aleksagordic.com/blog/collective-operations
1•npalli•33m ago•0 comments

When China's open-source AI is a trap

https://www.economist.com/international/2026/07/14/when-chinas-open-source-ai-is-a-trap
2•andsoitis•35m ago•1 comments

Data for Agents

https://huggingface.co/blog/nvidia/open-data-for-agents
1•gmays•36m ago•0 comments

Midnight social media curfew proposed for older UK teens

https://www.bbc.com/news/articles/c982857nlrlo
2•dabinat•38m ago•0 comments

High-Bandwidth Flash offers efficient storage for model weights

https://spectrum.ieee.org/high-bandwidth-flash
1•Gaishan•38m ago•0 comments

Cisco licenses iOS name to Apple, screenshot shows iWork on iPhone (2010)

https://appleinsider.com/articles/10/06/08/cisco_licenses_ios_name_to_apple_screenshot_shows_iwor...
1•thunderbong•38m ago•0 comments

A Magazine with One Subscriber

https://matthodges.com/posts/2026-07-12-personal-magazine-claude-codex/
1•jv22222•40m ago•1 comments

When AI gets a pass: the rise of 'AI Exceptionalism'

https://www.magiclasso.co/insights/ai-exceptionalism/
2•bentocorp•41m ago•0 comments

Show HN: Gomoku AI Edu – A Native macOS Gomoku Game with AI Opponent

https://gomoku.w3cub.com/
1•terryXyz•42m ago•0 comments

UEFI shims undermining Secure Boot

https://www.welivesecurity.com/en/eset-research/forgotten-uefi-shims-undermining-secure-boot/
3•gnabgib•49m ago•0 comments

6 months of OpenClaw

https://notesbylex.com/6-months-of-openclaw
1•lexandstuff•51m ago•0 comments

Show HN: A web based VistaPro clone

https://toby.github.io/vista/
1•tobypadilla•52m ago•0 comments

Microsoft's Secure Boot has been broken for a decade and no one noticed

https://arstechnica.com/security/2026/07/microsoft-secure-boot-has-been-broken-for-most-of-its-ex...
3•Gaishan•55m ago•1 comments

Global Warming at 3 °C by 2050? What's Behind the New German Climate Warning

https://worldcrunch.com/focus/green-or-gone/global-warming-at-3c-by-2050-what-s-behind-the-new-ge...
9•tejohnso•58m ago•1 comments

Making it easier to party is becoming serious public policy

https://www.economist.com/united-states/2026/07/14/cities-are-rethinking-what-happens-after-dark
1•petethomas•59m ago•0 comments

The Web Won Because It Got Easier

https://www.gordonmclean.co.uk/2026/06/18/on-the-indiefediactivitymastoweb/
1•zetamax•1h ago•0 comments

Teleparallel Gravity: From Theory to Cosmology(2021)

https://arxiv.org/abs/2106.13793
2•rolph•1h ago•0 comments

Piuma – A minimal, feather-weight, site builder in Go

https://github.com/sprawz/piuma
1•H501•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...