Skip to content

Instantly share code, notes, and snippets.

@tikitikipoo
tikitikipoo / gist:4174086
Created November 30, 2012 06:16
アジャイルサムライ
アジャイルサムライ
第1章から5章まで
アジャイル準備
以下の条件にならないようにしよう。
チームが同じ職場にいない
顧客を巻き込めない
自分の開発環境をコントロールできない
@tikitikipoo
tikitikipoo / gist:4167620
Created November 29, 2012 08:40
gitコマンド
参考図書
アリスとボブのGit入門
https://github.com/Alice-Gits/Support
git addしたreadmeファイルをコミット候補からはずす
git rm --cached readme
意味は、直前のコミットのauthorを修正
git commit --amend --reset-author
@tikitikipoo
tikitikipoo / gist:4065349
Created November 13, 2012 11:40
job description
Web front-end design and coding
Job Description
We are looking for a web designer to design responsive web pages. The successful applicant will be able to work in web design: taking designs from photoshop/illustrator/fireworks based on our wire frames and producing HTML, CSS ( and Javascript if needed).
You will need to:
- Create Responsive web design.
- Use twitter bootstrap Component
- Propose a couple of new design by photoshop/illustrator/fireworks based on our wire frames.
- Code in HTML, CSS(CSS3) ( and Javascript if needed).
- Deal with IE8, IE9 and newer Chrome, Firefox, Safari browser.
@tikitikipoo
tikitikipoo / gist:3911351
Created October 18, 2012 11:56
CSSOM View 入門
scrollWidth、clientWidth、offsetWidth、とか、の説明
これが決定版
CSSOM View 入門
http://domes.lingua.heliohost.org/dom/intro-cssom-view1.html
その他上記の中でいまいち理解できなかったものを補足した説明いろいろ
図が見やすくていい
http://www.cnblogs.com/dragonstreak_1/archive/2011/10/29/2228615.html
@tikitikipoo
tikitikipoo / gist:3760279
Created September 21, 2012 08:01
タイルビューのソースコードを読んでみた
http://jsdo.it/edo_m18/nkhQ
ソースコードを読んでみた
■タイルクラス ≒ 写真
 div作成
  イメージ設定
  タイプによってクラスを設定
 
 divを返却
 位置を設定
@tikitikipoo
tikitikipoo / gist:3760219
Created September 21, 2012 07:38
オブジェクト指向のチップス
1.実現したいことを細かく書く
2.実現するドメインを決める
3.必要なオブジェクトを構成する
4.必要なプロパティ、メソッドを決める。抽象的な部分はインターフェースにする。
5.デザインパターンを適用できるか考える
6.(人が見て理解できる)図にする
7.レビューする
@tikitikipoo
tikitikipoo / gist:3615688
Created September 4, 2012 01:54
奥行きがあるように見せる拡大率の計算
var options = {
max: 1,
min: 0.6,
radiusX: 300,
radiusY: 200,
};
// 拡大率計算の用いる範囲
// 最も手前のアイテムの拡大率がoptions.maxになり
@tikitikipoo
tikitikipoo / index.html
Created August 15, 2012 08:32
Mansory写経
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link href="./css/style.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
@tikitikipoo
tikitikipoo / gist:2928987
Created June 14, 2012 08:23
how to install ffmpeg by source code in centos 6.2
[root@localhost ~]#
[root@localhost ~]# yum update
[root@localhost ~]#
[root@localhost ~]# cat /etc/redhat-release
CentOS release 6.2 (Final)
[root@localhost ~]#
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]#
[root@localhost src]#
[root@localhost src]# yum install wget -y
@tikitikipoo
tikitikipoo / how_to_install_ffmpeg_souce
Created May 22, 2012 02:31
how to install ffmpeg by source code
[root@localhost ~]#
[root@localhost ~]# cat /etc/redhat-release
CentOS release 5.6 (Final)
[root@localhost ~]#
[root@localhost ~]# yum update
[root@localhost ~]#
[root@localhost ~]# cat /etc/redhat-release
CentOS release 5.6 (Final)
[root@localhost ~]#
[root@localhost ~]# cd /usr/local/src/