Skip to content

Instantly share code, notes, and snippets.

@AliBigdeli
AliBigdeli / django-uv-setup.md
Last active August 20, 2026 20:19
django + uv

Django + uv Setup Cheat Sheet

A practical README.md / Gist for setting up Django with uv, including:

  • Python version management
  • Project initialization
  • Installing / adding / removing packages
  • Pinning package versions
  • Updating dependencies
  • Base uv commands
@henry9726
henry9726 / README.txt
Created April 17, 2024 15:22 — forked from mikepianka/README.txt
Python http.server exe
This is Python's http.server that has been bundled to an .exe using PyInstaller. You can use it as a local web server for testing.
Run the local server
1. Copy the server.exe into the folder you want to serve and then double click it to start the local server.
2. A window will pop up letting you know the server is running on port 8000.
3. Open http://localhost:8000/ in your web browser.
4. When you are done, simply close the server.exe window to stop the local server.
If you have another service running on port 8000, you can run on a different port like so:
1. Open Command Prompt
@hYdos
hYdos / 1.8.9.tiny
Created July 5, 2020 23:21
1.8.9 mappings used for badlion decomp project
This file has been truncated, but you can view the full file.
tiny 2 0 official intermediary named
c a net/minecraft/class_1 net/minecraft/util/Formatting
m (I)La; a method_1 byColorIndex
p 0 colorIndex
m (Ljava/lang/String;)Ljava/lang/String; a method_2 strip
p 0 string
m (ZZ)Ljava/util/Collection; a method_3 getNames
p 0 colors
p 1 modifiers
@aleister1102
aleister1102 / registerCourses.js
Last active August 20, 2026 20:11
Script camp Δ‘Δƒng kΓ½ học phαΊ§n sα»­ dα»₯ng Tampermonkey
var expectedCourses = {CSC11002: "20_4",CSC15002: "20_22"}
var interval = 10
function register() {
const courses = document.querySelectorAll("table:not(#tbDSDaDK) tbody tr")
const submit = document.querySelectorAll("input[type='submit']")[1]
function selectExpectedCourses() {
let found = false
courses.forEach((course) => {
@chasehoward11
chasehoward11 / claude-code-job-search-build.md
Last active August 20, 2026 20:04
Job application automation build with Claude Code

The Job Search Automation Build (Claude Code)

The build from my TikTok: paste a job posting URL, get back a Gmail draft with a tailored resume PDF attached, addressed to real people at the company. You review it and hit send. About 90 seconds per application instead of 45 minutes.

This guide shows you how to build your own copy with Claude Code. No code from my version is needed: you describe the system, Claude Code writes it for you.

What it does (the flow)

job posting URL
@Bluscream
Bluscream / obs_twitch_chat.css
Last active August 20, 2026 20:03
Twitch chat transparent popout for OBS
/*
Twitch chat browsersource CSS for OBS
Original by twitch.tv/starvingpoet modified by github.com/Bluscream
Just set the URL as either one of
- https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true
- https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat
- https://www.twitch.tv/embed/%%TWITCHCHANNEL%%/chat?parent=localhost
And paste this entire file into the CSS box or paste direct import css like
@ongkiii
ongkiii / IPA-Sources.md
Last active August 20, 2026 19:56
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
SQL Server 2017
----------------
Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83
Developer - 22222-00000-00000-00000-00000
Enterprise - TDKQD-PKV44-PJT4N-TCJG2-3YJ6B
Standard - PHDV4-3VJWD-N7JVP-FGPKY-XBV89
Web - WV79P-7K6YG-T7QFN-M3WHF-37BXC
https://www.teamos-hkrg.com/index.php?threads/microsoft-sql-server-english-2017-rtm-teamos.42103/
@danii1
danii1 / README.md
Last active August 20, 2026 19:54
Force EDID override on Apple Silicon Macs using private IOAVService API (fixes KVM switch 4K issues)

force-edid

Force a custom EDID on external displays connected to Apple Silicon Macs (M1/M2/M3/M4).

Uses the private IOAVServiceSetVirtualEDIDMode API to dynamically override EDID at runtime β€” the only method that works on Apple Silicon (file-based plist overrides are ignored).

Use case

KVM switches often report fake/limited EDID to macOS, causing external displays to be stuck at 1080p even when they support 4K. This tool lets you apply the monitor's real EDID, unlocking the full resolution.

@Maciejdziuba
Maciejdziuba / README.md
Last active August 20, 2026 19:52
The Software Factory Playbook β€” Dex Horthy's 4-gate workflow (Product β†’ Architecture β†’ Program Design β†’ Vertical Slices) as an installable Claude Code skill. From the Dex Horthy episode on David Ondrej's podcast.

The Software Factory Playbook β€” Dex Horthy's 4-gate workflow as a skill

A Claude Code Agent Skill built from Dex Horthy's (HumanLayer) playbook on David Ondrej's podcast.

"Once the model has written thousands of lines of code, it is harder to change. The sessions that generate design docs are context-light β€” you get the most model intelligence when you do the hard thinking early."

By default, agents build horizontally: all the backend, then all the frontend, then a 2,000-line diff lands in your lap and reviewing it is your problem. This skill flips that. Every decision that matters gets made before the code exists β€” where changing your mind costs a sentence, not a rewrite.

What it does