frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

America has a whopping debt. But Europe has the whopping debt problem

https://www.economist.com/europe/2026/09/03/america-has-a-whopping-debt-but-europe-has-the-whoppi...
1•andsoitis•49s ago•0 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
1•canjobear•2m ago•0 comments

Discord Is Bringing Back Age Verification

https://www.gadgetreview.com/discord-is-bringing-back-age-verification-for-millions-of-users
1•variety8675•3m ago•0 comments

Effect Agent

https://github.com/danieljvdm/effect-agent
1•handfuloflight•4m ago•0 comments

How work makes families more equal

https://www.economist.com/international/2026/09/03/how-work-makes-families-more-equal
1•andsoitis•6m ago•0 comments

Patterns, Predictions, and Actions: A story about machine learning [pdf]

https://mlstory.org/pdf/patterns.pdf
1•Anon84•9m ago•0 comments

NoGraphicsAPI

https://github.com/sebbbi/NoGraphicsAPI
2•coffeeaddict1•9m ago•0 comments

GitHub issues on Laravel open-source packages are disabled now

https://twitter.com/taylorotwell/status/2095516796748996843
2•heyiamlukas•10m ago•1 comments

Does KaiOS sell my text message data?

https://www.reddit.com/r/KaiOS/comments/1w4op2m/does_kaios_sell_my_text_message_data/
1•endofreach•11m ago•0 comments

How (Not) to Find a SWE Job in North America

https://tolkunov.dev/posts/how-to-find-a-job-in-north-america/
2•frant1c•14m ago•0 comments

Kevin Bass on X: "Women gained all of the new jobs since January 2025

https://twitter.com/kevinnbass/status/2096073961524076916
2•bilsbie•16m ago•1 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
1•Anon84•17m ago•0 comments

Discrete Dipole Approximation Code Ddscat 7.2 (2012)

https://arxiv.org/abs/1202.3424
1•doener•19m ago•0 comments

OpenSourceRail

https://github.com/modernecotech/OpenSourceRail/tree/main
1•modernecotech•20m ago•1 comments

ISAR Aerospace 5 Sept Mission Onward and Upward

https://isaraerospace.com/mission-updates-overview
2•t43562•23m ago•1 comments

Trump Officials Draft Plan to Pay At-Home Parents, Using Funds for Working Ones

https://www.nytimes.com/2026/09/05/us/politics/stay-at-home-parents-subsidies.html
3•koolba•23m ago•0 comments

Who Killed the American Demoscene? (2019)

https://www.vice.com/en/article/who-killed-the-american-demoscene-synchrony-demoparty/
3•wy35•25m ago•1 comments

Generating scenarios for extreme events, without extreme data

https://news.mit.edu/2026/generating-scenarios-extreme-events-without-extreme-data-0824
1•taubek•26m ago•0 comments

Daemoncore Academy Now 100% Free Cyber Security Certifications

https://www.daemoncore.app/
1•DaemonCoreApp•30m ago•0 comments

Ling 3.0 Tiny

https://huggingface.co/inclusionAI/Ling-3.0-tiny
1•AbuAssar•31m ago•0 comments

Ask HN: Did you see this Polymarket post on X today?

1•skwasimin•33m ago•1 comments

Show HN: ChatPanel Now Available on Firefox

https://chatpanel.net/
1•earth2mars•34m ago•1 comments

Eliza Effect

https://en.wikipedia.org/wiki/ELIZA_effect
3•tripdout•35m ago•1 comments

UN votes to adopt new map that makes our world look different

https://www.cnn.com/2026/09/04/world/un-vote-new-world-map-intl-scli
1•consumer451•36m ago•0 comments

Show HN: Claude Skill – Interns must review (your agent's design choices)

https://github.com/alpbahadur/interns-review-plugin
9•alpbahadur•37m ago•0 comments

Elon Musk's Inner Circle Is Pouring Cash into Making Psychedelics Mainstream

https://www.wsj.com/health/healthcare/elon-musks-inner-circle-is-pouring-cash-into-making-psyched...
2•gmays•38m ago•0 comments

Large language models can predict the results of social science experiments

https://www.nature.com/articles/s41586-026-10742-x
2•paulpauper•38m ago•0 comments

Our Likely Future Filter: World Govt

https://www.overcomingbias.com/p/most-likely-future-filter-world-govt
1•paulpauper•39m ago•0 comments

The Danube River's water is dropping so low that World War II ships are emerging

https://www.pbs.org/newshour/world/the-danube-rivers-water-is-dropping-so-low-that-world-war-ii-s...
1•throwaway2037•39m ago•0 comments

Anyone using llama.cpp willing to test LlamaRack?

https://github.com/brantje/LlamaRack
1•Vibecoder_•40m ago•1 comments
Open in hackernews

Benzi – A harness reading LESS source code to write better quality code

https://github.com/oooscoos/Benzi
1•kamarovmakarov•42m ago

Comments

kamarovmakarov•42m ago
Roughly speaking, the way current AI coding agents/harnesses work is by either: a) Pulling in appropriate text snippets of code across multiple files and handing them to the agent, or b) Parsing code to make high dimensional embeddings to approximate a symptom map, and hand that to the agent.

Both of these approaches skyrocket the token count, add to wall clock time, contribute to context drifting, add to the model's thinking tokens to discover the structure of the program, and then FORGET most of it when Claude Code compacts, or ALL of it if it's a multifile refactoring because all line numbers shift and need re-grepping.

Benzi is built from the ground up to AVOID reading source code in the first place. It supplies the artificial intelligence model deterministic intelligence via tool calls. For example, when a model is about to make a code change, it could query "what functions feed this one?" -- half the time it isn't even necessary because the Benzi compiler already informs it of the blast radius before and after making edits, along with a complete static analysis check.

Benzi Sonnet reads far less source code (9,125 lines) than Claude Code Sonnet (20,704), DeepSeek's harness (43,598), and OpenCode (65K+ LOC -- disqualified due to repeated failure) to accomplish the same tasks faster and cheaper. (Benchmark details: https://benzi.fly.dev/benchmark)

"But what if the compiler isn't doing its job right! Wouldn't you mislead the AI model?" - Absolutely. Benzi meticulously takes care of this by having 3 truth tiers. RESOLVED has definite evidence, CANDIDATE is what couldn't be resolved by the static analysis, and OBSERVED is what actually happened during an execution. The artificial intelligence and the determinstic intelligence layers coordinate to reduce source hits where possible, without producing incorrect results for the sake of efficiency.

It also has several bonus features such as a runtime tracer, self-aware model upgrade mid task if it thinks the job is over its pay grade, context aware model written repro, and SEVERAL more.

It currently supports Python · JavaScript · TypeScript · Java · C# · C++ · C · Go · Rust · Ruby, and can handle HTML, CSS and JS -- deterministically. Claude Code clicks photos, Benzi resolves winners of CSS rules. The CodeIndex and the MarkupIndex are fairly well tested, and if something isn't working, the model is made aware of it first.

On the benchmarks side, 78.2% SWE-bench Verified for <10¢ a fix (using V4flash). This score is notable because while the rest of the industry is leaning plugin-heavy and pouring millions of dollars into increasing context window sizes, Benzi's approach might prove to be economically more valuable while improving the model's code writing/comprehenion abilities.

If you're curious to learn more, click https://benzi.fly.dev/about and check out StallionSwipe. probably the best thing i ever made. It's a Fireship inspired horse tinder app greenfielded entirely in Benzi Opus 4-8 and a little bit v4 flash.

and lastly, please star on github if you like where this is headed!