Skip to content

Instantly share code, notes, and snippets.

@kazukgw
kazukgw / coffee.js
Created February 3, 2013 15:21
Class generated by CoffeeScript #js
//クラスの作成と継承
var fuga, hoge,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) {
//親のプロパティをすべて引き継ぐ
for (var key in parent) {
if (__hasProp.call(parent, key)) child[key] = parent[key];
}
//コンストラクタ関数を定義
function ctor() {
@kazukgw
kazukgw / htaccess_faile_sample
Created December 24, 2012 07:22
htaccess rewrite sample #htaccess
RewriteEngine on
# ディレクトリまたはファイルが存在する場合は、それを直接に使う
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# それ以外は index.php に転送する
RewriteRule ^(.*) index.php
@kazukgw
kazukgw / fileApiSample.js
Created December 9, 2012 14:35
FileAPI & FileReaderAPI #js
/*
<!doctype html>
<html>
<head>
<title></title>
</head>
<body>
以下でFileを選択するとbody に imgタグがappendされる
<input type="file" id="files" />
</body>