frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A picker that maps local LLMs to hardware, hardware to LLMs

https://llmrequirements.com/
1•truetotosse•2m ago•0 comments

Alyx – Crypto Portfolio Dashboard on New Tab

https://chromewebstore.google.com/detail/alyx-—-crypto-portfolio-d/nmchlndcajncggcpeokebegjhlje...
1•Teyz•7m ago•0 comments

Your Clippy Config Should Be Stricter

https://emschwartz.me/your-clippy-config-should-be-stricter/
2•blenderob•10m ago•0 comments

The guide to RL environments: building and scaling them in the LLM era

https://huggingface.co/spaces/AdithyaSK/rl-environments-guide
1•kunalsin9h•12m ago•0 comments

PromptVC

https://www.promptvc.io/blog/introducing-promptvc
1•justicea83•12m ago•0 comments

Charging power bank left in checked baggage diverts easyjet flight

https://simpleflying.com/easyjet-flight-diverted-power-bank-charging-luggage/
1•giuliomagnifico•12m ago•0 comments

AI Proves Mathematicians Wrong

https://www.heise.de/en/news/AI-proves-mathematicians-wrong-11303022.html
1•NicoHartmann•12m ago•0 comments

Are Tech Meetups Dead?

1•mlinhares•14m ago•0 comments

I missed NETworkManager on Windows so I built a Linux equivalent

https://github.com/thongor77/nmlinux
1•magetriste•17m ago•0 comments

I built a free AI travel planner for budget Europe trips

2•supreethadev•19m ago•2 comments

Accessibility in JavaFX

https://dev.java/learn/javafx/a11y/
1•Tomte•19m ago•0 comments

Sips, macOS native scriptable image processing system

https://ss64.com/mac/sips.html
2•Alifatisk•20m ago•0 comments

Our AI just got better

https://blog.ecosia.org/improving-our-ai/
6•thunderbong•21m ago•2 comments

Gustafson's Law

https://en.wikipedia.org/wiki/Gustafson%27s_law
2•tosh•23m ago•0 comments

We are Poles, so, of course, we print in Latin

https://www.ustc.ac.uk/news/we-are-poles-so-of-course-we-print-in-latin
3•danielam•24m ago•0 comments

Cost Model: Work, Span and Parallelism [pdf]

https://www.cse.wustl.edu/~angelee/archive/cse341/fall14/handouts/lecture03.pdf
2•tosh•25m ago•0 comments

The Neuroscience Behind Writing: Handwriting vs. Typing–Who Wins the Battle?

https://www.mdpi.com/2075-1729/15/3/345?
2•dhfbshfbu4u3•26m ago•0 comments

Handwriting but not typewriting leads to widespread brain connectivity

https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2023.1219945/full
2•dhfbshfbu4u3•27m ago•0 comments

A personal agent with auto-generate tools based on what you need

https://agenvoy.com/
2•pardnchiu•29m ago•1 comments

Are Determinacy-Race Bugs Lurking in Your Multicore Application? (2009)

https://web.archive.org/web/20091103173033/http://software.intel.com/en-us/articles/are-determina...
2•tosh•30m ago•0 comments

Operating licence of Bilgi University revoked

https://www.aljazeera.com/news/2026/5/22/turkiye-shutters-liberal-istanbul-university-seized-in-c...
2•anticensor•32m ago•1 comments

Integral Intelligence: a Catholic view of the AI debate

https://localoptimumai.substack.com/p/integral-intelligence-a-catholic
2•turing_complete•35m ago•0 comments

Show HN: Hookwarden – npx tool to find and fix webhook HMAC bugs (JS/TS/Py/PHP)

https://github.com/Hookwarden/hookwarden
1•adelinalipsa•36m ago•0 comments

Software Engineering at Google

https://abseil.io/resources/swe-book
1•MrBuddyCasino•38m ago•1 comments

Gen Z Is Pioneering a New Understanding of Truth

https://www.wired.com/story/book-excerpt-the-future-of-truth-steven-rosenbaum/
2•debo_•39m ago•0 comments

In India, You Can Get Milk Delivered Faster Than It Takes to Make Coffee

https://www.wsj.com/business/logistics/in-india-you-can-get-milk-delivered-faster-than-it-takes-t...
3•achow•41m ago•1 comments

Show HN: A calm place to think, talk to your team, and move ideas forward

https://www.f-rello.com
1•karstenb•43m ago•0 comments

Error in digital identity verification cost university employee her job

https://www.heise.de/en/news/Fatal-click-at-BfV-Online-research-destroys-existence-11201025.html
2•moritzruth•44m ago•1 comments

Show HN: Salary benchmarks, ATS keyword trends and skills demand for data jobs

https://www.datamatastudios.com/tools
1•datamatastudios•44m ago•0 comments

Childhood Computing

https://susam.net/childhood-computing.html
9•blenderob•46m ago•4 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.