- http://daipresents.com/2012/%E5%91%8A%E7%9F%A5agile-japan-2012%E3%81%A7%E3%80%8C%E6%A5%BD%E5%A4%A9%E3%81%A7%E3%81%AE%E5%AE%9F%E8%B7%B5%E3%81%8B%E3%82%89%E5%AD%A6%E3%82%93%E3%81%A0%E3%82%A2%E3%82%B8%E3%83%A3%E3%82%A4%E3%83%AB/
- http://daipresents.com/2011/%E7%A7%81%E3%81%AF%E6%97%A5%E6%9C%AC%E3%82%92%E4%BF%A1%E3%81%98%E3%81%A6%E3%81%84%E3%82%8B-agile-japan-2011%E3%81%AB%E5%8F%82%E5%8A%A0%E3%81%97%E3%81%BE%E3%81%97%E3%81%9F/
- 2011 の際の Linda Rising さんの。 http://www.youtube.com/watch?v=hOu4S-uv6lw
- 角谷さんのスライド2011 http://www.slideshare.net/kakutani/agility-is-degree-7644708
- konpiroさん http://d.hatena.ne.jp/kompiro/20110418/1303140013
- 平鍋さんの agile japan 2012 preview http://blogs.itmedia.co.jp/hiranabe/2012/02/agile-japan-2012-preview.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
@charset "utf-8" | |
// :before, :after を使用して要素を追加する場合によく使うパターン | |
blockForPseudo(position, width, height) | |
content "" | |
display block | |
position position | |
width width | |
height height |
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
body { | |
background: none repeat scroll 0 0 #333344; | |
font-family: Osaka,Helvetica Neue,Helvetica,Arial; | |
font-size: 14px; | |
text-align: center; | |
} | |
h1 { | |
color: #FFFFFF; | |
font-size: 70px; | |
padding: 30px 0 0; |
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
icon-width = 20px | |
legger-width = 80px | |
li | |
// 通常時はアイコンだけ表示 | |
white-space nowrap | |
width icon-width | |
color rgba(128, 128, 192, 0.0) | |
// カーソルを話したときもうにょーっと狭まる | |
transition width 1.2s ease |
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
/* applying basic page frame, 2 column-format, background and spacing */ | |
html { | |
background-image: url(img/background.jpg); | |
background-repeat: repeat; } | |
body { | |
font-family: sans-serif; | |
color: #4b4b4b; | |
width: 980px; | |
margin: 20px auto; |
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
#/bin/bash | |
PATH_RECIPES=(calibreインストールディレクトリ)/calibre/resources/recipes | |
PATH_EBOOKS_OUT=(ebook出力先ディレクトリ) | |
# 実行前に出力先ディレクトリをクリーン | |
rm $PATH_EBOOKS_OUT/* | |
# ebook生成 | |
xvfb-run ebook-convert $PATH_RECIPES/reuters_ja.recipe $PATH_EBOOKS_OUT/reuters_ja.mobi --output-profile kindle --tags "Reuters(Japan),ニュース" |
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
for i in `find . -name '*.sh'`;do echo $i $(basename $i);done | |
# 以下の方法ではうまく動作しなかったのになぁ・・・ | |
# find . -name '*.sh' -exec echo {} $(basename {}) \; | |
# find . -name '*.sh' -exec echo {} `basename {}` \; | |
# find . -name '*.sh' | xargs -n 1 -i echo {} $(basename {}) | |
# find . -name '*.sh' | xargs -n 1 -i echo {} `basename {}` |
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
#!/bin/sh | |
# 'tr -d \\r' ってやったら2バイト文字使っているファイルが壊れて参ったのですよ | |
# '^M' は Ctrl-V Ctrl-M で入力するのだとじっちゃんが言ってたよババンバン | |
sed 's/^M//' src > tmp; mv tmp src |
git svn fetch でエラーを食らう。。。svn リポジトリに壊れたリビジョンが含まれてる?
Following parent with do_switch
Successfully followed parent
r834 = bf2f4f2499b634ccb78a93b3f60ab1ee3f05ea5f (refs/remotes/tags/ver20110325)
Index mismatch: 2c3a6eb9318e39ffb21f865f882c5b885c2ec60a != 420cd6ffa57bef1d4455806bafb535ec92edc8a8
rereading f5db4ffb22c339a563040044c77a413011c2c766
svn: E235000: In file '/usr/src/subversion/subversion-1.7.4-1/src/subversion/subversion/libsvn_delta/text_delta.c' line 728: assertion failed (window->sview_len == 0 || (window->sview_offset >= ab->sbuf_offset && (window->sview_offset + window->sview_len >= ab->sbuf_offset + ab->sbuf_len)))
error: git-svn died of signal 6
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
#!/bin/sh | |
echo $(dirname `pwd`/$0) |