See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
On every machine in the cluster install openmpi and mlx-lm:
conda install conda-forge::openmpi
pip install -U mlx-lmNext download the pipeline parallel run script. Download it to the same path on every machine:
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
| { | |
| "compilerOptions": { | |
| "outDir": "./dist", | |
| "rootDir": "./src", | |
| "lib": ["esnext"], | |
| "target": "ESNext", | |
| "moduleResolution": "NodeNext", | |
| "module": "NodeNext", | |
| "strict": false, | |
| "sourceMap": true, |
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:
Console tab| SERVICES | |
| http://archive.is/ | |
| http://areyouahuman.com/ | |
| http://avatars.io/ | |
| http://beta.mural.ly/ | |
| http://bli.ms/ | |
| http://boxjs.com/ | |
| http://buddypress.org/ | |
| http://carbonmade.com/ | |
| http://dochub.io/ |
| 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/ |
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
| #!/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; |