frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OVM6948 Miniature Camera Module [pdf]

https://www.ovt.com/wp-content/uploads/2023/03/OVM6948-PB-v1.5-WEB.pdf
1•gregsadetsky•1m ago•0 comments

Tell HN: Google Ads removed my business from GMB

3•novateg•3m ago•0 comments

Show HN: I've built C# source code generator Fluent API library

https://github.com/npodbielski/HamsterWheel.FluentCodeGenerators
1•npodbielski•5m ago•0 comments

How AI Will Transform Military Command and Control

https://blog.sentinel-team.org/p/how-strategic-ai-will-revolutionize
1•toomuchtodo•6m ago•0 comments

Tesla's Full Self-Driving software under investigation for safety violations

https://techcrunch.com/2025/10/09/teslas-full-self-driving-software-under-investigation-for-traff...
1•pseudolus•6m ago•0 comments

2023 FAA System Outage

https://en.wikipedia.org/wiki/2023_FAA_system_outage
1•thunderbong•7m ago•0 comments

Rubygems.org AWS Root Access Event – September 2025

https://rubycentral.org/news/rubygems-org-aws-root-access-event-september-2025/
7•ilikepi•8m ago•0 comments

Malicious NPM Packages Host Phishing Infrastructure Targeting 135

https://socket.dev/blog/175-malicious-npm-packages-host-phishing-infrastructure
2•feross•9m ago•0 comments

GPUI – Rust UI framework that powers Zed

https://www.gpui.rs/
1•skilled•9m ago•0 comments

Brick Game on Garmin Instinct 2

https://github.com/black-square/BrickGame
1•meken•9m ago•0 comments

Gemini at Work 2025

https://blog.google/products/google-cloud/gemini-at-work-2025/
1•push0ret•9m ago•0 comments

Scientists detect the lowest mass dark object currently measured

https://www.mpg.de/25518363/1007-asph-astronomers-image-a-mysterious-dark-object-in-the-distant-u...
2•giuliomagnifico•10m ago•0 comments

Enabling the First 100x Writer

https://rivereditor.com/
2•chandlersupple•12m ago•0 comments

A new approach to analyzing Robin Hood hashing. (2014)

https://arxiv.org/abs/1401.7616
1•fanf2•14m ago•0 comments

Will A.I. Trap You in the "Permanent Underclass"?

https://www.newyorker.com/culture/infinite-scroll/will-ai-trap-you-in-the-permanent-underclass
1•rbanffy•15m ago•0 comments

OpenAI Is a Consumer Company

https://frontierai.substack.com/p/openai-is-a-consumer-company
1•cgwu•17m ago•0 comments

Subway Builder: A Realistic Subway Simulation Game

https://www.subwaybuilder.com/
4•0xbeefcab•18m ago•2 comments

Hybrid Architectures for Language Models: Systematic Analysis & Design Insights

https://arxiv.org/abs/2510.04800
1•matt_d•18m ago•0 comments

Sony teases new GPU tech coming to its next Playstation

https://www.theverge.com/news/797640/sony-ps6-handheld-gpu-ray-path-tracing-amd-radiance-cores
3•thunderbong•19m ago•0 comments

Fly.io Turned a Security Breach into "BrAnD" Damage Control

https://vp.net/l/en-US/blog/Fly-io-Turned-a-Security-Breach-Into-%E2%80%9CBrAnD%E2%80%9D-Damage-C...
1•rasengan•19m ago•1 comments

Semantic Layers Are Bad for AI

https://bagofwords.com/blog/semantic-layers-are-bad-for-ai/
1•y14•20m ago•0 comments

Trick-or-Treat Protocol (TTP/1.0) API Reference

https://doc.holiday/blog/trick-or-treat-protocol-api
2•sandgardenhq•22m ago•0 comments

The Usual Suspects: low-level Roland JP-8000 emulator plugin from silicon [video]

https://www.youtube.com/watch?v=7VPrG5RHwGg
1•giulioz•23m ago•0 comments

Microscopic Geared Metamachines

https://www.nature.com/articles/s41467-025-62869-6
2•PaulHoule•24m ago•0 comments

Echolocating Through the AGI Reality Distortion Field

https://medium.com/kobalt-labs-tech-blog/echolocating-through-the-agi-reality-distortion-field-f4...
2•ashia•24m ago•0 comments

Python 3.14 Released with Template String Literals, Deferred Annotations, and

https://socket.dev/blog/python-3-14-released
1•feross•24m ago•0 comments

Ownable ideas that execute transparently through AI

1•clubanga•25m ago•0 comments

What climate skeptics taught me about global warming (2016)

https://perspicacity.xyz/2016/12/10/what-climate-skeptics-taught-me-about-global-warming/
1•FrancoisBosun•28m ago•0 comments

Will the explainer post go extinct?

https://dynomight.substack.com/p/explainers
1•crescit_eundo•28m ago•0 comments

Ask HN: Is AI-based debugging for robotics feasible?

1•Lazaruscv•28m ago•3 comments
Open in hackernews

Show HN: Orpheus – A high-performance Go CLI framework with no ext. dependencies

https://github.com/agilira/orpheus
2•agilira•2h ago
Orpheus is a high-performance Go CLI framework with zero external dependencies (uses internal AGILira libs: flash-flags, go-errors). ~30× faster than popular alternatives, in our benchmarks; tests are fully reproducible. Git-style nested subcommands, shell completion, optional observability (logging/tracing/metrics/audit). Reproduce: cd benchmarks && go test -bench=. -benchmem · Demo: https://asciinema.org/a/JiLb3gf6KzYU3VldOYjD4q1Zv

Comments

agilira•2h ago
Hi everyone — I’m Antonio, the author of Orpheus

I built this because I needed a Go CLI framework for our internal tools at AGILira that didn't force me to make compromises.

Existing solutions like Cobra or Urfave are amazing and powerful, but I often found myself wrestling with dependency bloat, unpredictable performance, and the sheer amount of boilerplate needed for complex commands. I wanted something that was fast, minimal, and completely deterministic—no external dependencies, a zero-allocation parsing design, and reproducible performance every time.

So, I built Orpheus.

It's a security-hardened framework that aims to be both powerful and simple. My core principles were:

Performance is non-negotiable. It’s built on a zero-allocation flag parser, making it incredibly fast.

Security is built-in, not bolted on. Every input is sanitized by default to prevent common vulnerabilities.

A great developer experience is essential. I focused on a fluent API that lets you build complex, Git-like command structures without getting in your way.

Here’s a quick look at what it feels like to use:

Go

app := orpheus.NewApp("fm", "1.0.0"). WithDescription("A simple file manager"). WithCommand("create", "Create a new file", createFileAction, orpheus.WithStringFlag("file", "f", "", "File to create", orpheus.Required), ) Everything you need—benchmarks, intensive fuzz tests, and all security checks—is included in the repo. The project is licensed under MPL-2.0.

https://github.com/agilira/orpheus

I’d be grateful for your feedback, especially from those who have built large CLI applications in Go or maintain internal developer tooling. What are your biggest pain points with existing frameworks?

Thanks for taking a look.