Skip to content

Instantly share code, notes, and snippets.

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active December 22, 2025 19:37
Conventional Commits Cheatsheet
@awni
awni / mlx_distributed_deepseek.md
Last active December 22, 2025 19:34
Run DeepSeek R1 or V3 with MLX Distributed

Setup

On every machine in the cluster install openmpi and mlx-lm:

conda install conda-forge::openmpi
pip install -U mlx-lm

Next download the pipeline parallel run script. Download it to the same path on every machine:

@alirezarezvani
alirezarezvani / claude-code-skills-complete-guide.md
Last active December 22, 2025 19:31
Ultimate guide to extending Claude Code with skills, agents, commands, and utilities. Covers Tresor (ready-to-use), Skill Factory (custom builds), and Skills Library (26+ domain packages).

Complete Guide to Claude Code Augmentation: Skills, Agents, Commands & Utilities (2025)

Ultimate resource for extending Claude Code with custom skills, specialized agents, slash commands, and professional utilities

Last Updated: October 28, 2025 | Author: Alireza Rezvani | License: MIT


📋 Table of Contents

@codigoconjuan
codigoconjuan / tsconfig.json
Created December 8, 2023 00:30
TypeScript Config
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"lib": ["esnext"],
"target": "ESNext",
"moduleResolution": "NodeNext",
"module": "NodeNext",
"strict": false,
"sourceMap": true,
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 22, 2025 19:27
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
LuaJIT - JIT for the popular LUA scripting language https://luajit.org/luajit.html
Magic Wormhole - conveniently transfer files directly from one computer to another https://github.com/magic-wormhole/magic-wormhole
ffmpeg - antagonizes Theo https://www.ffmpeg.org/
rclone - cli tool for copying/syncing files across network or to/from cloud services: https://rclone.org/
mergerfs - union filesystem on linux: https://trapexit.github.io/mergerfs/
mkvtoolnix - cli tools for mkv file property editing/muxing/etc: https://mkvtoolnix.download/
Calibre - e-book management/conversion: https://calibre-ebook.com/
Subtitle Edit - video subtitle editor: https://www.nikse.dk/subtitleedit
FreeTube - client for youtube without google nonsense: https://freetubeapp.io/
SmartTube - similar as above but for AndroidTV's: https://smarttubeapp.github.io/
@onlurking
onlurking / programming-as-theory-building.md
Last active December 22, 2025 19:16
Programming as Theory Building - Peter Naur

Programming as Theory Building

Peter Naur

Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct

@Wollw
Wollw / bashbot.sh
Created August 12, 2012 07:07
IRC bot in written in bash
#!/usr/bin/env bash
# Open a connection to canternet
exec 3<>/dev/tcp/irc.canternet.org/6667;
# Login and join the channel.
printf "NICK BashBot\r\n" >&3;
printf "USER bashbot 8 * :IRC Bot in Bash\r\n" >&3;
sleep 2;
printf "JOIN #HackingIsMagic\r\n" >&3;