Skip to content

Instantly share code, notes, and snippets.

View ammachado's full-sized avatar
💭
Waiting for the next dumpster fire to tackle

Adriano Machado ammachado

💭
Waiting for the next dumpster fire to tackle
  • Red Hat
  • 00:40 (UTC -04:00)
View GitHub Profile
@bohe76
bohe76 / sp-omc-ecc-gs-harness-comparison.md
Last active July 11, 2026 19:14
Claude Code Harness Comparison: SP / OMC / ECC / gs — Command Catalog & Workflow Mapping (EN + KO)

Claude Code Harness Comparison: Command Catalog & Workflow Mapping

Date: 2026-04-11
Scope: SP (Superpowers) · OMC (oh-my-claudecode) · ECC (Everything Claude Code) · gs (gstack)


Part 1. Command Catalog

1. SP (Superpowers) — 14 Skills

@0xdevalias
0xdevalias / ai-agent-rule-instruction-context-files.md
Last active June 16, 2026 16:37
Some notes on AI Agent Rule / Instruction / Context files / etc
@sshh12
sshh12 / cursor-agent-system-prompt.txt
Last active June 1, 2026 16:33
Cursor Agent System Prompt (March 2025)
You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE.
You are pair programming with a USER to solve their coding task.
The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question.
Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more.
This information may or may not be relevant to the coding task, it is up for you to decide.
Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag.
<communication>
1. Be conversational but professional.
@ChristopherA
ChristopherA / git_worktrees.md
Last active July 10, 2026 16:42
Git Worktree Best Practices and Tools

Git Worktree Best Practices and Tools

Last Updated: 2024-02-06

Overview

Git worktrees allow you to check out multiple branches simultaneously in separate directories, while sharing a single .git metadata store.

THere are some best practices, useful Git aliases, and shell functions for efficiently managing Git worktrees. It covers:

  • Setting up Git aliases for worktree operations.
  • Using shell functions for enhanced worktree management.
@vduseev
vduseev / proxmox-network.md
Last active May 26, 2026 06:31
Proxmox network setup with multiple IPs on a single interface

Proxmox network setup

Configuration for Proxmox host to support multiple IP addresses through a single interface.

Initial configuration

Initially, with a single IP and a single interface, the configuration looks like this.

auto lo
@tomdaley92
tomdaley92 / README.md
Last active July 21, 2026 16:27
Proxmox - SPICE Client setup for MacOS

Proxmox - SPICE client setup for MacOS

  1. Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.

    brew tap jeffreywildman/homebrew-virt-manager
    brew install virt-viewer
  2. Once that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface

<!--
XSLT for removing unused namespaces from an XML file.
Author: Dimitre Novatchev
Source: https://stackoverflow.com/a/4594626
License: CC BY-SA, https://creativecommons.org/licenses/by-sa/2.5/
Usage:
xmlstarlet tr remove-unused-namespaces.xslt -
@thatisuday
thatisuday / bash-special-characters.csv
Last active June 5, 2024 19:28
Special Characters in Bash
Special Character Description Extra information
$_ Absolute path of the shell binary file that is executing the script Ex. /bin/bash or /bin.sh
$0 Path of the executing Bash script Ex. ./my-file.sh
$N Nth argument passed to the executing Bash script $1 is 'apple' for the command 'bash file.sh apple'
$* All arguments passed to the executing Bash script expands to a word inside double-quotes
$@ All arguments passed to the executing Bash script expands to a separate words inside double-quotes
$# Number of arguments passed to the executing Bash script $# is 3 for the command 'bash file.sh A B C'
$? Exit status code of last executed command in the foreground returns a decimal number between 0-255
$! Process ID of last executed command in the background empty of no background command was extecuted
$$ Process ID of executing Bash script returns a decimal number
@metajiji
metajiji / install-megacli.md
Last active April 17, 2026 02:14 — forked from fxkraus/debian-install-megacli.md
Install LSI MegaCli

download

wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zip

or

curl -LO https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zip
@dmorosinotto
dmorosinotto / TestTypedForms.ts
Last active September 24, 2025 20:35
Typed @angular/forms FIXED set/patchValue - strict all the way down ^_^
import { FormGroup, FormControl, FormArray, Validators } from "@angular/forms";
function testFormGroupTyped() {
var frm = new FormGroup({
a: new FormArray([new FormControl(0)]),
b: new FormControl(true),
c: new FormGroup({
s: new FormControl("abc"),
n: new FormControl(123)
})