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
<?xml version="1.0" encoding="UTF-8"?> | |
<bookmarks> | |
<site url="http://download.eclipse.org/buildship/updates/e45/releases/1.0" selected="true" name="Buildship"/> | |
<site url="http://update.eclemma.org/" selected="true" name="EclEmma"/> | |
<site url="http://dl.bintray.com/ajermakovics/jmockit/" selected="true" name="Eclipse plug-in for JMockit"/> | |
<site url="http://www.nodeclipse.org/updates/markdown/" selected="true" name="Markdown Editor (site)"/> | |
<site url="http://download.eclipse.org/releases/mars" selected="true" name="Mars"/> | |
<site url="http://beust.com/eclipse" selected="true" name="TestNG"/> | |
<site url="http://download.eclipse.org/eclipse/updates/4.5" selected="true" name="The Eclipse Project Updates"/> | |
<site url="http://basti1302.github.com/startexplorer/update/" selected="true" name="Update Site"/> |
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
$docker_mysql = <<SCRIPT | |
if type apt-get >/dev/null 2>&1; then | |
echo I am provisioning... | |
sudo apt-get update | |
sudo apt-get -y dist-upgrade | |
if [ ! $(type mysql >/dev/null 2>&1) ]; then | |
sudo apt-get install -y mysql-client | |
fi | |
if [ ! $(type docker >/dev/null 2>&1) ]; then |
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
/usr/libexec/java_home -V |
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
<dependency> | |
<groupId>org.glassfish.jersey.containers</groupId> | |
<artifactId>jersey-container-jetty-servlet</artifactId> | |
<version>2.17</version> | |
</dependency> |
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
sudo apt-get update | |
sudo apt-get install tokyocabinet-bin libtokyocabinet-dev | |
sudo apt-get install libboost-dev libboost-program-options1.54.0 libboost-thread1.54.0 libboost-regex1.54.0 libboost-serialization1.54.0 | |
sudo apt-get install libhashkit-dev | |
sudo apt-get install automake libtool zlib1g-dev | |
cd /usr/lib/x86_64-linux-gnu | |
sudo ln -s libboost_program_options.so.1.54.0 libboost_program_options.so | |
sudo ln -s libboost_regex.so.1.54.0 libboost_regex.so | |
sudo ln -s libboost_thread.so.1.54.0 libboost_thread.so | |
sudo ln -s libboost_serialization.so.1.54.0 libboost_serialization.so |
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
sudo aptitude install rinse | |
sudo rinse --directory=${HOME}/centos --distribution=centos-5 --arc=amd64 | |
sudo chroot ${HOME}/centos /bin/bash | |
sudo rm -rf dev | |
sudo mkdir -m 755 dev | |
( | |
cd dev | |
sudo ln -sf /proc/self/fd ./ |
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
mkdir -p ~/.vim/bundle | |
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim |
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
sudo aptitude update | |
sudo aptitude full-upgrade |
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
@MockClass(realClass=Hoge.class) // MockClassアノテーション廃止されてるせいで、コンパイラーさんがOKOKO | |
public class HogeMock { | |
} |
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
brew upgrade | |
brew install fuse4x | |
brew install ntfs-3g | |
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig | |
sudo ln -s /usr/local/Cellar/ntfs-3g/2014.2.15/sbin/mount_ntfs /sbin/mount_ntfs | |
sudo /bin/cp -RfX /usr/local/opt/osxfuse/Library/Filesystems/osxfusefs.fs /Library/Filesystems | |
sudo chmod +s /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs |