2015-08-01から1ヶ月間の記事一覧

HRTの原則

Team Geek ―Googleのギークたちはいかにしてチームを作るのか で紹介されている言葉であり、本書ではほぼ一冊すべてをかけてこのHRTの原則とその実践方法とを様々な角度から紹介している。 HRTの原則とは、優れた開発チームでは1. 謙虚(Humility)2. 尊敬(Res…

Javascriptのカスタムエラーの作り方

function foo() { bar(); } function bar() { baz(); } function baz() { throw new Error('X'); } (function main() { try { foo(); } catch (error) { console.log(error.stack); } })(); Error: X at baz (http://localhost/CustomError.html:8:24) at ba…

3 × 3 の表示

<style type="text/css"> html, body { padding: 0; margin: 0; } .grid3x3 { display:table; height:100%; width:100%; } .grid3x3 > div { display:table-row; width:100%; } .grid3x3 > div:first-child, .grid3x3 > div:last-child { height: 100px; } .grid3x3 > div > div { d…

3 × 3 の表示

<style type="text/css"> html, body { padding: 0; margin: 0; } .grid3x3 { display:table; height:100%; width:100%; } .grid3x3 > div { display:table-row; width:100%; } .grid3x3 > div:first-child, .grid3x3 > div:last-child { height: 100px; } .grid3x3 > div > div { d…

背景画像の繰り返し方を定義

1.x軸方向にのみ繰り返す(background-repeat: repeat-x)2.y軸方向にのみ繰り返す(background-repeat: repeat-y)3.背景画像を繰り返さない(background-repeat: no-repeat) css box1{ width: 150px; height: 80px; padding: 10px 0px 0px 10px; …

プロダクトマネージャーって・・・

うちの会社では、プロジェクトマネージャーって、いるけど、 人、サービスではなく、プロジェクトしか見てないから、 それってどうなの?って思ってる。 なので、意識してどうゆうことをやればいいのか・・・って考えてみた。 そうしたら、プロダクトマネー…