frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: PyScrappy, self-healing web scraping selectors plus an MCP server

https://github.com/mldsveda/PyScrappy
1•vedaant00•8s ago•0 comments

Everything You Need to Know About 2-5 Horn Voicings

https://www.toshiclinchproductions.com/2-5-horn-voicings
1•lioeters•2m ago•0 comments

How Diplomats See the World

https://asteriskmag.com/issues/15/how-diplomats-see-the-world
1•sebg•3m ago•0 comments

Google's Favicon API

https://gist.github.com/iuzn/bbd4df2823bd69643a8553d6967f68eb
2•thecopy•8m ago•0 comments

What happens when an LLM never sees material beyond fifth grade?

https://littlelearner-ll.github.io/
3•porridgeraisin•8m ago•0 comments

A century after Goscinny, Asterix remains a witty guide to resisting authority

https://economictimes.indiatimes.com/opinion/et-commentary/a-century-after-goscinnys-birth-asteri...
2•thunderbong•13m ago•0 comments

Growth of CVEs fixed in Postgres looks exponential

https://twitter.com/samokhvalov/status/2088870235705319924
1•samokhvalov•16m ago•0 comments

A Third World Embedded Engineer Responds to RISC-V They Should Have Known Better

https://rvembedded.com/blog_post/12/
1•fork-bomber•18m ago•0 comments

I'm 15 building the place where ambitious people find the people build with

https://www.linkupbuild.com/
1•tanakabuilds•29m ago•0 comments

A portable, sensitive, low power, analog Geiger counter

https://ludens.cl/Electron/geiger2/geiger2.html
1•crorella•33m ago•0 comments

AI Agents have a half-life

https://construct.computer/blog/agent-task-half-life/
2•ankushKun•33m ago•0 comments

DOJ deploys tactic to strip naturalized Americans of citizenship [video]

https://www.youtube.com/watch?v=bZDq3e0wYgc
3•mgh2•36m ago•0 comments

Connecting my Illumos box to a Japanese ISP

https://skalski.dev/connecting-my-illumos-box-to-a-japanese-isp/
2•mskalski•37m ago•0 comments

An Anecdote Against Slop Artifacts

https://www.markusde.ca/pages/noslop.html
1•DamonHD•39m ago•0 comments

Is this the end of human code review?

https://arxiv.org/abs/2608.12440
1•bonjourjoel•41m ago•3 comments

Cloning could be used to save species–or make human "organ sacks"

https://www.technologyreview.com/2026/08/14/1141919/cloning-save-species-or-make-human-organ-sacks/
2•joozio•45m ago•0 comments

Show HN: See what your Linux machine measured at boot (through TPM eventlog)

https://jiankun.lu/eventlog-parser/
1•jklu•47m ago•0 comments

Two years as prime minister in a hit new game – then my cabinet deserted me

https://www.bbc.co.uk/news/articles/cq56pzqy6jvo
2•zeristor•49m ago•0 comments

Show HN: Laptop is the last place your secrets are still in plaintext

https://github.com/jitpass/jit
27•bukershok•51m ago•20 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
3•pykello•58m ago•0 comments

Beancount in Rust

https://rustledger.github.io
1•NamlchakKhandro•1h ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
2•KiaanKothari•1h ago•1 comments

The Cell: Inside North Korea's Remote Worker Command Center

https://www.rubrik.com/blog/company/26/7/the-cell-inside-north-koreas-remote-worker-command-center
2•shivanshuag•1h ago•0 comments

Show HN: An Universal Linux Application Uninstaller

https://github.com/swadhinbiswas/veet
1•0xER•1h ago•0 comments

A leaked Composio key returned live Gmail, GitHub and CircleCI tokens

https://www.cyera.com/research/the-hidden-attack-surface-of-agentic-ai-securing-ai-agent-integrat...
2•shimi12•1h ago•0 comments

Want things to go well? Plan like a defensive pessimist

https://psyche.co/guides/want-things-to-go-well-plan-like-a-defensive-pessimist
2•vinhnx•1h ago•1 comments

A Jupyter kernel for C++ running in the Web browser (2025)

https://blog.jupyter.org/c-in-jupyter-interpreting-c-in-the-web-c9d93542f20b
1•theanonymousone•1h ago•0 comments

How to Overcome Your Brain's Fixation on Bad Things (2020)

https://greatergood.berkeley.edu/article/item/how_to_overcome_your_brains_fixation_on_bad_things
1•vinhnx•1h ago•0 comments

Big tech meets Milton Friedman

https://www.semafor.com/article/08/11/2026/big-tech-meets-milton-friedman
2•andsoitis•1h ago•0 comments

Apple tests Chinese memory chips

https://www.semafor.com/article/08/09/2026/apple-tests-chinese-memory-chips
2•andsoitis•1h ago•0 comments
Open in hackernews

Show HN: Laptop is the last place your secrets are still in plaintext

https://github.com/jitpass/jit
22•bukershok•51m ago

Comments

vintagedave•34m ago
Interesting idea! How do you achieve it? Some kind of file system driver that recognises the calling process?
zahrevsky•24m ago
If only there was a Markdown file in the repo, that explains it. It could have a URL, say, https://github.com/jitpass/jit/blob/main/docs%2Fgetting-star...
Animats•29m ago
The install procedure, for something that's supposed to be a security product:

    curl -sL https://dl.jitpass.com/jitpass/jit/releases/latest/download/jitpass_darwin_arm64.tar.gz | tar -xz jit
    sudo mv jit /usr/local/bin/
What could possibly go wrong?
thecopy•23m ago
What is wrong with it?
9dev•21m ago
The pattern of piping an arbitrary script to your shell? This should be an ordinary app bundle to drop into /Applications, or be distributed as an installer.

The readme even says so itself:

> A bad curl | sh, a sketchy npm install, or one of the AI agents now running in your editor with your full permissions.

And then, two paragraphs down, it suggests to do just that to install…

hackernudes•19m ago
Technically this one is piping it to tar? But I agree with the sentiment.
kokx•17m ago
It's not piped to a shell, but to the tar program with specific parameters to directly unpack the tar.

You're still installing the program directly from github of course, instead of a source where hopefully a third party has also looked at it (like a package repository). But this is a lot better than the curl | sh pattern.

tgv•9m ago
You're not downloading from github, but from dl.jitpass.com.

And an executable can do exactly the same as a shell script. The point is that whatever you're executing isn't verified, whether it's a shell script or a binary.

QuantumNomad_•16m ago
But it’s not piping a script into the shell. It’s curl downloading a compressed archive and piping it to tar to decompress the program binary from the archive. Then moving the extracted binary into /usr/local/bin.
efitz•29m ago
I am actually building the exact same thing- encrypted vaults for files or folders, encrypted with a biometric gated key in the Secure Enclave!
necovek•22m ago
While this might be a useful tool for Mac users, it's all hackers here, so:

* Most people do not have passwords in plain text — an SSH key protected with a passphrase is not "plain text", for instance

* Most people have encrypted home or full disk encryption

* How can we trust your crypto implementation?

* If we are talking about in-memory plain-text during use, how does this tool protect against it?

* Containerisation is a big topic when running untrusted software for exactly (but not just) this reason

* While passwords/tokens might carry a big risk depending on what you do, I find that I worry more about my local data compared to my remote data — and virtualisation or containerisation helps with that.

flaburgan•19m ago
I would have been interested if it was for Linux
bukershok•9m ago
Soon, it will, yes.
zahrevsky•18m ago
I don't know about how secure this is, but I just love the UX. Scanning and process grant are great features UX-wise.
xixixao•8m ago
You can do some of this with 1Password as well btw. Looks nice!
hn_submit•5m ago
Operating systems should work like Android currently does. Assuming all installed apps are potentially malicious and isolates each of them from the others and the OS. So even if an app is compromised there's not much it can do when it's installed.

All desktop and server operating systems currently assume the user should have "full control" making a single compromise fatal for the user or even an entire organization.

hypfer•4m ago
Snake oil claude slop. No other words for it.

If someone or something is executing code on your machine, you have already lost. Making it _slightly harder_ for it to eventually get your passwords anyway is mostly a performative action.

vlaaad•16m ago
It's curl | tar, not curl | sh