タグ

2017年6月29日のブックマーク (2件)

  • GitHub - hashicorp/best-practices

    This repository contains best-practice infrastructures across different cloud providers, regions, environments, and operating systems. You can think of this as a library of Packer templates and Terraform modules that allow you to provision unique infrastructures by referencing the different templates and modules. We've tried to set this repository up in a way that we don't have to duplicate code,

    GitHub - hashicorp/best-practices
    aroma_black
    aroma_black 2017/06/29
    HashiCorpによるベストプラクティス
  • OSXのコマンドラインからすると捗った設定リスト - will and way

    mobilelaby.com 上記で紹介されていたiPhoneを接続した時に写真アプリの自動起動を防ぐターミナルでのコマンド defaults write com.apple.ImageCapture disableHotPlug -bool NO これ便利。実は他にもある。さらに、コマンドライン経由から設定することで、設定アプリではUI上不可能な値も設定できるので設定してまとめてみた。 フォーマット まずはdefaultsコマンドのフォーマットから 一般的なフォーマット サードパーティ製のアプリも含め、Dockの設定などがこちら。 書き込み defaults write DOMAIN KEY -TYPE VALUE 読み込み defaults read DOMAIN グローバルドメイン グローバルドメインと呼ばれる領域がある。これはジェネラルな内容、キーボードのキーリピート設定やマウスの

    OSXのコマンドラインからすると捗った設定リスト - will and way
    aroma_black
    aroma_black 2017/06/29
    “echo $(defaults domains) | tr -s ',' '\n' | while read domain; do; defaults read $domain; done; ” defaultsのダンプワンライナー