Why I made this: imathis/octopress#772
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
// phantomjs --web-security=no most_used_css_property_names.js | |
var urls = [ | |
'http://google.com', | |
'http://facebook.com', | |
'http://youtube.com', | |
'http://yahoo.com', | |
'https://github.com/', | |
'http://twitter.com/', | |
'http://en.wikipedia.org/wiki/Main_Page', |
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
-webkit-align-content | |
-webkit-align-items | |
-webkit-align-self | |
-webkit-animation | |
-webkit-animation-delay | |
-webkit-animation-direction | |
-webkit-animation-duration | |
-webkit-animation-fill-mode | |
-webkit-animation-iteration-count | |
-webkit-animation-name |
I have 2 Macbooks: one at work and one at home. I sync them using Dropbox. I sync lots of things: iTunes library, dotfiles, some ~/Library/Preferences/
.
For example, I have a ~/.profile
file in my home machine. I want to have the same file in my work machine. So I do the following:
$ cp ~/.profile ~/Dropbox/Mac/Users/nv/.profile
On the work machine I do:
$ cp ~/Dropbox/Mac/Users/nv/.profile ~/.profile
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 sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
- I've made a coa-completion-dummy
➤ ./coa-completion-dummy --ve
- Press Tab and nothing happens
I guess I have to generate some shell script first and then put source some_script.sh
in my .bashrc. README.md doesn't mention any of those, instead it says:
Cmd.completable Adds shell completion to command, adds "completion" subcommand, that makes all the magic.
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
function fact(x) { | |
return _f(1, x); | |
function _f(acc, x) { | |
return x === 0 ? | |
acc : | |
_f(acc * x, x - 1); | |
} | |
} | |
/* | |
Yes, it is! |
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
function cloneObject(object) { | |
return extendObject({}, object); | |
} | |
function extendObject(base, object) { | |
var visited = [object]; | |
// http://en.wikipedia.org/wiki/Adjacency_list_model | |
var set = [{value: 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
var obj = { | |
getX: function() { | |
return this.x | |
}, | |
x: 1 | |
} | |
callWithOriginalContext(obj.getX) // 1 | |
//There is absolutely no way to make a callWithOriginalContext function, right? |
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 sample = "'use strict';\n\ | |
\n\ | |
/**\n\ | |
* @param {string} selector\n\ | |
* @nosideeffects\n\ | |
* @return {Element|null}\n\ | |
*/\n\ | |
HTMLElement.prototype.up = function(selector) {\n\ | |
var element = this;\n\ | |
while (element = element.parentElement) {\n\ |