Skip to content

Instantly share code, notes, and snippets.

View balupton's full-sized avatar
🧙‍♀️
Working on Dorothy, a dotfile ecosystem

Benjamin Lupton balupton

🧙‍♀️
Working on Dorothy, a dotfile ecosystem
View GitHub Profile

You are conducting a long-running recursive agent-harness improvement experiment.

The central research question is:

Can Kimi K3 inspect and improve the Cline CLI agent harness that runs Kimi K3, then demonstrate a real, reproducible improvement on Terminal-Bench 2.1 without reward hacking, benchmark-specific patches, increased resources, or misleading experimental comparisons?

You are both:

  1. The engineering agent modifying Cline.
  2. The target model whose performance is being improved through those Cline changes.
@aparente
aparente / SKILL.md
Last active September 5, 2026 22:12
tufte-viz Claude Code skill — Edward Tufte data visualization principles

name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays

@bahamas10
bahamas10 / termcap.bash
Last active August 25, 2026 02:04
Colorize Manpages on the Terminal
# annotated by dave eddy (@yousuckatprogramming)
# explained - https://youtu.be/D0sG2fj0G4Y
# borrowed heavily from https://grml.org
# Begin blinking text mode
# I just use bold red here since my terminal has blinking disabled
export LESS_TERMCAP_mb=$'\e[1;31m'
# Begin bold text mode
export LESS_TERMCAP_md=$'\e[1;31m'
@kubojion
kubojion / ubuntu-24-mbp-a1707.md
Created March 19, 2026 19:57
Guide to installing Ubuntu 24.04 LTS on a 2017 MacBook Pro (A1707, 14,3). Topics

Ubuntu 24.04 LTS on MacBook Pro 2017 (A1707, 14,3)

A step-by-step guide for getting Ubuntu 24.04.4 LTS fully working on MacBook Pro 14,3 (mid-2017 15″ with AMD dGPU and Apple T1 chip).

Status

Component Status Notes
GPU (Radeon Pro 555) ✅ Works amdgpu driver, no config needed
#!/usr/bin/env bash
counter=1
echo "demo: error state"
while [ $counter -le 25 ]; do
printf "\x1b]9;4;2;${counter}\x07"
((counter++))
sleep 0.1
done
echo "demo: normal state"
@LinuxSBC
LinuxSBC / 1password-flatpak-browser-integration.sh
Last active July 21, 2026 10:57
1Password Integration with Flatpak Browsers
#!/bin/bash
set -oue pipefail
INFO='\033[0;36m' # Cyan for general information
SUCCESS='\033[0;32m' # Green for success messages
WARN='\033[0;33m' # Yellow for warnings
ERROR='\033[0;31m' # Red for errors
NC='\033[0m' # No Color
echo "This script will help you set up 1Password in a Flatpak browser."
@almas
almas / ubuntu-on-mbp-a1707.md
Last active September 2, 2026 14:12 — forked from rob-hills/ubuntu-22.04-mbp-a1707.md
Ubuntu LTS on MacBook Pro 2017 (A1707, MBP 14,3)(T1 chip)

Summary

Notes to install Ubuntu 22.04.4LTS (Upgraded to 24.04LTS) up and running on my 2017 MacBook Pro 15 inch (MacBookPro14,3).

Now everything except the TouchID (Fingerprint), Suspend and Hibernation seems to work for me.

About Ubuntu 24.04LTS: I tried to install Ubuntu 24.04 and didn't have success. There was a crash issue during installation. https://bugs.launchpad.net/subiquity/+bug/2065310 But I installed 22.04 and upgraded it to the 24.04LTS later and it working same as 22.04.4.

Useful References (not mentioned in the text)

@Kaptensanders
Kaptensanders / vs
Last active December 25, 2025 12:27
Open VSCode .code-workspace file from within devcontainer - from terminal
#!/usr/bin/env bash
if [ "$1" == "--help" ]; then
cat << EOF
Run from project folder, auto opens vscode in some mode depending on folder contents:
* Folder contains .devcontainer/devcontainer.json and <name>.code-workspace file: vscode opens in devcontainer, workspace file is loaded
* Folder contains .devcontainer/devcontainer.json: vscode opens in devcontainer
* Folder contains <name>.code-workspace file: Workspace is opened in vscode
@mvandermeulen
mvandermeulen / accessing-apple-screen-time-data.md
Created July 29, 2023 21:30 — forked from 0xdevalias/accessing-apple-screen-time-data.md
Some notes on accessing / exporting Apple's Screen Time data

Accessing / Exporting Apple's Screen Time Data

Some notes on accessing / exporting Apple's Screen Time data

  • From ChatGPT (Ref):
    • Note: This seems to be wrong, at least on macOS Ventura.. not sure if it was ever correct.
    • On macOS, the Screen Time data is stored in a SQLite database located at:

    • ~/Library/Application Support/ScreenTimeAgent/Database/CoreDuetData.db

    • To access this database, you can use a SQLite browser tool, such as DB Browser for SQLite, which is a free, open-source tool that can be downloaded from their website at https://sqlitebrowser.org/.

  • > Once you have installed DB Browser for SQLite, you can open the CoreDuetData.db file and browse the tables to view the Screen Time data. Note that the data is stored in a compressed format, so you may need to use a SQLite extension or command-line tool to decompress the data for viewing.
@acarril
acarril / bootable-win-on-mac.md
Created November 18, 2022 17:49
Create a bootable Windows USB using macOS

For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.

1. Download a Windows disc image (i.e. ISO file)

You can download Windows 10 or Windows 11 directly from Microsoft.

2. Identify your USB drive

After plugging the drive to your machine, identify the name of the USB device using diskutil list, which should return an output like the one below. In my case, the correct disk name is disk2.