Skip to content

Instantly share code, notes, and snippets.

View vonDubenshire's full-sized avatar
:shipit:
Squirrel Mail

vonDubenshire vonDubenshire

:shipit:
Squirrel Mail
View GitHub Profile
@foklepoint
foklepoint / agent_reflect.sh
Last active December 14, 2025 02:54
Codex AGENTS.md Self Reflection Improvement
#!/usr/bin/env bash
# agent_reflect.sh — minimal three-stage Codex reflection pipeline for any repo
# Uses `codex --dangerously-bypass-approvals-and-sandbox` for all Codex exec calls
# Usage: agent_reflect.sh <repo|path> [--auto]
usage() {
cat <<EOF
Usage: $(basename "$0") <repo|path> [--auto]
Positional:
@a-c-m
a-c-m / reflection.md
Last active December 19, 2025 21:04
reflection.md - a way to have claude-code self improve its context.

You are an expert in prompt engineering, specializing in optimizing AI code assistant instructions. Your task is to analyze and improve the instructions for Claude Code. Follow these steps carefully:

  1. Analysis Phase: Review the chat history in your context window.

Then, examine the current Claude instructions, commands and config <claude_instructions> /CLAUDE.md /.claude/commands/*

@MartinEesmaa
MartinEesmaa / youtube_formats.md
Last active December 19, 2025 10:08 — forked from AgentOak/youtube_formats.md
Youtube Format IDs

Note: This is all almost full YouTube ID informations. Original owner goes to AgentOak, modified version by Martin Eesmaa.

See the credits and also special thanks in below.

Last updated: 13 December 2025

Also known as itag or format codes and way back they could be specified with the fmt parameter (e.g. &fmt=22). Depending on the age and/or popularity of the video, not all formats will be available.

DASH video

@evanreichard
evanreichard / archive-redirect.user.js
Last active September 15, 2023 07:40
Auto Archive Redirect
// ==UserScript==
// @name Auto Archive Redirect
// @namespace Evan Reichard
// @version 0.0.3
// @match *://*/*
// @grant GM.xmlhttpRequest
// @grant GM.openInTab
// @noframes
// @run-at document-start
// ==/UserScript==
@stewartmcgown
stewartmcgown / spec.json
Created February 12, 2022 15:30
Google Web SMS Private API
This file has been truncated, but you can view the full file.
{
"version_module": true,
"title": "Instant Messaging Private API",
"ownerName": "Google",
"basePath": "",
"version": "v1",
"resources": {
"group": {
"methods": {
Updated: 8 April 2021
Chromium: 91.0.4464.4 (Official Build) dev (64-bit)
Source: chrome://version/?show-variations-cmd

chrome://flags

Override software rendering list - Enabled

@MrHallows
MrHallows / adb_full_backup_restore.md
Created September 29, 2020 14:54
ADB Full Backup/Restore Commands

ADB Full Backup Command:

adb backup -apk -shared -all -f <filepath>

Example:

adb backup -apk -shared -all -f C:\path\to\backups\android_backup_YYYY-MM-DD.ab
@MrHallows
MrHallows / fastboot_help.md
Last active December 10, 2025 10:38
fastboot commands

Command:

$ fastboot help

Output:

usage: fastboot [OPTION...] COMMAND...

flashing:
@ibLeDy
ibLeDy / desktop_chromium_flags.md
Last active April 10, 2025 10:21
Chromium flags
Updated: Jun 17, 2022
Chromium: 102.0.5005.115 (Official Build) (64-bit) (cohort: Stable)
OS: Windows 10 Version 21H2 (Build 19044.1766)

Override software rendering list - Enabled

Overrides the built-in software rendering list and enables GPU-acceleration on unsupported system configurations. – Mac, Windows, Linux, Chrome OS, Android

@deanbot
deanbot / keepawake.ps1
Last active September 22, 2025 02:23 — forked from jamesfreeman959/keepawake.ps1
PowerShell script to keep a Windows PC awake
# PowerShell script to keep a Windows PC awake
Write-Host "Keeping PC awake... (send Ctrl+C to quit)"
while (1) {
$wsh = New-Object -ComObject WScript.Shell
$wsh.SendKeys('+{F15}')
Start-Sleep -seconds 59
}