私のチラシの裏。
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
| #key | |
| set-option -g prefix C-s | |
| unbind-key C-b | |
| bind-key C-s send-prefix | |
| bind s split-window -v | |
| bind v split-window -h | |
| bind j select-pane -D | |
| bind k select-pane -U | |
| bind h select-pane -L | |
| bind l select-pane -R |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. |
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 ln -s /opt/apache/apache-jmeter/apache-jmeter-2.11/ /opt/apache/apache-jmeter/latest | |
| sudo ln -s /opt/apache/apache-maven/apache-maven-3.2.2/ /opt/apache/apache-maven/latest | |
| sudo ln -s /opt/apache/apache-tomcat/apache-tomcat-7.0.55/ /opt/apache/apache-tomcat/latest | |
| sudo ln -s /opt/play/play-2.2.3/ /opt/play/latest | |
| sudo ln -s /opt/scala/scala-2.11.2/ /opt/scala/latest | |
| export PATH=/opt/apache/apache-jmeter/latest/bin:$PATH | |
| export PATH=/opt/apache/apache-maven/latest/bin:$PATH | |
| export PATH=/opt/apache/apache-tomcat/latest/bin:$PATH | |
| export PATH=/opt/play/latest:$PATH |
There is Insecure Development SSH configurations !
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
| set title | |
| syntax on | |
| set tabstop=2 | |
| set smartindent | |
| set ignorecase | |
| set smartcase | |
| set wrapscan | |
| set autoindent | |
| set incsearch |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # Every Vagrant virtual environment requires a box to build off of. | |
| config.vm.box = "chef/centos-6.5" |