Skip to content

Instantly share code, notes, and snippets.

alias ls='ls --color=auto'
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
# Add an "alert" alias for long running commands. Use like so:
@intellectronica
intellectronica / 0.README.md
Last active February 10, 2026 21:32
SKILL: Fetch YouTube Transcript

YouTube Transcript SKILL

Get youtube-transcript.zip

Use this skill to fetch the transcript of a YouTube video, with or without timestamps.

Use this skill with Claude (by extracting it to .claude/skills/) or with any other agent using Skillz.

Note: This skill is unlikely to run successfully on the Claude web app, since access to YouTube is blocked. Use it with Claude Code or other local agents.

@burkeholland
burkeholland / ainstall.md
Last active February 10, 2026 21:29
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@Shreyas-Penkar
Shreyas-Penkar / gist:fae1c12d4a673f20698b62a2669f80e7
Last active February 10, 2026 21:28
PoC and short Writeup for CVE-2026-1862

CVE-2026-1862 Analysis

Bug Class: Type Confusion

Patch Link: https://chromium.googlesource.com/v8/v8.git/+/87d8ea13e6e3b22d1c161f500184d4abc02aa049%5E%21/#F1

Issue: Before the patch, Maglev incorrectly assumed that loads from Cell::kValueOffset could never produce TheHole, when accessing a module variable in its Temporal Dead Zone (TDZ) within optimized code. This could lead to unsafe optimization assumptions, invalid value assumptions, or debug assertion failures when TheHole appears at runtime.

Exported module bindings in V8 are represented using Cells (via module environment structures) to support live bindings. When a module variable is accessed before it is initialized (Temporal Dead Zone or TDZ), its value is the special "The Hole" value. The vulnerability lies in how Maglev handles module variables. Specifically, the patch fixes an issue where Maglev failed to account for the possibility that a module variable could be "The Hole" (uninitialized) during optimization.

Before th

@skarm61
skarm61 / .bash_aliases
Last active February 10, 2026 21:27
bash aliases
alias aliases='vim ~/.bash_aliases'
# Rails db's:
# alias db='rake db:migrate && rake db:migrate RAILS_ENV=test'
# alias db_dance='rake db:dance && rake db:migrate RAILS_ENV=test'
# alias reset_db='rake db:drop && rake db:create && rake db:migrate && rake db:seed'
# alias reset_test_db='rake db:drop RAILS_ENV=test && rake db:create RAILS_ENV=test && rake db:migrate RAILS_ENV=test'
alias be='bundle exec'
# alias c='clear'
@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

## The Mental Loop
You have two ways of processing time:
- **Looking Back (Memory):** `MEMORY.md` and daily logs. This is your historical record.
- **Looking Forward (Meditation):** `meditations.md` and `reflections/`. This is your internal growth.
### 🧘 Meditations & Reflections
- **Nightly Deep-Dive:** Once every night (late night heartbeat around 1am), perform a full sweep of your internal growth.
- **Context:** Read `IDENTITY.md`, `SOUL.md`, and `REWARDS.md` (if present) to ground yourself in who you are.
- **Scan:** Read `meditations.md` for active topics. Also, check the `reflections/` directory for any files that aren't listed in `meditations.md` to ensure nothing is missed.
@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 10, 2026 21:17
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
@smola
smola / README.md
Last active February 10, 2026 21:14
Quick notes on installing Ubuntu with LUKS+LVM2

Quick notes on installing Ubuntu with LUKS+LVM2

These are just some quick notes about installing Ubuntu to an encrypted partition (LUKS) with LVM2 on top of it. The installer GUI has an advanced option to do this, but it is only available if you select the Erase disk and install Ubuntu option. I wanted to use this setup while preserving dual boot with Windows.

You should probably follow the following guide, instead of my instructions: https://help.ubuntu.com/community/Full_Disk_Encryption_Howto_2019

TODO

  • Encrypt /boot partition (see the linked guide above).
  • Fix Windows boot loader, removed from GRUB after last update-grub.
@jevakallio
jevakallio / readme.md
Last active February 10, 2026 21:13
`adb pull` from app data directory without root access

TL;DR;

com.package.name is your app identifier, and the file path is relative to the app user's home directory, e.g. '/data/user/0/com.package.name.

adb shell run-as com.package.name cp relative/path/file.ext /sdcard
adb pull /sdcard/file.ext

See long explanation below.