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
| ### INSTALLATION NOTES ### | |
| # 1. Install Homebrew (https://github.com/mxcl/homebrew) | |
| # 2. brew install zsh | |
| # 3. Install OhMyZsh (https://github.com/robbyrussell/oh-my-zsh) | |
| # 4. brew install reattach-to-user-namespace --wrap-pbcopy-pbpaste && brew link reattach-to-user-namespace | |
| # 5. Install iTerm2 | |
| # 6. In iTerm2 preferences for your profile set: | |
| # Character Encoding: Unicode (UTF-8) | |
| # Report Terminal Type: xterm-256color | |
| # 7. Put itunesartist and itunestrack into PATH |
I wrote this gist to record the steps I followed to get docker running in my Raspberry Pi 3. The ARM ported debian version (Jessie) comes with an old version of docker. It is so old that the docker hub it tries to interact with doesn't work anymore :)
Hopefully this gist will help someone else to get docker running in their Raspberry Pi 3.
From original instructions at http://blog.hypriot.com/post/run-docker-rpi3-with-wifi/
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
| # rubocop:disable Style/HashSyntax | |
| # shoryuken用のタスク | |
| namespace :queues do | |
| desc 'Create default SNS & SQS' | |
| task 'setup' => :environment do | |
| # http://qiita.com/takeyuweb/items/cdc262d97c3e863c15ff | |
| # TODO | |
| end | |
| desc "List all SQS queues" |
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
| #!/usr/bin/env ruby | |
| # Dependencies: | |
| # - capsh | |
| # - cgroup-utils | |
| # - systemd | |
| # - ruby | |
| # | |
| require 'fileutils' | |
| require 'logger' | |
| require 'optparse' |
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
| #!/bin/bash | |
| set -eu | |
| function ensureMounted() { | |
| source=$1 | |
| shift | |
| target=$1 | |
| shift | |
| type=$1 |
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
| /* | |
| This example was built using standard create-react-app out of the box with no modifications or ejections | |
| to the underlying scripts. | |
| In this example, i'm using Google as a social provider configured within the Cognito User Pool. | |
| Each step also represents a file, so you can see how I've chosen to organize stuff...you can do it however | |
| you'd like so long as you follow the basic flow (which may or may not be the official way....but its what I found that works. | |
| The docs are pretty horrible) | |
-
brew install gnupg21, pinentry-mac(this includes gpg-agent and pinentry) -
Generate a key:
$ gpg2 --gen-key -
Take the defaults. Whatevs
-
Tell gpg-agent to use pinentry-mac:
$ vim ~/.gnupg/gpg-agent.conf
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
| #!/usr/bin/env bash | |
| #Build and install neovim for Debian | |
| #See: https://neovim.io/ | |
| #See: https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start | |
| #Save current dir | |
| pushd . > /dev/null | |
| #Install dependencies |

