29,253 results for its · 2.481s

News for “its”
8 results • 2477 ms server time
Moozonian News
github.com• Aug 4, 2026• 1 min read
Show HN: Ratelog, Self-hosted movie/TV rater with TMDB integrationI've been reading HN for a while without an account, but I finally decided to jump in and share something I built.I originally made this app for myself and my family to track our movie and TV show ratings. It grew more than I expected, so I figured I'd open source it and see if anyone else finds it useful.Ratelog is a completely self-hosted, open-source web app that lets you search movies/shows via TMDB, rate them across different categories, and generate ranked top lists. Multi-user, dark theme, and installable from the browser as a standalone app.What sets it apart from Letterboxd and similar apps (besides being open source and self-hosted) is the rating system itself. I found that a simple numeric score just felt too reductive — a movie or series can't really be boiled down to a single decimal. There are too many factors at play. So instead of one overall score, you rate each title across different categories independently. You also get separate top lists for movies and TV shows, wh
Advertisement
Moozonian News
github.com• Aug 4, 2026• 1 min read
Show HN: Neal – Codex writes the code, Claude reviews itneal is a CLI I wrote while trying to use an LLM coding agent (in this case, Codex GPT-5.4) to work autonomously on a migration of our large frontend codebase. A few things came up during that project that guided the development of neal:1. Telling an agent to "keep working unless blocked" doesn't actually work over long stretches of time.2. Large projects should be broken up into smaller chunks of work.3. The coding agent should start each chunk of work with a fresh context to prevent context rot.4. The coding agent benefits from having a different agent doing adversarial reviews along the way.What I ended up with is an orchestrator that- lets you configure planner, coder, and reviewer roles. I started with Codex and Claude using their SDKs but later added OpenRouter as well as a compatibility mode for verifying that a model can handle the orchestration. Currently there are 44 compatible OpenRouter models.- runs a plan that you provide through a planner / reviewer loop which splits the
Moozonian News
github.com• Aug 4, 2026• 1 min read
Show HN: Isolade, a local-first coding agent workbench with secretless microVMsI built Isolade because I could not find an open-source, local-first workbench that runs coding agents in microVMs.The two pieces already exist individually. There are plenty of options for both agent management (Conductor, Herdr, Omnigent) and microVM isolation (Docker Sandboxes, Firecracker, SmolVM). However, I did not find a project that combined them into one unified product.Isolade gives each agent its own microVM. Microsandbox provides subsecond provisioning and domain-scoped secret substitution, so that the VM only sees placeholder values. Instead of a worktree, each agent gets a copy-on-write clone of the entire setup. This works well for setups involving multiple repositories, and cached dependencies mean agents can start working immediately without any per-worktree setup.A single UI lets you work with multiple agents concurrently. You can mix Anthropic and OpenAI models and switch providers in the middle of a conversation. For example, I often have Sol review Opus's work. The