Vim manual: http://vimdoc.sourceforge.net/htmldoc/motion.html
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
// based on https://github.com/michaelchaize/appliness/blob/master/Illustrator-create-artboards/CreateArtboardsLayers.jsx | |
// Illustrator util to copy layers content to artboards | |
// Each layer must contain one single group | |
// It will name the artboard to match the layer name | |
// For each 20 layers it creates a new row | |
// Ensure the original artboard is placed in the top left corner | |
// TODO: translate the original artboard on the top left corner |
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
/* sidebar */ | |
.aZ6 { | |
background-color: #282a2e; | |
} | |
/* sidebar-bottom */ | |
.bhZ.bym .aj5, .vhZ.bjB .aj5 { | |
background-color: #1d1f21; | |
} | |
/* header */ |
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
// These window.navigator contain language information | |
// 1. languages -> Array of preferred languages (eg ["en-US", "zh-CN", "ja-JP"]) Firefox^32, Chrome^32 | |
// 2. language -> Preferred language as String (eg "en-US") Firefox^5, IE^11, Safari, | |
// Chrome sends Browser UI language | |
const browserLanguagePropertyKeys = ['languages', 'language']; | |
const availableLanguages = ['en', 'es']; | |
const detectedLocale = _.flow( | |
_.pick(browserLanguagePropertyKeys), // Get only language properties | |
_.values, // Get values of the properties |
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
<html> | |
<head></head> | |
<body> | |
<p>Loaded Content</p> | |
<script> | |
(function(){ | |
var i, el = null, | |
x = []; | |
for (i = 0; i < 10000; i++) { |
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
cd /Applications/Kaleidoscope.app/Contents/Resources/Integration/scripts | |
./install_git-default |
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 'sinatra' | |
require 'sinatra/json' | |
post '/' do | |
json params | |
end |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme", | |
"theme": "Spacegray Eighties.sublime-theme", | |
"ignored_packages": | |
[ | |
"Vintage", | |
"Markdown" | |
], | |
"font_face": "Menlo", | |
"font_size": 12, |
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
var page = require('webpage').create(), | |
args = require('system').args; | |
if (args.length === 1) { | |
console.log('Missing track ID, "phantomjs track.js XXXXXXXX"'); | |
phantom.exit(); | |
} | |
else { | |
args.forEach(function(arg, i) { |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "/Users/am/Downloads/precise64.box" | |
config.vm.network :forwarded_port, guest: 4000, host: 4000 | |
config.vm.hostname = 'stasis-box' | |
config.vm.provision :puppet do |puppet| |
NewerOlder