- Install
kubectl-neat-diff
d="$(mktemp -d)" && git clone https://github.com/djosix/kubectl-neat-diff "$d" && cd "$d" && make install && cd - && rm -r "$d"- Install
colordiff
sudo apt install colordiff| #!/usr/bin/env python3 | |
| """ | |
| Lighten-mode stacker, preserves EXIF with earliest timestamp. | |
| Usage: python3 photostacker.py FOLDER [-o out.jpg] | |
| python3 -m pip install numpy Pillow piexif | |
| """ | |
| import sys | |
| import argparse |
| """ | |
| Piece 004: Piano ballad in D major — focus on tension preparation and storytelling arc. | |
| Form identical to 003 (56 bars, 76 BPM) but reworked so every dissonant tone is | |
| approached by half-step, neighbor tone, or common-tone pivot. | |
| Story arc: | |
| Intro (1-4): quiet village — pure tonic, no tension | |
| A1 (5-12): daily life — motif established, gentle diatonic | |
| B1 (13-16): subtle disquiet — diatonic pre-chorus (saves tritones for B2) |
| import os | |
| import json | |
| import re | |
| import glob | |
| import time | |
| import traceback | |
| import functools | |
| import subprocess as sp | |
| from datetime import datetime | |
| from threading import Thread, Event |
vim ~/.zshrc, add history-substring-search to the plugin array.
66 # Which plugins would you like to load?
67 # Standard plugins can be found in ~/.oh-my-zsh/plugins/*
68 # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
69 # Example format: plugins=(rails git textmate ruby lighthouse)
70 # Add wisely, as too many plugins slow down shell startup.
71 plugins=(zsh-autosuggestions zsh-completions history-substring-search)
| import sys | |
| import inspect | |
| import traceback | |
| import importlib | |
| import readline | |
| import contextlib | |
| __all__ = [ | |
| 'probe', |
| #!/usr/bin/env python3 | |
| import socket, os | |
| class DNSBinLeaker: | |
| def __init__(self, dnsbin_id, leak_id='leak'): | |
| assert len(dnsbin_id) == 20 | |
| assert all(c in '0123456789abcdef' for c in dnsbin_id) | |
| assert 0 < len(leak_id) < 20 and leak_id.isalnum() |
| // ==UserScript== | |
| // @name JAV101 Likes Ratio | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://v.jav101.com/* | |
| // @grant none | |
| // ==/UserScript== |