frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Lindsay Casale π² on X: "Never Apply to Another Job Again" / X

https://twitter.com/LindsayCasale/status/2026758489276821655
1•bilsbie•1m ago•0 comments

Show HN: StageWright – A performance-focused Playwright reporter with AI

https://stagewright.dev/
1•qagaryparker•1m ago•0 comments

Non-public document reveals science may not be prioritized on next Mars mission

https://arstechnica.com/space/2026/02/a-non-public-document-reveals-that-science-may-not-be-prior...
1•LorenDB•1m ago•0 comments

Trapped in MS Office

https://ia.net/topics/trapped-in-ms-office
1•Coral-Tiny•1m ago•0 comments

Show HN: WP-Hunter, WP recon and SAST tool (building Agentic AI pipeline)

https://github.com/xeloxa/WP-Hunter
1•xeloxa•1m ago•0 comments

Claude Code: The Revolution Nobody Noticed

https://dentro.de/ai/blog/2026/02/24/claude-code-the-revolution-nobody-noticed/
1•myk-e•2m ago•0 comments

Show HN: How AI Content Automation Is Reshaping SaaS Marketing in 2025

1•jackcofounder•3m ago•0 comments

New Hetzner prices: +30% starting on 1 April

https://p169.p3.n0.cdn.zight.com/items/geuGklEB/591bb9f6-ef96-41d8-9288-f14fa008570f.png
1•lovegrenoble•3m ago•1 comments

Google is serving straight-up malware as the top result for Claude Code

https://minimumviableposts.substack.com/p/google-is-serving-straight-up-malware
1•ageitgey•3m ago•0 comments

Ask HN: AI causing loss of sharing and the 2 lemon market standoff?

1•franktankbank•4m ago•0 comments

In 2025, Meta paid an effective federal tax rate of 3.5%

https://bsky.app/profile/rbreich.bsky.social/post/3mfptlfeucn2i
2•doener•4m ago•0 comments

Why Asian firms are not cheering Trump tariff ruling

https://www.bbc.com/news/articles/cdr2kmjd31ro
1•tartoran•5m ago•0 comments

Show HN: A closed source engine that stops hallucinations deterministically

https://github.com/007andahalf/Kairos-Sovereign-Engine
2•MattijsMoens•6m ago•1 comments

Show HN: I built a tutorial to help you learn Kuberenetes in most simplest way

https://kubernetes-made-simple.vercel.app/
2•mr_o47•6m ago•0 comments

Show HN:Covenant: Self hostable AI gateway with behavioral contracts

https://github.com/Vinesh2929/Covenant_API_Gateway
1•VineshNathan29•8m ago•1 comments

Model Collapse Ends AI Hype

https://www.youtube.com/watch?v=ShusuVq32hc
1•todsacerdoti•9m ago•0 comments

Show HN: I solved Claude Code's prompt injection problem, saved tokens doing it

https://github.com/timstarkk/mcp-safe-fetch
1•timstark•9m ago•0 comments

Olympics Champ Norway prohibits competitive sports < 12

https://www.theguardian.com/sport/2026/feb/26/norway-winter-olympics-message-for-us-all
1•floathub•11m ago•0 comments

Indian IT Services Are Done. Thing Keeping Them Alive Is Your Unawareness

https://medium.com/@mayursinhsarvaiya/indian-it-services-are-done-the-only-thing-keeping-them-ali...
1•mayursinh•11m ago•0 comments

BYD cuts EV prices with 0% interest and daily payments for less than $5

https://electrek.co/2026/02/25/byd-cuts-ev-prices-0-interest-daily-payments-under-5/
2•thelastgallon•11m ago•0 comments

Show HN: Claw42 – Claw as a Service

https://claw42.com
1•kxbnb•11m ago•1 comments

Show HN: LetsClarify – A dead-simple API for Human-in-the-loop AI"

https://letsclarify.ai/
1•nobbygoesbrr•12m ago•0 comments

Kimi K2.5 is confident that it is Claude

https://gist.github.com/aarvay/3c930cb4d3c6696409af2b31d4953294
1•Aarvay•13m ago•0 comments

Show HN: Spana Time – An AI automotive ecosystem built on WhatsApp

https://spanatime.com/
1•sirlojik•14m ago•1 comments

Use the Mikado Method to do safe changes in a complex codebase

https://understandlegacycode.com/blog/a-process-to-do-safe-changes-in-a-complex-codebase/
1•foenix•15m ago•0 comments

Fireside Chats Suck

https://resetskillpoints.substack.com/p/why-most-fireside-chats-suck
1•andreww42•18m ago•0 comments

Clawset.app – put a set of OpenClaw agents in a safe closet

https://www.clawset.app
2•thedumbuser•18m ago•0 comments

Five ways to spot when a paper is a fraud

https://www.nature.com/articles/d41586-026-00569-x
2•bookofjoe•19m ago•2 comments

Riot's New Fighting Game Is Imploding as It Lays Off 80 Developers

https://kotaku.com/2xko-layoffs-league-legends-riot-update-2000666998
1•PaulHoule•19m ago•0 comments

Snipit – A lightweight CLI to save and search code snippets locally

https://github.com/fouadbuilds/snipit
1•fouaden•20m ago•1 comments
Open in hackernews

Show HN: VibeBar – macOS Menu Bar Monitor for Claude Code, Codex and OpenCode

2•yelog•1h ago
I've been running multiple AI coding sessions in parallel and kept losing track of which one was thinking, which one was waiting for my input, and which one had quietly finished. Alt-tabbing through terminals every 30 seconds got old fast.

  VibeBar is a lightweight macOS menu bar app that solves this. It shows real-time session states (running / awaiting_input / idle / stopped) for Claude Code, Codex, and
  OpenCode without you leaving your current window.

  How it works

  Rather than relying on a single detection method, it uses three data channels and merges them:

  1. PTY wrapper (vibebar): wraps the CLI in a pseudo-terminal and monitors output patterns to infer interaction state with high fidelity.
  2. Plugin events (vibebar-agent): a local Unix socket server that receives lifecycle events from dedicated hooks in Claude Code and OpenCode.
  3. Process scanner: a fallback that runs ps to detect running tool processes when the stronger channels aren't available.

  State priority when channels conflict: running > awaiting_input > idle > stopped > unknown.

  Honest caveats

  - Without the plugin, awaiting-input detection uses regex heuristics on terminal output — it works but isn't perfect.
  - Codex has no plugin event channel yet, so it relies on the PTY wrapper or process scanner.
  - Automated test coverage is still thin.
  - macOS 13+ only.

  Built in Swift 6.2 with strict concurrency. The menu bar icon has four styles (Ring, Particles, Energy Bar, Ice Grid) and supports English, 中文, 日本語, 한국어.

  Source and releases: https://github.com/yelog/VibeBar

  Happy to answer questions about the PTY/plugin architecture or the Swift implementation.