Skip to content

Instantly share code, notes, and snippets.

View sethwebster's full-sized avatar

Seth Webster sethwebster

View GitHub Profile
addUser() {
echo "Adding user $1..."
adduser $1
gpasswd -a $1 sudo
}
enableSwap() {
echo "Enabling Swap..."
sudo fallocate -l 4G /swapfile
sudo mkswap /swapfile
{
"caret_style": "phase",
"color_scheme": "Packages/Colorsublime - Themes/Afterglow.tmTheme",
"fade_fold_buttons": false,
"folder_exclude_patterns":
[
"node_modules",
"bower_components",
".svn",
".git",
class ThereCanBeOnlyOne {
timeout = null;
performAction(waitMs, action) {
if (this.timeout) this.cancelPrevious();
return new Promise((resolve, reject) => {
this.timeout = setTimeout(() => {
this.cancelPrevious();
const value = action();
if (value.then && value.catch) {
@sethwebster
sethwebster / README.md
Last active April 12, 2023 19:06
Make Docker Cache Gem Installs to speed up Bundle Install

Gem Install Dockerfile Hack

If you're hacking on your Gemfile and using Docker, you know the pain of having the bundle install command run after you've added or removed a gem. Using docker-compose you could mount a volume and stage your gems there, but this adds additional complexity and doesn't always really solve the problem.

Enter this imperfect solution:

What if we installed every gem into it's own Docker layer which would be happily cached for us?

gem-inject-docker does just that. It takes the list of gems used by your app via bundle list and transforms it into a list of RUN gem install <your gem> -v <gem version> statements and injects them into the Dockerfile at a point of your choosing.

(async () => {
// =========================
// CONFIG
// =========================
const CFG = {
// Collection
sidebarSelector: 'nav[aria-label="Chat history"]',
chatLinkSelector: 'a[href^="/c/"]',
scrollStepRatio: 0.85, // scroll by 85% of viewport height per step
scrollDelayMs: 300,
@sethwebster
sethwebster / gist:af3a18440c5640d32de52887cafd9e5a
Created January 30, 2026 20:09
Clean up OpenClaw install
#!/bin/bash
set -euo pipefail
# OpenClaw Uninstaller for macOS and Linux
# Reverses everything done by the OpenClaw installer
# Usage: bash uninstall-openclaw.sh [options]
#
# Security features:
# - Path validation prevents directory traversal attacks
# - Symlink handling avoids deleting unexpected targets
# Agent Development Guide
Enterprise-grade guidelines for building production systems with AI agents.
## Core Principles
### 1. Explicit Over Implicit
- Every decision must have a clear rationale
- No magic values or hidden assumptions
- State changes must be traceable