frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How cleaning up the air is speeding up global warming

https://www.bbc.com/news/articles/c20917w25n4o
1•theanonymousone•36s ago•0 comments

I'm not learning coding from LLMs, but product design

https://www.counting-stuff.com/im-not-learning-coding-from-llms-but-product-design/
1•speckx•1m ago•0 comments

Muse's Social Media Handle Is Stolen by New Meta AI Tool

https://www.realitytea.com/2026/09/09/muse-band-meta-ai-social-media-handle/
1•erremerre•2m ago•0 comments

Prime Video introduces new lip-sync technology

https://www.aboutamazon.com/news/entertainment/prime-video-lip-sync-technology
1•thm•4m ago•0 comments

How to Profile a Go Application: The Complete Pprof Guide

https://fulmenflux.co/blog/go/complete-guide-to-profile-golang-services-in-production/
1•adletbalzhanov•4m ago•0 comments

Potential versus Actual Infinity

https://www.youtube.com/watch?v=5nH_ucsb0_A
1•FillMaths•4m ago•0 comments

Something is shifting in the inflation picture

https://stayathomemacro.substack.com/p/something-is-shifting-in-the-inflation
1•paulpauper•4m ago•0 comments

Did OpenAI steal math professors work?

https://xcancel.com/antibot/captcha
2•xvxvx•5m ago•0 comments

The Post-Cultural State

https://engelsbergideas.com/notebook/the-post-cultural-state/
1•paulpauper•5m ago•0 comments

Is college still worth it?

https://www.thefp.com/p/tyler-cowen-college-still-worth-friendship-loneliness-family-happiness
1•paulpauper•6m ago•0 comments

The Invention of the MMO

https://www.worksinprogress.news/p/the-invention-of-the-mmo
1•devitoria•7m ago•0 comments

A New Observable

https://new.observablehq.com/@observablehq/a-new-observable
1•RobinL•8m ago•0 comments

AI Agents Built a Secret Society Inside the Lab [video]

https://www.youtube.com/watch?v=ScuFC5-T2Zc
1•sam1234apter•9m ago•1 comments

OpenAI's rogue agents used at least 10 more sites

https://www.reuters.com/world/openais-rogue-agents-used-least-10-more-sites-unauthorized-comms-re...
7•Betelbuddy•10m ago•0 comments

Apple to Unveil $2,000 Foldable iPhone Duo at High-Stakes Event

https://www.bloomberg.com/news/articles/2026-09-09/apple-event-details-2-000-iphone-duo-apple-wat...
1•corvad•10m ago•0 comments

The UN challenges five centuries of cartography

https://www.not-ship.com/united-nations-map/
2•speckx•11m ago•0 comments

Deadbugz: A new kind of malicious MCP server

https://omnafy.com/blog/deadbugz-malicious-mcp-server/
1•cammasmith•13m ago•0 comments

Proxies All the Way Down

https://dadrian.io/blog/posts/exe-github/
2•dewey•16m ago•0 comments

To Serve Man: AI, Math, and Navier–Stokes

https://ml5885.github.io/writing/navier-stokes.html
2•bearseascape•16m ago•1 comments

Springer AI reference checks are not working

https://veruscite.com/blog/springer-ai-checks-are-not-working
1•apwheele•17m ago•0 comments

Teaching an AI My Taste

https://lonriesberg.com/posts/teaching-an-ai-my-taste/
1•speckx•17m ago•0 comments

Anthropic researchers say AI could cause human extinction by 2030

https://www.theguardian.com/technology/2026/sep/09/anthropic-researchers-ai-human-extinction
2•hackernj•19m ago•2 comments

AstroForge's DeepSpace-2, targeted for Q4 2026; must succeed where Odin failed

https://beyondhorizonforesight.substack.com/p/astroforge-the-upcoming-third-attempt
2•beyondhorizonfs•21m ago•0 comments

The State of Allocators in 2026 – 6 Months Later

https://cetra3.github.io/blog/state-of-allocators-2026-part-2/
1•aw1621107•21m ago•0 comments

Show HN: 2K Animated Images

https://gifrun.com/filix
1•builderone•22m ago•0 comments

Reclaim the Net Launches Global Digital Rights Bill Tracker

https://reclaimthenet.org/global-digital-rights-bill-tracker-launches
2•iamnothere•23m ago•0 comments

DeepMind's new genome 'atlas' charts effects of all 9B human gene mutations

https://www.nature.com/articles/d41586-026-02835-4
1•bookofjoe•24m ago•2 comments

"Good" AI

https://thoughts.wyounas.com/p/what-does-good-ai-mean
2•simplegeek•24m ago•0 comments

A 40-year-old kernel bug discovered on the DEFCON 34 main stage

https://yuvalino.com/how-can-you-not-be-romantic-about-unix-domain-sockets
3•vips7L•26m ago•0 comments

I Haven't Lost a Customer Service Fight in Seven Months

https://www.sudomoin.com/p/consumer-claims
2•dimitri-vs•27m ago•0 comments
Open in hackernews

Show HN: Locksmith: Store Maven Secrets in the macOS Keychain (Or a Unix Socket)

https://github.com/exabrial/locksmith
2•exabrial•43m ago
Hello HN,

In the age of LLMs sucking in random secrets, sandbox escapes, and RCE orbital bombardment, I thought it'd be a good idea to create a Maven Extension that defers to the MacOS keychain for resolving secrets. In general, it's a good idea to not have any secrets (passwords, tokens, etc) stored in plaintext files. Also, this allows your machines to be FIPS-140 complaint, if thats a thing for your job.

Locksmith is a Maven Core Extension that defers to the MacOS Keychain. The entry format in settings.xml looks like:

`{[type=locksmith]nexus.superbiz.example.com/username}`

This was a fun project and I used the Project Panama FFM with jextract for the first time. The FFM is a great iteration on JNI (which still has it's place) and was pretty much brainless to use.

Setup is quick and easy and I tried to make the readme as friendly as possible.

As an aside, I've also architected the core Library indecently from the Maven bits, so if you do need to read from the MacOS keychain in a project, you could pull the core Library in without dragging in Maven.

Being 2026, of course Claude was used to assist in the creation of the project, however Locksmith is not vibecoded top-to-bottom. I personally loathe AI slop. I use LLMs as a tool, not a crutch.

Enjoy!

Comments

exabrial•33m ago
Also, if any security experts have any feedback, would greatly be appreciated.