frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Tune on a real Boss TU-3

https://realtuner.online/
1•smith-kyle•24s ago•0 comments

Can coding agents relicense open source through a "clean room" implementation?

https://simonwillison.net/2026/Mar/5/chardet/
2•MindGods•43s ago•0 comments

B.C.'s daylight-time decision: 'Scientifically a bad idea,' says key researcher

https://www.cbc.ca/news/canada/bc-daylight-saving-health-concerns-9.7114947
1•LostMyLogin•2m ago•1 comments

Canon's rumored retro camera could be its own X Half

https://m.dpreview.com/articles/1229448777/canon-analog-concept-camera-cpplus-x-half
1•PaulHoule•3m ago•0 comments

Malicious NPM "Sandworm" packages targeting AI toolchains and DevSecOps

https://phoenix.security/sandworm-mode-npm-supply-chain-worm/
1•nuzzl•4m ago•1 comments

Show HN: I built an AI tool that analyzes your Discogs vinyl collection

https://recordsv.lt
1•herrstagl•4m ago•0 comments

Spectre I prevents smart devices and AI recorders from picking up your voice

https://www.deveillance.com/
1•world2vec•4m ago•0 comments

Google isn't waiting – the 30 percent Android app store fee is dead

https://www.theverge.com/policy/889252/google-app-store-fee-reduction-20-percent-epic-v-google
1•agent86•5m ago•1 comments

Cameras built to police Iranians became the regime's Achilles' heel

https://royapakzad.substack.com/p/youre-welcome-mr-supreme-leader
1•benbreen•6m ago•0 comments

Infinite Jest belongs in the techno-optimist canon

https://danco.substack.com/p/infinite-jest-belongs-in-the-techno
1•surprisetalk•7m ago•0 comments

I made my whole-home humidifier slightly less terrifying [video]

https://www.youtube.com/watch?v=tCVsyY5TRQI
1•surprisetalk•7m ago•0 comments

Archival Selves

https://contraptions.venkateshrao.com/p/archival-selves
1•surprisetalk•7m ago•0 comments

GitHub Copilot is now #3 in VS Code installs behind Claude/OpenAI

https://twitter.com/AznWeng/status/2029575624591913132
1•AznHisoka•7m ago•0 comments

Comprehensive check and Productivity tool for vibecoders. Has a team mode too

https://github.com/akshan-main/vibe-check/blob/main/README.md
1•frutigeraerosol•7m ago•1 comments

Research shows 41 US states are getting warmer, all in slightly different ways

https://phys.org/news/2026-02-states-warmer-slightly-ways.html
1•bikenaga•7m ago•0 comments

Show HN: Selva – Amazon for AI Agents

https://www.useselva.com/
1•jpbonch•8m ago•0 comments

Galileo's handwritten notes found in ancient astronomy text

https://www.science.org/content/article/galileo-s-handwritten-notes-found-ancient-astronomy-text
1•tzury•8m ago•0 comments

So what project management tool you use to orchestrate your agent team?

1•autojunjie•9m ago•1 comments

Minimizing user research fraud in the age of agentic AI

https://www.buttonevents.com/blog/minimizing-user-research-fraud-in-the-age-of-agentic-ai
1•verdverm•10m ago•0 comments

My Git-worktree setup using worktrunk and caddy

https://xata.io/blog/my-git-worktree-setup-using-worktrunk-and-caddy
1•gk1•11m ago•0 comments

Pair Programming Is Having a Renaissance

https://twitter.com/dabit3/status/2029595180882698740
1•dabit3•11m ago•0 comments

The Great Transition

https://danielmiessler.com/blog/the-great-transition
1•gmays•13m ago•0 comments

Reverse-Engineering O2Jam Network

https://dev.cxo2.me/reversing-o2jam-network/
1•speps•13m ago•0 comments

Show HN: Ouroboros – Post-quantum P2P messenger with zero servers

https://github.com/OmarPrampolini/Ouroboros
1•OmarPrampolini•14m ago•0 comments

How can a MacBook Neo cost the same as an iPhone 17e?

https://www.reddit.com/r/hardware/s/TKr7XxexBU
1•nixass•14m ago•0 comments

Ask HN: Android tablet, iPad or e-ink tablet, which device for reading?

1•Bridged7756•15m ago•0 comments

Show HN: Tracemap – run and visualize traceroutes from probes around the world

https://tracemap.dev/
2•solhuang•15m ago•2 comments

Live Metadata for What's Playing on Every Station Is Here

https://audiophile.fm/blog/live-metadata-currently-playing-internet-radio
1•bojanvidanovic•15m ago•0 comments

GitHub Actions is shitting the bed again

https://www.githubstatus.com/incidents/g5gnt5l5hf56
5•drcongo•16m ago•2 comments

Ctrl-C in psql gives me the heebie-jeebies

https://neon.com/blog/ctrl-c-in-psql-gives-me-the-heebie-jeebies
1•gmac•17m ago•0 comments
Open in hackernews

Show HN: Tokenusage – Rust CLI that tracks Claude Code/Codex tokens 214x faster

https://github.com/hanbu97/tokenusage
1•hanbu97•1h ago

Comments

hanbu97•1h ago
I've been using Claude Code and Codex pretty heavily for the past few months. My local session logs have grown to about 2GB each. The existing tool (ccusage) takes 17–20s to show a usage report, so I basically never check my usage.

Decided to rewrite it from scratch in Rust with parallel parsing and incremental caching. Here are the benchmarks against ccusage v18.0.8:

  Claude (1,521 JSONL files, 2.2 GB): 0.08s vs 17.15s — 214x faster
  Codex (91 JSONL files, 1.7 GB): 0.15s vs 20.76s — 138x faster
The feature I'm most proud of is `tu img` — it generates shareable image cards of your daily or weekly usage trend, great for flexing your token burn rate:

  Daily card: https://raw.githubusercontent.com/hanbu97/tokenusage/main/docs/images/share-demo.png
  Weekly card: https://raw.githubusercontent.com/hanbu97/tokenusage/main/docs/images/share-week-demo.png
Also has a live TUI monitor (`tu live`), a GUI dashboard (`tu gui`), and standard CLI table output. Works with Claude Code, Codex, and Antigravity. Everything runs locally — no data leaves your machine.

Install: `cargo install tokenusage --bin tu` | `pip install tokenusage` | `npm i -g tokenusage`

Coming next: detailed per-session token reports combined with cost breakdown, and tools for analyzing and optimizing your token usage patterns. If that sounds useful, a star on GitHub helps me keep iterating: https://github.com/hanbu97/tokenusage

stratos123•1h ago
That's interesting. For 2GB of logs, 17s is somewhat slow but 0.08s seems straight up impossible; what makes ccusage slow and your approach fast?
hanbu97•1h ago
Good question – the 0.08s is warm cache. First run parses everything in parallel and caches by file mtime (~0.73s vs 17s, about 23x). After that it just loads cached counts, so you only pay for new/changed files (~0.08s vs 17s, 214x). ccusage re-parses from scratch every time with no caching, hence the gap.