Emoji | Raw Emoji Code | Description |
---|---|---|
馃帹 | :art: |
when refactoring format/structure of the code |
馃摑 | :pencil: |
when performing minor changes/fixing the code or language |
馃悗 | :racehorse: |
when improving performance |
馃摎 | :books: |
when writing docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm ERR! missing: archy@^1.0.0, required by [email protected] | |
npm ERR! missing: arrify@^1.0.1, required by [email protected] | |
npm ERR! missing: caching-transform@^1.0.0, required by [email protected] | |
npm ERR! missing: convert-source-map@^1.3.0, required by [email protected] | |
npm ERR! missing: debug-log@^1.0.1, required by [email protected] | |
npm ERR! missing: default-require-extensions@^1.0.0, required by [email protected] | |
npm ERR! missing: find-cache-dir@^0.1.1, required by [email protected] | |
npm ERR! missing: find-up@^2.1.0, required by [email protected] | |
npm ERR! missing: foreground-child@^1.5.3, required by [email protected] | |
npm ERR! missing: istanbul-lib-coverage@^1.1.1, required by [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.context.application.navigatedEvent.add(this, myCallbackFunction); | |
this.context.placeholderProvider.changedEvent.add(this, myCallbackFunction); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; | |
;; Domain: voitanos.io | |
;; Exported: 2017-08-29 18:39:17 | |
;; | |
;; This file is intended for use for informational and archival | |
;; purposes ONLY and MUST be edited before use on a production | |
;; DNS server. In particular, you must: | |
;; -- update the SOA record with the correct authoritative name server | |
;; -- update the SOA record with the contact e-mail address information | |
;; -- update the NS record(s) with the authoritative name servers for this domain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "AS-201", | |
"name": "", | |
"launch_date": "02/26/1966", | |
"end_date": "", | |
"image": "as-201.png", | |
"wiki_href": "https://en.wikipedia.org/wiki/AS-201", | |
"summary": "First flight of Saturn IB and Block I CSM; suborbital to Atlantic Ocean; qualified heat shield to orbital reentry speed", | |
"crew": [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
minicrm-addin-ng: | |
build: ./minicrm-addin-ng | |
image: andrewconnell/minicrm-addin-ng:latest | |
ports: | |
- "4200:4200" | |
minicrm-api: | |
build: ./minicrm-api | |
image: andrewconnell/minicrm-api:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ req ] | |
default_bits = 2048 | |
default_keyfile = server-key.pem | |
distinguished_name = subject | |
req_extensions = req_ext | |
x509_extensions = x509_ext | |
string_mask = utf8only | |
# The Subject DN can be formed using X501 or RFC 4514 (see RFC 4519 for a description). | |
# Its sort of a mashup. For example, RFC 4514 does not provide emailAddress. |
$ node -v
you want to see the results of v6.. or higher...
if not, install the latest LTS / Current version from https://nodejs.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
"project": { | |
"name": "apollo" | |
}, | |
"apps": [ | |
{ | |
"root": "src", | |
"outDir": "dist", | |
"assets": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- drip auto-tagger --> | |
<!-- | |
this script does four things: | |
1) finds all tags for a blog post & converts to tags in the format: interest-[pascalCasePostTag] | |
2) converts blog post title to drip tag in the format: read-[pascalCaseBlogPostTitle] | |
3) sends the tags to drip for the current user | |
4) registers "Read blog post" drip event on current user | |
--> | |
<p> | |
<script type="text/javascript"> |