Skip to content

Instantly share code, notes, and snippets.

View nijitaro's full-sized avatar
🌴
In the vast code

nijitaro nijitaro

🌴
In the vast code
View GitHub Profile
; 前提として、Windowsの設定で102キーボードとして認識させる
;
; 無変換を認識させる
sc07B::Send, {vk1Dsc07B}
; 変換を認識させる
sc079::Send, {vk1Csc079}
; かなを認識させる
sc070::RAlt
; BackquoteをEscに
`::Esc
@nijitaro
nijitaro / shuffle.js
Created March 10, 2016 07:52
Shuffle Array
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];

Untitled Slide

Welcome to Glide.

Glide is the easiest way to create useful slide for all of your Gists.

  • input key <- to go backward.
  • input key -> to go forward.

Publishing

@nijitaro
nijitaro / dabblet.css
Created May 29, 2012 07:11
ココにタイトル
/**
* ココにタイトル
*/
body {
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
height: 600px;
}
@nijitaro
nijitaro / setting-memo.txt
Created July 26, 2011 07:33
MacbookAir設定
アプリケーションのインストール
ユーティリティ系
Google日本語入力
(システム環境設定で、ことえりのチェックを外す。
Google日本語入力も英数(Google)、ひらがな(Google)以外チェックを外す)
KeyRemap4Macbook
左右のコマンドキーを「英数/かな」としてもつかう
→「コマンドキーの動作を優先モード」にチェック
http://fladdict.net/blog/2011/02/auto-kerning.html
グローバル汚染を無くしたのと、jQueryらしくかけるようにしました。
// 引数なしの場合デフォルトのカーニングが摘要される。
$(selector).FLAutoKerning();
// 引数を入れた場合、そのカーニングが摘要される。
$(selector).FLAutoKerning(myKerningInfo);
ライセンスは元のFLAutoKerning.jsを継承します。
@nijitaro
nijitaro / .autotest
Created September 7, 2010 18:06 — forked from ukstudio/Gemfile
Rails 3 + rspec2 + mongoid + Factory_girl + autotest(growl)
# 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
@nijitaro
nijitaro / install nginx to CensOS
Created September 2, 2010 07:00
install nginx to CensOS
// 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
@nijitaro
nijitaro / README
Created September 2, 2010 06:43
CentOS startup script for the nginx
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();