frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: What story are you telling? (narrative archetypes tool)

https://arc.quanten.co/tools/logline
1•phaedrus044•34s ago•0 comments

Safe Ways to Use AI Agents

https://blog.rnstlr.ch/safe-ways-to-use-ai-agents.html
1•rnestler•1m ago•0 comments

Google's Guidance on AI Search Is Naive and Self-Serving

https://ipullrank.com/google-ai-search-guidance
1•adamcarson•1m ago•0 comments

Before Pixar, There Was The Computer Graphics Lab [1:22:51] [video]

https://www.youtube.com/watch?v=GiW3Jr0wFak
1•wpm•1m ago•0 comments

Managers Are Struggling to Keep Up with the AI Productivity Boom

https://hbr.org/2026/05/managers-are-struggling-to-keep-up-with-the-ai-productivity-boom
1•vinhnx•2m ago•0 comments

Programming Is Real Engineering, and AI Proves It

https://www.jerf.org/iri/post/2026/programming_is_engineering/
1•mooreds•2m ago•0 comments

The AI Bifurcation of Tech: Why the fundamentals matter more

https://neevash.com/blog/tech-bifurcation-and-the-0.5-layer
1•vinhnx•3m ago•0 comments

Bringing LLMs to the Edge

https://www.raspberrypi.com/news/bringing-llms-to-the-edge/
1•Brajeshwar•3m ago•0 comments

What AI race? China and U.S. AI are tightly connected

https://restofworld.org/2026/china-us-what-ai-race/
1•speckx•3m ago•0 comments

Cohort Analysis With User Data

https://fusionauth.io/blog/cohort-analysis
1•mooreds•3m ago•0 comments

Ask HN: What do we mean by compute scarcity?

1•armcat•3m ago•0 comments

What's the Point of Theory in Biology?

https://nikomc.com/essays/theory.html
1•mailyk•5m ago•0 comments

The Free Lunch Is Over (2005) [pdf]

https://www.cs.utexas.edu/~lin/cs380p/Free_Lunch.pdf
1•tosh•5m ago•0 comments

The problem with the P/E ratio

https://asymco.com/2026/05/26/the-problem-with-the-p-e-ratio/
1•ndr42•5m ago•1 comments

High-VRAM GPUs aren't the future of local AI

https://www.xda-developers.com/high-vram-gpus-future-local-ai-unified-memory-mixture-experts/
1•berlianta•6m ago•0 comments

Best Way to Vibe Code?

1•ethigent•8m ago•0 comments

Moving my blog stack to Europe (kind of)

https://philippdubach.com/posts/moving-the-blog-stack-to-europe-kind-of/
1•7777777phil•9m ago•0 comments

Show HN: I made a PoC of a website for French medical students

https://csrf.4lima.de/medquest/index.php
1•JPLeRouzic•9m ago•0 comments

Ask HN: What is your favourite tech talk?

1•chistev•9m ago•0 comments

The Cost of Owning a Home

https://ericturner.dev/posts/cost-of-home-ownership/
3•ggcr•11m ago•0 comments

Rectangles All the Way Down (Dyalog '18) [video]

https://www.youtube.com/watch?v=mK2WUDIY4hk
1•tosh•11m ago•0 comments

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch

https://github.com/ynnk-research/-NeuroFlow
1•ynnk•11m ago•0 comments

Could Polymarket Influence an Election?

https://www.thenerve.news/p/polymarket-guide-betting-trump-prediction-market-venezuela-farage-uk-...
1•speckx•11m ago•0 comments

How to Build a Fast Website (Front End)

https://hegecoin.com/blog/how-to-build-a-ridiculously-fast-website/
1•itsdayagain•13m ago•0 comments

The Wrong Number: Why the FCC's Robocall Strategy Is Destined to Fail

https://brothke.medium.com/the-wrong-number-why-the-fccs-robocall-strategy-is-destined-to-fail-bb...
1•benrothke•13m ago•0 comments

Anthropic set to close $30B funding at over $900B valuation

https://finance.yahoo.com/sectors/technology/articles/anthropic-set-close-30-billion-203545596.html
1•smooke•14m ago•0 comments

The Future of Advertising Is in Personalized Website Layouts

https://blog.greenpants.net/the-future-of-advertising-is-in-personalized-website-layouts/
1•Greenpants•14m ago•0 comments

Is "colorectal cancer" rising in "young people"?

https://dynomight.net/crc-rates/
2•surprisetalk•15m ago•0 comments

Show HN: Testbump – Automate SemVer by running old tests on new code

https://github.com/ivoputzer/testbump
2•ivoputzer•15m ago•0 comments

The Case for California's Billionaire Wealth Tax

https://www.nytimes.com/interactive/2026/05/26/opinion/wealth-tax-california-billionaire.html
1•tortilla•15m ago•0 comments
Open in hackernews

Show HN: Fono – dictation/assistant for Linux in one Rust binary

https://github.com/bogdanr/fono
1•bogdan_r•1h ago
Hello everybody,

I built this tool initially to dictate to my computer because the alternatives weren't very attractive to me. There was an Electron app that was eating a lot of my RAM and had too much GUI. There was another one with lots of separate dependencies and it looks like it's going to take a while to figure it out, and a project that was a bunch of Python scripts. Anyways, without giving it too much consideration, I decided to build my own... how hard can it be? :)

So, the initial idea was that it's supposed to be light, self-contained and easy to use. And that escalated quickly because it turned out to be a very fun and rewarding project.

And I am happy to present to you Fono. * One Rust binary, ~22 MB for CPU and ~60 MB for the GPU build, with basic glibc deps. Inside its belly, it has * Transcription: It does dictation through STT, optionally a cleanup with a small LLM and then it injects the text in the clipboard, at the cursor or both * Assistant: STT -> LLM -> TTS. * You can pick various backends or models for STT, cleanup, assistant, and TTS. I am planning to add more. * It can run completely locally or with different cloud providers. * Run it headless on your big PC, and all local clients find it through mDSN

... and I guess another nice thing that maybe some of you might want to check out.

I am sure that there are bugs, but I would be happy to squash some if anybody would post issues on GitHub.

And obviously, I am putting it here because I would like some honest feedback.

Install: `curl -fsSL https://fono.page/install | sh`

Comments

bogdan_r•49m ago
Ups, formatting got messed up in my post.

Some more things:

1. Obviously, it's OpenSource

2. Works on both X11 and Wayland. Ubuntu's Mutter has a philosophy where it limits a lot of functionality for the sake of security, and that necessitates a bit of gymnastics to automatically inject at the cursor.

3. I was also exploring the idea of doing a Windows / Mac build :) It should be possible, but I would need to install some Windows. All my computers are Linux.

4. I was VERY strict with what dependencies I am pulling in. That's why there is not GTK menu. It has a tray menu, though, and can also easily be configured with the CLI.

5. It tries to estimate the best model for your hardware automatically. I did 900+ bench tests to tune that algorithm.

6. I just landed MCP support today so your coding agent can talk through it. I am publishing the build in the next few minutes.

Happy to answer any questions. Have fun!