This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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="gallois" | |
# Uncomment the following line to use case-sensitive completion. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import urllib | |
import urllib2 | |
import sys | |
try: | |
import json | |
except ImportError: | |
import simplejson as json | |
apiKey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"¥" = ("insertText:", "\\"); | |
"~\\" = ("insertText:", "¥"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# -*- coding: utf-8 -*- | |
require "net/https" | |
require "uri" | |
require "json" | |
require "time" | |
KEENIO_PROJECT_ID = "XXXXXXXX" | |
KEENIO_READ_KEY = "YYYYYYYY" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Based on Sublime Text's Monokai theme */ | |
.cm-s-monokai-ricty.CodeMirror {font-family: 'Ricty'; font-weight: 600; background: #272822 !important; color: #f5f5f5;} | |
.cm-s-monokai-ricty div.CodeMirror-selected {background: #925728 !important;} | |
.cm-s-monokai-ricty .CodeMirror-gutters {background: #272822; border-right: 0px;} | |
.cm-s-monokai-ricty .CodeMirror-linenumber {color: #d0d0d0;} | |
.cm-s-monokai-ricty .CodeMirror-cursor {border-left: 1px solid #ffffff !important;} | |
.cm-s-monokai-ricty span.cm-comment {color: #75715e;} | |
.cm-s-monokai-ricty span.cm-atom {color: #ae81ff;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*/10 * * * * /usr/local/bin/keenio_collector.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: nginx | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: nginx init.d dash script for Ubuntu <=9.10. | |
# Description: nginx init.d dash script for Ubuntu <=9.10. | |
### END INIT INFO |
NewerOlder