frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nvidia agrees to acquire Hugging Face for $13B

https://www.businessinsider.com/nvidia-in-talks-to-buy-hugging-face-13-billion-dollars-2026-8
551•mfiguiere•3h ago•238 comments

CEO fired developers to make room for AI. Developers create open source AI CEO

https://github.com/SenteLabsAI/OpenExecutive
221•GrumpySciGuy•2h ago•134 comments

Mechanical Turk shutting down September 30

https://www.mturk.com/
211•tmp10423288442•4h ago•70 comments

Kusama Yayoi Dies at 97

https://news.jp/i/1465528042000662661
84•phantomathkg•2h ago•6 comments

GLM-5.3-Flash

https://z.ai/blog/glm-5.3-flash
934•Philpax•14h ago•470 comments

Asahi Linux Progress Report: Linux 7.2

https://asahilinux.org/2026/08/progress-report-7-2/
150•pizzaiolo•6h ago•35 comments

Laion Big Video Dataset

https://projects.laion.ai/bvd/
27•ks2048•2h ago•2 comments

Tailcat – Like netcat, but over Tailscale’s data plane

https://github.com/tailscale/tailcat
507•nderjung•10h ago•94 comments

AWS Acquires DuckLabs

https://ducklabs.com/news/2026/08/26/ducklabs-to-join-aws
1008•onderkalaci•15h ago•298 comments

Worst-case glacial lake flood scenarios in a transboundary Himalayan basin 2022

https://nhess.copernicus.org/articles/22/3765/2022/nhess-22-3765-2022.html
101•totetsu•5h ago•45 comments

An ongoing 3D-printer AGPL violation

https://lwn.net/SubscriberLink/1089390/46116614cc74b814/
347•Velocifyer•10h ago•155 comments

Zohran and the Short Link

https://iamwillwang.com/notes/zohran-and-the-short-link/
142•wxw•4h ago•44 comments

U.S. State Department pauses immigrant visa applications

https://www.wsj.com/politics/policy/u-s-state-department-pauses-immigrant-visa-applications-25b31b23
371•sss111•11h ago•543 comments

Stripe acquires Clerky

https://www.clerky.com/blog/clerky-is-joining-stripe
110•zakshay•7h ago•21 comments

Qwen3.8-Flash-Next

https://qwen.ai/blog?id=qwen3.8-flash-next
650•tosh•15h ago•212 comments

Twitter Viewer – View Twitter Without Account

https://twitterwebviewer.com/
358•motownphilly•14h ago•171 comments

The Hugging Face incident and the road ahead

https://openai.com/index/hugging-face-incident-and-the-road-ahead/
210•amrrs•9h ago•255 comments

Actinide is first startup to produce high-assay low-enriched uranium (HALEU)

https://www.actinideinc.com/press/actinide-becomes-first-startup-to-ever-enrich-natural-uranium-t...
144•dsalzman•9h ago•76 comments

CoMaps: The Offline App That Guided Rescuers Without a Signal in Venezuela

https://hotosm.org/en/news/comaps-the-offline-app-that-guided-rescuers-without-a-signal-in-the-ve...
216•gedankenstuecke•11h ago•48 comments

FDA approves first in class targeted therapy for metastatic pancreatic cancer

https://www.fda.gov/news-events/press-announcements/fda-approves-first-class-targeted-therapy-met...
185•leopoldj•12h ago•43 comments

GitHub Outage Tracker: Is GitHub Cooked?

https://isgithubcooked.com/
206•toomanyrichies•8h ago•130 comments

IBM Unveils Next Generation Dual-Architecture Processor for IBM Z and LinuxONE

https://newsroom.ibm.com/2026-08-24-ibm-unveils-next-generation-dual-architecture-processor-for-i...
103•porridgeraisin•8h ago•76 comments

Serve Markdown to AI Agents with Accept Headers

https://acceptmarkdown.com/
106•tilt•8h ago•61 comments

Nebula Sans

https://www.nebulasans.com
368•GavinAnderegg•13h ago•137 comments

Humanity has the debate about AI consciousness backwards

https://economist.com/by-invitation/2026/08/20/humanity-has-the-debate-about-ai-consciousness-bac...
14•semiquaver•2h ago•13 comments

The Harness Is the Thing

https://scott-fryxell.github.io/blog/the-harness-is-the-thing/
68•sfryxell•11h ago•20 comments

Mold: A Massively Parallel Linker

https://arxiv.org/abs/2608.23228
95•matt_d•8h ago•12 comments

Taylor Farms: How One Company's Reach Became a National Risk

https://farmaction.us/taylorfarmsreport/
257•speckx•14h ago•172 comments

Getting video models to learn better, faster

https://www.linum.ai/field-notes/data-filtering-gen-video
14•schopra909•2h ago•8 comments

Launch HN: Risklytics (YC S26) – Insurance brokerage for frontier tech companies

https://www.risklytics.ai/
47•AlexRisio•12h ago•19 comments
Open in hackernews

Fixrleak: Fixing Java Resource Leaks with GenAI

https://www.uber.com/blog/fixrleak-fixing-java-resource-leaks-with-genai/
17•carimura•1y ago

Comments

stevoski•1y ago
> “Resource leaks, where resources like files, database connections, or streams aren’t properly released after use, are a persistent issue in Java applications”

This was true maybe back in 2005. Java has had try-with-resources for a loooong time. As I see it this has been the dominant idiom for ages, for handling resources that might leak.

okr•1y ago
People tend to forget. Stream-API is a good candidate, that people like to not consider for leakage. If you don't own your stream, if you do not definitly know, that your stream comes from a collection, then ya better close it with a try-block.
bob778•1y ago
How much effort was spent automating this to fix 112 instances across Uber’s code base? I assume code reviews would catch any new issues so this seems like overkill for a small one-off task?
hawk_•1y ago
Spotbugs or checkstyle etc... would catch these. What does AI add here?
xyst•1y ago
It gives marketing team at Uber to say "wE uSe AI hErE!!1". C-levels approve since anything AI gets a nice pump.

Engineering wise. This adds nothing. It’s an absolute waste of compute and energy to run this through LLMs

sigotirandolas•1y ago
> This analysis ensures that FixrLeak skips functions where resources are passed as parameters, returned, or stored in fields, as these resources often outlive the function’s scope.

> FixrLeak delivers precise, reliable fixes while leaving more complex cases for advanced analysis at the caller level.

In other words, this will only fix trivial leaks, which are best seen as a language design issue and can be fixed by RAII, reference counting, etc.

It won't fix the more insidious leaks like `UNBOUNDED_QUEUE.add(item)` that are more likely to pass through code review in the first place.

xyst•1y ago
Using AI when a static scanner like SonarQube easily picks up these types of resource leaks, especially in Java.

Peak waste.

What’s next?

"Get rid of your GitHub dependabot alerts and replace it with my shitty ChatGPT wrapper”

rvz•1y ago
> Using AI when a static scanner like SonarQube easily picks up these types of resource leaks, especially in Java.

Exactly.

It's very disappointing to see that Uber engineers would rather trust an LLM to that claims to spot these issues when a battle-tested scanner such as SonarQube would have caught this in the first place.

The LLM hype-train is almost just as bad as the JavaScript hype train in the 2010s where some of the worst technologies are used on everything.

rvz•1y ago
Why exactly do you need LLMs for this when efficient alternatives like SonarQube or checkstyle already do this without the expensive waste LLMs create?

This adds little to no technical advantage over existing solutions what so ever for this particular use case.

yahoozoo•1y ago
stupid af
Traubenfuchs•1y ago
So you tell me those 200-600k software engineers that can easily solve leetcode hard are so incompetent they missed using try-with-resources at such scale, they needed to introduce new AI tooling to fix it?

Hey Uber, I am from the EU, I usually can‘t even solve leetcode medium but I will write you scalable, spotless Java for a third of the salary.

Our industry and its economics are a joke.

hello_moto•1y ago
So you write bug-free scalable code 100% in any jobs you ever worked for?

I guess we don’t need QA and Dev/Staging environment

rad_gruchalski•1y ago
Can the QA team? How does the dev/staging environment help writing less buggy code?
rad_gruchalski•1y ago
But can you leetcode heh.
TYMorningCoffee•1y ago
A lot of commenters point out that there already are many established static checkers that do this. That is not what Uber attempts here.

Uber is not proposing a static checker. They even use sonar qube in their architecture. They propose using an LLM to resolve the leak detected by sonar qube.