Highly opionionated.
Installs the following automatically:
- Homebrew
- Composer
- JQ
- PHP
http { | |
upstream backend { | |
server node1.example.com; | |
server node2.example.com; | |
} | |
} | |
server { | |
location / { | |
proxy_pass http://backend; |
#include "ScriptRunner.h" | |
UWORD script_ptr = NULL; | |
UWORD script_start_ptr = NULL; | |
UBYTE script_ptr_bank = NULL; | |
UBYTE script_continue = NULL; | |
UBYTE script_stack_ptr = NULL; | |
STACKFRAME script_stack[8] = { |
const $watchers = Symbol('watchers') | |
export default class { | |
constructor (props = {}, handlers = []) { | |
this[$watchers] = [] | |
this[Symbol.toStringTag] = this.constructor.name | |
Object.defineProperty(this, '$watch', { | |
value (prop, handler) { | |
if (this[prop]) { |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks |
rebase
vs merge
).rebase
vs merge
)reset
vs checkout
vs revert
)git rev-parse
)pull
vs fetch
)stash
vs branch
)reset
vs checkout
vs revert
)prefix operator ++ | |
prefix operator -- | |
postfix operator ++ | |
postfix operator -- | |
@discardableResult prefix func ++( a: inout Int) -> Int { | |
a += 1 | |
return a | |
} |