frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Steam market intelligence reports via Claude (30 pages, 2 min)

https://gameagent.co
1•xhulz•1m ago•0 comments

I made a website where you escape the website

https://www.escapethewebsite.com
1•ChickenOrEgg•1m ago•0 comments

Macs Since 1983

https://sheets.works/data-viz/every-mac
1•baal80spam•2m ago•0 comments

Oracle accused of targeting employees with stock options in recent layoffs

https://nypost.com/2026/04/13/business/oracle-accused-of-targeting-employees-with-stock-options-i...
2•conqrr•4m ago•0 comments

US Treasury Seeking Access to Anthropic's Mythos to Find Flaws

https://www.bloomberg.com/news/articles/2026-04-14/us-treasury-seeking-access-to-anthropic-s-myth...
1•helsinkiandrew•4m ago•0 comments

Show HN: OpenParallax: OS-level privilege separation for AI agent execution

1•stackframe•5m ago•1 comments

Newport Manual on the Law of Naval Warfare, Second Edition (2025)

https://digital-commons.usnwc.edu/ils/vol105/iss1/1/
1•throw0101a•5m ago•0 comments

Standing on the Shoulders of Homebrew

https://nesbitt.io/2026/04/14/standing-on-the-shoulders-of-homebrew.html
1•angristan•5m ago•0 comments

My brother's minesweeper site (minesweeper.org) has been running for 27 years

https://restlessforge.substack.com/p/sweeping-for-mines
1•restlessforge•5m ago•0 comments

I built a safer XChat download page (too many shady sites)

https://xchatdownload.net/
1•RyanMu•5m ago•1 comments

Book review: The 'crazy rule-defying' genes that determine sex

https://www.nature.com/articles/d41586-026-01101-x
1•sohkamyung•6m ago•0 comments

Lighter, Not Faster

https://digitalseams.com/blog/lighter-not-faster
1•bobbiechen•6m ago•0 comments

Show HN: At 'Em – Daily briefing app showing your schedule, weather, and tasks

https://apps.apple.com/us/app/at-em/id6758867441
1•tdhoward•7m ago•1 comments

AI feels like a drug (from a designer)

https://pablostanley.substack.com/p/ai-feels-like-a-drug
1•pablostanley•8m ago•0 comments

Reduced timing overhead for EXPLAIN ANALYZE with RDTSC in Postgres 19

https://pganalyze.com/blog/5mins-postgres-19-reduced-timing-overhead-explain-analyze
1•tanelpoder•9m ago•0 comments

I built a daily AI check-in call service for elderly parents living alone

https://seniorcheckin.app/
1•fjzll•9m ago•0 comments

Open Letter to UK Energy Suppliers: Standing Charges Must Be Transparent

https://www.jonathantracey.com/openletter
1•DamonHD•11m ago•0 comments

Policy enforcement in AI systems: turning governance into runtime control

https://heavythoughtcloud.com/knowledge/policy-enforcement-in-ai-systems
1•ryan-s•11m ago•0 comments

I quit: the difference in difficulty between Japanese and Chinese is ridiculous

https://old.reddit.com/r/LearnJapaneseNovice/comments/1sfvt9l/i_quit_the_difference_in_difficulty...
1•eatonphil•11m ago•0 comments

The Iran war took a toll on the Air Force's Reaper fleet

https://taskandpurpose.com/tech-tactics/air-force-reaper-drone-fleet/
1•ilamont•12m ago•0 comments

Agent Skills for Software Test Automation

2•kavyan•12m ago•0 comments

Keywords are dead. Traffic can't tell you what AI thinks of your brand

https://www.spotlight.cx/blog/keywords-are-dead
1•soorajsanker•13m ago•1 comments

The skill that feels inefficient and drives everything else

https://thenowtonext.substack.com/p/the-skill-that-feels-inefficient
1•mooreds•14m ago•0 comments

Ask HN: Who needs contributors? (April 2026)

4•Kathan2651•14m ago•1 comments

How to Build Your Second Brain

https://twitter.com/NickSpisak_/status/2040448463540830705
1•gmays•14m ago•0 comments

The Simple Geometry Behind Any Road

https://sandboxspirit.com/blog/simple-geometry-of-roads/
2•Ef996•14m ago•0 comments

Eschers Print Gallery and the Droste Effect

https://mathvisuals.org/PrintGallery/
1•m-hodges•15m ago•0 comments

WebinarTV Scraped Zoom Meetings of Anonymous Recovery Programs

https://www.404media.co/webinartv-secretly-scraped-zoom-meetings-of-anonymous-recovery-programs/
1•Brajeshwar•15m ago•0 comments

Reverse Engineering Dangerous Dave

https://danzat.github.io/reverse-engineering/2012/12/07/dangerous-dave-packaging.html
1•reconnecting•16m ago•0 comments

Show HN: Hacker News Sorted, a 12-year-old Chrome extension I still use daily

https://chromewebstore.google.com/detail/hacker-news-sorted/djkcnbncofmjekhlhemlkinfpkamlkaj
1•svyatov•17m ago•1 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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.