Skip to content

Instantly share code, notes, and snippets.

@djibe
djibe / windows11-24H2-tpm-secureboot.md
Last active March 24, 2026 18:11
Install Windows 11 24H2 without TPM and Secure Boot requirements

Install Windows 11 24H2 without TPM and Secure Boot requirements

  1. Create a Windows 11 ISO with Microsoft's Media Creation Tool
  2. Install Setup Patchium and run it (or try latest Rufus version directly and patch from there)
  3. Home tab: Select ISO, wait during processing
  4. Go to Install > Uncheck Remove upgrade and Check Disable Windows 11 compatibility restrictions, click Apply
  5. Optional: To install without a Microsoft account, go to Install OOBE tab. Click Integrate lumOOBE. This will break sysinstall.
  6. Click on Create ISO button
  7. Use Rufus or Ventoy (prefered) to run installation from a USB drive
@DartPower
DartPower / Astra.md
Last active March 24, 2026 18:10
Astra Linux ISO / Коллекция ссылок на Astra Linux

Beast Mode

Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.

Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
@enrique-barros
enrique-barros / python_mysql.md
Created January 14, 2026 16:27
Curso Python/MySQL

🐍 Python + MySQL Masterclass: De Cero a Profesional

¿Quieres llevar tus habilidades en Python al siguiente nivel integrando bases de datos reales en tus proyectos? Esta masterclass de casi 10 horas es tu guía definitiva para dominar el trabajo con MySQL desde Python, aprendiendo desde los fundamentos hasta la construcción de una aplicación completa con interfaz gráfica profesional.


🎓 ¿Qué aprenderás en este curso?

Este curso está diseñado para ofrecerte una formación completa y práctica. Aprenderás a:

@Sanne
Sanne / IncusSandbox.md
Last active March 24, 2026 18:04
Incus based secure sandbox isolation

Secure Identity Isolation on Fedora using Incus

This guide explains how to set up a secure, hardware-isolated workspace on Fedora using Incus (System Containers). Unlike standard Docker or Podman, this setup provides a strict security boundary for a secondary "Work" identity while still allowing graphical applications (like a web browser) to run smoothly at native speeds.

Prerequisites

  • A host machine running Fedora.
  • You must be the primary user on the machine (which uses the standard User ID 1000).

@metaColin
metaColin / ipod-video-encode.sh
Created August 29, 2023 08:42
This script uses FFMPEG to convert videos to formats compatible with various iPods based on encoding profiles described in Apple technical specifications.
t#!/bin/bash
#
# Script Name: Colin's iPod Video Encoding Tool
# Version 0.2
# Description: This script uses FFMPEG to convert videos to formats compatible with various iPods based on encoding profiles described in Apple technical specifications.
# Author: Colin Steinmann
# Contact: https://github.com/metaColin
# Date: August 29, 2023
#
# License:
@FazziCLAY
FazziCLAY / disable-ech.bat
Last active March 24, 2026 17:49
[Windows] Disable ClientHello in CloudFlare
@echo off
REM Made by fazziclay.com
REM Related: https://habr.com/ru/articles/856602/
REM LIN: https://gist.github.com/FazziCLAY/75f72acc8b728530a637121fdee4dfb5
REM WIN: https://gist.github.com/FazziCLAY/38f56ab423a0e0a2f864985cf3ce21be
REM scroll down in overview domain
set ID_ZONE=1111
REM https://dash.cloudflare.com/profile/api-tokens
@Incipiens
Incipiens / lcc.sh
Created March 20, 2026 16:10
This is my script that I use for launching an instance of Claude Code using my local LLM, and it was written for an XDA article. Save it, edit the IP and port, and mark as executable to use.
#!/usr/bin/env bash
# lcc - Local Claude Code launcher
# Points Claude Code at a local LLM served by llama.cpp on your GB10 device
#
# Usage:
# lcc <modelname> — launch Claude Code with the specified model
# lcc <modelname> [args] — pass additional arguments to claude
# lcc — show help/launch with model if one is available
#
# Prerequisites:
@2KAbhishek
2KAbhishek / Shell_Keybindings.md
Last active March 24, 2026 17:48
Keyboard shortcuts for bash/zsh

Shell Keybindings

Navigation 🚀

Keybinding Action
Alt + f/b Move cursor to previous/next word
Ctrl + a/e Move cursor to beginning/end of command
Ctrl + xx Toggle between the start of line and current cursor position
@ddmitov
ddmitov / llama_cpp_deterministic.sh
Created March 22, 2026 11:20
Demonstrator of deterministic output from llama.cpp
#!/usr/bin/env bash
# This script demonstrates deterministic output from llama.cpp.
# Place it in an empty directory, run it and it will:
# 1. Clone llama.cpp
# 2. Build llama-cli, it takes a few minutes
# 3. Download a small model
# 4. Run the same prompt twice with the same settings
# 5. Compare the outputs and print whether they are identical