frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta Tapped a Pentagon Supplier to Prototype Face Recognition for Its Glasses

https://www.wired.com/story/meta-rank-one-computing-face-recognition-smart-glasses/
1•cdrnsf•30s ago•0 comments

Globalizing the Philadelphian System: Unresolved Issues [pdf]

https://isonomiaquarterly.com/wp-content/uploads/2026/06/iq-4.2-summer-2026-marquis-and-coyne-glo...
1•brandonlc•2m ago•0 comments

Csound Score in Emacs

https://github.com/luqtas/csound-score-emacs
1•luqtas•2m ago•0 comments

I'm building a 4X strategy game in Flutter and Flame

https://github.com/ernestwisniewski/aonw/tree/main
1•ernest_dev•3m ago•0 comments

Show HN: Puzzle with Strangers. A free multiplayer jigsaw

https://endtime-instruments.org/puzzle/
1•janoelze•5m ago•1 comments

Tuning a Server for Benchmarking

https://david.alvarezrosa.com/posts/tuning-a-server-for-benchmarking/
1•dalvrosa•6m ago•0 comments

Combining LLMs Rarely Beats the Best Single Model, I tested 67 frontier models

https://arxiv.org/abs/2606.27288
1•josefchen•10m ago•0 comments

SQLite: Past, Present, and Future (2022)

https://vldb.org/pvldb/volumes/15/paper/SQLite%3A%20Past%2C%20Present%2C%20and%20Future
2•tosh•11m ago•0 comments

Testing Grok Imagine's 15-20x Faster Image Generation

https://developer.puter.com/blog/grok-imagine-image-in-puter-js/
2•reynaldi•11m ago•0 comments

Show HN: Smart model routing directly in Claude, Codex and Cursor

https://github.com/workweave/router
3•adchurch•12m ago•0 comments

A free checker for whether AI search engines can cite your site

https://clarvia.dev/geo-checker
1•lr001328•12m ago•1 comments

1.38 Millimeter Microcontroller

https://www.ti.com/product/MSPM0C1104
1•kristianpaul•13m ago•0 comments

An eBook dictionary generator for Dungeon Crawler Carl, or any other fandom

https://github.com/jmcguire/dungeon-crawler-carl-dict
1•lifefeed•14m ago•0 comments

GLP-1 drugs increase women's marriage and employment rates

https://hu-my.sharepoint.com/personal/rdiamond_fas_harvard_edu/_layouts/15/onedrive.aspx?id=%2Fpe...
1•marojejian•14m ago•3 comments

AI Cheerleading, AI Abstention and AI Redirection

https://vanessaandreotti.substack.com/p/ai-cheerleading-ai-abstention-and
1•the-mitr•14m ago•0 comments

Samsung will soon start charging to access its smart home API

https://www.theverge.com/tech/957597/samsung-smartthings-api-charges
3•Brajeshwar•15m ago•1 comments

Stop Slopping Your Skills

https://rahulbaboota.substack.com/p/stop-slopping-your-skills
1•RahulBaboota•15m ago•0 comments

Europe to exclude military-age Ukrainian men from temporary protection scheme

https://www.euronews.com/my-europe/2026/06/26/brussels-to-exclude-military-age-ukrainian-men-from...
3•xchip•15m ago•0 comments

Show HN: AI Is Too Good at Coding, Let's Make It Better

https://github.com/Karthick-Ramachandran/persist-os
1•karthickrmchn•16m ago•0 comments

OpenAI set to limit GPT 5.6 rollout after call from Trump administration

https://www.cnbc.com/video/2026/06/26/openai-set-to-limit-gpt-5-point-6-rollout-after-call-from-t...
1•blazespin•16m ago•0 comments

Silk is a stackful-fiber library, scheduler with a work-stealing loop, io_uring

https://clickhouse.com/blog/silk
1•tanelpoder•18m ago•0 comments

The Coming Divide: AI-Native or Left Behind

https://danielmiessler.com/blog/ai-native-divide
2•The_Fox•21m ago•0 comments

Getting AI credits for reading ads while your coding agent is doing its thing

https://ads.gitlawb.com
1•panikadak•24m ago•1 comments

The road expands before me

https://newsletter.masilotti.com/p/the-road-expands-before-me
1•joemasilotti•25m ago•0 comments

Engineer accused of insider trading around Microsoft's Three Mile Island reboot

https://www.theregister.com/systems/2026/06/26/engineer-accused-of-insider-trading-tied-to-micros...
1•joebuckwilliams•25m ago•0 comments

A Dark Dimension Could Link Two of the Universe's Great Unknowns

https://www.quantamagazine.org/a-dark-dimension-could-link-two-of-the-universes-great-unknowns-20...
3•jandrewrogers•26m ago•0 comments

Everything Is AI

https://www.ft.com/content/4a76d755-d269-4f06-b5a8-9440407a5c50
1•johnbarron•26m ago•2 comments

I built a app to help founders plan and build organized apps – AMA

https://foundry.codefiworks.com/
3•gduncan7•30m ago•0 comments

AI and Liability

https://simonwillison.net/2026/Jun/25/ai-and-liability/
2•Brajeshwar•31m ago•0 comments

One man, two kernels, and a lot of RISC-V

https://www.theregister.com/software/2026/06/26/one-man-two-kernels-and-a-lot-of-risc-v/5262858
4•LorenDB•32m ago•0 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.