frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Noise infusion banned from statistical products published by Census Bureau

https://desfontain.es/blog/banning-noise.html
667•nl•9h ago•387 comments

Every Frame Perfect

https://tonsky.me/blog/every-frame-perfect/
479•ravenical•11h ago•158 comments

Pyodide 314.0: Python packages can now publish WebAssembly wheels to PyPI

https://blog.pyodide.org/posts/314-release/
45•agriyakhetarpal•4d ago•8 comments

Treating pancreatic tumours may have revealed cancer's master switch

https://economist.com/science-and-technology/2026/06/12/treating-pancreatic-tumours-may-have-reve...
270•andsoitis•9h ago•89 comments

GameBoy Workboy

https://tcrf.net/Workboy
141•tosh•5h ago•50 comments

Running DOS on Behringers DDX3216 with a DIY x86-Bios from Scratch

https://chrisdevblog.com/2026/06/08/running-dos-on-behringers-ddx3216-using-a-diy-x86-bios/
64•rasz•4h ago•12 comments

Amazon CEO's talks with U.S. officials triggered crackdown on Anthropic models

https://www.wsj.com/tech/ai/amazon-ceos-talks-with-u-s-officials-triggered-crackdown-on-anthropic...
456•ls612•6h ago•333 comments

Police officer investigated for using AI to 'create evidence' in multiple cases

https://news.sky.com/story/derbyshire-police-officer-investigated-for-using-ai-to-create-evidence...
143•austinallegro•3h ago•53 comments

Codex for open source

https://openai.com/form/codex-for-oss/
129•EvgeniyZh•2d ago•32 comments

Resurrecting a Soaked, corroded, and damaged Commodore SX‑64 (2025)

https://jerrylparker.com/blogs/posts/sx-64.html
7•hggh•2d ago•1 comments

The adder at the heart of Intel's 8087 floating-point chip

https://www.righto.com/2026/06/intel-8087-adder-reverse-engineered.html
81•pwg•6h ago•23 comments

Derbyshire Police officer accused of using AI to 'create evidence'

https://www.bbc.com/news/articles/cy8wppwdxl6o
13•healsdata•39m ago•1 comments

Appreciating Exif

https://brentfitzgerald.com/posts/appreciating-exif/
118•burnto•4d ago•23 comments

A low-carbon computing platform from your retired phones

https://research.google/blog/a-low-carbon-computing-platform-from-your-retired-phones/
223•vikas-sharma•13h ago•127 comments

C47/R47 Calculators

https://47calc.com/index.html
17•helterskelter•3d ago•9 comments

AI coding at home without going broke

https://stephen.bochinski.dev/blog/2026/06/13/ai-coding-at-home-without-going-broke/
208•sbochins•6h ago•186 comments

RTX 5080 and RTX 3090 Setup: 80 Tok/s on Qwen 3.6 27B Q8

https://imil.net/blog/posts/2026/rtx-5080-+-rtx-3090-setup-80+-tok-s-on-qwen-3.6-27b-q8/
175•iMil•13h ago•59 comments

Orthodox C++ (2016)

https://bkaradzic.github.io/posts/orthodoxc++/
75•signa11•9h ago•123 comments

AI OSS tool repo goes archived over night after raising $7.3M Seed

https://github.com/tensorzero/tensorzero
230•hek2sch•11h ago•150 comments

The experience of rendering Arabic typography and its technical debt

https://lr0.org/blog/p/arabic/
171•bookofjoe•10h ago•41 comments

GLM 5.2 Is Out

https://twitter.com/jietang/status/2065784751345287314
244•aloknnikhil•7h ago•118 comments

The MilkV Jupiter 2/SpacemiT K3 (RISC-V vector compute)

https://taoofmac.com/space/reviews/2026/06/11/1830
27•rcarmo•2d ago•6 comments

The state of building user interfaces in Rust

https://areweguiyet.com/#ecosystem
160•mahirsaid•3d ago•112 comments

Israeli firm BlackCore suspected of meddling in New York and Scotland votes

https://www.reuters.com/world/israeli-firm-blackcore-also-suspected-meddling-nyc-scotland-votes-f...
477•pera•15h ago•268 comments

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

https://github.com/Paca-AI/paca
128•pikann22•13h ago•50 comments

An Interview with Intel's Kira Boyko: Xeon 6's Product Director

https://chipsandcheese.com/p/an-interview-with-intels-kira-boyko
50•lumpa•11h ago•3 comments

What Happens to an Economy When It's Too Hot to Work?

https://www.bloomberg.com/news/features/2026-06-12/india-s-extreme-heat-is-hurting-its-economy-an...
72•littlexsparkee•4h ago•31 comments

Trophic memory, deer, and a unique scientific object

https://thoughtforms.life/trophic-memory-deer-and-a-truly-unique-scientific-object/
25•atombender•4d ago•5 comments

Show HN: I am building a map of people who lived in the Roman Empire

https://new.roman-names.com/
142•metiscus•3d ago•34 comments

The computer science degree isn’t dead

https://spectrum.ieee.org/computer-science-degree-isnt-dead
227•jnord•3d ago•224 comments
Open in hackernews

Pyodide 314.0: Python packages can now publish WebAssembly wheels to PyPI

https://blog.pyodide.org/posts/314-release/
43•agriyakhetarpal•4d ago

Comments

runningmike•1h ago
Great news. And indeed a nice step to an even broader Python ecosystem.
simonw•1h ago
I've been looking forward to this for ages!

This means we can now take any C/Rust/whatever extension for Python, compile that as a `.wasm` extension, and then load it directly in browser Pyodide projects using:

  await micropip.install("package-on-pypi")
  import package_name
Here's how to try the new feature out. Visit https://pyodide.org/en/stable/console.html and type:

  import micropip
  await micropip.install("pydantic_core")
  import pydantic_core
That gets you this WASM wheel: https://pypi.org/project/pydantic_core/#pydantic_core-2.47.0...

You can tell that it's got compiled code in (and not just Python) by running:

  pydantic_core._pydantic_core
I get this:

  <module 'pydantic_core._pydantic_core' from '/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-wasm32-emscripten.so'>
wolfgangK•1h ago
I presume this works (will work) also for JupyterLite that is based on Pyodide ? Would be great if it helped getting the latest OpenCV-python version [0] and it's dnn goodies being available on a zero-install client side Notebook !

[0] https://news.ycombinator.com/item?id=48421858

simonw•59m ago
Yeah it should definitely work there, anything you can `micropip.install()` into a Pyodide environment will work with JupyterLite.
12_throw_away•55m ago
Executing normal python programs inside a cpython vm inside a wasm context inside a javascript process inside a sandbox inside a browser is - genuinely - extremely exciting! (Might as well run the browser inside a container inside a VM while you're at it though.)
fzumstein•48m ago
Pyodide 314.0 is already available in xlwings Lite (the Python in Excel alternative you actually wanted).
sgammon•46m ago
nice to see JS/python interop becoming a thing