Versioned and revised ideas for how to run a good tech company.
Edits can just be plain edited. Redactions must be turned into strikethrough and a comment added stating why the text/point is being removed.
| /* | |
| File: fn_findSpace.sqf | |
| Author: Rarek [AW] | |
| Description | |
| | A simple way to find empty space using a series of parameters. | |
| | Designed for Side Mission / Priority Target creators who wish | |
| | to easily find space without having to faff around with findSafePos, | |
| | randomPos and isFlatEmpty. | |
| | |
| // Very simple regex that supports ```big code blocks```, | |
| // `code highlights`, *bold*, _italic_ and ~strikethrough~, | |
| // isolating each group. | |
| /(`{3}([\S\s]+?)`{3})|(`(.+?)`)|(\*(.+?)\*)|(_(.+?)_)|(~(.+?)~)|(\n)|(.+?)/gm |
| function proxy () { | |
| return new Proxy(function () { | |
| return proxy() | |
| }, { | |
| apply (target, name) { | |
| return proxy() | |
| }, | |
| get (target, name) { | |
| switch (name) { |
| function scramble (message) { | |
| message = message || '' | |
| var ret = '' | |
| var re = /([a-zA-Z]+)|([^a-zA-Z]+)/g | |
| var match | |
| while (match = re.exec(message)) { | |
| if (match[2]) { | |
| ret += match[2] |
| var types = [ | |
| 'Date', | |
| 'FullYear', | |
| 'Hours', | |
| 'Milliseconds', | |
| 'Minutes', | |
| 'Month', | |
| 'Seconds', | |
| 'UTCDate', | |
| 'UTCFullYear', |
| # Requires http://brewformulas.org/Tree | |
| alias t="tree -I node_modules -C" |
Versioned and revised ideas for how to run a good tech company.
Edits can just be plain edited. Redactions must be turned into strikethrough and a comment added stating why the text/point is being removed.
I have not seen prelease versions utilized pre-1.0.0. It seems fairly pointless since the public API is not finalized yet. They become useful after 1.0.0 is released.
From semver.org:
Version 1.0.0 defines the public API. The way in which the version number is incremented after this release is dependent on this public API and how it changes.
| // Always break for args > 2 | |
| // All of the following are valid examples | |
| // usual | |
| myFunc(one, two) | |
| // > 2 args | |
| myFunc( | |
| one, | |
| two, |