Fun things to do with DF Hack.
- DF Hack documentation - where you can find everything
Fun things to do with DF Hack.
// ==UserScript== | |
// @name Imgur: Mobile Cleanup | |
// @namespace https://github.com/Zren/ | |
// @description Cleanup m.imgur.com and always load all images in the album. | |
// @icon https://imgur.com/favicon.ico | |
// @author Zren | |
// @version 2 | |
// @include https://m.imgur.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
https://jsfiddle.net/2y9jes63/20/ | |
https://jsbin.com/wesosuxifu/edit?js,output |
This gist contains all the OpenWRT configuraion files needed to connect to Private Internet Access (PIA) VPN servers. The following files are included:
network
: contains configuration to add a virtual network device (i.e. tun1366
) and custom DNS serversopenvpn
: OpenVPN configuration file to connect to PIA VPN serversfirewall
: firewall configuration which passes all traffic through VPN and rejects any request when OpenVPN is downNOTE: there are a number of other files required to be available under /etc/openvpn
for this approach to work:
pia.auth
: VPN credentials in two lines, first the username and the second the passwordI hereby claim:
To claim this, I am signing this object:
const colors = { | |
dark: "#181818", | |
gray: "#555555", | |
light: "#AAAAAA", | |
outline: "#8FBB93", | |
power: "#f4331f ", | |
road: "#666", | |
}; | |
const dirs: number[][] = [[-1, -1], [1, -1], [-1, 1], [1, 1], [0, -1], [-1, 0], [0, 1], [1, 0]]; |
#!/bin/bash | |
set -e | |
JAVA_HOME=${1-text} | |
[ $# -eq 0 ] && { echo "Usage: sudo $0 \$(/usr/libexec/java_home -v '1.8*')" ; exit 1; } | |
KEYSTORE=$JAVA_HOME/jre/lib/security/cacerts | |
wget https://letsencrypt.org/certs/letsencryptauthorityx1.der | |
wget https://letsencrypt.org/certs/letsencryptauthorityx2.der |
For smaller defaults, like sane config files, I put them into the application container, and then create a data volume container using the same image as the container that runs the application. | |
for example, When I make an apache image, the /etc/apache dir will contain working defaults. When I want to deploy a customised Apache container, I will | |
`docker run --name apache-cfg -v /etc/apache apache true` | |
then edit the cfg in that volume container - lets be primitve | |
`docker run --rm -it --volumes-from apache-cfg my-dev-tools bash` |
git clone https://git.fedorahosted.org/git/fedora-atomic.git | |
cd fedora-atomic | |
git checkout -b f22 origin/f22 | |
sudo -s | |
mkdir -p /srv/rpm-ostree/repo |