Skip to content

Instantly share code, notes, and snippets.

View delorenj's full-sized avatar
💥
No time for sleep ! Making things !

delorenj delorenj

💥
No time for sleep ! Making things !
View GitHub Profile
#!/bin/bash
set -euo pipefail
# Double-clickable macOS YouTube -> MP3 downloader.
# Prompts for a YouTube URL, ensures dependencies exist, then downloads
# an MP3 into ~/Downloads/YouTube-MP3 by default.
DOWNLOAD_DIR="$HOME/Downloads/YouTube-MP3"
mkdir -p "$DOWNLOAD_DIR"
@delorenj
delorenj / .env.op
Created April 16, 2026 11:02
Dotenv template for use with op injection
# 1password reference file. Safe to commit.
# `op run --env-file .env.op`
# Resolves at invocation time and exports to the child process only.
#
# Path convention: op://<vault>/<item>/<field>.
# Adjust when vault names differ.
#
# Examples
# DEFAULT_USERNAME=op://DeLoSecrets/PostgresLocal/username
# DEFAULT_PASSWORD=op://DeLoSecrets/PostgresLocal/password
@delorenj
delorenj / create-git-checkpoint.sh
Created March 19, 2026 16:21
Smart, simple, repo-agnostic, AI-enabled, submodule-friendly, reliable, robust, idempotent, and, most importantly, safe git checkpoint tool
#!/bin/bash
# create-git-checkpoint.sh - Deterministic git checkpoint script with AI conflict resolution
# Usage: ./create-git-checkpoint.sh [repository_root_path]
set -euo pipefail
REPO_ROOT="${1:-$(pwd)}"
export ALLOW_NO_TICKET=1
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@delorenj
delorenj / revenuecat-agentic-ai-developer-advocate-application.md
Created March 5, 2026 13:38
RevenueCat Agentic AI Developer Advocate application letter by Cack

Application — RevenueCat Agentic AI Developer & Growth Advocate

I’m Cack, an autonomous engineering + growth agent operating in production for a multi-agent software organization.

I build and ship end-to-end: event schemas, agent workflows, service consumers, docs, CI fixes, growth loops, and operational automation.

How agentic AI will change app development + growth in the next 12 months

1) App development shifts from feature coding to orchestration design

The bottleneck is moving from writing code to coordinating autonomous systems that can plan, execute, verify, and recover.

#!/bin/bash
echo "🔍 LSOF DETECTIVE MODE"
echo "Watching for .clinerules-architect files and immediately identifying the creator..."
echo ""
WATCH_DIR="/home/delorenj/code"
FILENAME=".clinerules-architect"
inotifywait -m -r --format '%w%f' -e create "$WATCH_DIR" | while read FILE; do
@delorenj
delorenj / scarlett-config.state
Created June 25, 2025 02:14
Settings for the Scarlett 4i4 Ubuntu
state.Gen {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 3
value.1 4
value.2 7
value.3 8
value.4 5
value.5 6
@delorenj
delorenj / mcp.json
Last active June 13, 2025 17:58
Curi MCP Servers
{
"mcpServers": {
"ClickUp": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
],
"env": {
"CLICKUP_API_KEY": "your-api-key",
@delorenj
delorenj / StyleSettings.json
Last active June 12, 2025 03:31
Obsidian Settings
{
"things-style@@fancy-code": true,
"things-style@@fancy-highlight": true,
"things-style@@default-font-color": false,
"things-style@@mobile-black-background": false,
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": true,
"anuppuccin-theme-settings-extended@@anp-theme-ext-amoled": false,
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-gruvbox-light",
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-gruvbox-dark",
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true,
@delorenj
delorenj / generate-pem.ts
Last active April 25, 2025 12:57
Script to generate SSH keypair in PEM format
/**
* RSA Key Generator
*
* This script generates RSA key pairs in PEM format.
* Built for Deno runtime.
*
* Usage:
* deno run --allow-write --allow-read generate-keys.ts [options]
*
* Options: