I hereby claim:
- I am viruscmd on github.
- I am stripedpurple (https://keybase.io/stripedpurple) on keybase.
- I have a public key ASBqocHcQwoCayCyP4-vJh7S17SJ47xz8Bxc5ROy8W1iHAo
To claim this, I am signing this object:
MLHFREE9_a4d3fa61d7 | |
MLHFREE9_8a47dc9d20 | |
MLHFREE9_eee3ca438f | |
MLHFREE9_2302c16cea | |
MLHFREE9_22847d5d67 | |
MLHFREE9_e616c26d2a | |
MLHFREE9_be8b26c85c |
<?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>AboutToPasteTabsWithCancel</key> | |
<true/> | |
<key>AboutToPasteTabsWithCancel_selection</key> | |
<integer>2</integer> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> |
#!/bin/bash | |
# Check to see if the script was run as Root | |
if [[ "$EUID" -ne 0 ]]; then | |
echo "Sorry, you need to run this as root" | |
exit 1 | |
fi | |
# This script has only been tested on Ubuntu Server 14.04 X64 | |
# Install apt repositories |
anime movies: | |
======================================================================================== | |
A Silent Voice | |
Akira (1988) | |
Children Who Chase Lost Voices (2011) | |
End of Evangelion | |
Ghost In The Shell 2 Innocense | |
Ghost in the Shell (1995) | |
Ghost in the Shell Stand Alone Complex - Solid State Society | |
Ghost in the Shell Stand Alone Complex - The Laughing Man |
// ==UserScript== | |
// @name Trello Label Revealer | |
// @namespace http://stripedpurple.io | |
// @version 0.1 | |
// @description makes trello labels visible | |
// @author Austin Barrett | |
// @match *trello.com/* | |
// @grant none | |
// ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Window Dimensions | |
// @namespace http://stripedpurple.io | |
// @version 2.0 | |
// @description adds a dimension list to screen | |
// @author Austin Barrett | |
// @match *://localhost/* | |
// @grant none | |
// ==/UserScript== |
#!/bin/bash | |
# Batch creates users | |
# Tested on Ubuntu Server 16.04 | |
# author: Austin Barrett | |
# thanks to Surendra Anne | http://www.linuxnix.com/create-multiple-users-linux/ | |
if [[ -z $1 ]]; then | |
echo -e "Script Usage:\n\t./$(basename $0) user1 user2 user3... userN" | |
exit 1 |
#!/bin/bash | |
sudo apt-get install build-essential git libgnome-keyring-dev fakeroot rpm libx11-dev libxkbfile-dev | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install gcc-5 g++-5 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 80 --slave /usr/bin/g++ g++ /usr/bin/g++-5 | |
sudo update-alternatives --config gcc # choose gcc-5 from the list |
// ==UserScript== | |
// @name FUNI FFMPEG | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http://www.funimation.com/shows/*/videos/official/* | |
// @grant none | |
// ==/UserScript== |