This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
// array utils | |
// ================================================================================================= | |
const combine = (...arrays) => [].concat(...arrays); | |
const compact = arr => arr.filter(Boolean); | |
const contains = (() => Array.prototype.includes | |
? (arr, value) => arr.includes(value) | |
: (arr, value) => arr.some(el => el === value) |
alias useio='ln -sf /usr/local/bin/iojs /usr/local/bin/node && node -v' | |
alias usenode='(brew unlink node && brew link --overwrite node) > /dev/null && node -v' |
We will compare ASP.NET and Node.js for backend programming.
Source codes from examples.
This document was published on 21.09.2015 for a freelance employer. Some changes since then (14.02.2016):
async/await
. yield
and await
are used almost in the same way, so I see no point to rewrite the examples.It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
#!/bin/bash | |
set -euo pipefail | |
xcrun altool --upload-app --type ios --file "path/to/foo.ipa" --username "$ITC_USER" --password "$ITC_PASSWORD" |
<PropertyGroup> | |
<TargetFramework>netstandard1.6</TargetFramework> | |
<PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wpa81</PackageTargetFallback> | |
</PropertyGroup> |
# Anki Deadline | |
# Anki 2 plugin | |
# Author: EJS | |
# Version 0.1 | |
# Description: Adjusts 'New Cards per Day' setting of options group to ensure all cards | |
# are seen by deadline. | |
# License: GNU GPL v3 <www.gnu.org/licenses/gpl.html> | |
from __future__ import division | |
import datetime, time, math | |
from anki.hooks import wrap, addHook |
Live Table: https://diafygi.github.io/webcrypto-examples/
I couldn't find anywhere that had clear examples of WebCryptoAPI, so I wrote examples and made a live table with them. Pull requests welcome!