I hereby claim:
- I am gardner on github.
- I am gbickford (https://keybase.io/gbickford) on keybase.
- I have a public key ASC1xdWdbMj5Wox1M_C7kCEXZ9m8XkVcRsTLRAyh7585cgo
To claim this, I am signing this object:
{ | |
"gitlens.codeLens.enabled": false, | |
"breadcrumbs.enabled": true, | |
"prettier.eslintIntegration": true, | |
"eslint.autoFixOnSave": true | |
} |
gsettings set org.gnome.desktop.wm.keybindings switch-applications "[]" | |
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "[]" | |
gsettings set org.gnome.desktop.wm.keybindings switch-windows "['<Alt>Tab', '<Super>Tab']" | |
gsettings set org.gnome.desktop.wm.keybindings switch-windows-backward "['<Alt><Shift>Tab', '<Super><Shift>Tab']" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
export GREP_OPTIONS='--color' | |
## Save everything | |
export PROMPT_COMMAND='if [ "$(id -u)" -ne 0 ]; then echo "$(date "+%Y-%m-%d.%H:%M:%S") $(pwd) $(history 1)" >> ~/.logs/bash-history-$(date "+%Y-%m-%d").log; fi' | |
# Print some useful milestones | |
python -c "from datetime import date; print '%s days until beta' % (date(2018,04,07) - date.today()).days; print '%s days until release' % (date(2018,10,7) - date.today()).days; print '%s days left of TSM ' % (90 - (date.today() - date(2017,9,10)).days)" & |
// ==UserScript== | |
// @name Hotels.com Silence Urgency | |
// @namespace https://gist.github.com/gardner/3196364c7c6c701d800906757798ae6c | |
// @version 0.1 | |
// @description Remove annoying urgency decorations from Hotels.com booking website | |
// @author Gardner Bickford | |
// @match https://www.hotels.com/* | |
// @grant none | |
// ==/UserScript== |
You need to install ARMv5 gcc cross compiler: apt-get install gcc-arm-linux-gnueabi
You have to define a directory (via --prefix) where all of your binaries will be installed (copied). In the guide I use the following: /home/user/vpn_compile
wget https://www.openssl.org/source/openssl-1.0.2j.tar.gz
#!/bin/bash | |
# @see https://kb.vmware.com/s/article/1017838 | |
rm -rf "/Library/Application Support/VMware" | |
rm -rf "/Library/Application Support/VMware Fusion" | |
rm -rf "/Library/Preferences/VMware Fusion" | |
rm -rf "~/Library/Application Support/VMware Fusion" | |
rm -rf "~/Library/Caches/com.vmware.fusion" | |
rm -rf "~/Library/Preferences/VMware Fusion" |
#!/bin/sh | |
# This file is part of netfilter-persistent | |
# (was iptables-persistent) | |
# Copyright (C) 2009, Simon Richter <[email protected]> | |
# Copyright (C) 2010, 2014 Jonathan Wiltshire <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU General Public License | |
# as published by the Free Software Foundation, either version 3 |
[email protected]:~# sysbench --test=cpu --cpu-max-prime=20000 run | |
sysbench 0.4.12: multi-threaded system evaluation benchmark | |
Running the test with following options: | |
Number of threads: 1 | |
Doing CPU performance benchmark | |
Threads started! | |
Done. |
#!/bin/bash | |
# Update Debian | |
apt-get update && apt-get upgrade -y && apt-get install apt-transport-https fail2ban rkhunter -y | |
# Remove apt versions of lynis (should not be required on new instance) | |
apt-get remove --purge lynis | |
# Add lynis apt repo | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C80E383C3DE9F082E01391A0366C67DE91CA5D5F | |
echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/99disable-translations |