I hereby claim:
- I am cbrunnkvist on github.
- I am conny (https://keybase.io/conny) on keybase.
- I have a public key whose fingerprint is 7E6F 21B0 5536 B1E6 B1D5 37FD BE54 54A1 14A6 40FD
To claim this, I am signing this object:
From c12288f5242d84a497c60452562b535f3044f1da Mon Sep 17 00:00:00 2001 | |
From: Conny Brunnkvist <[email protected]> | |
Date: Thu, 15 Dec 2016 18:42:13 +0700 | |
Subject: [PATCH] Echo access- and error log from dev server | |
--- | |
devel/Dockerfile | 1 + | |
1 file changed, 1 insertion(+) | |
diff --git a/devel/Dockerfile b/devel/Dockerfile |
I hereby claim:
To claim this, I am signing this object:
# ~/.bash_profile | |
# `docker-machine` is commonly used for controlling a local VM which acts as your | |
# Docker host. What occationaly happens is that I have to(*) restart the VM, and | |
# subsequently re-assign the DOCKER_* environment variables in each Terminal | |
# window I have open. These completion-friendly aliases makes it less of a chore. | |
alias docker-env-eval='eval "$(docker-machine env default)"' | |
alias docker-machine-refresh='(docker-machine stop || docker-machine kill) ; docker-machine start; docker-env-eval' |
'use strict'; | |
const Promise = require('bluebird'); | |
function someAsyncTask() { | |
return new Promise(function(resolve) { | |
let delay = Math.floor(Math.random() * 10000); | |
setTimeout(function () { | |
resolve(delay); |
{ | |
"type": "callback", | |
"source": { | |
"pushType": "gcm", | |
"invocationAPIs": [], | |
"bubbleParent": true, | |
"showTrayNotification": true, | |
"enabled": false, | |
"__propertiesDefined__": true, | |
"singleCallback": false, |
"\e[5D": backward-word | |
"\e[5C": forward-word |
# Place in /usr/share/X11/xorg.conf.d/05-lenovo-yoga-2-modeline.conf | |
Section "Monitor" | |
Identifier "Monitor0" | |
# Calculated with "cvt $((3200/2)) $((1800/2))" | |
# 1600x900 59.95 Hz (CVT 1.44M9) hsync: 55.99 kHz; pclk: 118.25 MHz | |
Modeline "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync | |
EndSection | |
Section "Screen" |
# name the uploadable archive | |
ARCHIVE=MyChromePackagedAppSubmission.zip | |
################### | |
DIR=$(shell basename `pwd`) | |
release: build/$(ARCHIVE) | |
@echo Archive created: $(PWD)/build/$(ARCHIVE) | |
build/$(ARCHIVE): build * |
<?php | |
namespace MVMS\ApiBundle\Tests; | |
trait ReflectsAndCleansPropertiesAfterTestTrait | |
{ | |
/** @after */ | |
public function cleanUpTestAndContainerProperties() | |
{ | |
if (($container = $this->getContainer()) != null) { | |
$refl = new \ReflectionObject($container); |
<?php | |
namespace MVMS\ApiBundle\Tests; | |
trait ClosesConnectionsAfterTestTrait | |
{ | |
public static $dbConnections = []; | |
/** @after */ | |
public function ensureDbConnectionsGetClosed() | |
{ |