start new:
tmux
start new with session name:
tmux new -s myname
%title: Kubeception %author: @dghubble
// Youtube: https://www.youtube.com/watch?v=tlUiQa2JYQU
-> Experiments with QEMU/KVM on Kubernetes <-
| pipeline { | |
| agent { node { label 'swarm-ci' } } | |
| environment { | |
| TEST_PREFIX = "test-IMAGE" | |
| TEST_IMAGE = "${env.TEST_PREFIX}:${env.BUILD_NUMBER}" | |
| TEST_CONTAINER = "${env.TEST_PREFIX}-${env.BUILD_NUMBER}" | |
| REGISTRY_ADDRESS = "my.registry.address.com" | |
| SLACK_CHANNEL = "#deployment-notifications" | 
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Following script may be used for configuring complete and secure email server on fresh install of Debian 7. It will probably work on other distributions using apt-get. After minor changes you'll be able to use it on other Linux distros.
postfix.sh script.| #!/bin/sh | |
| set -e | |
| usage() { | |
| cat <<EOF | |
| Usage: $0 [options] | |
| Options: | 
| FROM opensuse:42.1 | |
| ARG USER_ID=1000 | |
| ARG GROUP_ID=1000 | |
| ARG NUGET_V2_VERSION=2.8.6 | |
| ENV NUGET_V2_PATH=/usr/local/bin/nuget-${NUGET_V2_VERSION}.exe | |
| ENV NUGET_V2_EXEC="mono ${NUGET_V2_PATH}" | |
| ARG NUGET_V3_VERSION=3.4.4 | 
| <?php | |
| class ImageType extends AbstractType | |
| { | |
| public function buildForm(FormBuilderInterface $builder, array $options) | |
| { | |
| if ($options['required_auto'] && ! $options['required']) { | |
| $builder->addEventListener(\Symfony\Component\Form\FormEvents::PRE_SET_DATA, array($this, 'determineRequired')); | |
| } | 
| require('font-awesome/css/font-awesome.css'); | |
| document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |