frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PaperScreen: Give your Mac's display a softer, paper-like feel

https://github.com/Bearbobs/PaperScreen
1•anuj0070•36s ago•0 comments

Systemd Linger

https://etbe.coker.com.au/2026/07/24/systemd-linger/
1•edward•2m ago•0 comments

Genesis Mission Overview

https://github.com/donutloop/donutloop-genesis/blob/main/README.md
1•donutloop•4m ago•0 comments

France and Spain wildfires: more than 300k people displaced

https://www.cnn.com/2026/07/26/world/live-news/france-spain-wildfires-evacuations
2•tosh•5m ago•0 comments

As Burlington reviews data centre plan, councillors reject moratorium

https://www.cbc.ca/news/canada/hamilton/data-centre-moratorium-burlington-9.7282901
1•01-_-•7m ago•0 comments

Against the System: Rise of the Robots (2001)

https://phrack.org/issues/57/10#article
1•negura•8m ago•0 comments

Show HN: Termic – desktop app for running CLI coding agents (Claude Code, Codex)

https://termic.dev/
1•SimionBaws•9m ago•0 comments

Show HN: Cfbench – A lightweight native CLI for Cloudflare speed tests

https://github.com/fcendesu/cfbench
1•fcen•10m ago•0 comments

Corner Chess

https://cs.nyu.edu/~shasha/drecco/games/2016/cornerchess/
1•tosh•11m ago•0 comments

Emacs Writing Machine

https://chainsawriot.com/postmannheim/2026/07/25/writeredeck.html
1•birdculture•11m ago•0 comments

Robots programmed by kids to speak their Indigenous languages

https://www.npr.org/2026/07/26/nx-s1-5825798/robot-speaks-endangered-native-american-languages
1•defrost•12m ago•0 comments

Apertus 1.5, Swiss open-weight, open-source, open training data model

https://apertus-ai.org/articles/2026-07-apertus-1-5/
1•flaburgan•13m ago•1 comments

Interactive 3D Dice Roller with Custom Physics and Shaders

https://ttrpg.dies.kmcprizmquest.dev/
1•Radversalo•24m ago•0 comments

How to be useful as a software architect

https://swizec.com/blog/how-to-be-useful-as-a-software-architect
2•meetpateltech•26m ago•0 comments

Elevated Errors for Opus 5

https://status.claude.com/incidents/zftg3gqkmv18
2•TimCTRL•27m ago•0 comments

I built a jav data API, need honest feedback

1•javinfo•28m ago•0 comments

Show HN: OpenStrap – use a WHOOP 4.0 band without a subscription

https://openstrap.github.io/edge/
1•abdulsaheel123•33m ago•0 comments

Show HN: Tawrida – Global Trade Tools – Export-Document Generators

https://tawrida.xyz/tools
2•m-zakarya•37m ago•0 comments

Anthropic should learn from those cotton-picking socialists

https://asteriskmag.com/issues/15/rust-and-boll
2•maxall4•39m ago•0 comments

Practice your YC interview against Garry Tan's gstack specialists, on a meeting [video]

https://www.youtube.com/watch?v=PMiIytmoEuk
4•anand_pattern•40m ago•1 comments

High Volume Transaction Processing Without Concurrency Control (1997)

https://www.researchgate.net/publication/2310700_High_Volume_Transaction_Processing_Without_Concu...
1•tosh•40m ago•0 comments

Ruff v0.16.0 – Significant new updates – 413 default rules up from 59

https://astral.sh/blog/ruff-v0.16.0
8•vismit2000•44m ago•0 comments

Build a self-scaling OCR pipeline with Qwen 3.5 and Kubernetes

https://github.com/neural-maze/production-ocr-course
2•mtrofficus•58m ago•0 comments

Claude Code has a hardcoded instruction telling Opus 5 not to use subagents

https://old.reddit.com/r/ClaudeCode/comments/1v6y5q2/claude_code_has_a_hardcoded_instruction_tell...
5•bredren•1h ago•1 comments

The most capable resume editor I could build, as a solo dev

https://www.roleframe.ai/product/ai-resume-builder
1•larbisahli•1h ago•0 comments

The diminishing returns of productivity culture (2021)

https://annehelen.substack.com/p/the-diminishing-returns-of-productivity
4•downbad_•1h ago•0 comments

Show HN: Reproducibility Benchmark a Risk Quantitative Model

https://github.com/Fluxara-GOD/fluxara1-audit-verification-pack
3•mingshi_tz•1h ago•0 comments

What will more intelligence do for us?

https://www.noahpinion.blog/p/what-will-more-intelligence-actually
4•jinjin2•1h ago•0 comments

HomeLab #2: Immutable GitOps homelab and MikroTik hardening

https://justsomebody.dev/blog/gitops-k3s-flux
1•rafal_opilowski•1h ago•1 comments

If you feel the need to tell me your answer is AI-based, work it more

https://cephalosec.com/blog/the-hidden-cost-of-ai-is-someone-elses-time/
1•Versipelle•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...