Here are the 3 final variations. In these versions, the full-body illustrations have been generated specifically to perfectly match the accompanying headshot for a seamless transition between the square icon and the Lottie character!
POSIX /bin/sh wrappers that create or reuse a git worktree, cd into it, and launch an AI coding CLI there — so parallel agent sessions stay isolated on separate branches without touching your main checkout.
Running multiple coding agents in one repo gets messy fast: dirty trees, branch thrash, and agents stepping on each other. These scripts give each session its own worktree + branch under a predictable directory, then start the tool inside it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Lightstrike nvim bootstrap | |
| # Installs Neovim (if needed) and writes the full config to ~/.config/nvim. | |
| # Idempotent — safe to re-run. Backs up any existing config first. | |
| # | |
| # Usage: | |
| # curl -fsSL <gist-raw-url> | bash | |
| # # or |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # cleanup.sh - Reclaim disk space from Docker, package managers, and caches | |
| # | |
| # DESCRIPTION | |
| # A reusable script for reclaiming disk space across a multi-project dev | |
| # environment. It handles: | |
| # | |
| # 1. Supabase project management - stop Supabase projects you're not actively | |
| # working on to free their containers, images, and volumes. Only containers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from "react"; | |
| import PropTypes from "prop-types"; | |
| import Helmet from "react-helmet"; | |
| class PreviewPage extends Component { | |
| constructor() { | |
| super(); | |
| this.state = { | |
| post: { | |
| title: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hashlib | |
| import time | |
| import requests | |
| class ReadableAPIClient: | |
| """ | |
| API Client for Readable.io, written for Python 3 | |
| See API documentation: https://readable.io/api/docs/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django import forms | |
| from django.contrib import admin | |
| from django.utils.translation import ugettext as _ | |
| from django.contrib.auth.admin import UserAdmin | |
| from django.contrib.auth.forms import ReadOnlyPasswordHashField | |
| from .models import User | |
| class UserCreationForm(forms.ModelForm): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.db import models | |
| from django.utils.translation import ugettext_lazy as _ | |
| from model_utils.fields import AutoCreatedField, AutoLastModifiedField | |
| class IndexedTimeStampedModel(models.Model): | |
| created = AutoCreatedField(_('created'), db_index=True) | |
| modified = AutoLastModifiedField(_('modified'), db_index=True) | |
| class Meta: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| from sys import argv | |
| import requests | |
| def transform_user_file(filename: str) -> []: | |
| user_file = open(filename, 'r') | |
| user_data = csv.reader(user_file) | |
| # skip first row |
NewerOlder


