Skip to content

Instantly share code, notes, and snippets.

@TRB-Exe
TRB-Exe / windowsfastactivation.md
Last active June 4, 2026 21:46
Windows 10 fast activation from cmd

Super easy and fast activation from command prompt

Run cmd.exe with Admin permissions and enter commands for your system. Note: the keys is for Professional editions of Windows.

windows 10/11

slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms.digiboy.ir
slmgr /ato
@aparente
aparente / SKILL.md
Last active June 4, 2026 21:39
tufte-viz Claude Code skill — Edward Tufte data visualization principles

name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays

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.

@jborean93
jborean93 / Invoke-WithImpersonation.ps1
Last active June 4, 2026 21:04
Invoke a scriptblock in powershell with impersonation
# Copyright: (c) 2020, Jordan Borean (@jborean93) <jborean93@gmail.com>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
Function Invoke-WithImpersonation {
<#
.SYNOPSIS
Invoke a scriptblock as another user.
.DESCRIPTION
Invoke a scriptblock and run it in the context of another user as supplied by -Credential.
@shrey150
shrey150 / compare-sec-filings.ts
Created June 4, 2026 19:38
Browserbase x Anthropic Opus 4.8 Webinar
// Stagehand + Browserbase: an AI agent that researches SEC filings on its own.
//
// We give Stagehand a plain-English task, point it at SEC EDGAR, and let its
// `agent` autonomously navigate, read 10-Q filings, and build a comparison
// table — no selectors, no scraping code, no per-site logic.
import "dotenv/config";
import { exec } from "node:child_process";
import { Stagehand } from "@browserbasehq/stagehand";
@programming086
programming086 / Links.md
Last active June 4, 2026 20:48
Reverse engineering macOS/iOS/iPadOS

Setup

git clone <repo>

clone the repository specified by ; this is similar to "checkout" in some other version control systems such as Subversion and CVS

Add colors to your ~/.gitconfig file:

@rliessum
rliessum / gist:288604c6899e898957dc5d504ce76a48
Created November 28, 2025 10:44
Script to set an optimal color profile and balance on a Corsair Xeneon Edge touchscreen display on macOS without using iCue.
#!/bin/bash
# Corsair Xeneon Edge Color Calibration Script
# Based on Tweakers.net review findings:
# https://tweakers.net/reviews/13662/corsair-xeneon-edge-tof-idee-maar-dramatisch-uitgevoerd.html
#
# The factory settings prioritize brightness (365 cd/m²) over color accuracy.
# This script applies calibrated settings for better color reproduction (~255 cd/m²).
set -e