frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Beacon – Lightweight deployment and monitoring for self hosters

https://github.com/Bajusz15/beacon
1•matebajusz•16s ago•0 comments

OpenSTA: Open-source static timing analysis for FPGAs

https://www.zeroasic.com/blog/opensta-release
1•matt_d•1m ago•0 comments

Write Off

https://newsletter.antoniokov.com/archive/write-off/
1•antoniokov•2m ago•0 comments

Spartan Engine: A game engine with an emphasis on real-time solutions

https://github.com/PanosK92/SpartanEngine
1•klaussilveira•3m ago•0 comments

Three ways I learn with AI

https://interjectedfuture.com/three-ways-i-learn-with-ai/
1•iamwil•3m ago•0 comments

Operating Limitations at Newark Liberty International Airport [pdf]

https://public-inspection.federalregister.gov/2025-18871.pdf
1•impish9208•4m ago•0 comments

26 Year Old Mystery of Vandal Heart II's Gradius Sword Has Been Solved

https://kotaku.com/vandal-hearts-2-gradius-sword-suikoden-ps1-demo-disc-save-file-2000629247
2•kayge•4m ago•0 comments

The Quiet Ones

https://writing.nikunjk.com/p/the-quiet-ones
1•rmason•5m ago•0 comments

BlockNote – The open source Block-Based rich text editor

https://www.blocknotejs.org/
1•TheTaytay•8m ago•0 comments

Martin Shkreli can be sued for copying unique Wu-Tang Clan album, judge rules

https://www.reuters.com/legal/government/martin-shkreli-can-be-sued-copying-unique-wu-tang-clan-a...
1•jaredwiener•9m ago•0 comments

Quiet UI – My Creative Outlet

https://www.abeautifulsite.net/posts/quietui-my-creative-outlet/
1•claviska•9m ago•0 comments

OpenBao on Kubernetes

https://nanibot.net/posts/vault/
1•nanibot•10m ago•0 comments

Orchestrating Data Quality with Airflow

https://www.astronomer.io/blog/orchestrating-data-quality-with-airflow/
1•glawre•12m ago•0 comments

Consciousness Goes Deeper Than You Think (2017)

https://www.scientificamerican.com/blog/observations/consciousness-goes-deeper-than-you-think/
1•bookofjoe•13m ago•1 comments

The AI Boom Needs a Market for Compute

https://www.bloomberg.com/news/articles/2025-09-26/the-ai-boom-needs-a-market-for-compute-just-li...
3•lpage•14m ago•1 comments

YC X Coinbase RFS: Build Onchain

https://www.ycombinator.com/blog/build-onchain
1•rapawel•14m ago•0 comments

Why Quantum Computing and HPC Are the Future Power Couple

https://www.hpcwire.com/2025/09/24/why-quantum-computing-and-hpc-are-the-future-power-couple/
1•rbanffy•15m ago•0 comments

If you can't use AI then it's bye bye, Accenture tells staff

https://www.theregister.com/2025/09/26/accenture_ai_jobs/
2•rntn•16m ago•1 comments

It's Not Rocket Science It's Materials Science

https://www.universetoday.com/articles/its-not-rocket-science-its-materials-science
1•rbanffy•16m ago•0 comments

Epidemiological exploration of Bluetooth headset usage on thyroid nodules (2024)

https://pmc.ncbi.nlm.nih.gov/articles/PMC11192738/
2•walterbell•18m ago•0 comments

The magical number 7, plus or minus 2

https://fermatslibrary.com/s/the-magical-number-seven-plus-or-minus-two
1•tzury•19m ago•0 comments

Ask HN: Am I missing out by not being at one the high growth AI companies?

2•mutator•21m ago•1 comments

Give Me 12 Minutes and I'll Give You 30 Years of Productivity Advice [video]

https://www.youtube.com/watch?v=MN_LkumE3Ig
2•gmays•21m ago•0 comments

Databricks IPO: Pros and Cons

https://coffee.link/databricks-ipo-the-ai-data-giant-at-peak-bubble-or-perfect-timing/
3•PhilKunz•23m ago•0 comments

Faster Rust Builds on Mac

https://nnethercote.github.io/2025/09/04/faster-rust-builds-on-mac.html
2•PaulHoule•23m ago•0 comments

Show HN: Palm Bread – Open method to scale up home baking (100 loaves/day)

https://palmbread.com/open_research/
2•akumpf•23m ago•1 comments

What's New in Python 3.14

https://docs.python.org/3.14/whatsnew/3.14.html
5•__cayenne__•24m ago•0 comments

Daily Caller Opinion Column 'Explicitly' Calls for Violence

https://www.nytimes.com/2025/09/26/business/media/daily-caller-opinion-violence.html
5•reaperducer•25m ago•1 comments

Gunman Who Attacked Midtown Office Building Had CTE

https://www.nytimes.com/2025/09/26/us/cte-football-tamura-gunman.html
5•JumpCrisscross•26m ago•0 comments

Convert user sessions into playwright scripts

https://www.loom.com/share/caa295aa921f4e71bb10e0448838a404?sid=cf23b460-08f1-4db2-a74e-3f5cc65c3ced
2•futuremiles95•26m ago•1 comments
Open in hackernews

crates.io: Malicious crates faster_log and async_println

https://blog.rust-lang.org/2025/09/24/crates.io-malicious-crates-fasterlog-and-asyncprintln/
8•pjmlp•1h ago

Comments

vlovich123•1h ago
I’ve seen lots of critiques of software registries, but no actual solutions for how to reliably secure your software supply chain other than vendoring all your dependencies which carries other security challenges like timely updates to pick up vulnerability fixes or not using any dependencies.

What are actual things that crates.io or npm could do but aren’t to improve the security of the ecosystem?

maxbond•59m ago
Maybe checking new packages for the following:

- Substantially the same README as another package

- README links to a GitHub that links back to a different package

And additionally:

- Training a local LLM on supply-chain malware as they capture examples, and scanning new releases with it. This wouldn't stop an xz-style attack but will probably catch crypto stealers some of the time.

- Make a "messages portal" for maintainers and telling them never to click a link to see a message from the repository (and never including a link in legitimate messages). You get an email that you have a message and you log in to read it.

Hackbraten•46m ago
Checking the README for similarity to other packages can cause false positives for benign, legitimate forks.
maxbond•3m ago
Sure, I'm not saying those projects should be automatically deleted or something. Just that it's worth looking into. Maybe you put a message on the package notifying potential users and put it into a moderation queue.
viraptor•45m ago
The registries can't do much beyond enforcing better auth for uploading packages. Forced 2fa will help a lot.

Almost every other action would be just an guess with information for the devs and getting in the way of edge cases. For example, what if you genuinely want to publish a malware example or a vulnerability reproducer? What if you want your own fork of another package because you carry extra patches?

prdonahue•31m ago
We're taking a very different[1] approach at Chainguard.

Essentially: building the world from GitHub repos on SLSA L2 hardened infra and delivering directly to our customers to bypass the registry threat vector (which is where vast, vast majority of attacks occur—we'll be blogging about this soon with more data).

[1] https://www.chainguard.dev/unchained/announcing-chainguard-l...