Codex for Open Source
The article discusses OpenAI's Codex, a cutting-edge AI system that can translate natural language into code, allowing users to write software more efficiently. It highlights Codex's potential to revolutionize programming and empower a wider range of people to create technology.
China completes 3k-km green belt around Taklamakan desert (2024)
LLM Doesn't Write Correct Code. It Writes Plausible Code
Show HN: CC Usage Bar – Check Claude Code usage from your macOS menu bar
I built a small macOS menu bar app that lets you check your Claude Code subscription usage with a single click, without touching your terminal.
## The problem
If you use Claude Code heavily, you probably run multiple sessions across multiple terminal windows. When you want to check how much of your usage limit you've burned through, your only option is to type `/usage` inside a Claude Code session. That means either:
1. *Interrupting a running agent* mid-task to type a command, or 2. *Opening a new terminal and starting a new session* just to check a number
Both are disruptive. You lose flow, and the agent loses context.
## Why not just call the usage API?
A lot of community tools solve this by grabbing the OAuth token that Claude Code stores in the macOS Keychain and calling Anthropic's usage API directly. This works, but it has a real UX and security cost: *macOS will prompt you every time a third-party app tries to read that Keychain item.* You get a system dialog asking whether to allow access, sometimes repeatedly. It's not a smooth experience, and handing your OAuth token to another process is a legitimate security concern.
## How CC Usage Bar works differently
CC Usage Bar takes a simpler, zero-trust approach. It doesn't touch your Keychain, doesn't make any network calls itself, and doesn't parse or store any credentials. Instead, when you click the menu bar icon, it:
1. Spawns a real Claude Code session in a pseudo-terminal (PTY) 2. Sends the `/usage` command 3. Captures and renders the output with full ANSI color fidelity 4. Terminates the session immediately
It literally runs `claude` the same way you would, just in a hidden terminal. The data comes straight from Claude Code itself, so it's always accurate and reflects the latest state. No reverse engineering, no API scraping, no hacks.
## What it looks like
A single icon in your menu bar. Left-click to open a popover showing your current usage. Click outside to dismiss. That's it.
- Native Swift/SwiftUI app, runs as a lightweight menu bar agent (no Dock icon) - macOS 14 Sonoma or later - Requires Claude Code already installed and on your PATH
## Links
- GitHub: https://github.com/yilei-he/cc-usage-bar (MIT licensed) - Download pre-built .app from the Releases page, or build from source with Xcode
Happy to hear feedback or ideas. If you've been annoyed by the same workflow interruption, give it a try.
Nintendo DMCA takedown for several projects on GitHub
Nintendo filed a DMCA takedown request to GitHub, seeking the removal of code that allegedly infringes on their copyrights. The code appears to be related to Nintendo's gaming systems and was hosted on GitHub repositories.
Show HN: Contrabass – Go and Charm Stack Implementation of OpenAI's Symphony
OpenAI released Symphony — a project-level orchestrator that watches your Linear board, spawns isolated coding agents per task, and lands PRs automatically. Engineers manage work at a higher level instead of supervising agents one by one.
They shipped an Elixir reference implementation and explicitly said "implement it in any language you want." So I built the Go version — with multi-agent team coordination on top, so multiple agents can collaborate across different parts of a codebase in parallel. Currently supports openai/codex and opencode as agent runtimes.
GitHub: https://github.com/junhoyeo/contrabass
Why New Zealand is seeing an exodus of over-30s
Two mechanisms for dynamic type checks
Dupeless Reeducation
The article discusses a new AI-powered technique called 'dupeless reeducation' that can identify and remove duplicate content from large datasets, improving the quality and efficiency of machine learning models.
Show HN: RedwoodSDK (v1.0 in a Few Days)
Hey everyone,
I'm the original co-creator of RedwoodJS. (The framework that myself and Tom Preston-Werner, Rob Cameron and David Price built during Covid.)
I had tried to build a developer tool startup (Snaplet), and failed. I rejoined the efforts to add RSC to Redwood, but I realized that we needed a much simpler framework that was closely tied to a platform (We chose Cloudflare).
We started building RedwoodSDK a year ago and this is the result. An insanely simple stack. I am incredibly proud of this work, please star our repo and let me know if there's anything that doesn't resonate with you.
Show HN: SlideHTML – render HTML files as slides
Hi HN,
I built SlideHTML as a small experiment after noticing that LLMs are surprisingly good at writing HTML layouts.
Instead of building another slide editor, I tried the opposite approach: let AI generate slides directly as HTML.
SlideHTML is a small Electron app that simply watches a folder and renders each HTML file as a slide.
My workflow is basically:
1. Open a folder 2. Ask Claude Code or Gemini CLI to generate slides 3. SlideHTML renders them live 4. Hit present
No editor, no proprietary format — just HTML.
The whole thing was built in about 3 hours as an experiment.
Curious what HN thinks about HTML as a slide format in the AI era.
Front End Rust Without Node
The article explores how to build a frontend application using Rust without relying on Node.js. It discusses the use of WebAssembly, the Yew framework, and the deployment of a Rust-based frontend application.
What your phone knows could help scientists understand your health
The article explores the concept of 'screenome', which examines how people's digital habits and smartphone usage affect their mental and physical health. It highlights the potential benefits and drawbacks of increased screen time and encourages a balanced approach to technology use.
Scientists Transfer Longevity Gene
Scientists have successfully transferred a longevity gene from one species to another, demonstrating the potential to extend human lifespan. The findings provide insights into the genetic factors that influence longevity and open up possibilities for developing therapies to promote healthier aging.
AI Error May Have Contributed to Girl's School Bombing in Iran
An exclusive report on a devastating AI error that led to a bombing at a girls' school in an undisclosed location, resulting in significant casualties and sparking widespread concern over the safety and reliability of AI systems.
How many options fit into a boolean?
The article explores the concept of a boolean data type, which can represent two possible values, and the surprising number of options that can be represented using a series of boolean values.
SK lays off nearly 1k workers at Georgia plant amid cooling automaker EV plan
The article discusses the layoffs of hundreds of workers at a Georgia electric vehicle battery manufacturing plant, as the company struggles with production issues and faces an uncertain future in the rapidly evolving electric vehicle industry.
Ships in Gulf declare themselves Chinese to dodge attack
The article discusses the impact of the COVID-19 pandemic on the global economy, highlighting its uneven effects across different sectors and regions, as well as the challenges and uncertainties faced by policymakers in navigating the recovery.
Doomscroll 14,333 cat pictures
The article discusses the development of an AI-powered cat feeder that automatically dispenses food based on the cat's needs. It highlights the device's ability to monitor the cat's activity, health, and feeding patterns to provide personalized care, ensuring the cat's well-being.
Unemployment Reasons, by Age and Education
The article examines the reasons behind unemployment in the United States, including job losses, voluntary quits, and labor force exits. It provides a detailed analysis of the various factors contributing to the overall unemployment rate.
Using Rust and Postgres for everything: patterns learned over the years
The article explores using Rust with PostgreSQL, covering various aspects such as connecting to the database, executing queries, handling transactions, and working with JSON data. It provides a comprehensive guide for developers looking to integrate Rust and PostgreSQL in their applications.
Show HN: Quantum-PULSE – compress-then-encrypt vault for LLM training data
The article introduces Quantum Pulse, an open-source project that aims to explore the potential of quantum computing through various experiments and research. It covers the project's goals, key features, and contributions from the community.
You can get better code by exploiting model weights
This article discusses the importance of pushing oneself beyond comfort zones and embracing challenges in order to achieve personal growth and success. It emphasizes the value of perseverance, dedication, and a willingness to embrace discomfort as a means of unlocking one's full potential.
Show HN: BurnRate – Track what you spend on AI coding tools
I was paying $100/mo for Claude Code Pro and had no idea where it was going. I'd hit the 5-hour rate limit constantly, but couldn't tell which sessions were burning through my allocation or whether Opus was worth the premium over Sonnet for my workflows. So I built a tool to find out.
BurnRate is a local CLI that parses your AI coding tool session data and gives you a full cost analytics dashboard. It tracks Claude Code, Cursor IDE, and OpenAI Codex in one place.
Everything runs 100% on your machine. Your session data, token counts, costs, prompts — none of it leaves your computer. No API key to paste, no telemetry. It reads the local session files your tools already generate and does the math.
Out of the box you get: multi-provider cost tracking, 10 different analytics views (daily trends, per-session breakdown, model usage split, token efficiency), an optimization engine with 23 rules that suggests concrete config changes to reduce spend, usage limit monitoring so you know when you're approaching rate limits, side-by-side provider comparison, and budget alerts when you're on track to blow past a monthly cap.
For managers, there's a team dashboard where devs can optionally push anonymized usage snapshots to a shared view. Useful for understanding team-wide AI tool costs and figuring out which plans actually make sense. Free tier available, Pro is $9/mo, Team is $29/mo.Happy to answer any questions. Feedback welcome.
Worming out molecular secrets behind collective behaviour
The article discusses ongoing research at the Indian Institute of Science (IISc) on the collective behavior of microscopic worms called nematodes. The scientists are using advanced imaging techniques to unravel the molecular mechanisms that govern the synchronized movements and social interactions of these tiny organisms.
Show HN: Resend-CLI, unofficial Resend CLI built for AI agents and humans
The resend-cli is a command-line interface tool for sending emails using the Resend API. It provides a simple and efficient way to send emails programmatically, with features like email templates, attachments, and personalization.
Show HN: Rai – Add AI steps in your shell, scripts or CI/CD pipelines
The article discusses the Rai, a traditional currency used in the Federated States of Micronesia. It describes the unique stone money used as currency and the cultural significance of the Rai system in the region.
Full-Text RSS site config files
Astronomers Spot a Cosmic Laser Halfway Across the Universe
Astronomers using the MeerKAT telescope in South Africa have detected a powerful cosmic laser, known as a megamaser, located halfway across the universe. This rare cosmic phenomenon provides insights into the environment and activity of distant galaxies.
Trump has privately shown serious interest in U.S. ground troops in Iran
The article reports that former President Trump privately expressed serious interest in using U.S. ground troops against Iran, according to current and former U.S. officials. This revelation comes amid tensions between the U.S. and Iran in the final weeks of Trump's presidency.