frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mistral API is degrading [04/2026]

https://status.mistral.ai/incidents/page/1
1•rawland•33s ago•0 comments

Ask HN: Can you show me some useful AI-written programs?

2•nananana9•1m ago•0 comments

Air Is Full of DNA

https://www.nature.com/articles/d41586-026-01099-2
3•howrude•3m ago•0 comments

Mapping India's homegrown AI ecosystem – 110 apps, 22 languages, 28 sectors

https://github.com/suyash333/india-ai-ecosystem
1•golearnsap•6m ago•0 comments

I found out the hard way that Linux is not a dad-friendly gaming OS

https://www.pcgamer.com/hardware/i-found-out-the-hard-way-that-linux-is-not-a-dad-friendly-gaming...
3•evo_9•10m ago•1 comments

Israel kills two UNICEF water truck drivers in Gaza

https://www.unicef.org/press-releases/statement-unicef-killing-two-water-truck-drivers-gaza-strip-0
4•lr0•19m ago•0 comments

_Generic Printf() in Standard C23

https://codeberg.org/Flying-Toast/gprintf
1•flying-toast•30m ago•0 comments

Kazakhstan still relies on its ageing industrial giants

https://mondediplo.com/2026/04/14kazakhstan
1•JumpCrisscross•30m ago•0 comments

Show HN: How Are You-elderly fall detection app I built solo with AI in 6 months

2•sminchev•31m ago•1 comments

Show HN: A Roman fable about a PHP suite that exposed 100 tables in 3 days

https://marius-ciclistu.medium.com/list/the-api-grand-prix-486dc1becb36
1•marius-ciclistu•32m ago•0 comments

Mysterious figure has summited Sphere in Las Vegas: It appears it's Alex Honnold

https://www.sfgate.com/travel/article/alex-honnold-sphere-las-vegas-22212813.php
2•bookofjoe•33m ago•1 comments

A Chrome extension that redesigns Hacker News in an editorial style

https://github.com/puppe1990/redesign-hacker-news
1•puppe1990•34m ago•0 comments

A Hidden Language: The Meaning of Semaphore

https://www.offshoresupply.co.uk/blog/a-hidden-language-the-meaning-of-semaphore/
1•Eridanus2•34m ago•0 comments

Observability Stack – AI First?

1•jblake•47m ago•0 comments

Any Color You Like: NIST Scientists Create 'Any Wavelength' Lasers

https://www.nist.gov/news-events/news/2026/04/any-color-you-nist-scientists-create-any-wavelength...
4•rbanffy•48m ago•0 comments

Show HN: Reliably Incorrect – explore LLM reliability with data visualizations

https://adamsohn.com/reliably-incorrect/
2•dataviz1000•48m ago•3 comments

The Destroyed Remnants of a Lost World Are Falling to Earth, Scientists Discover

https://www.404media.co/the-destroyed-remnants-of-a-lost-world-are-falling-to-earth-scientists-di...
3•Brajeshwar•52m ago•0 comments

Vynly an AI-only social feed with provenance checks (beta)

https://vynly.co
1•nftdude2024•53m ago•0 comments

SDF Public Access Unix System

https://sdf.org/?ssh
2•neehao•54m ago•0 comments

Open-source Firecracker microVM orchestrator

https://github.com/sahil-shubham/bhatti
2•davidcollantes•54m ago•0 comments

Tinypki: Easy to use software for local CA/PKI management

https://github.com/icedevml/tinypki
2•msm_•57m ago•0 comments

Eating more fruits and vegetables tied to unexpected lung cancer risk

https://www.sciencedaily.com/releases/2026/04/260417224454.htm
1•amichail•57m ago•0 comments

How (and why) we rewrote our production C++ front end infrastructure in Rust

https://blog.nearlyfreespeech.net/2026/04/17/how-and-why-we-rewrote-our-production-c-frontend-inf...
2•maxloh•59m ago•0 comments

Optimizing Ruby Path Methods

https://byroot.github.io/ruby/performance/2026/04/18/faster-paths.html
6•weaksauce•1h ago•0 comments

Wishes for Ron Conway

https://om.co/2026/04/18/wishes-for-ron-conway/
3•rmason•1h ago•0 comments

Show HN: Coelanox – auditable inference runtime in Rust (BERT runs today)

https://www.coelanox.com/
1•Shark1n4Suit•1h ago•0 comments

Scrolly AI: knows you better than you know yourself

https://zorkman.substack.com/p/scrolly
2•zorkman•1h ago•0 comments

The largest collection of black markers

https://www.prune.dirt.fyi/p/prune-getting-high-on-your-own-supply
2•zeech•1h ago•0 comments

Nuke Engineer Rants

https://nukerants.fi/index.php/cover
3•DamonHD•1h ago•0 comments

PostgreSQL production incident caused by transaction ID wraparound

https://www.sqlservercentral.com/articles/i-too-have-a-production-story-a-downtime-caused-by-post...
7•tcp_handshaker•1h ago•2 comments
Open in hackernews

Working with Git Patches in Apple Mail (2023)

https://btxx.org/posts/mail/
50•todsacerdoti•11mo ago

Comments

johnrob•11mo ago
Once I discovered how git apply can take diff files (or patch files) as input, I stopped using git stash in favor of plain old files. Easier to list and browse the contents of prior edits, also you can grep the files as method of search. I’ve even found myself copying and editing the diffs before applying.
barbazoo•11mo ago
Oh that’s clever, I’ll try that out. Looks like you could just do a git diff > file.patch.

Neat.

johnrob•11mo ago
You’ll also want to familiarize with “git apply -3 <file name>”, for when a diff can’t be applied cleanly. It will try “harder” to merge (three way method) and if it still fails it invokes the conflict merge “UX”:

<<<<<<<<<

=========

>>>>>>>>>

smcameron•11mo ago
There's also Neil Brown's "wiggle" program for applying patches that don't apply.

https://github.com/neilbrown/wiggle

although on debian based systems I think you can just "apt install wiggle"

johnisgood•11mo ago
What does "applying patches that don't apply" mean exactly?

I know about wiggle, but I have not used it, to be honest.

smcameron•11mo ago
It means that if you do "patch -p1 --dry-run < some.patch", and it complains that it doesn't apply, wiggle can sometimes apply it anyway, and also, if you do "patch -p1 < some.patch", and it partially applies but with rejected hunks, wiggle can try to apply the rejected hunks.
johannes1234321•11mo ago
git diff an pipe works, but committing and then `git format-patch` can export multiple patches and then includes metadata (commit message, date, author, etc.) which can make reasoning about such files a lot easier. In a plain diff you only got filename as metadata.
RaoulP•11mo ago
That’s a great idea, and very timely for me.
d3ckard•11mo ago
Thank you, will try. Useful bit of knowledge.
OskarS•11mo ago
That is a very neat trick, I agree.

I personally approaches stashes as undoable "clean up", and I never have anything really important that I want to save there. If I do have something like that, I just commit with a "WIP <some-descriptive-string>" message and don't push it, then a "git reset --mixed HEAD^" when I want to get back to it.

However, just FYI: you can "grep" your stashes really easily if you want to. just "git stash list -p" gives you the diffs for all the stashes, by default in "less" where you can search them, but you can pipe it to grep if you want. I somewhat frequently do that with "git log", if I want to know "when did this variable change?" or whatever, just "git log -p" to get the log with diffs in less, then search for whatever it was with a slash.

teeray•11mo ago
Maybe slightly O/T, but has anyone found a decent way to `git send-email` with email hosts that demand OAuth? (looking at you Outlook and Gmail)
ravetcofx•11mo ago
Generating app passwords for those would work.
pm215•11mo ago
Yeah, I use an app specific password with Gmail, like the setup suggested by https://git-send-email.io/#step-2

Exchange historically had a tendency to mangle emails sent through it (whitespace changes, line wrap, etc), which is obviously bad news for patchmails. I dunno if it's any better these days.

computerfriend•11mo ago
For Gmail, you can use https://github.com/google/gmail-oauth2-tools/tree/master/go/....
mathstuf•11mo ago
I use msmtp with a tool from the oauth2-tools repo to do the rotation token dance. Need to register your own app with Google though.
dmarinus•11mo ago
davmail supports smtp through outlook(365)
ndegruchy•11mo ago
Yeah, I used DAVMail with Emacs+MSMTP+MPOP+notmuch for ages. Works really well, the only occasional thing I had to do was reauthenticate the token, which pops up in a browser window.
ozarker•11mo ago
I think you could set up postfix to smtp forward to those services. So it could handle the oauth2 and you wouldn’t need to configure your client
p_wood•11mo ago
I use an app password but https://github.com/AdityaGarg8/git-credential-email apparently supports OAuth with Gmail, yahoo and outlook
arthurmorgan123•11mo ago
I tried this with Gmail and Outlook. Works flawlessly and also doesn't need to authenticate frequently. The Authen::SASL thing was a catch though.

git-send-email also has some quirks for Outlook which have been recently merged.

palata•11mo ago
I like doing it with aerc [1]. It's even possible to use aerc in parallel to another email client. Just open aerc for git-related emails, and that's it!

[1]: https://drewdevault.com/2022/07/25/Code-review-with-aerc.htm...

kazinator•11mo ago
View the e-mail raw in your browser, select all, copy, paste into git apply.

Then you don't need that message to be in a file-based inbox that is accessible from your git repo.

And in that case you are still likely going to have to copy and paste something to get the correct path.

sircastor•11mo ago
It looks like Apple Mail has plugin support, I wonder if you could author a plugin that’d provide a button to apply the diff.
smcameron•11mo ago
If you work with git and patches a lot, stgit is worth a look.

https://stacked-git.github.io

johnisgood•11mo ago
At that point, why not just use Pijul or even Darcs?
smcameron•10mo ago
Because the codebase you're working on is on github?

And I think you may underestimate the power of stgit. You can manage thousands of patches concurrently, no problem. If you're a maintainer getting patches from loads of people all the time, this is valuable. stgit has it's origins in quilt, which in turn has its origins in Andrew Morton's patch scripts[1], and I know for a fact that Andrew Morton actually managed thousands of patches at a time for years in his work on the linux kernel, because I once sent him a patch against those scripts, and he complained it was slow because I used an O(n^2) algorithm, which worked fine with a handful of patches, and I asked him how many patches he had, and he told me a number that was multiple thousands, so this isn't a hypothetical example.

[1] https://lwn.net/Articles/13518/