Skip to content

Instantly share code, notes, and snippets.

@dot-mike
dot-mike / t2-cheatsheet.md
Last active June 30, 2026 16:07
T2 SDE Developer Cheatsheet

T2 SDE Developer Cheatsheet

Quick reference for T2 SDE development, system maintenance and hacking. Run commands from /usr/src/t2-src.

Reference docs:


@ravjot
ravjot / local-llm-beginners-guide.md
Last active June 17, 2026 22:18
Run AI locally on your MacBook Pro - beginner guide

Local LLM Stack for M5 Max 128GB

Recommended Models

Model Strength Size Command
DeepSeek-R1 70B Reasoning, analysis, complex problems 42GB ollama run deepseek-r1:70b
Qwen3 32B Fast general-purpose, good at following instructions 20GB ollama run qwen3:32b
Gemma 3 27B Natural writing, prose, tone-matching 17GB ollama run gemma3:27b
@usrbinkat
usrbinkat / KONDUCTOR.md
Created December 27, 2025 17:40
What's Cookn

KONDUCTOR: Exhaustive Technical Omnibus

Executive Summary

Konductor is a Nix-based, polyglot, AI-first developer workstation distribution that produces:

  • OCI container images for ephemeral development
  • QCOW2 VM images for persistent KubeVirt/libvirt deployments
  • Nix devshells for native machine development
  • NixOS/Home Manager/nix-darwin modules for system-level integration
@usrbinkat
usrbinkat / tinker.md
Created December 17, 2025 17:07
k8s

Building Control Planes: From Classical Patterns to Kubernetes Operators

A primer for experienced engineers approaching Kubernetes API machinery


The Mental Model Journey

Before we dive into Kubernetes specifics, let's establish what we're actually building: a control plane. Not container orchestration, not pod scheduling—those are implementation details of one particular control plane (the one that ships with Kubernetes). We're interested in the machinery itself.

@usrbinkat
usrbinkat / README.md
Created November 29, 2025 19:29
Pixel 6 Pro XL Graphene OS Install Procedure
@aravindanve
aravindanve / bypass-disable-devtool.md
Last active July 13, 2026 16:45
Bypass disable-devtool

(Working as of 2025-02-09)

There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.

Opening devtools

If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.

@usrbinkat
usrbinkat / README.md
Last active June 30, 2026 02:01
Ollama + Open-Webui + Nvidia/CUDA + Docker + docker-compose

Ollama + Open-WebUI + NVIDIA GPU

GitHub stars

A Docker Compose stack for running local LLMs on your own hardware with NVIDIA GPU acceleration, a web UI, and one-command model setup via profiles.

Open-WebUI Interface

What's Included

@diegofcornejo
diegofcornejo / README.md
Created April 11, 2024 06:21
Elasticsearch: Snapshot and Restore

Create repository for snapshots

  • The location is the path where the snapshots will be stored, this path need to be set in the elasticsearch.yml file in the path.repo property
  • example: path.repo: ["/usr/share/elasticsearch/backup"]
  • After setting the path.repo property in the elasticsearch.yml file, restart the elasticsearch service
curl -XPUT -k -u elastic:changeme "https://localhost:9200/_snapshot/repository_backups" -H 'Content-Type: application/json' -d '{
  "type": "fs",
  "settings": {
    "location": "/usr/share/elasticsearch/backup"
 }
@mattwright324
mattwright324 / channels.txt
Last active March 15, 2024 03:32
yt-channel-resolver
https://www.youtube.com/@90sFilmyGaane
https://www.youtube.com/@AASTIKSpiritualSecrets
https://www.youtube.com/@acousticsound
https://www.youtube.com/@acousticsound5879
https://www.youtube.com/@actiondhamaka
https://www.youtube.com/@ActionHeroes
https://www.youtube.com/@ActionHits
https://www.youtube.com/@adityamovies
https://www.youtube.com/@AdkGujaratiProduction
https://www.youtube.com/@AkkNedlyamenya
@BadMagic100
BadMagic100 / i2cpp_ghidra.md
Last active July 13, 2026 17:34
Instructions to get a useful decompilation out of an il2cpp game. Or, "I spent hours to trial and error so hopefully you won't have to"

Decompiling IL2CPP Games with Il2CppDumper and Ghidra

This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.

Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.

Prerequisites

  1. Download Il2CppDumper