#Prerequisites#
- iPhone
- Yosemite OSX
- opencv
#Steps#
- Attach your iphone to your mac
- Open QuickTime and start a New Movie Recording
#!/usr/bin/env ruby | |
# coding: UTF-8 | |
require 'deadweight' | |
dw = Deadweight.new | |
dw.stylesheets = ["public/css/application.css"] | |
ignore_selectors = %w[.icon.* #modal-itx] | |
dw.ignore_selectors = Regexp.compile "(#{ignore_selectors.join('|')})" | |
dw.root = File.dirname(__FILE__) + '/' | |
dw.pages = Dir['views/**/*.dust'] |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head></head> | |
<body> | |
<script> | |
document.write(+new Date); | |
parent.leak(); | |
</script> |
# coding: UTF-8 | |
require 'nokogiri' | |
require 'tempfile' | |
require 'json' | |
VALID_NODE_NAMES = %w[title a abbr acronym address applet area article aside audio b base basefont bdi bdo bgsound big blink blockquote body br button canvas caption center cite code col colgroup command data datalist dd del details dfn dir div dl dt em embed fieldset figcaption figure font footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html i iframe img input ins isindex kbd keygen label legend li link listing main map mark marquee menu meta meter nav nobr noframes noscript object ol optgroup option output p param plaintext pre progress q rp rt ruby s samp script section select small source spacer span strike strong style sub summary sup table tbody td textarea tfoot th thead time title tr track tt u ul var video wbr xmp] | |
class TidyHTML | |
class << self | |
def scan glob |
diff --git a/autoload/gitgutter/utility.vim b/autoload/gitgutter/utility.vim | |
index cecc887..62512d4 100644 | |
--- a/autoload/gitgutter/utility.vim | |
+++ b/autoload/gitgutter/utility.vim | |
@@ -124,7 +124,15 @@ function! gitgutter#utility#file_relative_to_repo_root() | |
endfunction | |
function! gitgutter#utility#command_in_directory_of_file(cmd) | |
- return 'cd ' . gitgutter#utility#shellescape(gitgutter#utility#directory_of_file()) . ' && ' . a:cmd | |
+ let cmd = 'cd ' . gitgutter#utility#shellescape(expand('%:p:h')) . ' && ' . a:cmd |
#!/usr/bin/env coffee | |
coffeeWalk = (category, id) -> | |
category.selected = category.id is id | |
for subcategory in category.subcategories | |
coffeeWalk subcategory, id | |
category.selected or= subcategory.selected | |
# var coffeeWalk = function(category, id) { | |
# var i = 0, subcategories = category.subcategories, len = subcategories.length, subcategory; |
#Prerequisites#
#Steps#
#!/usr/bin/env ruby | |
# coding: UTF-8 | |
require 'yaml' | |
ALIAS = { | |
text: '/vendor/requirejs-text/text', | |
jquery: '/vendor/jquery/dist/jquery', | |
dust: '/vendor/dustjs-linkedin/dist/dust-full', | |
dustHelpers: '/vendor/dustjs-linkedin-helpers/dist/dust-helpers', | |
pagejs: '/vendor/page.js/page', |
Function::patch = (binding, fn) -> | |
unless fn | |
fn = binding | |
binding = @ | |
wrapped = (args...) -> | |
args.unshift (args...) -> | |
wrapped.previous.apply binding, args | |
fn.apply binding, args | |
wrapped.previous = @ | |
wrapped |
# A sample Gemfile | |
source "https://rubygems.org" | |
gem "sinatra" | |
gem "mongoid" | |
gem "bson_ext" | |
gem 'sinatra-reloader' | |
gem 'haml' |
#!/usr/bin/env ruby | |
# coding: UTF-8 | |
require 'pathname' | |
require 'googlecharts' | |
file = Pathname.new 'zsh_history' | |
dates = {} | |
file.each_line do |line| | |
next unless line =~ /^: / |