Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
seoagentur-hamburg / .htaccess
Last active August 19, 2026 13:46
UPDATE 2024/03: Perfect .htaccess file for highspeed and security. You can use it for every WordPress-Website without problems. Highspeed and Security - testet on hundreds of Websites. If you are using a WordPress Multisite, change the last part of this file.
########################################################################
# OPTIMAL .htaccess FILE FOR SPEED AND SECURITY @Version 2.0.9 - 03/2024
# ----------------------------------------------------------------------
# @Author: Andreas Hecht
# @Author URI: https://seoagentur-hamburg.com
# License: GNU General Public License v2 or later
# License URI: http://www.gnu.org/licenses/gpl-2.0.html
########################################################################
@SwarmSheriff
SwarmSheriff / kms-auto-activation-tool.md
Created August 19, 2026 13:45
KMSAuto Activation Tool is a software utility designed to bypass official product licensing by emulating a local Key Management Service (KMS) server to activate Microsoft Windows and Office software.

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.

Prompt Engineering

Автор: Lee Boonstra

Благодарности

Содержание предоставили:

  • Michael Sherman
  • Yuan Cao
@manhay212
manhay212 / agent-harness-patterns.md
Created August 18, 2026 15:34
The Harness Matters More Than the Model — patterns for building a personal AI agent

The Harness Matters More Than the Model

A pattern collection for anyone building a personal (or small-team) AI agent that has to keep working after week one.

This is an idea file in the spirit of Andrej Karpathy's LLM Wiki gist — it describes patterns, not a specific implementation. It's meant to be handed to your own coding agent (Claude Code, Codex, Cursor, whatever you use) and instantiated together, adapted to your framework and your needs. See "For agents" below for how to use it that way.


Who wrote this, and why you should calibrate accordingly

@mmozeiko
mmozeiko / !README.md
Last active August 19, 2026 13:41
Download MSVC compiler/linker & Windows SDK without installing full Visual Studio

This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.

Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.

You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.

To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.

To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).

@RpMGrut
RpMGrut / install.sh
Last active August 19, 2026 13:40
Cockpit + Cloud Hypervisor + VM Manager — one-shot bootstrap for Debian 13
#!/usr/bin/env bash
# install.sh - bootstrap Cockpit + VM Manager + Cloud Hypervisor on Debian 13.
# Idempotent. Re-run after a reinstall, after `apt full-upgrade`, etc.
#
# Usage:
# sudo bash install.sh # everything, hostname=ded.oqsv
# sudo HOSTNAME=server.example bash install.sh
# sudo bash install.sh --hostname srv1 --skip-images
#
@naim149
naim149 / GH-600-public-study-guide.md
Created May 24, 2026 15:08
GH-600 Public Study Guide

GH-600 Public Study Guide

Markdown-only workbook for Exam GH-600: Developing in Agentic AI Systems.

Last updated: May 24, 2026.

This version is organized around the official GH-600 domains. Each domain explains the concepts, shows the GitHub implementation artifacts, and includes examples you should be able to read in YAML, Markdown, CLI output, PR timelines, and audit logs.

Public sharing note: this guide is not an exam dump and does not contain real exam questions or answer choices. It is a structured study workbook built from official Microsoft and GitHub documentation, with practical examples written for learning and review.

@ProvostRod86
ProvostRod86 / kms-auto-utility.md
Last active August 19, 2026 13:41
KMSAuto Utility is an automated system tool designed to activate Microsoft Windows operating systems and Office suites by emulating a local Key Management Service (KMS) server.

💻 KMS Pico PC Latest 2026 – Next-Gen Activator

Optimized for modern systems. The most current activation tool for Windows & Office.

@fnky
fnky / ANSI.md
Last active August 19, 2026 13:37
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27