frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Russian Drones Forced Ukraine to Park Its M1 Abrams Tanks

https://www.twz.com/land/how-russian-drones-forced-ukraine-to-park-its-m1-abrams-tanks
2•cisc•31s ago•0 comments

America's Two Largest School Districts Impose AI Moratoriums

https://www.techpolicy.press/americas-two-largest-school-districts-impose-ai-moratoriums/
3•cdrnsf•5m ago•0 comments

Google AI turns on its maker in a brutally candid interview

https://newatlas.com/ai-humanoids/exclusive-google-ai/
2•cisc•10m ago•0 comments

Teaching Prevents Learning

https://mariusmanolachi.substack.com/p/why-teaching-can-prevent-learning
1•Marius_Manola•10m ago•0 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
2•chmaynard•10m ago•0 comments

The AI-Native SDLC Playbook

https://claude.com/blog/the-ai-native-sdlc-playbook
1•gmays•22m ago•0 comments

Afterword – a multiplayer remake of Word After Word

https://afterword.exe.xyz
1•indigodaddy•22m ago•1 comments

South African diamond mines are closing due to weak sales and lab-grown stones

https://www.wsj.com/business/diamond-mines-are-closing-and-south-africans-have-few-alternatives-f...
3•bookofjoe•31m ago•1 comments

Obscura: Native rendering is here. No Chromium required

https://github.com/h4ckf0r0day/obscura
3•partsch•32m ago•0 comments

Show HN: Virtual photoshoot for guys who dislike having their pic taken

https://vibeflirting.com/
2•Ritjert•33m ago•0 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
2•cisc•34m ago•0 comments

OpenRDX

https://github.com/SunboX/OpenRDX
2•SunboX•35m ago•0 comments

OpenAI Response to the Wiki Incident

https://twitter.com/OpenAI/status/2096133504417616165
2•theCricketer•38m ago•1 comments

Lazygit

https://lazygit.dev/
3•amirmasoudabdol•40m ago•0 comments

Show HN: Fast Cut Video tool for cutting video for Agents

https://github.com/modecir/fast-cutvid
4•Modecir•42m ago•1 comments

How AI is breaking the British state

https://www.economist.com/leaders/2026/08/06/how-ai-is-breaking-the-british-state
4•tchalla•42m ago•0 comments

Show HN: I replaced my portfolio with an AI that knows me

https://xlogic.sh/
2•AaronJonk•43m ago•0 comments

What different world maps get right – and what they get wrong

https://www.bbc.com/news/articles/cly5r60v4mro
2•1659447091•44m ago•0 comments

Read efficiency issues in Postgres queries

https://www.pgmustard.com/blog/read-efficiency-issues-in-postgres-queries
2•blueshoess•44m ago•0 comments

Show HN: Phntm-ONE: I built a local AI desk assistant

https://www.phntmcore.com/
2•phntmcore•45m ago•0 comments

Make Peace with Darwin

https://www.overcomingbias.com/p/make-peace-with-darwin
2•paulpauper•45m ago•0 comments

The Scaling versus Profitability Trade-Off: Venture Capital's Weakest Link

https://aswathdamodaran.substack.com/p/the-scaling-versus-profitability
2•paulpauper•48m ago•0 comments

Show HN: I made a seal Tamagotchi game in Three.js

https://seal-tamagotchi-zyrmx.reachpad.app
2•sakuraiben•50m ago•0 comments

Worldbuilding Gender

https://millicosm.substack.com/p/worldbuilding-gender
2•paulpauper•52m ago•0 comments

How to perform CPR and defibrillation training video (2020)

https://commons.wikimedia.org/wiki/File:Save_a_Life_Cymru_-_Training_video.webm
3•schnatterer•55m ago•1 comments

How do you filter noise from signal in programming resources?

2•taosx•57m ago•0 comments

PR review when everyone has LLMs

https://octet-stream.net/b/scb/2026-09-05-pr-review-when-everyone-has-llms.html
1•thombles•58m ago•0 comments

Show HN: Merge Wikipedia articles across languages into one page

https://github.com/gojiplus/wikifuse
1•neehao•59m ago•0 comments

From a Chocolate Wrapper to Concurrent InnoDB Page Splits

https://mariadb.org/from-a-chocolate-wrapper-to-concurrent-innodb-page-splits/
1•drrtuy•1h ago•0 comments

Daynode: Calendar, Reminders, and Notes

https://www.daynode.com/
1•handfuloflight•1h 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).