start new:
tmux
start new with session name:
tmux new -s myname
#!/bin/sh | |
# /etc/network/if-up.d | |
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
# /sys/devices/platform/gpio-leds/leds | |
echo cpu > /sys/devices/platform/gpio-leds/leds/green\:sys/trigger | |
[ "$IFACE" != "lo" ] || exit 0 |
#!/bin/sh | |
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
# JAIL | |
ipset -N JAIL hash:net maxelem 65536 -exist | |
if ! iptables -S | grep -q -- "JAIL"; then | |
iptables -t filter -I INPUT \ | |
-p tcp \ |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>NSPrivacyAccessedAPITypes</key> | |
<array> | |
<dict> | |
<key>NSPrivacyAccessedAPIType</key> | |
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string> | |
<key>NSPrivacyAccessedAPITypeReasons</key> |
## https://www.zhihu.com/question/424089478 | |
import hashlib | |
def getpwd(uid): | |
uid = bytearray.fromhex(uid) | |
h = bytearray.fromhex(hashlib.sha1(uid).hexdigest()) | |
pwd = "" | |
pwd = "X" % h[h[0] % 20] |
New Ventura docs for M2 Macs in this comment: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd?permalink_comment_id=4555340#gistcomment-4555340
Old Monterey docs in this old revision: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd/32c410e3a1de73539c76fa13ea5486569c4e0c5d
wants to use your confidential Chromium safe storeage | |
https://imgur.com/a/zeXW6Di |
Based on this blogpost.
To sign Git commits, you need a gpg key. GPG stands for GNU Privacy Guard and is the de facto implementation of the OpenPGP message format. PGP stands for ‘Pretty Good Privacy’ and is a standard to sign and encrypt messages.
Install with Homebrew:
$ brew install gpg