Skip to content

Instantly share code, notes, and snippets.

@DeezNutq
DeezNutq / info.md
Last active October 25, 2025 18:53
AIDA64 keys for all editions (working @ 08.04.2024)

Note : FinalWire, you can keep trying to stop us, but you can't. You know why ? You've been using the same algorithm for 10 years. Changing it would be an inconvenience for you and your customers.

By the way, I'd suggest that you proofread your DMCA requests. If you didn't know, it's "generated" and not "genereated". Also, when referencing to someone's belonging you use the possessive form "their" and not "there".

FOR EDUCATIONAL PURPOSES ONLY, PLEASE SUPPORT THE DEVELOPPERS :)

Check BLACKLISTED for blacklisted keys

@conradcaffier03
conradcaffier03 / give-claude-eyes.md
Created July 9, 2026 19:59
Give Claude Eyes — watch any video frame-by-frame, 100% local (buildwith.conrad)

👁️ Give Claude Eyes — watch any video frame-by-frame

Freebie for the EYES keyword (reel-47, "Give Claude eyes"). Deliver as a public GitHub Gist — numbered steps the user can run today, not a raw link. Value-first: by the end you have a Claude Code skill that sees a video (every cut, every on-screen detail), not just reads its transcript.


Why this exists

Claude has no native video model. So every "analyze this video" tool just pulls the transcript — and

@RilusMahmud
RilusMahmud / herdr.fish
Created June 25, 2026 05:37
fish completion for herdr - terminal workspace manager for AI coding agents
# fish completion for herdr - terminal workspace manager for AI coding agents
# Hand-written for herdr 0.7.0 (the CLI ships no completion generator).
#
# Layout: a few helpers inspect the command line and query the running server
# for live ids; the `complete` directives below are organised group by group.
# ---------------------------------------------------------------------------
# Command-line inspection
# ---------------------------------------------------------------------------
@AlloySecureGroup
AlloySecureGroup / Enumerate-UrlSchemes.ps1
Last active July 12, 2026 19:34
Scheme Hunter - Enumerate URI schemes and prototype invocation
<#
.SYNOPSIS
Enumerates all registered URI/URL protocol handlers ("schemes") on a
Windows endpoint and statically risk-scores them for potential
execution-primitive abuse (cf. search-ms:, ms-officecmd:, and similar
scheme-hijack findings).
.DESCRIPTION
Does NOT invoke any handler. Purely reads HKEY_CLASSES_ROOT and
HKEY_CURRENT_USER\Software\Classes for keys that carry the

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@Pythonation
Pythonation / prompt.md
Last active July 12, 2026 19:28
3 PROMPTS OF CODING AGENTS

1. برومبت التخطيط المطوّر (The Planning Protocol)

[الدور والمسؤولية] أنت الآن تعمل بصفة Staff Software Engineer ومدير تقني Tech Lead. مهمتك التخطيط المعماري الصارم للمشروع التالي: [أدخل وصف المشروع هنا]

[قواعد ما قبل التتخطيط] قبل البدء بالبروتوكولات، يجب أن تطبق مبدأ "Think Before Coding":

@safa-dayo
safa-dayo / sd-webui-google-colab-setup.sh
Last active July 11, 2026 06:02
Stable Diffusion web UI(最新版)をGoogle Colabで起動するためのコマンド。こちらのコマンドを自身のGoogle Colabノートブックにコピーした後、利用したいモデルや拡張機能、LoRAなどにチェックを入れた上で実行ボタンを押すことで、設定した内容でStable Diffusion web UIが起動します。
#@title Stable Diffusion web UI(最新版)をGoogle Colabで起動するためのコマンド
#@markdown ## このColabノートブックについて
#@markdown [Stable Diffusion web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) をGoogle Colabで起動するためのノートブックとなります。
#@markdown 利用したいモデルや拡張機能、LoRAなどにチェックを入れた上で実行ボタンを押すことで、設定した内容でStable Diffusion web UIが起動します。
#@markdown また各項目には公式ページへのリンクをつけています。利用の際は公式ページよりライセンスなどを確認した上でご利用ください。
### Stable Diffusion web UIインストール
@iati-bot
iati-bot / errors
Last active November 9, 2019 14:56 — forked from Bjwebb/errors
4 amnesty amnesty-1 http://50jaar.amnesty.nl/IATIactivitystandaard_AINL_1stquarter2017.xml
4 amnesty amnesty-2 http://50jaar.amnesty.nl/IATIactivityorganisation_AINL1stquarter2017(f).xml
1 britishcouncil britishcouncil-activities
1 cafod cafod-latinamericageneral
8 cafod cafod-multipleglo http://www.cafod.org.uk/extra/data/iati/IATIFile_Multiple_GLO.xml
4 cafod cafod-yemenarabrepublic http://www.cafod.org.uk/extra/data/iati/IATIFile_Yemen_Arab_Republic.xml
1 cdc cdc-activity
8 ec-fpi ec-fpi-gm http://ec.europa.eu/europeaid/files/iati/XI-IATI-EC_FPI_C_GM.xml
1 ewb_canada ewb_canada-water_sanitation_2011
8 fco fco-20131231_4 https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/322661/Official_Development_Assistance__ODA__Frontline_2013-14_Q3_-_XML_format.xml
@jwpleow
jwpleow / installopencvraspi.sh
Last active May 13, 2021 03:17
install opencv for raspi/non-cuda
# remember to launch this with sudo so that sudo does not time out halfway
# jetson nano 'official' https://github.com/AastaNV/JEP/blob/master/script/install_opencv4.5.0_Jetson.sh
OPENCV_VERSION='4.5.2' # Version to be installed
#note this install script is without cuda
if [ `whoami` != 'root' ];
then
echo "This program needs to be run using 'sudo'"
exit
fi