This file contains hidden or 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
| アジャイルサムライ | |
| 第1章から5章まで | |
| アジャイル準備 | |
| 以下の条件にならないようにしよう。 | |
| チームが同じ職場にいない | |
| 顧客を巻き込めない | |
| 自分の開発環境をコントロールできない | |
This file contains hidden or 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
| 参考図書 | |
| アリスとボブのGit入門 | |
| https://github.com/Alice-Gits/Support | |
| git addしたreadmeファイルをコミット候補からはずす | |
| git rm --cached readme | |
| 意味は、直前のコミットのauthorを修正 | |
| git commit --amend --reset-author | |
This file contains hidden or 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
| 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. |
This file contains hidden or 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
| 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 |
This file contains hidden or 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://jsdo.it/edo_m18/nkhQ | |
| ソースコードを読んでみた | |
| ■タイルクラス ≒ 写真 | |
| div作成 | |
| イメージ設定 | |
| タイプによってクラスを設定 | |
| divを返却 | |
| 位置を設定 |
This file contains hidden or 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
| 1.実現したいことを細かく書く | |
| 2.実現するドメインを決める | |
| 3.必要なオブジェクトを構成する | |
| 4.必要なプロパティ、メソッドを決める。抽象的な部分はインターフェースにする。 | |
| 5.デザインパターンを適用できるか考える | |
| 6.(人が見て理解できる)図にする | |
| 7.レビューする |
This file contains hidden or 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
| var options = { | |
| max: 1, | |
| min: 0.6, | |
| radiusX: 300, | |
| radiusY: 200, | |
| }; | |
| // 拡大率計算の用いる範囲 | |
| // 最も手前のアイテムの拡大率がoptions.maxになり |
This file contains hidden or 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
| <!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> | |
This file contains hidden or 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
| [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 |
This file contains hidden or 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
| [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/ |