frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two Years of Emacs Solo

https://www.rahuljuliato.com/posts/emacs-solo-two-years
184•celadevra_•7h ago•48 comments

Optimizing Top K in Postgres

https://www.paradedb.com/blog/optimizing-top-k
46•philippemnoel•1d ago•4 comments

Claude Code, Claude Cowork and Codex #5

https://thezvi.wordpress.com/2026/03/09/claude-code-claude-cowork-and-codex-5/
26•swolpers•2h ago•21 comments

Lotus 1-2-3 on the PC with DOS

https://stonetools.ghost.io/lotus123-dos/
37•TMWNN•3d ago•9 comments

No, it doesn't cost Anthropic $5k per Claude Code user

https://martinalderson.com/posts/no-it-doesnt-cost-anthropic-5k-per-claude-code-user/
133•jnord•8h ago•79 comments

Building a Procedural Hex Map with Wave Function Collapse

https://felixturner.github.io/hex-map-wfc/article/
464•imadr•14h ago•69 comments

macOS Tahoe windows have different corner radiuses

https://lapcatsoftware.com/articles/2026/3/1.html
40•robenkleene•3d ago•18 comments

Show HN: Remotely use my guitar tuner

https://realtuner.online/
163•smith-kyle•3d ago•40 comments

JSLinux Now Supports x86_64

https://bellard.org/jslinux/
302•TechTechTech•14h ago•84 comments

Learnings from paying artists royalties for AI-generated art

https://www.kapwing.com/blog/learnings-from-paying-artists-royalties-for-ai-generated-art/
113•jenthoven•5h ago•86 comments

Is legal the same as legitimate: AI reimplementation and the erosion of copyleft

https://writings.hongminhee.org/2026/03/legal-vs-legitimate/
426•dahlia•16h ago•464 comments

Show HN: I Was Here – Draw on street view, others can find your drawings

https://washere.live
17•mrktsm__•2h ago•8 comments

Darkrealms BBS

http://www.darkrealms.ca/
85•TigerUniversity•3d ago•19 comments

A useless infinite scroll experiment

https://futile.ch/en/
27•dolin_ch•3d ago•18 comments

The “JVG algorithm” only wins on tiny numbers

https://scottaaronson.blog/?p=9615
57•jhalderm•7h ago•26 comments

DARPA’s new X-76

https://www.darpa.mil/news/2026/darpa-new-x-76-speed-of-jet-freedom-of-helicopter
192•newer_vienna•14h ago•177 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
112•kumar_abhirup•16h ago•96 comments

Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents

100•filipbalucha•14h ago•68 comments

Amazon holds engineering meeting following AI-related outages

https://www.ft.com/content/7cab4ec7-4712-4137-b602-119a44f771de
43•petethomas•2h ago•23 comments

RVA23 Ends Speculation's Monopoly in RISC-V CPUs

https://semiwiki.com/ip/risc-v/367094-rva23-ends-speculations-monopoly-in-risc-v-cpus/
15•enz•3d ago•3 comments

An opinionated take on how to do important research that matters

https://nicholas.carlini.com/writing/2026/how-to-win-a-best-paper-award.html
116•mad•15h ago•27 comments

OpenAI is walking away from expanding its Stargate data center with Oracle

https://www.cnbc.com/2026/03/09/oracle-is-building-yesterdays-data-centers-with-tomorrows-debt.html
325•spenvo•11h ago•183 comments

Notes on Baking at the South Pole

https://www.newyorker.com/culture/the-weekend-essay/the-most-beautiful-freezer-in-the-world
54•mitchbob•12h ago•19 comments

Florida judge rules red light camera tickets are unconstitutional

https://cbs12.com/news/local/florida-news-judge-rules-red-light-camera-tickets-unconstitutional
415•1970-01-01•14h ago•533 comments

Graphing how the 10k* most common English words define each other

https://wyattsell.com/experiments/word-graph/
41•wyattsell•2d ago•12 comments

No leap second will be introduced at the end of June 2026

https://lists.iana.org/hyperkitty/list/tz@iana.org/thread/P6D36VZSZBUSSTSMZKFXKF4T4IXWN23P/
101•speckx•19h ago•109 comments

Ireland shuts last coal plant, becomes 15th coal-free country in Europe (2025)

https://www.pv-magazine.com/2025/06/20/ireland-coal-free-ends-coal-power-generation-moneypoint/
937•robin_reala•21h ago•577 comments

Flash media longevity testing – 6 years later

https://old.reddit.com/r/DataHoarder/comments/1q6xnun/flash_media_longevity_testing_6_years_later/
152•1970-01-01•1d ago•85 comments

Bluesky CEO Jay Graber is stepping down

https://bsky.social/about/blog/03-09-2026-a-new-chapter-for-bluesky
366•minimaxir•12h ago•319 comments

The first airplane fatality

https://www.amusingplanet.com/2026/03/thomas-selfridge-first-airplane-fatality.html
79•Hooke•11h ago•21 comments
Open in hackernews

JEP 515: Ahead-of-Time Method Profiling

https://openjdk.org/jeps/515
101•cempaka•10mo ago

Comments

nmstoker•10mo ago
Would be interesting if the Faster Python team considered this approach for Python (although maybe they already did?)
motoboi•10mo 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•10mo 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•10mo ago
I thought Graal was going to slowly replace HotSpot?
vips7L•10mo ago
There was talk of the graal jit replacing C2, but native image will never replace HotSpot.
mshockwave•10mo 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•10mo ago
Is this similar/the same as Azul Zing’s ReadyNow feature?
rst•10mo 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•10mo 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•10mo 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.