Glide is the easiest way to create useful slide for all of your Gists.
- input key
<-
to go backward. - input key
->
to go forward.
; 前提として、Windowsの設定で102キーボードとして認識させる | |
; | |
; 無変換を認識させる | |
sc07B::Send, {vk1Dsc07B} | |
; 変換を認識させる | |
sc079::Send, {vk1Csc079} | |
; かなを認識させる | |
sc070::RAlt | |
; BackquoteをEscに | |
`::Esc |
const shuffle = arr => { | |
var i, j, temp; | |
arr = arr.slice(); | |
i = arr.length; | |
if (i === 0) { | |
return arr; | |
} | |
while (--i) { | |
j = Math.floor(Math.random() * (i + 1)); | |
temp = arr[i]; |
/** | |
* ココにタイトル | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
height: 600px; | |
} |
アプリケーションのインストール | |
ユーティリティ系 | |
Google日本語入力 | |
(システム環境設定で、ことえりのチェックを外す。 | |
Google日本語入力も英数(Google)、ひらがな(Google)以外チェックを外す) | |
KeyRemap4Macbook | |
左右のコマンドキーを「英数/かな」としてもつかう | |
→「コマンドキーの動作を優先モード」にチェック |
http://fladdict.net/blog/2011/02/auto-kerning.html | |
グローバル汚染を無くしたのと、jQueryらしくかけるようにしました。 | |
// 引数なしの場合デフォルトのカーニングが摘要される。 | |
$(selector).FLAutoKerning(); | |
// 引数を入れた場合、そのカーニングが摘要される。 | |
$(selector).FLAutoKerning(myKerningInfo); | |
ライセンスは元のFLAutoKerning.jsを継承します。 |
# Include plugins | |
require 'autotest/fsevent' | |
require 'autotest/growl' | |
# Skip some paths | |
Autotest.add_hook :initialize do |autotest| | |
%w{.git .DS_Store ._* vendor}.each { |exception| autotest.add_exception(exception) } | |
false | |
end |
// 1. nginx required pcre and pcre-devel package. | |
// 2. download source http://nginx.org/en/download.html | |
// ex) wget http://nginx.org/download/nginx-0.8.49.tar.gz | |
$ su - | |
# yum install pcre pcre-devel | |
# cd /path/to/download/ | |
# tar -zxvf nginx-x.x.x.tar.gz | |
# mv nginx-x.x.x/ mv nginx-0.7.64 /usr/local/src/nginx/x.x.x | |
# cd /usr/local/src/nginx/x.x.x |
CentOS startup script for the nginx | |
* nginx installed /usr/local/nginx/ directory | |
$ sudo mv /path/to/nginxd /etc/init.d/nginxd | |
$ cd nginxd | |
$ chmod +x nginxd | |
$ chkconfig nginxd on | |
$ chkconfig --list nginxd |
var SASS = { | |
parse: function (source) { | |
source = source.replace( /\r|\r\n/g, "\n"); | |
var lines = source.split("\n"); | |
var _level = 0; | |
var retVal = "$(document)"; | |
$(lines).each(function(){ | |
var line = this.toString(); |