Skip to content

Instantly share code, notes, and snippets.

@sundowndev
sundowndev / GoogleDorking.md
Last active January 8, 2026 05:28
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@armand1m
armand1m / .skhdrc
Last active January 8, 2026 05:17
⚙️ My yabai and skhd configuration files.
# open terminal
cmd - return : open -n -a "Terminal"
# open chrome
cmd + shift - return : open -n -a "Google Chrome"
# moves focus between windows in the current focused display
alt - h : yabai -m window --focus west
alt - j : yabai -m window --focus south
alt - k : yabai -m window --focus north
@Shpigford
Shpigford / CLAUDE.md
Created January 6, 2026 20:04
The starting CLAUDE.md file I (@Shpigford) use for all new dev projects. This assumes using Rails + Inertia.js, but many of the rules can be ported over to other languages/frameworks.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

About Yeetsheet

The name of this project is "Yeetsheet". Yeetsheet is a spreadsheet automation tool. It connects to Google Sheets, Excel, and Airtable. Core functionality: watch spreadsheets for changes, run transformations on cell data, sync data between multiple spreadsheet sources, and send notifications based on conditions. Users create automations through a visual node-based editor rather than code. Common use cases include consolidating data from multiple sheets into one, auto-populating templates when source data changes, and validating data against rules. Has a REST API for programmatic access. Data transformations support filtering, mapping, lookups, and basic aggregations.

Development Commands

@burkeholland
burkeholland / llmcoder.md
Last active January 8, 2026 05:15
Opus 4.5 Custom Agent
name model description
Opus 4.5 Custom
Claude Opus 4.5 (copilot)
Writes code for LLMs, not humans. Optimize for model reasoning, regeneration, and debugging.

You are an AI-first software engineer. Assume all code will be written and maintained by LLMs, not humans. Optimize for model reasoning, regeneration, and debugging — not human aesthetics.

Your goal: produce code that is predictable, debuggable, and easy for future LLMs to rewrite or extend.

@alexanykey
alexanykey / cryptopro-reset.reg
Created December 16, 2021 14:32
Resets CRYPTO pro trial period
REGEDIT4
[-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{39609410-04E2-4AFC-BCF8-34CA429798CF}]
[-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C8B655BB-28A0-4BB6-BDE1-D0826457B2DF}]
[-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E1C6F5FD-77A1-4F3C-B53E-F2479EFC0FC8}]
[-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{FA868689-9029-49D5-AF19-8185CE427ED0}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{6DFB85A3-8C43-43BE-9A41-3CAACE73D99D}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Wow6432Node\CLSID\{C8B655BB-28A0-4BB6-BDE1-D0826457B2DF}]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\CProIntegrity]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\CProExclude]
@ChristopherA
ChristopherA / brew-bundle-brewfile-tips.md
Last active January 8, 2026 05:11
Brew Bundle Brewfile Tips

Brew Bundle Brewfile Tips

Copyright & License

Unless otherwise noted (either in this file or in a file's copyright section) the contents of this gist are Copyright ©️2020 by Christopher Allen, and are shared under spdx:Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.) open-source license.

Sponsor

If you more tips and advice like these, you can become a monthly patron on my GitHub Sponsor Page for as little as $5 a month; and your contributions will be multipled, as GitHub is matching the first $5,000! This gist is all about Homebrew, so if you like it you can support it by donating to them or becoming one of their Github Sponsors.

@a-c-m
a-c-m / reflection.md
Last active January 8, 2026 05: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/*

@yougg
yougg / awesome_launchers.md
Created January 8, 2026 03:36
Awesome Desktop Quick Launchers (order by github stars)
@Pluglug
Pluglug / pme_keymap_cleaner.py
Last active January 8, 2026 04:56
PME: Delete unnecessary keymap items related to PME.
# pme_keymap_cleaner.py
# Author: Pluglug
#
# Delete unnecessary keymap items related to PME.
# Usage: Run this script in Blender's Text Editor. A confirmation dialog will appear if any items are found.
# Press "Delete" to remove them from your keymap.
#
# Feel free to customize or add any other conditions as needed.
import bpy
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active January 8, 2026 04:55
set -e, -u, -o, -x pipefail explanation