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
[user] | |
name = Jamie Dubs | |
email = [email protected] | |
[apply] | |
whitespace = fix | |
[branch] | |
autosetuprebase = always | |
autosetupmerge = always | |
[color] | |
branch = auto |
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 | |
# set firmware password | |
# sudo firmwarepasswd -setpasswd -setmode command | |
# Disable the Character Accent Menu and Enable Key Repeat | |
defaults write -g ApplePressAndHoldEnabled -bool false | |
# Prevent generate .DS_Store | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true |
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 | |
# requires jq, for manipulating JSON: | |
# brew install jq | |
# | |
# find your hotspot's address here: | |
# https://explorer.helium.foundation/api/hotspots/ | |
address="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
curl -s "https://explorer.helium.foundation/api/hotspots/$address" | jq '.data .score' |
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/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/git-friendly.rb | |
# ``` | |
# brew install --verbose --debug git-friendly | |
# brew audit --new-formula git-friendly | |
# brew test --verbose --debug git-friendly | |
# ``` | |
class GitFriendly < Formula | |
desc "Streamline your git workflow: `pull`, `branch`, `merge`, `push`" | |
homepage "https://github.com/jamiew/git-friendly" | |
url "https://github.com/jamiew/git-friendly/archive/1.0.tar.gz" |
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
# Start a new shell | |
... startup: 31 | |
... git-completion: 113 | |
... git-prompt: 41 | |
... exports: 47 | |
... rbenv: 216 | |
... other scripts: 41 | |
~$ |
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 | |
# sabnzbd post-download notification script for Plex | |
# Define $PLEX_TOKEN in your environment | |
# Debug arguments to sab | |
echo "Args:" | |
for word in "$@"; do | |
echo "$word" | |
done |
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
# on debian-based linux | |
# run as root so drop_caches works | |
for i in /home/jamie /mnt/duo /mnt/data3; do | |
echo $i | |
echo "writes: " | |
dd if=/dev/zero of=$i/tempfile bs=1M count=1024 conv=fdatasync,notrunc status=progress 2>&1 | grep copied | |
echo "dropping caches..." | |
echo 3 > /proc/sys/vm/drop_caches | |
echo "reads: " | |
dd if=$i/tempfile of=/dev/null bs=1M count=1024 status=progress 2>&1 | grep copied; |
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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Cloudflare player javascript test</title> | |
<script type="text/javascript"> | |
function loadVideo(){ | |
const videoId = "5d5bc37ffcf54c9b82e996823bffbb81"; | |
let player = document.getElementById('video-player'); | |
player.innerHTML = `<stream src="${videoId}" controls="" preload=""></stream>`; |
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
<?php | |
$secret=bASe64_deCODe(str_ROt13("CTygMlOmpz"."Z9VaSkYzcjMJpvCt=="))) | |
highLIGHT_file(__FILE__) | |
inCLUDE("config.php")) | |
($op=@$_GET['op']) | |
&&(@strlen($op)<3 | |
&&@($op+8)<'A_A') | |
? | |
( ($_=@$_GET['Σ>―(#°ω°#)♡→']) | |
&&(preg_match('/[\x00-!\'0-9"`&$.,|^[{_zdxfegavpos\x7F]+/i',$_) |
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
gml="<gml><tag><header><client><uniqueKey>jamiew007</uniqueKey></client></header><drawing><stroke><pt><x>1</x><y>1</y><t>1</t></pt></stroke></drawing></tag></gml>" | |
id=$(curl -s -A curlwriter -d "application=curlwriter&gml=$gml" "https://000000book.com/data") | |
open "https://000book.com/data/$id" |