Skip to content

Instantly share code, notes, and snippets.

//mock for superagent - __mocks__/superagent.js
var mockDelay;
var mockError;
var mockResponse = {
status: function() {
return 200;
},
ok: function() {
return true;
@Maxim-Filimonov
Maxim-Filimonov / README.md
Last active August 29, 2015 14:21
Buildkite agent cloud init config

Prerequisites

Tested only on google cloud, might need some adjustment in image path to make it work on AWS/DigitalOcean. Google instance should have two disks attached named: var-lib-docker and buildkite var-lib-docker will be used to store docker images so give it as much space as you can buildkite is stored to store buildkite builds and artifacts

Variables

Just search for < to find what to replace

@Maxim-Filimonov
Maxim-Filimonov / Dockerfile
Created April 24, 2015 09:52
Docker meteor example files
# User for local dev
FROM app/base
RUN npm install -g orion-cli
# This forces package-catalog update. Should speed up further runs
RUN meteor show meteor-platform
@Maxim-Filimonov
Maxim-Filimonov / docker-compose-standalone.log
Created March 7, 2015 03:05
Docker-compose + buildkite not working
docker-compose --verbose -p buildkite32d53ff4aab945cd817bb49fa11be2d6 run app ./run_tests.sh
Compose version 1.1.0-rc2
Docker base_url: http+unix://var/run/docker.sock
Docker version: KernelVersion=3.18.6, Arch=amd64, ApiVersion=1.17, Version=1.5.0, GitCommit=a8a31ef-dirty, Os=linux, GoVersion=go1.3.3
docker containers <- (all=True)
docker containers -> (list with 13 items)
Creating buildkite32d53ff4aab945cd817bb49fa11be2d6_redis_1...
docker containers <- (all=True)
docker containers -> (list with 13 items)
docker create_container <- (environment={}, image=u'redis:2.8.17', detach=False, name=u'buildkite32d53ff4aab945cd817bb49fa11be2d6_redis_1')
@Maxim-Filimonov
Maxim-Filimonov / cloud66-services.yml
Last active August 29, 2015 14:16
Logentries failure to launch
---
services:
logentries:
image: logentries/docker-logentries
volumes: ["/var/run/docker.sock:/var/run/docker.sock"]
command: " -t <SECRET_TOKEN> -a host=`uname -n`"
@Maxim-Filimonov
Maxim-Filimonov / bootstrap.sh
Created February 24, 2015 11:13
Docker-compose bootstrap
#!/bin/bash
#
# _ _ _ _ _ _ _ _ _ _
# | | (_) | | | | (_) | | | | | | |
# | |__ _ _ _| | __| | | ___| |_ ___ | |__ ___ ___ | |_ ___| |_ _ __ __ _ _ __
# | '_ \| | | | | |/ _` | |/ / | __/ _ \ | '_ \ / _ \ / _ \| __/ __| __| '__/ _` | '_ \
# | |_) | |_| | | | (_| | <| | || __/ | |_) | (_) | (_) | |_\__ \ |_| | | (_| | |_) |
# |_.__/ \__,_|_|_|\__,_|_|\_\_|\__\___| |_.__/ \___/ \___/ \__|___/\__|_| \__,_| .__/
# | |
@Maxim-Filimonov
Maxim-Filimonov / workaround.md
Last active August 29, 2015 14:10
DNSimple outage workaround
  1. Find an ip address of site you want to access ( including subdomain as each subdomain can point to different ip) using cached DNS records -> https://www.whatsmydns.net

Example https://www.whatsmydns.net/#A/docs.semaphoreapp.com 2. Put the following in your /etc/hosts IP_ADDRESS WEBSITE_WITH_SUBDOMAIN

Example: 50.31.209.254 docs.semaphoreapp.com 3. Access website using normal address in browser. Does not require restart unless you are on windows.

@Maxim-Filimonov
Maxim-Filimonov / index.html
Created July 10, 2014 02:43
A Pen by Secret Sam.
<section ng-app="myApp" ng-controller="MainCtrl">
<h4 class="text-center">AngularJS Numeric Value Widget</h4>
<div class="well entry">
<label>Activity entry</label>
<input type="text" ng-model="activityUnitValue" name="unitValue" integer="" numeric="" positive="">
</div>
</section>
@Maxim-Filimonov
Maxim-Filimonov / rtd.log
Created July 4, 2014 22:53
Log for RTD
/node_modules/.bin/rtd runOnce --debug <<<
Running "bgShell:killAll" (bgShell) task
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/node_modules/grunt-bg-shell/tasks/bg-shell.coffee
Running "downloadAndOrStartSelenium" task
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/Gruntfile.js
Running "bgShell:startKarma" (bgShell) task
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/node_modules/grunt-bg-shell/tasks/bg-shell.coffee
@Maxim-Filimonov
Maxim-Filimonov / parser.go
Last active December 28, 2015 06:49
Parsing flat structure into a tree in Go %)
package parser
import (
"database/sql"
"fmt"
)
type Row struct {
MenuId int
Menu sql.NullString