Skip to content

Instantly share code, notes, and snippets.

Visual Studio 2026 18.x
Professional: NVTDK-QB8J9-M28GR-92BPC-BTHXK
Enterprise: VYGRN-WPR22-HG4X3-692BF-QGT2V
Product Year Version Product Keys
Visual Studio 2022 2021 17.x
Professional: TD244-P4NB7-YQ6XK-Y8MMM-YWV2J
Enterprise: VHF9H-NXBBB-638P6-6JHCY-88JWH
Visual Studio 2019 2019 16.x
@bergpb
bergpb / convert_pdf_epub.py
Last active February 16, 2026 20:53
Script to convert pdf to epub.
import os
from time import sleep
path = os.getcwd()
files = os.listdir(path)
#install package
os.system('sudo apt install calibre -y && sudo apt update')
#remove espacos e insere _
@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 16, 2026 20:52
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
@IseduardoRezende
IseduardoRezende / update-my-system.ps1
Created February 13, 2026 19:56
Script to update Windows system and applications safely and easily.
Write-Host "=== COMPLETE SYSTEM UPDATE ===" -ForegroundColor Cyan
# 1. WINDOWS UPDATE (including optional)
Write-Host "`n[1/4] Checking Windows Update..." -ForegroundColor Yellow
if (-not (Get-Module -ListAvailable -Name PSWindowsUpdate)) {
Install-Module PSWindowsUpdate -Force -Scope CurrentUser
}
Import-Module PSWindowsUpdate
@ksprashu
ksprashu / GEMINI.md
Last active February 16, 2026 20:49
Personal GEMINI.md as on 29-07-2025

Gemini Agent: Core Directives and Operating Protocols

@karpathy
karpathy / microgpt.py
Last active February 16, 2026 20:52
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@jeguzzi
jeguzzi / Instructions.md
Last active February 16, 2026 20:44
How to compile CoppeliaSim on Linux

How to compile CoppeliaSim (v4.4) from source on Linux

Tested on Ubuntu 22.04 (arm64 and x64)

  1. Install dependicies

  • pip: sudo apt install python3-pip
  • colcon: pip install -U colcon-common-extensions
@tsl0922
tsl0922 / .tmux.conf
Last active February 16, 2026 20:39
vim style tmux config
# vim style tmux config
# use C-a, since it's on the home row and easier to hit than C-b
set-option -g prefix C-a
unbind-key C-a
bind-key C-a send-prefix
set -g base-index 1
# Easy config reload
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."