This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<array> | |
<dict> | |
<key>Activate</key> | |
<string>Normal</string> | |
<key>CreationDate</key> | |
<real>657891648.46214402</real> | |
<key>Macros</key> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
INSTALL_DIR="/etc/dnscrypt-proxy" | |
LATEST_URL="https://api.github.com/repos/jedisct1/dnscrypt-proxy/releases/latest" | |
Update() { | |
workdir="$(mktemp -d)" | |
curl -sL $(curl -sL "$LATEST_URL" | | |
grep dnscrypt-proxy-linux_arm64- | grep browser_download_url | head -1 | cut -d \" -f 4) | | |
tar xz -C "$workdir" -f - linux-arm64/dnscrypt-proxy && |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import requests | |
import sys | |
""" | |
This script converts a Goodreads export csv into a Book Track friendly csv. | |
It does this by querying Google Books' api for each book and adding its id, | |
along with removing some of the other unnecessary fields in the original | |
export. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Produced by Beyond Compare 4 from Scooter Software --> | |
<!-- | |
This is an extension of the work done by Nate Finch: | |
https://npf.io/2014/05/diffing-go-with-beyond-compare/ | |
The regular expressions for identifiers have been updated | |
to match on lowercase and allow numbers to be included anywhere | |
after the first character of the word. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gather system details. | |
dt=$(date -R) | |
freq=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq) | |
volts=$(sudo /opt/vc/bin/vcgencmd measure_volts) | |
temp=$(sudo /opt/vc/bin/vcgencmd measure_temp) | |
gov=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor) | |
up=$(uptime) | |
# Print System details | |
echo " " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adss.video.qq.com | |
bugly.qq.com | |
dp3.qq.com | |
fusion.qq.com | |
pingtas.qq.com | |
huatuocode.weiyun.com | |
report.huatuo.qq.com | |
vd.l.qq.com | |
nex.163.com | |
sentry.music.163.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Requirements : goku, jq | |
# 1. Make sure goku runs | |
goku | |
# 2. Make temp json file | |
cp ~/.config/karabiner/karabiner.json ~/.config/karabiner/karabiner.tmp.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://github.com/pi-hole/docker-pi-hole/blob/master/README.md | |
docker run -d \ | |
--name pihole \ | |
-p 53:53/tcp -p 53:53/udp \ | |
-p 80:80 \ | |
-p 443:443 \ | |
-e ServerIP="$(ipconfig getifaddr en0)" \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=snell | |
After=network.target | |
[Service] | |
Type=simple | |
User=nobody | |
Group=nogroup | |
LimitNOFILE=32768 | |
Restart=on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GO111MODULE=on go mod init | |
GO111MODULE=on go mod vendor | |
git add go.mod go.sum vendor | |
git rm Gopkg.toml Gopkg.lock |
NewerOlder