frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Enormous 12TB Steam leak includes abandoned Half-Life 2: Episode 3 assets

https://www.theverge.com/games/986552/12tb-steam-leak-half-life-2-episode-3
1•droidjj•2m ago•0 comments

The Deadline Dividend

https://deadline-dividend.onrender.com
1•gmays•3m ago•0 comments

Show HN: Prove your code produced your claims without making reviewers rerun it

https://github.com/27-GROUP/kveritas-go/
1•Mkld27•4m ago•0 comments

Flock Safety's controversial CEO just got a taste of his own medicine

https://www.neowin.net/news/the-ceo-of-americas-biggest-surveillance-network-just-got-a-taste-of-...
4•devonnull•4m ago•0 comments

The Verification Gap: Who Audits the Agents?

https://gist.github.com/ecksbe/c48919c653ec2fba4b9ee17eb534efc3
1•evidence-lab•4m ago•0 comments

Mark Zuckerberg sends message to Meta employees

https://www.thestreet.com/technology/mark-zuckerberg-shocking-message-meta-employee-layoffs-artif...
1•georgecmu•5m ago•0 comments

Ask HN: What do your job interviews look like? (August 2026)

1•Hixon10•5m ago•0 comments

Why do I lose my passion and want to do nothing?

2•hanstyle•8m ago•0 comments

Agency and Agents

https://www.oneusefulthing.org/p/agency-and-agents
1•swolpers•8m ago•0 comments

Show HN: App design that combines Reddit and Gmail for private treelike convos

3•tsydenzhap•8m ago•1 comments

Glean: Run an AI skill only over what changed since it last ran

https://github.com/amalucelli/glean
1•malucelli•9m ago•0 comments

DDoS Attack Breaks Beloved Video Game Wiki After AI Bro Was Banned

https://kotaku.com/ddos-attack-breaks-beloved-video-game-wiki-after-ai-bro-was-banned-2000729335
1•razorbeamz•9m ago•0 comments

Steer: Deny or rewrite an AI agent's tool calls before they run

https://github.com/amalucelli/steer
1•malucelli•10m ago•0 comments

A key transparency self-audit can verify the wrong identity

http://gorokhov.dev/posts/key-transparency-self-audit/
1•Hexmere•16m ago•0 comments

Show HN: Card Shop Directory – Find trading card shops by state, city, and game

https://cardshopdir.com
1•laimingj•17m ago•0 comments

Which AI Do You Think Will Have the Greatest Impact on the World?

1•SudilaDasun•19m ago•0 comments

Show HN: I asked LLMs to choose between popular developer tools

https://github.com/betocmn/preseason
1•thedreammachine•19m ago•0 comments

CobaltC – The Successor to C?

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
1•SilentLambda•23m ago•1 comments

You Are the Harness

1•learningstud•23m ago•0 comments

Internet centralization and the original sin of NAT

https://dreamstation.systems/personal/ntppost.html
1•robinpie•26m ago•0 comments

Pentagon installs military influencers in civilian roles

https://www.washingtonpost.com/national-security/2026/08/30/pentagon-secretly-installs-military-i...
1•dataflow•27m ago•0 comments

Show HN: ScoutLayer – a simple API to find contacts from a domain

https://scoutlayer.io
2•yuangwya•27m ago•0 comments

Endless sitcom using Minimax H3 and a turbo LoRA

https://www.twitch.tv/dereactorwah
1•ttul•30m ago•0 comments

About YC Founder PG

https://twitter.com/PalmerLuckey/status/2094192472348098699
3•kappi•31m ago•0 comments

Exponential Smoothing

https://lisyarus.github.io/blog/posts/exponential-smoothing.html
1•ffin•37m ago•0 comments

The Part of Me That Doesn't Believe AI Is Fine

https://danunparsed.com/p/ai-is-fine
1•sambellll•39m ago•0 comments

HermOS – a local-first AI agent IDE

https://hermos.is-a.dev/
2•WFekik•39m ago•0 comments

We tackled the blockchain trilemma with multi‑bucket parallelism (niumeta)

https://github.com/niumeta/niumeta
1•niumeta_TZ•40m ago•1 comments

Lyft Charged Me $150 for Vomiting in a Car, but I Didn't Do It

https://www.nytimes.com/2026/08/20/travel/lyft-cleaning-charge.html
1•lxm•43m ago•0 comments

Domestic cats kill 1.3–4.0B birds and 6.3–22.3B mammals annually

https://www.nature.com/articles/ncomms2380
3•agnosticmantis•45m ago•0 comments
Open in hackernews

Jonathan Blow on Removing Dependencies

https://twitter.com/Jonathan_Blow/status/1924509394416632250
21•anonymousab•1y ago

Comments

austin-cheney•1y ago
Absolutely. This is part of the reason I refuse to go back to JavaScript work, because JavaScript developers don't live in that world.

Everybody claims to want software that achieves better performance and better durability. Even in JavaScript land people claim to want better performance and better durability. Yet, when it comes down to taking ownership or actually doing the work there is no greater evil, so there is a lot of lip service and whining there.

As an experiment just mention replacing some dependencies at work in JavaScript land with some code you have written and see what happens. There aren't salaries large enough to go back to that.

wduquette•1y ago
The smaller the supply chain, the smaller the chance of supply-chain attacks. I program mostly in Java these days, and I have always been very careful of adding external dependencies to my code bases. A few times I have in fact replaced a commonly-used dependency with a home-grown own; and yes, I've been very happy.
underdeserver•1y ago
> But the thing to realize is most of this implementation is spam. It is mostly doing things for people who are not you, for reasons you don't necessarily agree with, chosen by a decision-making method that is deeply flawed.

It's not flawed. It's just made by people whose goals differ from yours.

Inityx•1y ago
This sure does attribute a lot to malice what could be adequately explained by stupidity.
sky2224•1y ago
He really hit the nail on the head with the part about realizing you only need 8% of what a dependency provides a lot of the time.

I recall working on a project where we were using some really old WPF library that provided a bunch of controls for doing things like dropdown menus, data grouping, etc.

We were doing an upgrade of the project, and this library was holding us back since it was stuck on an older version of .NET Framework. I realized we only needed that dropdown functionality since we didn't use anything else from the library.

Ultimately, I just copied the dropdown logic directly from the library, but rewriting it myself wouldn't have been a big undertaking either (it just happened to be open source, so I figured if it ain't broke, don't fix it).