Skip to content

Instantly share code, notes, and snippets.

@swrneko
swrneko / naive-proxy.guide.md
Last active April 10, 2026 18:54
Naive Proxy Guide

NaiveProxy: Ультимативный гайд по настройке (2026)

📺 Видео-версия гайда


Инструкции по установке

1. Подключаемся к серверу:

@zapakh
zapakh / do_maze.py
Created May 22, 2024 06:01
In-situ DFS maze solver for The Farmer Was Replaced
# Make sure you have enough Fertilizer before starting.
def do_maze(iterations=1):
# Define some geometry help for later
opp = {North: South, East: West,
South: North, West: East}
dx = {North: 0, East: 1, South: 0, West: -1}
dy = {North: 1, East: 0, South: -1, West: 0}
# Start a Maze.
harvest()
# Claude Code CLI Environment Variables
# This file lists all environment variables used in v2.1.100 with explanations
## Anthropic API & Authentication
ANTHROPIC_API_KEY - Primary API key for Anthropic's Claude API. Used as fallback when no OAuth token is configured
ANTHROPIC_AUTH_TOKEN - Alternative bearer token for Anthropic services. Takes priority over ANTHROPIC_API_KEY for authorization headers
ANTHROPIC_BASE_URL - Custom base URL for Anthropic API endpoints. Overrides the default api.anthropic.com endpoint
ANTHROPIC_BETAS - Comma-separated list of beta feature headers to include in API requests. Appended to internal beta flags
ANTHROPIC_CUSTOM_HEADERS - Custom HTTP headers for API requests. Newline-separated Key: Value pairs
@sundowndev
sundowndev / GoogleDorking.md
Last active April 10, 2026 18:50
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"

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.

@ih2502mk
ih2502mk / list.md
Last active April 10, 2026 18:48
Quantopian Lectures Saved
@daviddanielng
daviddanielng / bypass_devtools_detect.md
Last active April 10, 2026 18:46
How to stop sites from detecting you in dev tools.

HOW TO STOP SITES FROM DETECTING YOU IN DEV TOOL ON LINUX, WINDOWS AND MACOS.

I will make this brief: utilising devtools is prohibited on some websites (typically shady websites) for users like you and me. I am writing this description to show you how I was able to navigate with a little bit of Google and redditing. None of the standard browsers Firefox, Google Chrome, Safari, or any other will be able to use this, save from the one I am about to disclose. You need to download LibreWolf; it is a special browser that makes use of the firefox gecko render engine and gives you the ability to change the necessary browser settings.

HOW TO INSTALL LIBREWOLF ON YOUR OS

To install librewolf on your OS see link below

@matthewzring
matthewzring / markdown-text-101.md
Last active April 10, 2026 18:45
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers: