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
/** | |
* オブジェクトをクエリーにする | |
* @param obj {Object} | |
* @returns {String} | |
* @private | |
*/ | |
toQuery = function(obj) | |
{ | |
var query = ''; |
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
/** | |
* jQuery extend | |
*/ | |
jQuery.fn.extend({ | |
/** | |
* plugin | |
* | |
* @param {Object} argument comment | |
*/ | |
plugin: function(args) |
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
# http://qiita.com/items/57ccb570f02799efd9d3 | |
fs = require 'fs' | |
path = require 'path' | |
{spawn, exec} = require 'child_process' | |
option '-o', '--output [DIR]', 'Output directory.' | |
option '-t', '--target [DIR]', 'Watch target directory.' | |
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
/* | |
* Array clone | |
*/ | |
Array.prototype.clone = function() | |
{ | |
return this.concat([]); | |
} | |
/* | |
* Max value (only number |
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
//////////////////////////////////////////////////////////////////////////////// | |
// Frame animation object | |
//////////////////////////////////////////////////////////////////////////////// | |
;namespace.display.FrameAnimation = (function(win, doc, ns) | |
{ | |
"use strict"; | |
//-------------------------------------------------------------------------- | |
// Import | |
//-------------------------------------------------------------------------- | |
var AnimationEvent = ns.event.AnimationEvent, |
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
.DS_Store | |
.sass-cache/ | |
.idea/ |
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
[color] | |
ui = auto | |
[user] | |
name = minoru nakanou | |
email = [email protected] | |
[alias] | |
ci = commit | |
co = checkout | |
st = status | |
br = branch |
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
#Alias | |
alias safari='open -a safari' | |
alias apastart='sudo /usr/sbin/apachectl start' | |
alias apastop='sudo /usr/sbin/apachectl stop' | |
alias apare='sudo /usr/sbin/apachectl restart' | |
#Git settings | |
source /usr/local/Cellar/git/1.7.9.2/etc/bash_completion.d/git-completion.bash | |
GIT_PS1_SHOWDIRTYSTATE=true |
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
if [ -f ‾/.bashrc ]; then . ‾/.bashrc | |
fi |
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
//////////////////////////////////////////////////////////////////////////////// | |
// EventDispatcher.js | |
//////////////////////////////////////////////////////////////////////////////// | |
;namespace.event.EventDispatcher = (function(win, doc, ns) | |
{ | |
"use strict"; | |
//-------------------------------------------------------------------------- | |
// Import | |
//-------------------------------------------------------------------------- |