frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anatomy of the Letter G

https://bydawnnicole.com/letter-g/
1•eustoria•1m ago•0 comments

A Hormone Disorder May Be Driving High Blood Pressure Cases

https://scitechdaily.com/a-hidden-hormone-disorder-may-be-driving-millions-of-high-blood-pressure...
1•elo2000•2m ago•0 comments

StreamX – A new approach to online video streaming

https://streamx1.com/
1•streamx295•3m ago•0 comments

Weird Little Guys of FOSS

https://drewdevault.com/weird-guys/
1•HotGarbage•3m ago•0 comments

StatusPerch – Organize your Mac menu bar

https://qingtan-labs.github.io/StatusPerch/
1•eustoria•5m ago•0 comments

Sysdraw – System design diagrams, sketched in the browser

https://sysdraw.app
1•eustoria•7m ago•0 comments

Understanding technical papers is so hard & why are some authors so narcisstic?

1•ahanjura•10m ago•0 comments

NASA Ad Astra Initiative

https://science.nasa.gov/astrophysics/programs/physics-of-the-cosmos/community/ad-astra/
2•xqcgrek2•13m ago•0 comments

Sum types in Go, or how to model events the compiler can check

https://viviersoft.com/blog/ddd-go-1-sum-types/
1•lanath•15m ago•0 comments

Farmed Salmon May Not Be as Nutritious as It Once Was, New Research Suggests

https://insideclimatenews.org/news/04092026/farmed-salmon-losing-healthy-fatty-acids/
1•Alephinitesimal•16m ago•0 comments

Customer Support Is Broken. VoraDesk Is Building a Better Way

https://substack.com/profile/206275102-akanmu-akinkunmi/note/c-331801194
1•PetrJoe•19m ago•0 comments

Customizing my Compaq MX-11800 keyboard

https://blog.webb.page/WM-102
3•NetOpWibby•20m ago•0 comments

Gmail/Google Docs Down?

3•kappi•21m ago•0 comments

Tesla touts European supervised self-driving safety data ahead of EU vote

https://www.reuters.com/business/autos-transportation/tesla-touts-european-supervised-self-drivin...
1•tosh•21m ago•0 comments

CampRoo – Free Camping Spots

https://camproo.com
1•aziz10101•21m ago•0 comments

FSD Supervised now approved in Slovenia

https://twitter.com/teslaeurope/status/2097007168939593780
1•tosh•22m ago•0 comments

San Francisco institution 'heartbroken and furious' after erasure of public art

https://www.sfgate.com/local/article/clarion-alley-murals-erased-22420365.php
2•mikhael•22m ago•0 comments

The auto-formalization of mathematics versus law

https://lexifina.com/blog/auto-formalisation-of-law
2•alansaber•25m ago•0 comments

SnapFire FSR: Write TypeScript. Run Rust. Ditch Node.js

https://snapfirers.com/
1•excsn•27m ago•1 comments

A fast client only protein viewer

https://github.com/buyukakyuz/protein-foldspace
2•replaski16•27m ago•0 comments

The Aviation Herald was sued – July 31st 2026

https://avherald.com/h?article=53c8958a
2•embedding-shape•28m ago•0 comments

Ancient cave art suggests first known humans in Ireland walked over from Wales

https://www.bbc.com/news/articles/c5y75dl0jpko
2•bookofjoe•29m ago•1 comments

Humpback whales are interrupting orca hunts to rescue different species

https://spacedaily.com/k-humpback-whales-are-interrupting-orca-hunts-to-rescue-completely-differe...
2•cobbzilla•30m ago•0 comments

VDN Vai Dar Namoro

https://vaidarnamoroonline.netlify.app
1•gabrielantonio•32m ago•0 comments

Bun rewrite and FLT formalization had nearly identical resource usage

3•Zsfe510asG•34m ago•1 comments

Show HN: Raw Screen Recordings into Cinematic Apple-Style Product Demos

https://isolate.video/
6•vignesh_warar•34m ago•0 comments

YC Demo Day This Thursday

https://www.neweconomies.co/p/y-combinator-summer-26-batch
1•ollieforsyth•36m ago•0 comments

Russia opens first road bridge with North Korea

https://www.dw.com/en/russia-opens-first-road-bridge-with-north-korea/a-79142595
3•everybodyknows•37m ago•0 comments

Can the U.S. afford a major war? Not with this deficit

https://www.washingtonpost.com/opinions/interactive/2026/09/07/deficit-is-biggest-threat-us-natio...
2•moat•38m ago•1 comments

Show HN: Isle – managed application environments for computer-use agents

https://www.tryisle.com
4•sxhivs•39m ago•1 comments
Open in hackernews

Show HN: Gote – a CLI note-taking management tool for plain Markdown

4•banorton•46m ago
Repo: https://github.com/banorton/gote

I built a note taking management tool to use at work for quick note taking and searching. It is intended to be quite minimal. Another focus was to have lots of shortcuts and to keep things close to the homerow for ergonomics and speed.

Notes are just markdown files in whatever directory you point it at. The only thing it keeps elsewhere is an index in ~/.gote. If you stop using it you still have all your notes.

Tags go on the first line of the note, separated by periods, like .project.urgent.work. No frontmatter.

Search is built into the binary, BM25 with stemming, so there's no ripgrep or fzf to set up. gote s meeting searches titles and content, gote s -t .work filters by tag, gote s -w 2412 pulls up notes from December 2024.

Most commands have a two letter version that combines a list with an action. ro is recent + open, sv is search + view, tp is tag + pin. When results come up you pick one with a home row key instead of arrows or numbers.

Binaries for mac/linux/windows are on the releases page, or go install github.com/banorton/gote@latest if you have Go.

The goal of this project was not to learn something new or build something impressive. I simply had a need and filled it with a vibe-coded solution. I have been using it for about a year now and it does more or less exactly what I wanted. So I thought I'd share in case others are interested in using it, contributing to it, or want to use it as a reference for their own solution.

Comments

carlailab2025•11m ago
I like that the notes stay as plain Markdown files, it can be really portable.