frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Teens Deserve Access to Safe AI

https://openai.com/index/why-teens-deserve-access-safe-ai
1•willmarch•1m ago•0 comments

Recreating the Bell Labs Cafeteria

https://danielmiessler.com/blog/recreating-the-bell-labs-cafeteria
2•walterbell•5m ago•0 comments

Algorithm for NP-Complete Sudoku

https://zenodo.org/records/21420871
5•LeonardoYMG•16m ago•0 comments

PerceptionBench – Evaluating Atomic Visual Perception in Multimodal LLMs

https://www.kimi.com/blog/perception-bench
2•wolttam•20m ago•0 comments

We Are Changing Our Developer Productivity Experiment Design

https://metr.org/blog/2026-02-24-uplift-update/#other-means-of-measuring-productivity
3•Helithumper•22m ago•0 comments

Anthropic in early talks with Meta to acquire compute power

https://www.cnbc.com/2026/07/17/anthropic-meta-ai-compute.html
4•gslin•28m ago•1 comments

AI hasn't shifted the bottleneck from coding to code review

https://thenewstack.io/ai-code-bottleneck-myth/
3•Brajeshwar•32m ago•0 comments

LoRa radio communication devices for Raspberry Pi

https://www.raspberrypi.com/news/lora-radio-communication-devices-for-raspberry-pi/
7•Brajeshwar•33m ago•0 comments

Moonstone: Modern, cross-platform Lua runtime and package manager written in Zig

https://moonstone.sh/
2•ksymph•35m ago•0 comments

Face Value: How AI is reshaping trust, identity, and scams

https://www.malwarebytes.com/ai-scams
2•CHB0403085482•36m ago•0 comments

LLMs are like handwritten notes

https://dunkirk.sh/blog/llms/
2•clacker-o-matic•38m ago•0 comments

I Started a "Dirt Notebook"

https://pinewind.bearblog.dev/i-started-a-dirt-notebook/
8•herbertl•41m ago•1 comments

Towach: Tell it your mood, swipe through trailers, pick something to watch

https://www.towach.com
2•barkins•44m ago•0 comments

Newly retired couples may lose $16,900/year in Social Security in 2033

https://www.usatoday.com/story/money/personalfinance/2026/07/16/social-security-cut-2033/90941392...
8•ilreb•46m ago•1 comments

Alien world chemistry found inside meteorite that struck New Jersey home

https://phys.org/news/2026-07-alien-world-chemistry-meteorite-struck.html
4•bookmtn•48m ago•0 comments

The How and Why of Entity Shorthand

https://www.bramadams.dev/the-how-and-why-of-entity-shorthand/
2•_bramses•49m ago•0 comments

Overtraining as the path to human-like AI

https://www.seangoedecke.com/overtraining-as-the-path-to-human-like-ai/
2•turadg•50m ago•0 comments

Show HN: Blockbeam – A block puzzle game built with React Native

https://play.google.com/store/apps/details?id=com.magstudios.blockpuzzle&hl=en_US
1•makbar890•56m ago•0 comments

Show HN: Fitbod Meets Duolingo

https://cooltivo.io/
1•tenhsor•59m ago•0 comments

Open Source Parametric DIY Air Purifier Builder

https://www.filterboxbuilder.com/
2•Nukit•59m ago•1 comments

A Proposal for The Dartmouth Summer Research Project on AI (1955) [pdf]

http://jmc.stanford.edu/articles/dartmouth/dartmouth.pdf
2•teleforce•59m ago•0 comments

Conversation Stenography: Hide secret messages in normal looking conversations

https://github.com/nethical6/conversation-steganography
2•CGMthrowaway•1h ago•0 comments

Sylvia Plath, Aristotle, and Jean-Paul Sartre Walk into a Bar

https://techandsundry.medium.com/sylvia-plath-aristotle-and-sean-paul-sartre-walk-into-a-bar-dcc2...
2•sgkey28•1h ago•0 comments

Stenchill: 3D Printable Solder Paste Stencil Generator

https://www.stenchill.com/en/
3•radeeyate•1h ago•0 comments

Public data and an AI evidence engine for Swedish politics

https://oversikt.se/
2•andreascw•1h ago•0 comments

The company behind explosive diarrhea

https://www.theguardian.com/us-news/2014/nov/23/billion-dollar-california-salad-company-exploits-...
6•cramer4next•1h ago•0 comments

A grumpy screed about AI in software engineering

https://sam.sutch.net/posts/a-grumpy-ai-screed
11•ssutch3•1h ago•1 comments

Idea would turn the Earth into a giant space telescope

https://www.snexplores.org/article/idea-would-turn-earth-giant-space-telescope
2•somedude89897•1h ago•1 comments

Open Source is not immune to monopoly

https://humancode.us/2026/07/17/open-source-monopoly
4•ilreb•1h ago•0 comments

Nadella Blasts AI Industry's Double Standard

https://finance.biggo.com/news/438f299b-ca23-468d-b37d-0ffe09a4ca55
12•nittanymount•1h ago•2 comments
Open in hackernews

CheerpJ 4.0: WebAssembly JVM for the browser, now with Java 11 and JNI support

https://labs.leaningtech.com/blog/cheerpj-4.0
9•apignotti•1y ago

Comments

palata•1y ago
That's technically pretty cool, but it makes me wonder:

In order to run a Java Desktop app, I need to install a JVM first (or the Desktop app can embed it, I guess that's what IntelliJ does, right?).

Now if I run CheerpJ, it means that I essentially download a JVM when I load the page (every time), and run code in that JVM. But at this point, why not downloading a Desktop app?

It feels like we are going around, shipping simple web pages together with full browsers and calling that "desktop apps" (e.g. ElectronJS), then shipping complete JVMs as web pages and calling that a "web page"... why don't we just ship simple webpages through browsers and complex desktop apps through package managers?

apignotti•1y ago
With CheerpJ you are downloading the subset of the JVM that you need, and actually only once thanks to the standard browser cache.

There are many reasons why shipping via the browser is a better choice compared to shipping desktop apps. The main 3 in my opinion are:

1. Distribution: Give your user a link and the app will start 2. Isolation: The user can have confidence the app won't read his personal files. 3. Cross-platform: Every OS and every device, for real this time

yuri91•1y ago
For reference, when loading https://browsercraft.cheerpj.com for the first time (up to loading a world), my browser downloaded ~32MB.

The second time almost nothing.

jeffreportmill1•1y ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•1y ago
> With CheerpJ you are downloading the subset of the JVM that you need

That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

> Every OS and every device, for real this time

Doesn't the JVM run everywhere in 2025?

apignotti•1y ago
> That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

> Doesn't the JVM run everywhere in 2025?

What about iOS? Android has Java, but can't run desktop Java apps. Chromebooks also have limits.

palata•1y ago
> Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

I don't understand what that means. The JVM is supposed to interpret and sometimes compile bytecode, right? How can it be done with only a fraction of the JVM?

Or are you saying that it is constantly communicating with a server that does the work?

apignotti•1y ago
The VM itself is very small, it's the OpenJDK runtime that is quite sizeable. Byte ranges are used to only download the parts of the runtime (in terms of bytecode) that are required.

There is no server-side computation. CheerpJ runs code exclusively client-side.

palata•1y ago
But you said before that you only download a subset of the JVM, right? Or did you mean a subset of the JDK, including the JVM and... I guess other stuff?
apignotti•1y ago
I meant the JVM in an extended sense: the combination of the bytecode parsing, JIT compiler and OpenJDK runtime. You are right, I should have been more precise and refer to only the runtime part, which is by far the most significant.
palata•1y ago
I was not trying to prove you wrong, I'm just genuinely interested :-). I don't see a lot of articles about the JVM these days.