frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Echoo – AI on the text you're typing in any Mac app, free to try, no API key

https://www.echoo.ai/
1•mike-el•3m ago•0 comments

A task tool I use flagged 4 of my team's tasks as 30x overdue

https://aura4app.com
1•abusalh•5m ago•0 comments

Show HN: Token-saviour – agent skill from benchmarking 9 token-saving tools

https://github.com/vagkaratzas/token-saviour
1•vagkaratzas•7m ago•0 comments

Scalable Untargeted Promptware Attacks via Adversarial HalluSquatting

https://sites.google.com/view/agentic-botnets/home
1•shscs911•7m ago•1 comments

How do we make coding agents write good code?

https://github.com/molvqingtai/The-Absolute-Code
1•molvqingtai•7m ago•0 comments

Claude bug report: Cross-session credential leakage

https://github.com/anthropics/claude-code/issues/72274
1•delamon•8m ago•0 comments

Flagship models are not always better

https://tej.as/blog/note-app-ai-benchmark-apple-intelligence-sucks
1•tejaskumar_•9m ago•0 comments

Earn 50% on Each Subscription

1•kwefnkwjen•9m ago•0 comments

Decoding the obfuscated bash script on a Uniqlo t-shirt

https://tris.sherliker.net/blog/obfuscated-self-evaluating-bash-script-by-cdn-akamai-being-suppli...
1•speerer•10m ago•0 comments

Apple Loses Spat with EU over App Store and iPhone Rules

https://www.bloomberg.com/news/articles/2026-07-08/apple-loses-spat-with-eu-over-app-store-and-ip...
2•vrganj•13m ago•1 comments

Rust service isn't leaking: when do glibc / jemalloc / mimalloc call munmap

https://pranitha.dev/posts/rust-and-memory-allocators/
1•fanf2•14m ago•0 comments

Most slopcode projects are abandoned and deleted within months of release

https://www.osnews.com/story/145469/most-slopcode-projects-are-abandoned-and-deleted-within-month...
2•latexr•14m ago•0 comments

Tiny386: ESP32 (slowly) running Windows 95

https://hchunhui.github.io/tiny386/esp32s3_win95.webm
2•kls0e•15m ago•1 comments

Apple interest thrusts China's CXMT into memory chip spotlight

https://www.ft.com/content/f4ac5c92-03be-4499-b16a-017a7e9ee228
1•0in•17m ago•0 comments

Geosql: A Claude/Codex skill for geospatial data

https://github.com/dekart-xyz/geosql
1•rzk•18m ago•0 comments

SQLite-utils 4.0, now with database schema migrations

https://simonwillison.net/2026/Jul/7/sqlite-utils-4/
1•pretext•21m ago•0 comments

Adiabatic Circuit

https://en.wikipedia.org/wiki/Adiabatic_circuit
1•tristenharr•25m ago•0 comments

Zero Copy

https://en.wikipedia.org/wiki/Zero-copy
2•tristenharr•26m ago•0 comments

Interview: Drew DeVault on an AI-free version of Vim

https://jasonpolak.substack.com/p/interview-drew-devault-on-an-ai-free
2•vouaobrasil•27m ago•0 comments

Files SDK

https://files-sdk.dev
2•handfuloflight•28m ago•0 comments

Windows Privilege Abuse

https://www.semperis.com/blog/windows-privilege-abuse-can-lead-to-active-directory-compromise/
1•ishqdehlvi•29m ago•0 comments

Show HN: Orchestrator – a single-binary workflow orchestration tool

https://github.com/webstonehq/orchestrator
1•mikenikles•30m ago•1 comments

Three month suspension for a Core Developer

https://discuss.python.org/t/three-month-suspension-for-a-core-developer/60250
2•prakashqwerty•30m ago•0 comments

Lineageos Updates

https://lineageos.org/Infrastructure-Apps-Updates/
1•notorandit•32m ago•1 comments

Syntropy: A Web Framework for Ruby

https://github.com/digital-fabric/syntropy/
3•thunderbong•35m ago•2 comments

ZML releases free product to speed inference across AI chips

https://techcrunch.com/2026/07/08/hot-french-startup-zml-releases-free-product-to-speed-inference...
2•bogdiyan•37m ago•0 comments

Reform UK leader 'in real trouble' against Count Binface

https://www.mirror.co.uk/news/uk-news/nigel-farage-resigns-clacton-live-37401478
7•jjgreen•39m ago•1 comments

NUMA Aware Zone Placement — How Edera Decides

https://edera.dev/stories/numa-part-2-numa-aware-zone-placement----how-edera-decides
2•virtio_vixen•39m ago•0 comments

ULA's last six Atlas Vs can't launch anything besides Boeing's Starliner

https://arstechnica.com/space/2026/07/after-a-stellar-career-ulas-atlas-v-rocket-last-act-is-wait...
2•rbanffy•45m ago•1 comments

The Agent-Era Career

https://addyosmani.com/blog/career-advice-age-of-agents/
3•saikatsg•45m ago•0 comments
Open in hackernews

Understanding Java's Asynchronous Journey

https://amritpandey.io/understanding-javas-asynchronous-journey/
17•hardasspunk•1y ago

Comments

Neywiny•1y ago
I don't get it. The first example in JS vs Java looks very similar. Now all those other code blocks, they certainly have more going on but idk how that compares to JS. And to answer the questions:

A completable future is something that in the future may complete. I think that's self explanatory. A promise seems equally vague.

Boilerplate looks the same. JS is just a function, Java they put a class around it. Java requires exception handling which is annoying but having fought errors in async JS, I'll take all I can get.

API is eh. Sure. But that's not even shown in this example so I have no idea.

So JS saves like 3 lines? Is that really so much better?

cogman10•1y ago
> A completable future is something that in the future may complete. I think that's self explanatory.

But not the reason for the name :).

It's called "completable" because these futures have a method on them `future.complete("value")`. Before their introduction, there was a `Future` API that java had.

nogridbag•1y ago
Yeah that first example is rather poor. And it uses the word boilerpate to seemingly refer to the stuff unrelated to the async code (class declaration, exception handling, main method).

I don't use Java async much, but I guess if you have a utility method named "setTimeout" than the example can simply be:

    public CompletableFuture<String> fetchData() {
        return setTimeout(() -> "Data Fetched", 10000);
    }

    public void loadData() {
        fetchData().thenAccept(System.out::println);
    }
Which is simpler or equivalent to the JS example.
stevoski•1y ago
The Java 1 example uses lambdas, which were introduced in Java 8.

It’s probably intentional, because it allows showing the Java 1 Thread approach succinctly.

But as long-term Java person, I find it jarring.

philipwhiuk•1y ago
Java's had `var` since Java 10 but apparently the author deliberately ignored that to make the example as wordy as possible.

It's a little tiring to read a Java example with an entry-point (the public-static-void bit) and then a JavaScript example without one.

If you strip that out the original Java is:

  var future = CompletableFuture.supplyAsync(() -> {
        try {
                Thread.sleep(10000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            return "Data Fetched";
        });
  future.thenAccept(result -> System.out.println(result));
  System.out.println("Prints first"); // prints before the async result
which is only obtuse due to checked exceptions.

Arguably it's still a different thing you're doing, because it's not scheduling a task on a pool, it's creating a thread which sleeps for 10 seconds.

elric•1y ago
`var` is very unhelpful in situations where the reader might not be entirely familiar with the context, especially when using factory methods.

I don't think the author was trying to make the example "wordy" so much as "clear".

cogman10•1y ago
Also, arguably, the wrong way to do something like this.

The author uses `setTimeout` for javascript. The equivalent for Java is either the `Timer` class or a `ScheduledExecutorService`. Doing a `Thread.sleep` simply isn't how you should approach this.

With that in mind, if you want to use both these things and keep the completable future interface you'd have to do soemthing like this.

    ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
    var future = new CompletableFuture<String>();
    scheduler.schedule(()->future.complete("Data Fetched"), 10, TimeUnit.SECONDS);
    future.thenAccept(result -> System.out.println(result));
    System.out.println("Prints first"); // prints before the async result
    scheduler.shutdown();
AtlasBarfed•1y ago
Does no.js still limit you to a single core/CPU use?

Or as a node successfully been able to start utilizing more cores underneath its JavaScript single thread model. It presents the programmer?

I just remember early node.js from like 15 years ago and the single background task limitation of JavaScript running in a web page.

Cuz you got async code is nice, but what you really wanted to be able to harness in modern CPUs is multi-core

That said, I've been looking for an article like this for a while, although I think there are other associated libraries that also had steps in here. I do think the jvm adopted a lot of those, but I'm not sure if they actually are better than the original extension libraries.

msgilligan•1y ago
I simplified the first example to:

  void main() {
      CompletableFuture<String> future = CompletableFuture.supplyAsync(this::asyncMethod);
      future.thenAccept(result -> IO.println(result));
      IO.println("Prints first");             // prints before the async result
      future.join();                          // Wait for future to complete
  }

  String asyncMethod() {
      try {
          Thread.sleep(10000);
      } catch (InterruptedException e) {
          return "Interrupted";
      }
      return "Data Fetched";
  }
I made the following changes:

1. Move the asynchronous function called in the CompletableFuture to its own method

2. Use Java 25 "instance main method" (see JEP 25: https://openjdk.org/jeps/512)

3. Use Java 25 IO.println() to simplify console output

4. Instead of throwing a fatal exception on interruption, return "Interrupted" immediately.

5. Use future.join() so the main method waits for the future to complete and the "Data fetched" output is printed.

This program can be run directly from source with `java Example.java`. (If you're using Java 24 or a version of Java 25 prior to EA 22, you need to use `java --enable-preview Example.java`)

Here is a modified version of the example that interrupts the thread:

  void main() {
      ExecutorService executor = Executors.newSingleThreadExecutor();
      CompletableFuture<String> future = CompletableFuture.supplyAsync(this::asyncMethod, executor);
      future.thenAccept(result -> IO.println(result));
      IO.println("Prints first");             // prints before the async result
      executor.shutdownNow();
      future.join();                          // Wait for future to complete
  }

  String asyncMethod() {
      try {
          Thread.sleep(10000);
      } catch (InterruptedException e) {
          return "Interrrupted";
      }
      return "Data Fetched";
  }
wpollock•1y ago
In Java 24, new features support educational and demonstration use. You don't need a class to wrap your main method, which also has a simpler signature. To compare JavaScript with Java examples, one should make use of these features.

While the examples may need some work, I enjoyed this post, it nicely shows the evolution of Java concurrency.