frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We're Going to Make Out Like Bandits

https://www.rocketpoweredjetpants.com/2026/04/were-going-to-make-out-like-bandits/
1•birdculture•3m ago•0 comments

Passwork Shares Data with State-Certified Russian Firm

https://www.occrp.org/en/investigation/european-password-manager-shares-origins-and-updates-with-...
2•u1hcw9nx•4m ago•0 comments

Isvisible.ai, check if AI crawlers can access your site

https://isvisible.ai
1•alpkorpe•5m ago•0 comments

Show HN: Flick – Swipe Your Email

https://flicked.email/
2•Belkins•8m ago•1 comments

A few thoughts on building a terminal ePub reader with AI

https://github.com/newptcai/repy
2•dawdler-purge•9m ago•1 comments

Show HN: Open-source control engine for agents

https://attestorportal.com/
1•Oxlamarr•10m ago•0 comments

Netflix says around 300 titles used generative AI

https://www.theverge.com/streaming/966633/netflix-ai-titles-q2-2026-earnings
1•JamesAdir•11m ago•0 comments

Tech note: making your own V-I plots at home

https://lcamtuf.substack.com/p/tech-note-making-your-own-v-i-plots
1•surprisetalk•11m ago•0 comments

MongoDB Access Control – Users, Roles, and Permissions

https://visualeaf.com/blog/mongodb-access-control-users-roles-and-permissions/
3•mike_codes•14m ago•0 comments

Yggvault: Mirror Your Dependencies in One Binary

https://hackaday.io/project/206175-yggvault-mirror-your-dependencies-in-one-binary
1•SUNsung•16m ago•0 comments

Databricks is raising funding at $188B valuation

https://www.databricks.com/company/newsroom/press-releases/databricks-raising-strategic-round-fun...
1•shenli3514•19m ago•0 comments

VitaSet LLC's planning to add to LLVM's circt to make a FOSS Vita FPGA Compiler

1•VitaSetLLC•19m ago•0 comments

Show HN: Velora – On-device macOS dictation (Whisper and a local LLM, no cloud)

https://github.com/sushilk1991/velora
1•sushilk1991•19m ago•0 comments

Storm [video]

https://www.youtube.com/watch?v=HhGuXCuDb1U
1•nomilk•19m ago•0 comments

LLM Evaluators are Biased across Languages

https://arxiv.org/abs/2607.14480
1•sbulaev•19m ago•1 comments

Trump to declare emergency around midterms, former White House attorney says

https://www.pbs.org/newshour/show/trump-setting-stage-to-declare-emergency-around-midterms-former...
1•Alien1Being•20m ago•0 comments

The Determinist Fallacy

https://medium.com/luminasticity/the-determinist-fallacy-ae25f8bc50ed
1•bryanrasmussen•21m ago•0 comments

Show HN: I removed the LLM from my French grader – it marked correct words wrong

https://apostrophe-app.fr/en/
1•lienmt•21m ago•0 comments

Ask HN: Best approach to dependency vulnerability scanning in CI?

1•usman_oiu•21m ago•0 comments

Chinese Nvidia alternatives project massive sales as AI chip demand surges

https://www.scmp.com/tech/tech-trends/article/3360908/chinese-nvidia-alternatives-project-massive...
1•departed•23m ago•0 comments

Pluto fly-by mission wakes after long sleep nearly 9.5B kilometres from Earth

https://www.rnz.co.nz/news/science-and-technology/734969/pluto-fly-by-mission-wakes-after-long-sl...
3•billybuckwheat•24m ago•0 comments

Argc and argv in early Research Unix

https://utcc.utoronto.ca/~cks/space/blog/unix/EarlyUnixArgcAndArgv
2•ingve•25m ago•0 comments

The Download: OpenAI unveils GPT-Red and heat pumps rise in the US

https://www.technologyreview.com/2026/07/16/1140600/the-download-openai-unveils-gpt-red-heat-pump...
1•joozio•25m ago•0 comments

Can a Sticky Note Task Manager make me 100x more productive?

https://www.taskloco.com/
1•taskloco_nyc•29m ago•0 comments

Mosquito Killing Micro-Drone

https://tornyol.com/
2•gabriele4me•32m ago•1 comments

European Commission Chooses to Keep EU Users Locked Up Behind Big Tech's Gates

https://www.eff.org/deeplinks/2026/07/european-commission-chooses-keep-eu-users-locked-behind-big...
2•rapnie•34m ago•0 comments

LL Handles Direct Left Recursion

https://btmc.substack.com/p/ll-handles-direct-left-recursion
1•sirwhinesalot•35m ago•0 comments

Strong El Nino could make 2027 the hottest year on record

https://www.theguardian.com/environment/2026/jul/17/record-el-nino-forecast-2027-hottest-year-on-...
1•nreece•38m ago•0 comments

SynthExplorer – Compiler Explorer for RTL

https://synthexplorer.dev/
2•cachanova•40m ago•0 comments

NTP server that traveled back in time caused Aussie mobile outage

https://www.theregister.com/networks/2026/07/17/ntp-server-that-traveled-back-in-time-caused-mass...
3•defrost•40m 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.