start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/env bash | |
# | |
# Author: @nikolaizujev | |
# | |
# Big respect to @mholt6 for making Caddy | |
# | |
# This script is based on: | |
# - https://www.calhoun.io/building-caddy-server-from-source/ | |
# - https://g.liams.io/liam/simple-build-caddy.git | |
# |
# -*- coding: utf-8 -*- | |
# vim: ft=yaml | |
wordpress-packages: | |
pkg.installed: | |
- pkgs: | |
- nginx | |
- nginx-common | |
- nginx-full | |
- mariadb-server | |
- mariadb-client |
zplug "plugins/git", from:oh-my-zsh, if:"(( $+commands[git] ))" | |
zplug "plugins/tmux", from:oh-my-zsh, if:"(( $+commands[tmux] ))" | |
zplug "plugins/docker", from:oh-my-zsh | |
zplug "plugins/docker-compose", from:oh-my-zsh | |
zplug "plugins/command-not-found", from:oh-my-zsh | |
zplug "plugins/common-aliases", from:oh-my-zsh | |
zplug "plugins/compleat", from:oh-my-zsh | |
zplug "plugins/git-extras", from:oh-my-zsh |
Currently, there is an explosion of tools that aim to manage secrets for automated, cloud native infrastructure management. Daniel Somerfield did some work classifying the various approaches, but (as far as I know) no one has made a recent effort to summarize the various tools.
This is an attempt to give a quick overview of what can be found out there. The list is alphabetical. There will be tools that are missing, and some of the facts might be wrong--I welcome your corrections. For the purpose, I can be reached via @maxvt on Twitter, or just leave me a comment here.
There is a companion feature matrix of various tools. Comments are welcome in the same manner.
$ cd /usr/local | |
$ git checkout b64d9b9c431642a7dd8d85c8de5a530f2c79d924 Library/Formula/node.rb | |
$ brew unlink node | |
$ brew install node | |
$ npm install -g npm@latest |
Complete Guide / Isseus / Common Problems: https://github.com/Homebrew/homebrew-php
# Install PHP with PHP-FPM and excluding snmp
brew install -v homebrew/php/php56 --with-fpm --without-snmp
# Enable "presence" events | |
# - http://docs.saltstack.com/en/latest/ref/configuration/master.html#presence-events | |
# - http://docs.saltstack.com/en/latest/topics/event/master_events.html#presence-events | |
presence_events: True | |
reactor: | |
# Note: This tag has a typo in it (version 2014.1.5), subject to change! | |
- 'salt/presense/change': | |
- /srv/reactor/presence.sls |
<?php | |
/** | |
* The render function is a lightweight template engine, that allows string | |
* interpolation and output escaping. | |
* | |
* ...and it fits in a tweet. | |
* | |
* @author Quentin Schuler aka Sukei <[email protected]> | |
*/ |