Creating the container
environemnt vars to set:
NAME = Martin
SSHUSER = martin
SSHPWD = pwdnitram
command to run: [ "/bin/bash", "-c", "echo hello $NAME; tail -f /dev/null" ]
environemnt vars to set:
NAME = Martin
SSHUSER = martin
SSHPWD = pwdnitram
command to run: [ "/bin/bash", "-c", "echo hello $NAME; tail -f /dev/null" ]
### | |
# Unity folders and files | |
### | |
[Aa]ssets/AssetStoreTools* | |
[Bb]uild/ | |
[Ll]ibrary/ | |
[Ll]ocal[Cc]ache/ | |
[Oo]bj/ | |
[Tt]emp/ | |
[Uu]nityGenerated/ |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
license: gpl-3.0 |
module.exports = [ | |
{ method: 'GET', path: '/users', handler: function () {} }, | |
{ method: 'GET', path: '/users/{id}', handler: function () {} } | |
]; | |
--- | |
var cart = require('./cart'); | |
var user = require('./user'); |
var vertical = d3.select(".chart") | |
.append("div") | |
.attr("class", "remove") | |
.style("position", "absolute") | |
.style("z-index", "19") | |
.style("width", "1px") | |
.style("height", "380px") | |
.style("top", "10px") | |
.style("bottom", "30px") | |
.style("left", "0px") |
"use strict"; | |
import * as hookMod from 'angular2/src/router/lifecycle/lifecycle_annotations'; | |
import * as routerMod from 'angular2/src/router/router'; | |
import {isBlank, isPresent} from 'angular2/src/facade/lang'; | |
import {StringMapWrapper} from 'angular2/src/facade/collection'; | |
import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; | |
import {BaseException} from 'angular2/src/facade/exceptions'; | |
import { | |
ElementRef, DynamicComponentLoader, Directive, Injector, provide, ComponentRef, Attribute |
#!/usr/bin/env bash | |
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Platform |
__cnt__ = 0; | |
jQuery('.stream .js-actionFavorite').each(function(i, ele) { ele = jQuery(ele); if (ele.css('display') != 'inline-block') { return; } setTimeout(function() { ele.click(); }, __cnt__++ * 500); | |
}); |