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
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 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
.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 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
" 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 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
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 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
// 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 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
[ | |
{ | |
"id": "2b142d34.a6f53a", | |
"type": "tab", | |
"label": "Flow 1", | |
"disabled": false, | |
"info": "" | |
}, | |
{ | |
"id": "a0ce6df4.9e2fb8", |
OlderNewer