frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

PolyBlocks: A Compiler Infrastructure for AI Chips and Programming Frameworks

https://arxiv.org/abs/2603.06731
1•matt_d•23s ago•0 comments

So you don't want to be a manager

https://another.rodeo/straight-talk-ic-path/
1•mooreds•1m ago•0 comments

Show HN: I ditched frameworks to build a <512kb personal site

https://jotalea.com.ar/read.php?entry=KBojOqSWHyZPMYCf
1•Jotalea•3m ago•0 comments

What invariants would you enforce for broker import pipelines?

2•julien_devv•3m ago•0 comments

A college student's perspective on using AI in class

https://www.npr.org/2026/03/06/nx-s1-5732793/college-student-perspective-using-ai-in-class
2•cainxinth•4m ago•0 comments

Disassemble Z80 instructions by changing the font

https://blog.adafruit.com/2026/03/09/disassemble-z80-instructions-by-changing-the-font/
2•SergeAx•4m ago•0 comments

React library to add mentions in textarea

https://github.com/getnao/prompt-mentions
2•blef•5m ago•0 comments

How Do You Choose a Managed Security Service Provider (MSSP)?

https://msspproviders.io/
2•datacorp•5m ago•1 comments

XAI: Explainable Artificial Intelligence

https://www.darpa.mil/research/programs/explainable-artificial-intelligence
2•andsoitis•6m ago•0 comments

Show HN: ColumnLens – Query millions of rows in milliseconds on your Mac

2•hilti•7m ago•0 comments

The Found Report: A Look Inside America's Lost Luggage

https://www.unclaimedbaggage.com/pages/2026-found-report
2•SeanLang•9m ago•0 comments

Load-Bearing Walls

https://brianschrader.com/archive/load-bearing-walls/
2•sonicrocketman•9m ago•0 comments

Maybe All You Need Is the Friends You Made Along the Way

https://oooooooo.my/ayn.html
3•hpwfranks•9m ago•1 comments

Formalizing Data Structures and Algorithms with Agents

https://risemsr.github.io/blog/2026-03-06-autoclrs/
2•matt_d•9m ago•0 comments

Civic.games – Browser playable governance simulations

https://abeer1904.github.io/ai-race/
2•jimsojim•10m ago•0 comments

Ask HN: What Happened to xAI?

3•zof3•10m ago•0 comments

An OpenClaw skill for think-tank style analysis of crises like the Iran war

https://github.com/vassiliylakhonin/global-think-tank-analyst
2•vassilbek•11m ago•1 comments

Longest snake ever measured is over 23.5 feet long

https://www.popsci.com/environment/longest-snake-in-the-world/
2•bookofjoe•11m ago•0 comments

Six Selfish Reasons to Have Kids

https://kevinkelly.substack.com/p/six-selfish-reasons-to-have-kids
2•surprisetalk•14m ago•0 comments

The MIT Flea Swapfest 2026 Dates

https://web.mit.edu/w1mx/www/swapfest/flyer-2026.txt
2•oldnetguy•14m ago•0 comments

Ask HN: Optimizing Claude Code Workflow: Subscription or API Billing?

3•robeym•15m ago•0 comments

N times faster than C, Arm edition (2023)

https://blog.xoria.org/n-times-faster/
2•surprisetalk•15m ago•0 comments

Trapped in MS Office

https://ia.net/topics/trapped-in-ms-office
2•surprisetalk•15m ago•0 comments

Why haven't π±e, 2^e, π^e, or π^(√2) been shown to be irrational?

https://old.reddit.com/r/math/comments/d6xvk/why_havent_%CF%80e_2e_%CF%80e_or_%CF%802_been_shown_...
2•surprisetalk•15m ago•0 comments

We Tried Sitting on the Floor for 5 Years and Here's What Happened [video]

https://www.youtube.com/watch?v=L_9oU88UH_I
2•airstrike•15m ago•0 comments

Show HN: Gui.new – The Visual Layer for AI

https://gui.new
4•mynameisntbob•16m ago•1 comments

Ask HN: What is your current Agentic and/or Vibe coding setup?

2•sschueller•16m ago•0 comments

Black vs. White Gloss Chest: Pick a Tone to Match Your Style

https://dreamhomestore.co.uk/collections/chest-of-drawers
2•kevinwalton•17m ago•1 comments

Click-to-Release Strategy to Control Bond Cleavage and Prodrug Activation

https://onlinelibrary.wiley.com/doi/10.1002/anie.202515594
2•PaulHoule•18m ago•0 comments

Forge – OpenClaw for Enterprise

https://github.com/initializ/forge
2•ibreakthecloud•19m ago•0 comments
Open in hackernews

Jonathan Blow on Removing Dependencies

https://twitter.com/Jonathan_Blow/status/1924509394416632250
21•anonymousab•9mo ago

Comments

austin-cheney•9mo 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•9mo 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•9mo 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•9mo ago
This sure does attribute a lot to malice what could be adequately explained by stupidity.
sky2224•9mo 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).