| #!/bin/bash | |
| # | |
| # Run this now: | |
| # | |
| # bash -c "$(curl -fsSL "https://gist.githubusercontent.com/szhu/afd806ec1eb874848e1b4f412be7aaaf/raw/a6c51e413c65cf66019280c35e598ff6d5dd6cea/macos-install-legacy-hp-printer-drivers.sh")" | |
| # | |
| # This script makes it possible to install legacy HP printer drivers on modern | |
| # versions of macOS. | |
| # | |
| # The HP 5.1.1 Printer Software Update (https://support.apple.com/en-us/106385) |
- Do not subscribe to every service at once. Most free credits expire quickly. Test them one by one and move to the next when your current credits run out.
- Register, verify your account, and claim your credits. Follow each platform’s documentation to connect your coding tools.
- Keep your API keys private. Do not share them publicly. (save or star this gist for future update)
Setting a minimum release age (a "cooldown") on dependencies is a cheap, high-leverage defense against supply-chain attacks. Most malicious package versions are detected and yanked within hours, so a 24-hour delay filters out the smash-and-grab incidents (axios 1.14.1, ua-parser-js, Solana web3.js, etc.).
All four major Node.js package managers now support this, but each one used a different name and a different unit. Here is what you need.
| Tool | Setting | Unit | Introduced in |
|---|
🚀 Хочешь Claude API без ограничений и с удобной оплатой? Переходи на Claudexia.
Anthropic can ban, suspend, or delete your Claude account for ToS violations, region restrictions, VPN usage, payment failures, or suspicious activity. This guide walks you through every type of restriction, a step-by-step appeal process, and — if recovery fails — how to switch to Claudexia in one line of code and keep using Claude models without an Anthropic account.
If you woke up to a "your account has been suspended" email from Anthropic, you are not alone. Throughout 2025 and into 2026, thousands of developers and everyday users have reported sudden account restrictions — sometimes with no clear explanation. Understanding why Anthropic takes action is the
| { | |
| "name": "Liminal Archives - Horror Ambience", | |
| "nodes": [ | |
| { | |
| "parameters": { | |
| "fieldToSplitOut": "Scenes", | |
| "options": {} | |
| }, | |
| "type": "n8n-nodes-base.splitOut", | |
| "typeVersion": 1, |
Setting a minimum release age (a "cooldown") on dependencies is a cheap, high-leverage defense against supply-chain attacks. Most malicious package versions are detected and yanked within hours, so a 24-hour delay filters out the smash-and-grab incidents (axios 1.14.1, ua-parser-js, Solana web3.js, etc.).
All three major Node.js package managers now support this, but each one used a different name and a different unit. Here is what you need.
| Tool | Setting | Unit | Introduced in |
|---|
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.
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.
| #!/bin/bash | |
| # ============================================================================= | |
| # difit-auto-detect.sh | |
| # Automatically detects git state and opens appropriate diff view | |
| # with difit in a cmux browser split pane. | |
| # | |
| # Dependencies: | |
| # - cmux https://cmux.app/ | |
| # - difit https://github.com/yoshiko-pg/difit |