I hereby claim:
- I am grocky on github.
- I am grocky (https://keybase.io/grocky) on keybase.
- I have a public key ASCC5Srfl0bjKJoz2YFVpq0jfxgz8rK1LhrmyvCxtijhrAo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
logDir=${HOME}/log | |
[ ! -d ${logDir} ] && mkdir -p ${logDir} | |
logFile=${logDir}/git-post-commit.log | |
[ ! -f ${logFile} ] && touch ${logFile} |
# set the command prefix to ` | |
set -g prefix "`" | |
unbind-key C-b | |
bind-key "`" send-prefix | |
set -g default-shell /bin/bash | |
set -g default-command bash | |
set -g status-fg white | |
set -g status-bg black |
#!/usr/bin/env bash | |
# Requires LocateMe executable (brew install locateme) | |
LocateMe -f '{"latitude":{LAT}, "longitude":{LON}, "altitude": {ALT}, "speed": {SPD}, "direction": {DIR}, "horizontalAccuracy": {HAC}, "verticalAccuracy": {VAC}, "time": "{TIME}", "host": "{HOST}"}' |
I hereby claim:
To claim this, I am signing this object:
Docker for Mac is the next step toward bringing native Docker to OSX. We've built some tooling around boot2docker
and docker-machine
that now is no longer needed! This guide will help you migrate from the Docker toolbox to Docker for Mac.
The docker toolbox provides a virtual machine that runs the docker engine and allows a local docker client to interact with the docker ecosystem (images, containers, etc.).
Upsource is a tool that brings Jetbrains IDE's code insights to code reviews. Upsource's integration with Jetbrains IDEs and GitHub are some of the most attractive features for us at VideoBlocks since we're heavy users of them both. We currently have over 50 private repos and use IntelliJ, PHPStorm and WebStorm to build our core products. All of our infrastructure is hosted on AWS now, so I decided to get this up and running there for quick evaluation.
This step is straight forward and there are already some good resources for setting up an EC2 instance. I won't go into detail here, but I chose an Ubuntu AMI at a size of M3.large
(which is the minimum instance size Jetbrains recommends). We're configuring our security group with the standard HTTP ports (80
and 443
) and exposing the standard SSH port 22
.
'use strict'; | |
require('coffee-script').register(); | |
var HubotTestHelper = require('hubot-test-helper'); | |
var helper = null; | |
var RoomUtils = (function() { | |
function RoomUtils(room) { | |
this.room = room; |
dash () { | |
open dash://${1} | |
} |
git clone git://source.ffmpeg.org/ffmpeg.git \ | |
&& cd ffmpeg \ | |
&& ./configure \ | |
--disable-debug \ | |
--enable-small \ | |
--extra-libs=-ldl \ | |
--enable-gpl \ | |
--enable-libass \ | |
--enable-libtheora \ | |
--enable-libvorbis \ |
#!/usr/bin/env bash | |
IDEA='' | |
PROJECT_DIR='' | |
function main() { | |
openIdea "$@" | |
} | |
function openIdea() { |