Skip to content

Instantly share code, notes, and snippets.

Attaching to dockerzulip_memcached_1, dockerzulip_database_1, dockerzulip_redis_1, dockerzulip_rabbitmq_1, dockerzulip_zulip_1
redis_1 | Starting redis-server...
redis_1 |  _._
redis_1 |  _.-``__ ''-._
redis_1 |  _.-`` `. `_. ''-._ Redis 2.8.4 (00000000/0) 64 bit
redis_1 |  .-`` .-```. ```\/ _.,_ ''-._
redis_1 |  ( ' , .-` | `, ) Running in stand alone mode
redis_1 |  |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
redis_1 |  | `-._ `._ / _.-' | PID: 1
redis_1 |  `-._ `-._ `-./ _.-' _.-'
Attaching to dockerzulip_memcached_1, dockerzulip_database_1, dockerzulip_redis_1, dockerzulip_rabbitmq_1, dockerzulip_zulip_1
database_1 | Creating user "zulip"...
database_1 | 2015-11-09 13:23:29 UTC [25-1] LOG: database system was interrupted; last known up at 2015-11-09 13:14:39 UTC
database_1 | 2015-11-09 13:23:30 UTC [25-2] LOG: database system was not properly shut down; automatic recovery in progress
database_1 | 2015-11-09 13:23:30 UTC [25-3] LOG: redo starts at 0/1B1A400
database_1 | 2015-11-09 13:23:30 UTC [25-4] LOG: record with zero length at 0/1B1B4F0
database_1 | 2015-11-09 13:23:30 UTC [25-5] LOG: redo done at 0/1B1B4C0
database_1 | 2015-11-09 13:23:30 UTC [25-6] LOG: last completed transaction was at log time 2015-11-09 13:14:42.705376+00
database_1 | 2015-11-09 13:23:30 UTC [25-7] ERROR: role "zulip" already exists
database_1 | 2015-11-09 13:23:30 UTC [25-8] STATEMENT: CREATE ROLE "zulip" with L
@bluesalt
bluesalt / 0_reuse_code.js
Created June 13, 2014 23:11
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@bluesalt
bluesalt / pom.xml
Created March 27, 2014 13:14
The Maven pom file
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.jeffli</groupId>
<artifactId>avrosamples</artifactId>
<packaging>jar</packaging>
<version>0.99</version>
<name>avrosamples</name>
<url>http://maven.apache.org</url>
#!/usr/bin/env ruby
require 'sinatra'
configure do
set :counter, 0
end
get '/' do
"#{settings.counter}"
package main
import (
. "launchpad.net/gocheck"
"testing"
)
func Test(t *testing.T) {
TestingT(t)
}
@bluesalt
bluesalt / gist:3765035
Created September 22, 2012 03:38
shell script for gorouter ci job
export PATH=$VCAP_RUBY19/bin:$PATH
GOLANG_PATH=`readlink -nf /var/vcap/packages/golang`
GO2XUNIT_DIR=`readlink -nf /var/vcap/packages/go2xunit`
VCAP_RUBY19_REALPATH=`readlink -nf $VCAP_RUBY19`
export PATH=$GOLANG_PATH/bin:$PATH
GIT_REALPATH=`readlink -nf /var/vcap/packages/git`
GOROUTER_DIR=$PWD/
cd /var/vcap/packages/golang