class: center, middle
???
- こんにちは僕はPepperです
- 今日は僕がプレゼンするよ
git clone git://github.com/imathis/octopress.git octopress | |
cd octopress | |
bundle install | |
rake setup_github_pages | |
Repository url: [email protected]:shiraco/shiraco.github.com.git | |
rake install | |
rake generate | |
rake deploy | |
git remote add bucket [email protected]:shiraco/octopress.git |
toDateTime <- function(strTime){ | |
strptime((strTime),format="%Y/%m/%d %H:%M") | |
} | |
> toDateTime("2012/08/12 00:00") | |
---- | |
countRunning <- function(recordDateTime, startDateTime, endDateTime){ | |
# isRunning <- ifelse(startDateTime <= recordDateTime & recordDateTime < endDateTime, 1, 0) | |
isRunning <- (startDateTime <= recordDateTime & recordDateTime < endDateTime) * 1 |
#!/bin/bash | |
# update the local repo listing | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
# install language-pack-ja | |
sudo apt-get -y install language-pack-ja | |
# install git |
#!/bin/bash | |
# http://qiita.com/kazu69/items/812b236e84fee1db3900 | |
sudo /etc/init.d/vboxadd setup # 失敗する | |
sudo yum -y install http://vault.centos.org/6.4/cr/x86_64/Packages/kernel-devel-2.6.32-431.el6.x86_64.rpm | |
sudo /etc/init.d/vboxadd setup |
#!/bin/bash | |
# update the local repo listing | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
# install language-pack-ja | |
sudo apt-get -y install language-pack-ja | |
# install git |
#!/bin/bash | |
# update the local repo listing | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install build-essential autoconf libtool pkg-config python-opengl python-imaging python-pyrex python-pyside.qtopengl idle-python2.7 qt4-dev-tools qt4-designer libqtgui4 libqtcore4 libqt4-xml libqt4-test libqt4-script libqt4-network libqt4-dbus python-qt4 python-qt4-gl libgle3 python-dev | |
sudo apt-get -y install python-pip | |
sudo pip install ansible |