frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

60 Year old vibe coder create revenue SaaS with vibe agent and vibe testing tool

1•Thorin_scout•2m ago•0 comments

Show HN: Launching for the full public on 17th May 2026

https://waitlist-j5z9.onrender.com/
1•Sechele•2m ago•0 comments

BrowserPicker: Smart Browser Selector for Windows

https://github.com/mortenn/BrowserPicker
1•Klaster_1•3m ago•0 comments

Magical Mushroom – Europe's first industrial-scale mycelium packaging producer

https://magicalmushroom.com/index
3•microflash•4m ago•0 comments

Apixies – 39 utility APIs (SSL, DNS, email, QR, PDF) behind one key

https://apixies.io
2•bicibg•6m ago•1 comments

Investigating an LLM generated C compiler

https://shape-of-code.com/2026/02/22/investigating-an-llm-generated-c-compiler/
2•rsaarelm•7m ago•0 comments

Which web frameworks are most token-efficient for AI agents?

https://martinalderson.com/posts/which-web-frameworks-are-most-token-efficient-for-ai-agents/
3•martinald•8m ago•0 comments

Is the Swipe Era Over?

https://www.nytimes.com/2026/02/22/podcasts/the-daily/is-the-swipe-era-over.html
2•vednig•11m ago•0 comments

Show HN: Mellon – Free local speech-to-text for Mac with phonetic corrections

https://voice.mellon.chat/
2•xavpoon•12m ago•1 comments

Three thoughts on the future of writing software

https://twitter.com/awnihannun/status/2025752613749399609
2•tosh•12m ago•0 comments

Pope tells priests to use their brains, not AI, to write homilies

https://www.ewtnnews.com/vatican/pope-leo-xiv-tells-priests-to-use-their-brains-not-ai-to-write-h...
3•josephcsible•14m ago•0 comments

Zlinter – An Extendable and Customizable Zig Linter

https://github.com/KurtWagner/zlinter
2•TheWiggles•15m ago•0 comments

Show HN: DoFast – I built a tool that shows me my next best action

https://dofast.xyz
1•gisverygood•16m ago•0 comments

Show HN: I made and app to stop living on autopilot

https://apps.apple.com/us/app/unpilot-stop-doom-scrolling/id6756385928
1•pabloschz•18m ago•1 comments

Clip to source: contextualizing Instagram reels by building a search engine

https://mrks.se/clip-to-source/
1•maekoos•19m ago•0 comments

Snake Charmer – A nicer way to view Python docs

https://snake-charmer.work/3.14/tutorial/appetite
1•spikepuppet•20m ago•1 comments

Show HN: Code Lantern– A self-hosted, local code-analysis and visualization tool

https://github.com/Tjindl/code-lantern
1•tjindl•22m ago•0 comments

Scheme 9 from Empty Space (2014)

https://t3x.org/s9book/index.html
2•emigre•25m ago•0 comments

Show HN: Fast, browser-side PDF merger with no file uploads to server

https://webaitool.net/merge-pdf.php
2•shahidsj•27m ago•0 comments

Visualize PostgreSQL plan alternatives using eBPF

https://github.com/jnidzwetzki/pg_plan_alternatives
1•f00dball•27m ago•0 comments

Nebula Commander: A self-hosted control plane for Nebula overlay networks

https://github.com/NixRTR/nebula-commander
2•teekert•27m ago•0 comments

Out of Light Adjust Share: Caravaggio, La Tour, and the Art of Attention

https://harpers.org/archive/2026/03/out-of-light-nicole-krauss-caravaggio-georges-de-la-tour/
2•prismatic•28m ago•0 comments

Show HN: Labhlabs – What Happens When LLMs Trade the Indian Market?

https://labh.openkuber.com/
3•sasponn•29m ago•0 comments

Datvideo: Storing Video on Digital Audio Tape (DAT)

http://www.theresistornetwork.com/2019/02/datvideo-storing-video-on-digital-audio.html
1•austinallegro•29m ago•0 comments

Secretz Enterprise – Enterprise Subscription for OpenBao

https://www.secretz.io/en/
2•eye•30m ago•0 comments

iPhone's Emergency SOS via Satellite Helped Rescue Skiers Caught in Avalanche

https://www.macrumors.com/2026/02/19/emergency-sos-satellite-rescue-tahoe/
2•fork-bomber•33m ago•0 comments

Show HN: Tagless final DSL for deterministic TypeScript programs

https://mikesol.github.io/mvfm/
1•mikesol•33m ago•0 comments

Show HN: Musiker.page – Interactive timeline of musicians by instrument

https://musiker.page
1•pmatos•33m ago•0 comments

Web 4.0

https://web4.ai/
1•cysliac•34m ago•0 comments

Show HN: Swarm AI – Shared memory layer for AI agents (self-hosted, open source)

https://github.com/peonai/swarm
1•peonai•38m ago•0 comments
Open in hackernews

Working with Git Patches in Apple Mail (2023)

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

Comments

johnrob•9mo 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•9mo ago
Oh that’s clever, I’ll try that out. Looks like you could just do a git diff > file.patch.

Neat.

johnrob•9mo 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•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
That’s a great idea, and very timely for me.
d3ckard•9mo ago
Thank you, will try. Useful bit of knowledge.
OskarS•9mo 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•9mo 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•9mo ago
Generating app passwords for those would work.
pm215•9mo 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•9mo ago
For Gmail, you can use https://github.com/google/gmail-oauth2-tools/tree/master/go/....
mathstuf•9mo 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•9mo ago
davmail supports smtp through outlook(365)
ndegruchy•9mo 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•9mo 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•9mo ago
I use an app password but https://github.com/AdityaGarg8/git-credential-email apparently supports OAuth with Gmail, yahoo and outlook
arthurmorgan123•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
If you work with git and patches a lot, stgit is worth a look.

https://stacked-git.github.io

johnisgood•9mo ago
At that point, why not just use Pijul or even Darcs?
smcameron•8mo 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/