no risk no life

技術、投資、時事など

2017-10-10から1日間の記事一覧

Vagrantゲスト同士でSSHできるようにする

経緯 WindowsでAnsibleを使いたかったので、VagrantでAnsible用VMを立ててそこからplaybookを流す vagrant-host-shellを導入 $ vagrant plugin install vagrant-host-shell insert_keyをfalseにする Vagrant.configure("2") do |config| ....... box = "ubun…

Vagrantfileを複数ファイルへ分割する

参考サイト Vagrantfileを分割する 子Vagrant的な使い方 ./Vagrantfile Vagrant.configure("2") do |config| config.ssh.insert_key = false config.vm.define "ansible-main" do |vagrant| box = "ubuntu/trusty64" vagrant.vm.box = box vagrant.vm.networ…

MaterialSheetFabライブラリ導入所感

GitHub https://github.com/gowong/material-sheet-fab LicenseはMIT。 Gradle CardViewを別途追記する。 dependencies { compile 'com.android.support:cardview-v7:26.0.1' compile 'com.gordonwong:material-sheet-fab:1.2.1' } ProGuard MaterialSheetFa…