<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Tooling on Brett Smith</title>
    <link>/tags/tooling/</link>
    <description>Recent content in Tooling on Brett Smith</description>
    <generator>Hugo -- 0.148.1</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 03 Jan 2026 06:34:00 -0700</lastBuildDate>
    <atom:link href="/tags/tooling/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Checking Out exe.dev</title>
      <link>/archive/2026/01/03/checking-out-exe-dev/</link>
      <pubDate>Sat, 03 Jan 2026 06:34:00 -0700</pubDate>
      <guid>/archive/2026/01/03/checking-out-exe-dev/</guid>
      <description>&lt;img src=&#34;/archive/2026/01/03/checking-out-exe-dev/exe-dev.png&#34; alt=&#34;exe.dev homepage&#34; width=&#34;80%&#34;&gt;
&lt;p&gt;Finally took a look at &lt;a href=&#34;https://x.com/davidcrawshaw&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;David Crawshaw&amp;rsquo;s&lt;/a&gt;
 new project &lt;a href=&#34;https://exe.dev&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;exe.dev&lt;/a&gt;
, a slick new service for spinning up virtual machines in seconds. It&amp;rsquo;s a subscription service that gives you access to VM&amp;rsquo;s with persistant disks for a really great price. Enough is enough and I am slowly iterating through creating my own end to end agent orchestration system where I can manage projects as a HOTL (Human on the loop; shoutout &lt;a href=&#34;https://x.com/GeoffreyHuntley/status/2006726191773004074&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Geoffrey Huntley&lt;/a&gt;
).&lt;/p&gt;</description>
    </item>
    <item>
      <title>uv tips</title>
      <link>/archive/2025/07/21/uv-tips/</link>
      <pubDate>Mon, 21 Jul 2025 10:23:00 -0700</pubDate>
      <guid>/archive/2025/07/21/uv-tips/</guid>
      <description>&lt;p&gt;Today I learned about some powerful, lesser-known features of &lt;a href=&#34;https://docs.astral.sh/uv/guides/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;uv&lt;/a&gt;
, a fast Python package and environment manager. Beyond the usual &lt;code&gt;uv venv&lt;/code&gt; and &lt;code&gt;uv sync&lt;/code&gt;, uv offers commands that streamline workflows for tool management, Python versions, and reproducible builds. Here&amp;rsquo;s a quick overview of some standout features:&lt;/p&gt;
&lt;h3 id=&#34;running-ruff-directly&#34;&gt;Running ruff directly&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Install CLI tools globally in isolated environments (like pipx, but faster)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv tool install ruff
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Run tools ephemerally without permanent installs&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uvx ruff check
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;manage-python-versions-directly&#34;&gt;Manage Python versions directly&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Install specific Python versions&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv python install 3.10 3.11
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# List installed versions&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv python list
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Upgrade to latest patch release&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv python upgrade 3.10
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;compile-requirements-for-reproducible-builds&#34;&gt;Compile requirements for reproducible builds&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Generate a pinned lockfile&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv pip compile requirements.in -o requirements.txt --universal
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Pre-compile bytecode for faster container startup&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv pip compile requirements.in -o requirements.txt --compile-bytecode
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;run-commands-with-automatic-environment-syncing&#34;&gt;Run commands with automatic environment syncing&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Auto-sync dependencies before running&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv run ruff check
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Use non-editable installs for production-like setups&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv run --no-editable python script.py
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;build-and-package-python-distributions&#34;&gt;Build and package Python distributions&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Create source distribution and wheel&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv build --wheel
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Skip build isolation for tricky dependencies&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv build --no-build-isolation-package numpy
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;I have really liked using uv in my work and personal projects. It&amp;rsquo;s no secret it is becoming the best way to manage Python dependencies. Knowing some of the other things uv can do helps make developing in Python that much more enjoyable.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Repomix</title>
      <link>/archive/2025/07/20/repomix/</link>
      <pubDate>Sun, 20 Jul 2025 16:37:26 -0700</pubDate>
      <guid>/archive/2025/07/20/repomix/</guid>
      <description>&lt;p&gt;I have been using RepoMix on and off for projects on Github, but I never knew they had a &lt;a href=&#34;https://repomix.com/#using-the-cli-tool&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;CLI&lt;/a&gt;
 for it. It&amp;rsquo;s extremely useful and easy to setup. I was using a custom python script but the repomix cli is much easier to work with.&lt;/p&gt;
&lt;p&gt;There are a bunch of useful commands. Here is a quick overview:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Install using npm&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;npm install -g repomix
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Then run in any project directory&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;repomix
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Pack specific files or directories&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
