frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The West Forgot How to Make Things. Now It's Forgetting How to Code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
112•milkglass•1h ago•49 comments

Amateur armed with ChatGPT solves an Erdős problem

https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-pr...
320•pr337h4m•14h ago•190 comments

Why has there been so little progress on Alzheimer's disease?

https://freakonomics.com/podcast/why-has-there-been-so-little-progress-on-alzheimers-disease/
201•chiefalchemist•7h ago•107 comments

Tell HN: An app is silently installing itself on my iPhone every day

213•_-x-_•7h ago•96 comments

USB Cheat Sheet (2022)

https://fabiensanglard.net/usbcheat/index.html
273•gwerbret•10h ago•55 comments

GnuPG – post-quantum crypto landing in mainline

https://lists.gnupg.org/pipermail/gnupg-announce/2026q2/000504.html
43•zdkaster•4h ago•11 comments

Mahjong: A Visual Guide

https://themahjong.guide/
73•iamwil•2d ago•19 comments

Terra API (YC W21) Hiring: Applied AI Strategist(Health Intelligence)

https://www.ycombinator.com/companies/terra-api/jobs/DY7BCZU-applied-ai-strategist-market-intelli...
1•kyriakosel•55m ago

The route from Prussian military headquarters to Gary Gygax’s basement

https://asteriskmag.com/issues/14/shall-we-play-a-game
25•jger15•2d ago•1 comments

Exposing Floating Point – Bartosz Ciechanowski

https://ciechanow.ski/exposing-floating-point/
5•subset•36m ago•1 comments

Flickr: The first and last great photo platform

https://petapixel.com/2026/04/22/flickr-the-first-and-last-great-photo-platform/
151•Nrbelex•3d ago•77 comments

EU Age Control: The trojan horse for digital IDs

https://juraj.bednar.io/en/blog-en/2026/04/17/eu-age-control-the-trojan-horse-for-digital-ids/
137•gasull•4h ago•48 comments

OpenAI Privacy Filter

https://openai.com/index/introducing-openai-privacy-filter/
196•tanelpoder•3d ago•37 comments

1-Bit Hokusai's "The Great Wave" (2023)

https://www.hypertalking.com/2023/05/08/1-bit-pixel-art-of-hokusais-the-great-wave-off-kanagawa/
570•stephen-hill•3d ago•89 comments

Quirks of Human Anatomy

https://www.sdbonline.org/sites/fly/lewheldquirk/figlegq6.htm
11•gurjeet•1d ago•1 comments

The Free Universal Construction Kit

https://fffff.at/free-universal-construction-kit/
310•robinhouston•4d ago•65 comments

Using coding assistance tools to revive projects you never were going to finish

https://blog.matthewbrunelle.com/its-ok-to-use-coding-assistance-tools-to-revive-the-projects-you...
261•speckx•15h ago•151 comments

The Joy of Folding Bikes

https://blog.korny.info/2026/04/19/the-joy-of-folding-bikes
159•pavel_lishin•3d ago•102 comments

Rediscovering the Handcart

https://solar.lowtechmagazine.com/2026/04/rediscovering-the-handcart/
15•jgrodziski•3d ago•0 comments

Reviving BrowserID in 2026

https://wakamoleguy.com/p/reviving-browserid-in-2026
22•wakamoleguy•5h ago•4 comments

America's Geothermal Breakthrough

https://oilprice.com/Alternative-Energy/Geothermal-Energy/Americas-Geothermal-Breakthrough-Could-...
107•sleepyguy•12h ago•122 comments

Martin Galway's music source files from 1980's Commodore 64 games

https://github.com/MartinGalway/C64_music
173•ingve•21h ago•25 comments

The Super Nintendo Cartridges (2024)

https://fabiensanglard.net/snes_carts/
46•offbyone42•7h ago•5 comments

AGPLv3§74 Empowers Users to Thwart Badgeware Like OnlyOffice

https://sfconservancy.org/blog/2026/apr/16/badgeware-onlyoffice-nextcloud-affero-gpl/
54•pabs3•2h ago•9 comments

Math Is Hard – OpenBSD Stories

http://miod.online.fr/software/openbsd/stories/vaxfp.html
92•signa11•2d ago•2 comments

Optimizing Datalog for the GPU

https://dl.acm.org/doi/10.1145/3669940.3707274
45•tosh•2d ago•3 comments

Hokusai and Tesselations

https://dl.ndl.go.jp/pid/1899550/1/11/
104•srean•14h ago•14 comments

Simulacrum of Knowledge Work

https://blog.happyfellow.dev/simulacrum-of-knowledge-work/
142•thehappyfellow•14h ago•55 comments

DeepSeek-V4 on Day 0: From Fast Inference to Verified RL with SGLang and Miles

https://www.lmsys.org/blog/2026-04-25-deepseek-v4/
47•mji•8h ago•5 comments

Per-image PCA characterization of the Kodak image suite (PDF and JSON)

https://github.com/PearsonZero/kodak-pcd0992-statistical-characterization/tree/main/baseline
7•PearsonZero•4d ago•2 comments
Open in hackernews

Show HN: Browse GitHub repos in Emacs without cloning

https://github.com/agzam/remoto.el
9•iLemming•3h ago
Wouldn't be nice to press <C-x C-f> (find-file) and instead of a file path, give it a GitHub URL, and then just browse the repo in Dired?

Comments

Pay08•3h ago
Really neat. Out of curiosity, does this need to use the Github API? I hoped something like this could be done with plain http.
iLemming•2h ago
Of course it needs to use the API. How are you otherwise read the private repos?
necovek•2h ago
Authenticated HTTP or even SSH should allow it, especially if you are restricting to GH and know how their web URLs translate into git repo URLs.
iLemming•2h ago
Ah, okay. I get now what the question meant. Sorry, it's past midnight here and my brain is ketchup. Git's own protocols let you talk to a remote repo without cloning it, so why not use that, right? Multiple reasons:

- Tree listing. There's no raw HTTP URL that gives you a directory listing. raw.githubblabla.com can't do directory indexes. You'd have to shell out to git ls-tree ... etc over the ssh, which means essentially implementing a partial git client.

- Getting subtries is also problematic

- Branch listing and repo search - no git protocol equivalent for those - need the API

- Current approach fetches the entire tree in one API call. Doing the same over pack protocol means negotiating a fetch, receiving packfile data and parsing it. Much heavier, much more code.

We can only imagine a world where git's transport layer gives you a browsable filesystem interface. It doesn't - git's protocols are optimized for syncing object graphs, not random-access file browsing.

v9v•28m ago
I use https://github.com/TxGVNN/github-explorer for this and even though it doesn't have a C-x C-f nicety (you just m-x github-explorer then type in the repo name) it works via http (or at least I don't recall giving it any API key or anything).
iLemming•2h ago
r/emacs discussion https://www.reddit.com/r/emacs/comments/1sutzz6/new_package_...