I hereby claim:
- I am hjc1710 on github.
- I am hjc1710 (https://keybase.io/hjc1710) on keybase.
- I have a public key whose fingerprint is B4C9 16C2 664B 2528 6C06 729A 41E6 5A2F 9B3A 3CCC
To claim this, I am signing this object:
| hayden@beardtop {~/gits} ~> git clone git@github.com:croscon/mc3lite.git mc3 | |
| Cloning into 'mc3'... | |
| remote: Counting objects: 26225, done. | |
| remote: Compressing objects: 100% (232/232), done. | |
| remote: Total 26225 (delta 3141), reused 2991 (delta 2991), pack-reused 23002 | |
| Receiving objects: 100% (26225/26225), 50.81 MiB | 12.88 MiB/s, done. | |
| Resolving deltas: 100% (18808/18808), done. | |
| Checking connectivity... done. | |
| hayden@beardtop {~/gits} ~> cd mc3 | |
| hayden@beardtop (develop) {~/gits/mc3} ~> npm install |
I hereby claim:
To claim this, I am signing this object:
| # Path to your oh-my-zsh installation. | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="agnoster" | |
| # Example aliases |
I hereby claim:
To claim this, I am signing this object:
| no-screensaver () { | |
| COUNTER=0; | |
| while [ $COUNTER -ne "-1" ]; do | |
| xdotool mousemove $COUNTER 0 | |
| COUNTER=$(echo "$COUNTER + 5" | bc) | |
| if [ $COUNTER -eq "255" ]; then | |
| COUNTER=0 | |
| fi | |
| sleep 7m; | |
| done |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvfyNPxR68k0zfNOXIHMipMwPqHie3JBzoyusrZHlDC8O0CEjP3iDppVZrfMgRJlEB4EhZcXKb45Mc7LeJd4aLOK7//GzG46p98+8rg0ursBlX5iL0zDJUn42M7a2hLWuRiB1DcIuyeQNp8fux0N4ur7HizDLtnUk20xsKfV6L55OsMszC0nTV+CW2hmKUkWbxer339u87duie0iE57cs/WyTZDiLeWZJQ4pOUpR95nu0dqUdgU1nnPxQmSI2bnsQ+9TqwSqvoXaZTpG0vUX6PzNYaLHuCOCA5XFPnNVVEkAjGf5Py8Om1YH/cAZh2o7cc0ZV9D5sYljapBnKRSH4Aw== hjc1710@gmail.com |
| Host * | |
| ServerAliveInterval 10 | |
| IdentitiesOnly yes | |
| Cipher blowfish | |
| Ciphers blowfish-cbc | |
| AskPassGUI no | |
| CheckHostIP yes | |
| Compression no | |
| ForwardAgent no | |
| ForwardX11 no |
| <?php | |
| //I don't play this mismatched boolean logic bullshit, its true or | |
| // false, never 1 or 0 | |
| $bool_replaces = [ | |
| '0' => false, | |
| "1" => true, | |
| false => false, | |
| true => true, | |
| 0 => false, | |
| 1 => true, |
| /** | |
| * This binding has required parameters and should be an object, they are: | |
| * | |
| * observable - the observable we want to look at and evaluate to see if we | |
| * should change focus | |
| * | |
| * evaluator - a function to determine if we should change focus. It should | |
| * return true whenever we want to change focus and false otherwise, see | |
| * below for how to add extra arguments onto the function. Any function can | |
| * be used as long as you can provide the correct scope for it from the HTML |
| # On Virtual Box? | |
| # Ensure your networking type is bridged interface or this will fail | |
| sudo vim /etc/network/interfaces | |
| # comment (#) out all lines that are there and add this to the bottom (however, replace | |
| # the * in the address with whatever you want the static IP to be, e.g., my goal is a | |
| # static IP of: 192.168.1.140, so the address line should be: address 192.168.1.140): | |
| auto lo eth0 |