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
| #================================ | |
| # drawing settings | |
| #================================ | |
| load 'palette.pal' # カラーパレットを読込み | |
| set isosample 32, 32 #メッシュの細かさ x方向, y方向 | |
| set hidden3d # 陰面消去 | |
| #set grid # 底面にグリッドを表示 | |
| set pm3d at b # 底面に正射影 |
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 debian:stretch | |
| SHELL ["/bin/bash", "-c"] | |
| RUN apt-get update \ | |
| && apt-get install -y wget gcc make inkscape \ | |
| && wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs927/ghostscript-9.27.tar.gz \ | |
| && cd ghostscript-9.27 \ | |
| && ./configure --disable-fileinfo \ | |
| && make -j1 \ |
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
| # install emacs | |
| sudo apt-get -y update | |
| sudo apt-get -y install software-properties-common | |
| sudo add-apt-repository -y ppa:kelleyk/emacs | |
| sudo apt-get -y install emacs | |
| # set ssh keys | |
| mkdir ~/.ssh | |
| chmod 700 ~/.ssh | |
| curl http://github.com/GITHUB_USERNAME.keys | sudo sshcommand acl-add ubuntu DESK |
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
| ## DIRECTORY-CONFIGURATION | |
| project/ | |
| ├ main.tex | |
| ├ latexmkrc | |
| ├ figures/ | |
| └ styles/ | |
| ├ report.sty | |
| ├ report-compact.sty | |
| └ util.sty |
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
| \documentclass{beamer} | |
| \usetheme{Antibes} | |
| \title{TITLE} | |
| \subtitle{SUBTITLE} | |
| \author{AUTHOR} | |
| \date[]{May 1, 2019} | |
| \institute{Foobar University} | |
| \begin{document} |
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
| <div id="app"></div> | |
| <script src="./vue.js"></script> | |
| <script> | |
| new Vue({ | |
| el: '#app', | |
| template: `<div> | |
| <p><input v-model="message"></p> | |
| <p>{{message}}</p> | |
| </div>`, | |
| data() { |
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
| .vscode | |
| bin/ | |
| out/ | |
| # Java | |
| *.class | |
| *.jar | |
| *.war | |
| *.ear |
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
| ssh-keygen -t rsa |
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
| # HackMD (https://hub.docker.com/r/hackmdio/hackmd) | |
| git clone https://github.com/hackmdio/docker-hackmd.git | |
| cd docker-hackmd | |
| docker-compose up -d | |
| # Access localhost:3000 | |
| # Swagger Editor (https://github.com/swagger-api/swagger-editor) | |
| docker pull swaggerapi/swagger-editor | |
| docker run -d -p 80:8080 swaggerapi/swagger-editor | |
| # Access localhost |
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
| Vagrant.configure(2) do |config| | |
| config.vm.box = "bento/centos-6.7" | |
| config.vm.network "private_network", ip: "192.168.33.10" |
OlderNewer