I hereby claim:
- I am tad-lispy on github.
- I am lazurski (https://keybase.io/lazurski) on keybase.
- I have a public key ASDVgw6KS0S06Z4oBjfR7OTnwB8gFJqD13OVAvm5xY_1cgo
To claim this, I am signing this object:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z È Ê É Ô Ç Ñ | |
Toch kwam Connery in 1983 nog { ÉÉN } keer terug als James Bond in de speelfilm Never Say Never Again. | |
100 mensen opgepakt na illegale feesten in { HET } bos |
// @flow | |
export type Task<T> = any => Promise<T>; | |
export type SQSTask<T> = T => Promise<Object>; | |
// TODO: Move log function types annotations to @scrambled/logger | |
export type LogFunction = ( | |
'debug' | 'informational' | 'warning' | 'error', | |
string, |
#! /usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\t\n' | |
set -x | |
export DEBIAN_FRONTEND=noninteractive | |
# Install newer version of LXD | |
# See https://stgraber.org/2016/10/27/network-management-with-lxd-2-3/#comment-244979 | |
apt-get install --yes --quiet --target-release=xenial-backports lxd |
I hereby claim:
To claim this, I am signing this object:
# You can have default values in object destructuring | |
o1 = a: 1, b: 2 | |
{ a, b, c = 3} = o1 | |
c is 3 | |
o2 = a: 1, b: 2, c: 5 | |
{ a, b, c = 3} = o2 | |
c is 5 |
(function() { | |
var data; | |
data = { | |
fabric: { | |
type: 'shop', | |
name: 'XCATS', | |
stuff: 'Cool cats', | |
staff: { | |
boss: 'Lionel King', |
facebook.com/$third-party,media,subdocument,object,image,script,stylesheet,xmlhttprequest,popup |
document.getElementsByTagName('head')[0].appendChild(document.createElement('script')).src = '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js' |
description "Microserver container" | |
author "Tadeusz Łazurski <[email protected]>" | |
start on filesystem and started docker and started mongo-container | |
stop on runlevel [!2345] | |
respawn | |
exec /usr/bin/docker start -a microserver | |
pre-start exec sleep 30 |
# Docker Upstart and SysVinit configuration file | |
# Customize location of Docker binary (especially for development testing). | |
#DOCKER="/usr/local/bin/docker" | |
# Use DOCKER_OPTS to modify the daemon startup options. | |
DOCKER_OPTS="-r=false --dns 172.17.42.1 --dns 8.8.8.8 --dns 8.8.4.4" | |
# If you need Docker to use an HTTP proxy, it can also be specified here. | |
#export http_proxy="http://127.0.0.1:3128/" |