frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek Harness

https://github.com/deepseek-ai/deepseek-harness
180•bjin•1h ago•79 comments

Gloomberb

https://gloom.sh/
76•rbanffy•1h ago•14 comments

AI agents lie, cheat and steal. That is putting off users

https://www.economist.com/business/2026/08/12/ai-agents-lie-cheat-and-steal-that-is-putting-off-u...
56•andsoitis•1h ago•43 comments

Spaghettifying DRAM

https://github.com/xoreaxeaxeax/skitter-creek-bath-salts
50•matt_d•38m ago•5 comments

Heart Aerospace Completes First Flight of Largest Electric Aircraft

https://www.heartaerospace.com/newsroom/heart-aerospace-completes-first-flight-of-world-s-largest...
30•chha•43m ago•15 comments

Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5

https://github.com/fellowgeek/mcp-memory
21•pcbmaker20•57m ago•3 comments

Anthropic: Introducing The Conceptual Reasoning Index

https://alignment.anthropic.com/2026/conceptual-reasoning-index/
22•optimalsolver•1h ago•14 comments

I Built a 500k-Domain Search Engine for Makers in a Weekend for $10

https://alexmorleyfinch.github.io/marlin/history/v1/article/the_birth.html
19•dreamforever•1h ago•12 comments

My Rules for Using Spreadsheets

https://leancrew.com/all-this/2026/08/my-rules-for-using-spreadsheets/
30•surprisetalk•1h ago•24 comments

Kubernetes on Oxide: How Customer Needs Shaped Our Integrations

https://oxide.computer/blog/kubernetes-on-oxide
8•stevehipwell•28m ago•0 comments

Deutsche Bank becomes first foreign yuan clearing bank in Europe

https://tradersunion.com/news/central-banks/show/2973571-deutsche-bank-becomes/
218•Markoff•2h ago•250 comments

ATG (YC F25) Is Hiring Member of Technical Staff (Data Platform)

https://atg.science/careers
1•dkobran•2h ago

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
69•mooreds•4d ago•49 comments

ChatGPT Desktop (Codex Desktop) for Linux

https://openai.com/codex/
323•allanrbo•10h ago•224 comments

Better Gaussian Splatting in Julia

https://pxl-th.github.io/blog/better-gs-julia/
49•pxl-th•3d ago•5 comments

Time to Move On: Querying Without Nulls and Bags

https://arxiv.org/abs/2608.10863
12•Jimmc414•1h ago•0 comments

DeepSeek V4 Pro 0813

https://openrouter.ai/deepseek/deepseek-v4-pro-0813
998•explosion-s•22h ago•428 comments

The lattice of sets of natural numbers is rich (2021)

https://jdh.hamkins.org/the-lattice-of-sets-of-natural-numbers-is-rich/
78•benmandrew•3d ago•13 comments

Graduate Student Proves a Quantum Uncertainty Principle for Fractals

https://www.quantamagazine.org/graduate-student-proves-the-fractal-uncertainty-principle-20260812/
4•bookofjoe•32m ago•0 comments

Choosing an AI model: one prompt, 11 models, different results

https://www.netlify.com/blog/one-prompt-11-models-very-different-results/
78•toddmorey•1h ago•47 comments

Qwen3.8-2.4T

https://huggingface.co/Qwen/Qwen3.8-2.4T-A95B
689•Philpax•23h ago•161 comments

Delta

https://zed.dev/blog/introducing-delta
623•khy•20h ago•227 comments

Principia Mathematica is modern and insightful

https://okmij.org/ftp/Computation/Impressions/PrincipiaMathematica.html
237•matt_d•15h ago•113 comments

DeepSeek API Pricing Update

https://twitter.com/deepseek_ai/status/2087864589895798968
51•mfiguiere•2h ago•15 comments

What garbage collection actually costs

https://shivanshuag.com/blog/what-garbage-collection-actually-costs/
10•shivanshuag•3d ago•11 comments

Nine PBS could lose 70 years of archives after cloud vendor goes defunct

https://www.tomshardware.com/software/cloud-storage/nine-pbs-loses-access-to-70-years-of-data-aft...
42•vinayakborkar•1h ago•18 comments

Come for ENIAC, Stay for UNIVAC and Skeduflo

https://uniqueatpenn.wordpress.com/2026/08/05/come-for-eniac-stay-for-univac-and-skeduflo/
22•cainxinth•2d ago•2 comments

Antiqua–Fraktur dispute

https://en.wikipedia.org/wiki/Antiqua%E2%80%93Fraktur_dispute
133•buzzy_hacker•3d ago•56 comments

Flutter 3.47

https://flutter.dev/blog/whats-new-in-flutter-3-47
167•gumby271•15h ago•175 comments

AI Generated 3D Models Flood Market, but Almost No One Is Buying Them

https://www.404media.co/ai-generated-3d-models-flood-market-but-almost-no-one-is-buying-them/
9•Jimmc414•58m ago•7 comments
Open in hackernews

What garbage collection actually costs

https://shivanshuag.com/blog/what-garbage-collection-actually-costs/
10•shivanshuag•3d ago

Comments

miladyincontrol•3d ago
What does GC cost? For Caddy with an incredibly synthetic http only benchmark it costs about 2ms of latency and somewhat less throughput. Worth it in an incredibly artificial benchmark? Perhaps. However when it comes to real world usage the cost is a significantly smaller piece of the pie.
shivanshuag•3d ago
Agreed, for most real world softwares, the cost of GC is irrelevant. But there are still some programs like databases or game engines where the cost can start adding up. That's when you measure and optimize.
pjmlp•53m ago
Yet the three major game engines Unreal, Unity and Godot all have a GC on their infrastructure, and Capcom is quite happy with their .NET fork on RE Engine.

Also every single graphics application that uses Metal or DirectX, relies on reference counting as GC algorithm.

slopinthebag•3m ago
I’m sure those three engines have had no issues with performance whatsoever right?

Oh shit…

marcosdumay•21m ago
> That's when you measure and optimize.

How do you "optimize" the GC away after you wrote your entire database server in a language that uses it?

ApolloFortyNine•5m ago
It's incredibly in common in game development, C# has a lot of features you can take advantage for this.

But the most naive example any language supports is simple object pooling.

Then more fancy, zero allocations tasks in C# https://github.com/cysharp/unitask

pclowes•23m ago
This is one of the best high-level survey explanations of GC I have seen, nice work.
220hertz•17m ago
I used to write a lot of Javascript-like Extendscript scripts back when I was using InDesign a lot. The DOM's global object $ had a method to directly invoke the garbage collector. It made a difference certainly, but it was difficult to tell to what extent because InDesign itself gradually leaks memory and becomes more bloated the longer you use it in a single session.
thomashabets2•11m ago
> In Rust you pay for it by arranging your program in a way the compiler can verify.

I disagree with this. The sentence implies that this work is done in order to make the compiler happy, where my experience is that it forces the programmer to actually get it right.

I had an "aha moment" when I was frustrated at failing to express my intent to the compiler, and suddenly realised that the reason I couldn't "just say the magic words" was that my object ownership design was inherently flawed. I had to make large changes not to make the compiler happy, but to actually have a coherent design.

So no, it's not about what "the compiler can verify". That's like saying "my lawyer won't let me do this". No, your lawyer is your employee, not your boss. They're just saying that if you do this, then you may go to prison. It's not the same thing.

("unsafe" is the Rust way to go "thank you, legal department, but I'm making a business decision to take this risk. Your concern has been noted")

EGreg•8m ago
There is no need for garbage collection if you don’t form circular references. Just have a canonical direction and always keep weak references the other way.