This file contains 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
[ | |
{ | |
"id": "2b142d34.a6f53a", | |
"type": "tab", | |
"label": "Flow 1", | |
"disabled": false, | |
"info": "" | |
}, | |
{ | |
"id": "a0ce6df4.9e2fb8", |
This file contains 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
// Base16 Default Dark | |
// Scheme: Chris Kempson (http://chriskempson.com) | |
base00 = '#181818'; | |
base01 = '#282828'; | |
base02 = '#383838'; | |
base03 = '#585858'; | |
base04 = '#b8b8b8'; | |
base05 = '#d8d8d8'; | |
base06 = '#e8e8e8'; |
This file contains 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
require 'bundler/inline' | |
gemfile true do | |
source 'https://rubygems.org' | |
gem 'ruby-vnc', '~>1.1.0', require: 'net/vnc' | |
gem 'sinatra', '~>2.0.0' | |
end | |
require 'sinatra/base' |
This file contains 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
" requires vim 8 for timer support | |
function! UpdatePowerSaving(timerId) | |
if executable('pmset') | |
call system("pmset -g batt | head -1 | grep 'Battery'") | |
if !v:shell_error | |
" on battery | |
let g:ale_lint_delay=10000 | |
else | |
" power adapter |
This file contains 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
.container | |
.header-container | |
.header | |
.text Prepress | |
.cell | |
%p Content 1 | |
%p There is more content that goes here | |
%p look at all the content | |
.cell |
This file contains 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
cheerio = require('cheerio') | |
module.exports = (robot) -> | |
robot.respond /quimby|JBQ/i, (msg) -> | |
robot.http("http://www.jbquimbys.com/menu.php").get() (error, response, body) -> | |
$ = cheerio.load(body) | |
title = cleanText $("td#title").text() | |
body = cleanText $("td#title").parent().next().html() | |
body = body.split(/\<table[ \w\d"=%]+\>/) | |
body = body.map (item) -> cleanItem(item) |
This file contains 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
" with inspiration from http://stevelosh.com/blog/2010/09/coming-home-to-vim/ | |
filetype off | |
call pathogen#runtime_append_all_bundles() | |
call pathogen#helptags() | |
filetype plugin indent on | |
set nocompatible | |
set tabstop=2 |
This file contains 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 | |
@numbers = [ | |
["-", "|", "|", " ", "|", "|", "-"], | |
[" ", " ", "|", " ", " ", "|", " "], | |
["-", " ", "|", "-", "|", " ", "-"], | |
["-", " ", "|", "-", " ", "|", "-"], | |
[" ", "|", "|", "-", " ", "|", " "], | |
["-", "|", " ", "-", " ", "|", "-"], | |
["-", "|", " ", "-", "|", "|", "-"], |
This file contains 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
ActionController::Dispatcher.middleware.insert_before(ActionController::Base.session_store, FlashSessionCookieMiddleware, ActionController::Base.session_options[:session_key]) |
This file contains 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
export PATH="/opt/android-sdk/tools:/opt/android-sdk/platforms/android-1.5/tools:/usr/local/libexec/git-core:/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/opt/local/bin:$PATH" | |
export MANPATH="/usr/local/man:/usr/local/mysql/man:$MANPATH" | |
export EDITOR="mate -w" | |
export CLICOLOR=true | |
export MENU_COMPLETE=false | |
export CDPATH=.:~/Dropbox/Projects:~/Projects:~/Dropbox/sandbox | |
export ARCHFLAGS="-arch x86_64" | |
HISTSIZE=1000 | |
SAVEHIST=1000 |
NewerOlder