frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GrapheneOS and Forensic Extraction of Data

https://discuss.grapheneos.org/d/13107-grapheneos-and-forensic-extraction-of-data
113•SoKamil•1h ago•14 comments

Gregg Kellogg has passed away

https://lists.w3.org/Archives/Public/public-json-ld-wg/2025Sep/0012.html
102•daenney•2h ago•8 comments

Behind the Scenes of Bun Install

https://bun.com/blog/behind-the-scenes-of-bun-install
57•Bogdanp•1h ago•22 comments

Reshaped is now open source

https://reshaped.so/blog/reshaped-oss
120•michaelmior•4h ago•28 comments

An Engineering History of the Manhattan Project

https://www.construction-physics.com/p/an-engineering-history-of-the-manhattan
14•rbanffy•1h ago•4 comments

DeepCodeBench: Real-World Codebase Understanding by Q&A Benchmarking

https://www.qodo.ai/blog/deepcodebench-real-world-codebase-understanding-by-qa-benchmarking/
53•blazercohen•4h ago•2 comments

I Solved PyTorch's Cross-Platform Nightmare

https://svana.name/2025/09/how-i-solved-pytorchs-cross-platform-nightmare/
14•msvana•3d ago•2 comments

Mapping to the PICO-8 palette, perceptually

https://30fps.net/pages/perceptual-pico8-pixel-mapping/
25•ibobev•3d ago•11 comments

KDE launches its own distribution

https://lwn.net/SubscriberLink/1037166/caa6979c16a99c9e/
587•Bogdanp•16h ago•386 comments

Piramidal (YC W24) Is Hiring Back End Engineer

https://www.ycombinator.com/companies/piramidal/jobs/1HvdaXs-full-stack-engineer-platform
1•dsacellarius•2h ago

C++20 Modules: Practical Insights, Status and TODOs

https://chuanqixu9.github.io/c++/2025/08/14/C++20-Modules.en.html
34•ashvardanian•3d ago•26 comments

Show HN: Term.everything – Run any GUI app in the terminal

https://github.com/mmulet/term.everything
975•mmulet•2d ago•131 comments

PgEdge Goes Open Source

https://www.pgedge.com/blog/pgedge-goes-open-source
47•Bogdanp•6h ago•8 comments

DOOMscrolling: The Game

https://ironicsans.ghost.io/doomscrolling-the-game/
354•jfil•15h ago•83 comments

Germany is not supporting ChatControl – blocking minority secured

https://digitalcourage.social/@echo_pbreyer/115184350819592476
804•xyzal•5h ago•246 comments

GrapheneOS accessed Android security patches but not allowed to publish sources

https://grapheneos.social/@GrapheneOS/115164133992525834
44•uneven9434•6h ago•6 comments

Hashed sorting is typically faster than hash tables

https://reiner.org/hashed-sorting
130•Bogdanp•3d ago•20 comments

ChatGPT Developer Mode: Full MCP client access

https://platform.openai.com/docs/guides/developer-mode
479•meetpateltech•22h ago•258 comments

How the tz database works (2020)

https://yatsushi.com/blog/tz-database/
44•jumbosushi•3d ago•6 comments

Brussels faces privacy crossroads over encryption backdoors

https://www.theregister.com/2025/09/11/eu_chat_control/
35•jjgreen•2h ago•9 comments

Where did the Smurfs get their hats (2018)

https://www.pipelinecomics.com/beginning-bd-smurfs-hats-origin/
109•andsoitis•13h ago•40 comments

Court rejects Verizon claim that selling location data without consent is legal

https://arstechnica.com/tech-policy/2025/09/court-rejects-verizon-claim-that-selling-location-dat...
529•nobody9999•12h ago•64 comments

Show HN: I built a minimal Forth-like stack interpreter library in C

6•Forgret•1h ago•3 comments

Teens are adjusting to the smartphone ban

https://gothamist.com/news/from-burner-phones-to-decks-of-cards-nyc-teens-are-adjusting-to-the-sm...
20•geox•34m ago•25 comments

A desktop environment without graphics (tmux-like)

https://github.com/Julien-cpsn/desktop-tui
126•mustaphah•3d ago•39 comments

The HackberryPi CM5 handheld computer

https://github.com/ZitaoTech/HackberryPiCM5
227•kristianpaul•2d ago•77 comments

Jiratui – A Textual UI for interacting with Atlassian Jira from your shell

https://jiratui.sh/
274•gjvc•23h ago•68 comments

Intel's E2200 "Mount Morgan" IPU at Hot Chips 2025

https://chipsandcheese.com/p/intels-e2200-mount-morgan-ipu-at
81•ingve•15h ago•29 comments

Rewriting Dataframes for MicroHaskell

https://mchav.github.io/rewriting-dataframes-for-microhs/
54•internet_points•3d ago•4 comments

Defeating Nondeterminism in LLM Inference

https://thinkingmachines.ai/blog/defeating-nondeterminism-in-llm-inference/
287•jxmorris12•20h ago•117 comments
Open in hackernews

DeepCodeBench: Real-World Codebase Understanding by Q&A Benchmarking

https://www.qodo.ai/blog/deepcodebench-real-world-codebase-understanding-by-qa-benchmarking/
52•blazercohen•4h ago

Comments

four_fifths•3h ago
If you do a bit of digging into most of the popular benchmarks that all the big labs report on, you'll see pretty quickly that they have almost zero correlation with any real world tasks.

The approach that they're taking here of working backwards from a OS repo pull request and reverse engineering a question is unusually well thought out for a benchmark.

I haven't dug into more of the dataset questions yet, but the example they give in the blog post for the question generated for Hugging Face Transformer's repo gives me hope that this could actually be a solid benchmark:

> How do the fast image and video processor base classes prevent shared mutable state when instantiating multiple instances?

qsort•2h ago
I particularly like their usage of LLM-as-a-judge. They don't go "hey chatgpt, sort these from best to worst based on vibes", rather they extract a set of ground truths and check how the answer compares, a task that SOTA LLM can do kind of reliably. It's a very smart way to circumvent the problems introduced by pure LLM-as-a-judge methods.