Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am nizmow on github.
  • I am nizmow (https://keybase.io/nizmow) on keybase.
  • I have a public key ASBa4HKYJS7OERJhLs_ya6JyO89zSXXTH6aiGkVtONCALgo

To claim this, I am signing this object:

if [[ ! -d ~/.zplug ]]; then
git clone https://github.com/zplug/zplug ~/.zplug
source ~/.zplug/init.zsh && zplug update --self
fi
source ~/.zplug/init.zsh
zplug "zplug/zplug"
zplug "zsh-users/zsh-completions"
zplug "zsh-users/zsh-syntax-highlighting"
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
<!-- generic substitutions -->
<!-- Prefer fonts for generics -->
<alias>
<family>serif</family>
<prefer><family>Tinos</family></prefer>
</alias>
@nizmow
nizmow / boxstarter-dev.ps1
Last active June 12, 2018 10:13 — forked from omniscient/boxstarter-dev.ps1
My dev box setup
######## Boxstarter script - based on https://gist.github.com/philchuang/20bbdacffbf9ecc8cc3a#file-phil-dev-vm-boxstarter-package-ps1 ########
###############
#### notes ####
###############
### running remotely on VM fails on Configuring CredSSP settings
## check http://blogs.technet.com/b/heyscriptingguy/archive/2012/12/30/understanding-powershell-remote-management.aspx
### running locally on VM

Keybase proof

I hereby claim:

  • I am nizmow on github.
  • I am nizmow (https://keybase.io/nizmow) on keybase.
  • I have a public key whose fingerprint is F840 FA84 DA96 54CB 4C62 7314 E742 96C8 EE3C C555

To claim this, I am signing this object:

@nizmow
nizmow / 0_reuse_code.js
Last active August 29, 2015 14:22
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@nizmow
nizmow / gist:e62ee4aea45bf615240c
Created August 12, 2014 01:17
AppleScript for toggling Play/Pause in Plex Web
tell application "Safari"
repeat with theWindow in (get every window)
repeat with currTab in theWindow's tabs
if name of currTab is equal to "Plex" then
do JavaScript "require(['plex/base/utils/Dispatcher'], function(t) { t.trigger('shortcut:playPause') });" in currTab
end if
end repeat
end repeat
end tell
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'