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
FROM ruby:alpine | |
ENV DEBIAN_FRONTEND noninteractive | |
WORKDIR /root | |
ADD ./versions.txt /root/versions.txt | |
ADD Gemfile /root/Gemfile |
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 su - | |
umount /vagrant | |
aptitude autoclean && apt-get autoremove && apt-get clean | |
find /var/log -type f | while read f; do echo -ne ‘’ > $f; done && rm -rf /var/log/* /tmp/* /var/tmp/* /usr/local/src/* /var/ww/html | |
e4defrag / && dd if=/dev/zero of=/EMPTY bs=1M; rm -f /EMPTY | |
rm /root/.bash_history && /home/vagrant/.bash_history | |
exit |
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
compile 'org.apache.myfaces.core:myfaces-api:2.2.9' | |
compile 'org.apache.myfaces.core:myfaces-impl:2.2.9' | |
compile 'javax.servlet:jstl:1.2' | |
compile 'org.primefaces:primefaces:5.3' | |
compile 'javax.servlet:javax.servlet-api:3.1.0' | |
def tomcatVersion = '8.0.30' | |
tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}", |
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
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb | |
sudo apt-get update | |
sudo apt-get install elixir |
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
curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh | |
sh ./install.sh | |
rm -rf install.sh |
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
iOS 9.0のホーム画面から、アイコンをタップしてアプリを起動しようとすると、ホーム画面に戻ってしまい、アプリが起動しない。 |
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
./otp_build autoconf && ./configure --prefix=$HOME/.anyenv/envs/erlenv/releases/18.0 && make -j 4 && erlenv global 18.0 && erlenv rehash |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Version=1.0 | |
Type=Application | |
Name=Eclipse | |
Icon=eclipse.png | |
Path=/opt/eclipse/eclipse | |
Exec=/opt/eclipse/eclipse/eclipse | |
StartupNotify=false | |
StartupWMClass=Eclipse |
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
- hosts: 127.0.0.1 | |
connection: local | |
become: yes | |
tasks: | |
- apt_repository: repo='ppa:webupd8team/java' | |
# - name: Autoaccept license for Java7 | |
# debconf: name='oracle-java7-installer' question='shared/accepted-oracle-license-v1-1' value='true' vtype='select' | |
- name: Autoaccept license for Java8 | |
debconf: name='oracle-java8-installer' question='shared/accepted-oracle-license-v1-1' value='true' vtype='select' |
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
Enable-PSRemoting |