frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Yojam: A macOS default-browser shim that routes URLs through a rule engine

https://github.com/fluffypony/yojam
1•birdculture•1m ago•0 comments

Embedded 191,922 Met artworks to find hidden twins across 4k years

https://jmp1062.github.io/met-weirdest-art/
1•jperryjperry•4m ago•1 comments

Show HN: CLI-use – turn any MCP server into a CLI in one command

1•justvugg•6m ago•0 comments

Tenstorrent's Large Compute Cluster, Generates Video Faster Than Real Time

https://www.eetimes.com/tenstorrent-previews-large-compute-cluster-generates-video-faster-than-re...
1•montyanderson•8m ago•0 comments

A Boy That Cried Mythos: Verification Is Collapsing Trust in Anthropic

https://www.flyingpenguin.com/the-boy-that-cried-mythos-verification-is-collapsing-trust-in-anthr...
2•MBCook•8m ago•0 comments

Objectively Measured Daytime Napping Pattern&All-Cause Mortality in Older Adults

https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2847953
1•bookofjoe•10m ago•0 comments

Edster – An open-source local AI agent with swarm mode and a web UI

https://github.com/unrealumanga/Nedster
1•unrealumanga•10m ago•0 comments

Parrot is a C++ library for fused array operations using CUDA/Thrust

https://github.com/NVlabs/parrot
1•tosh•11m ago•0 comments

What America Has Lost in the War with Iran

https://www.americanprogress.org/article/what-america-has-lost-in-the-war-with-iran/
1•KnuthIsGod•12m ago•0 comments

Might be the most Hollywood style launch video I've seen

https://twitter.com/photon_hq/status/2046656633749860430
2•juliec216•13m ago•0 comments

Terence Tao: On the importance of partial progress (2012)

https://terrytao.wordpress.com/career-advice/on-the-importance-of-partial-progress/
1•vinipolicena•13m ago•0 comments

TSRX – TypeScript Language Extension for Declarative UI

https://tsrx.dev/
1•bpierre•14m ago•0 comments

MCPorter – Call MCPs from TypeScript or as CLI

https://github.com/steipete/mcporter
1•dinakars777•23m ago•1 comments

WireGuard for Windows Reaches v1.0

https://lists.zx2c4.com/pipermail/wireguard/2026-April/009580.html
3•zx2c4•27m ago•0 comments

Why WooCommerce Needs an AI Store Manager, Not Another Chatbot?

https://heysarva.com
1•aishwaryashthe•28m ago•1 comments

Canadians pay more than 3.50x than Poles on matched BTC card route

https://augea.io/reports/retail-crypto-cost-benchmark-2026-q2
2•pharrisson•29m ago•0 comments

Fontspots: Eurostile

https://typesetinthefuture.com/2014/11/29/fontspots-eurostile/
1•_vaporwave_•30m ago•0 comments

Show HN: I built a coding agent that works with 8k context local models

https://github.com/razvanneculai/litecode
1•razvanneculai•32m ago•0 comments

.NET 10.0.7 Out-of-Band Security Update

https://devblogs.microsoft.com/dotnet/dotnet-10-0-7-oob-security-update/
3•yread•35m ago•0 comments

Trump is super unpopular. So why don't Democrats have a bigger lead?

https://www.natesilver.net/p/sbsq-31-trump-is-super-unpopular
3•7777777phil•35m ago•0 comments

AI Unmasked: a series of courses on AI without the hype

https://www.aiunmasked.io/
2•quietproof•35m ago•0 comments

We heard you: the new Framework Laptop 13 Pro [video]

https://www.youtube.com/watch?v=GnOpIQJnYWU
1•znpy•40m ago•1 comments

Ask HN: Claude Code Alternative

3•Frannky•40m ago•3 comments

Air Force can't quit the A-10 Warthog, extends service into 2030

https://taskandpurpose.com/news/air-force-a10-warthog-2030/
6•ilamont•40m ago•1 comments

Tell HN: My open-source project hit 5k registered users

5•darkhorse13•43m ago•0 comments

The distribution of power and inclusiveness across deep time

https://www.science.org/doi/10.1126/sciadv.aec1426
1•PaulHoule•43m ago•0 comments

Taskd – a new task management system

https://lmd.sh/taskd-a-new-task-management-system/
2•levidurfee•43m ago•0 comments

Ask HN: Gemini Pro does not give montly credits, do I have any rights?

https://gemini.google/us/subscriptions/?hl=en
1•kingleopold•43m ago•2 comments

A short taxonomy of the collapse of streaming subscription bundles

https://narendranag.com/2026/04/20/a-short-taxonomy-of-bundle-collapse.html
1•narendranag•44m ago•0 comments

Your Smart TV is taking screenshots of your screen every 15 seconds

https://twitter.com/heynavtoor/status/2044433988312560051
7•nowflux•45m ago•8 comments
Open in hackernews

Show HN: FMQL – graph query and bulk-edit CLI for Markdown and YAML frontmatter

https://github.com/buyuk-dev/fmql
1•buyukdev•1h ago

Comments

buyukdev•1h ago
Author here.

Quick taste - query your notes, pick the hits with fzf, bulk-tag them:

  fmql query ./vault 'type = "task" AND status = "open" AND priority > 2' \
    | fzf -m --preview 'head -40 {}' \
    | fmql append tags=triaged
Or follow references across files and get back deps graph you can render:

  fmql subgraph ./notes 'status = "active"' --follow blocked_by --format cytoscape
Origins: I run my own projects on workspaces of markdowns with yaml frontmatter (project board, documentation, configurations, agents definitions, ...). The format is great until you want to ask cross-file questions: what's stale, what's blocked on what, rename a field across 100+ files. I used to create one-off python scripts, until last week i decided to build a reusable tool that does all of it.

Beyond flat filters, there's a partial Cypher support for graph queries ("everything transitively blocking this sprint"), and you can swap in a semantic search backend via plugin when grep isn't enough. Core stays grep-only and dependency-light; semantic lives in a separate package.

A couple of things I'd be curious for feedback on:

- Linear scan is fine at a scale of few hundred documents, but if you have a larger vault and could try it, I'd love to hear when it breaks.

- What would you want to query your notes for that this doesn't handle? Genuinely interested in the use cases i haven't considered yet.

Repo: https://github.com/buyuk-dev/fmql Blog: https://www.buyuk.io/blog/fmql-launch/