SShortSingh.
Back to feed

Developer builds bare-metal x86 OS using Claude AI, directing every line of code

0
·3 views

A hobbyist developer has created BooleOS, a 32-bit x86 operating system written in C99, without personally writing any of the code — instead directing Anthropic's Claude Code AI agent and reviewing every change. The project targets real hardware and enforces strict constraints, such as fixed-width data types and a custom heap wrapper, to simulate the limitations of an actual kernel environment. The developer deliberately avoids standard tools like malloc and pthreads to prevent the AI from masking bugs that would only surface on the OS's eventual cooperative scheduling model. With around 20 tagged versions already released, the project is still pre-1.0 but represents a structured experiment in AI-assisted low-level systems development. The author highlights that reviewing AI-generated OS code demands a fundamentally different level of scrutiny compared to typical AI-assisted app development.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Horizontal vs Vertical Scaling: When to Use Which for Growing Apps

As applications grow to serve millions of concurrent users, a single server often struggles with load, crashes, and data inconsistencies, making scaling essential. Vertical scaling solves this by upgrading a single machine's CPU, memory, and storage, but hits a hard limit and creates a single point of failure. Horizontal scaling adds more machines and uses a load balancer to distribute traffic, theoretically allowing unlimited growth and better fault tolerance. However, horizontal scaling requires applications to be stateless, as session-based authentication can break when requests are routed to different servers. A common fix is to store sessions in a shared external database like Redis, which also supports automatic session expiration via its TTL feature.

0
ProgrammingDEV Community ·

How Small Teams Can Build a Minimal AI Agent Training Dojo on a Weekend

A five-part series on building AI agent training environments concludes with a practical guide aimed at small teams with limited budgets and no GPU infrastructure. The author outlines four core components of a minimal dojo: a task set drawn from real team work, an automated checker, a lesson log, and a defined practice cycle. Using content writing as a concrete example, the guide shows how mechanical checks such as verifying citations and paragraph length can be scripted, while subjective quality judgments still require human review. Teams are advised to run weekly one-hour practice rounds, comparing each cycle's results against the previous to track incremental improvement. The author cautions that this approach is not suitable for every team, particularly those whose tasks change too frequently or whose work carries high stakes requiring mandatory human sign-off.

0
ProgrammingDEV Community ·

Developer builds and ships MarkdownStack, a self-made markdown notes and publishing app

A software developer has launched MarkdownStack, a personal side project built to solve frustrations with existing note-taking and publishing tools. The app offers a private markdown workspace with nested folders, wiki-style note linking, hashtag organization, and a quick search switcher. Users can publish notes or entire folders to public URLs with a single click, allowing readers to comment and upvote without needing an account. An AI assistant feature lets users generate and save markdown notes directly to their vault using their own API key. The app is built on React and FastAPI with PostgreSQL full-text search, deployed on AWS via Docker Compose and GitHub Actions.

0
ProgrammingDEV Community ·

How a Simple Kotlin Validator Prevents Silent Data Corruption in Distance Tracking

A software engineering team discovered that five distance metrics in their tracking system — original, cleaned, mock, abnormal, and spike — had no code-level checks ensuring their mathematical relationships held true. To fix this, they built an 80-line Kotlin validator that enforces key invariants, such as cleaned distance equaling original minus mock and abnormal, while deliberately excluding spike to avoid double-counting. The validator uses a 0.1-metre floating-point tolerance to avoid false failures and separates hard errors, which block data submission, from warnings that flag unusual ratios without stopping the pipeline. Ratio-based warnings catch a different class of problem: cases where all numbers are internally consistent but a classification filter is quietly discarding large portions of a genuine journey. The team argues that asserting system invariants explicitly in code is far cheaper than discovering silent data corruption weeks later through customer support complaints.