frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google broke reCAPTCHA for de-googled Android users

https://reclaimthenet.org/google-broke-recaptcha-for-de-googled-android-users
618•anonymousiam•6h ago•217 comments

OpenAI's WebRTC problem

https://moq.dev/blog/webrtc-is-the-problem/
91•atgctg•1d ago•22 comments

Wi is Fi: Understanding Wi-Fi 4/5/6/6E/7/8 (802.11 n/AC/ax/be/bn)

https://www.wiisfi.com/
81•homebrewer•2d ago•30 comments

The React2Shell Story

https://lachlan.nz/blog/the-react2shell-story/
31•mufeedvh•9h ago•3 comments

AI is breaking two vulnerability cultures

https://www.jefftk.com/p/ai-is-breaking-two-vulnerability-cultures
239•speckx•7h ago•102 comments

You gave me a u32. I gave you root. (io_uring ZCRX freelist LPE)

https://ze3tar.github.io/post-zcrx.html
138•MrBruh•6h ago•86 comments

Can LLMs model real-world systems in TLA+?

https://www.sigops.org/2026/can-llms-model-real-world-systems-in-tla/
28•mad•9h ago•4 comments

Light without electricity? Glowing algae could make it possible

https://www.colorado.edu/today/2026/05/06/light-without-electricity-glowing-algae-could-make-it-p...
18•geox•2d ago•2 comments

AWS North Virginia data center outage – recovery to take hours

https://www.cnbc.com/2026/05/08/aws-outage-data-center-fanduel-coinbase.html
128•christhecaribou•22h ago•77 comments

Cartoon Network Flash Games

https://www.webdesignmuseum.org/flash-game-exhibitions/cartoon-network-flash-games
280•willmeyers•9h ago•98 comments

David Attenborough's 100th Birthday

https://www.bbc.com/news/articles/cp3pww9g0p5o
443•defrost•13h ago•89 comments

When is your birthday? The math behind hash collisions

https://0xkrt26.github.io/math_behind_security/2026/05/08/birthday-problem.html
19•denismenace•5h ago•0 comments

Serving a website on a Raspberry Pi Zero running in RAM

https://btxx.org/posts/memory/
191•xngbuilds•10h ago•78 comments

An Introduction to Meshtastic

https://meshtastic.org/docs/introduction/
370•ColinWright•14h ago•149 comments

Mux (YC W16) Is Hiring

https://www.mux.com/jobs
1•mmcclure•4h ago

Teaching Claude Why

https://www.anthropic.com/research/teaching-claude-why
90•pretext•7h ago•24 comments

Looking at the data behind prediction markets

https://asteriskmag.com/issues/14/are-prediction-markets-good-for-anything
53•kqr•1d ago•27 comments

Meta Shuts Down End-to-End Encryption for Instagram Messaging

https://www.pcmag.com/news/meta-shuts-down-end-to-end-encryption-for-instagram-dms-messaging
144•tcp_handshaker•3h ago•98 comments

Tesla Model Y Passes NHTSA's New 'Advanced Driver Assistance System' Tests

https://www.nhtsa.gov/press-releases/tesla-model-y-first-vehicle-pass-nhtsa-new-advanced-driver-a...
39•amanaplanacanal•2h ago•30 comments

Human typing habits and token counts

https://pankajpipada.com/posts/2026-05-08-human-habits-tokens/
10•ppipada•12h ago•1 comments

Bitter Lessons from the ISSpresso

https://mceglowski.substack.com/p/bitter-lessons-from-the-isspresso
4•zdw•2d ago•1 comments

Rumors of my death are slightly exaggerated

1529•CliffStoll•2d ago•237 comments

Mojo 1.0 Beta

https://mojolang.org/
287•sbt567•22h ago•183 comments

Non-determinism is an issue with patching CVEs

https://flox.dev/blog/achieving-rapid-cve-remediation-in-an-era-of-escalating-vulnerabilities/
37•mathewpregasen•4h ago•12 comments

All means are fair except solving the problem

https://yosefk.com/blog/all-means-are-fair-except-solving-the-problem.html
33•akkartik•2d ago•38 comments

US Government releases first batch of UAP documents and videos

https://www.war.gov/UFO/
233•david-gpu•13h ago•341 comments

How do I deal with memory leaks? (2022)

https://www.stroustrup.com/bs_faq2.html#memory-leaks
75•theanonymousone•8h ago•64 comments

Poland is now among the 20 largest economies

https://apnews.com/article/poland-economy-growth-g20-gdp-26fe06e120398410f8d773ba5661e7aa
894•surprisetalk•13h ago•737 comments

PC Engine CPU

https://jsgroth.dev/blog/posts/pc-engine-cpu/
123•ibobev•11h ago•53 comments

Hosting a Site on a Raspberry Pi

https://m4rt.nl/blog/hosting-on-a-pi
11•swiftdust•1d ago•2 comments
Open in hackernews

JEP 515: Ahead-of-Time Method Profiling

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

Comments

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