git config --global http.sslverify false
git credential-cache exit
git config --global credential.helper cache --timeout=360000
git clone https://github.com/daijinload/test.git
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 de go | |
sudo su - | |
// development tools install | |
yum -y groupinstall "Development tools" | |
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-deve | |
// python 2.7 install | |
wget https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz | |
tar xvzf Python-2.7.8.tgz |
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
<link rel="stylesheet" href="https://code.google.com/p/pwi/source/browse/trunk/jquery.pwi/js/jquery.colorbox/colorbox.css" /> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script src="https://code.google.com/p/pwi/source/browse/trunk/jquery.pwi/js/jquery.colorbox/jquery.colorbox-min.js"></script> | |
<script> | |
$(document).ready(function(){ | |
$(".youtube").colorbox({iframe:true, innerWidth:640, innerHeight:390}); | |
$("#click").click(function(){ | |
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here."); | |
return false; | |
}); |
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
<?php | |
class StaticClass | |
{ | |
public static function sRun() | |
{ | |
echo 'static run!!'; | |
} | |
} | |
class useClass | |
{ |
こちらから持ってきました
Google のソフトウェア・エンジニアリング
「書く」のは特別な道具
[例:作成するライブラリの名前は]
[何を実現するの?]
まとめ記事読んで読んだ気になるもの良いですが、個人的には本を読んだほうが伝わると思います。 また、読んだ時の実力で、本の内容が変わるらしいので、そういう意味でも自分で読まないといけないと思います。 (amazonのレビュー見ていると人それぞれのレベルで読んでいることが垣間見れると思います。)
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
[mysqld] | |
# dirs | |
basedir="C:/mysql" | |
datadir="C:/mysql/data" | |
tmpdir = "C:/mysql/temp" | |
# logging | |
log_output=TABLE,FILE | |
log_error_verbosity=3 |
OlderNewer