I hereby claim:
- I am adamreisnz on github.
- I am adamreisnz (https://keybase.io/adamreisnz) on keybase.
- I have a public key whose fingerprint is 5C16 2312 D6A7 C9D7 E960 3CC9 5C21 BFA8 0BBB D694
To claim this, I am signing this object:
/** | |
* Module definition and dependencies | |
*/ | |
angular.module('Shared.History.Service', []) | |
/** | |
* Service definition | |
*/ | |
.factory('History', function($storage) { |
#! /bin/sh | |
# | |
# skeleton example file to build /etc/init.d/ scripts. | |
# This file should be used to construct scripts for /etc/init.d. | |
# | |
# Written by Miquel van Smoorenburg . | |
# Modified for Debian | |
# by Ian Murdock . | |
# Further changes by Javier Fernandez-Sanguino | |
# |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Assuming you have a master and dev branch, and that you make new | |
# release branches named as the version they correspond to, e.g. 1.0.3 | |
# Usage: ./release.sh 1.0.3 | |
# Get version argument and verify | |
version=$1 | |
if [ -z "$version" ]; then | |
echo "Please specify a version" |
{ | |
"name": "project-name", | |
"description": "Template for static sites", | |
"version": "1.0.0", | |
"homepage": "http://www.project-name.com", | |
"author": { | |
"name": "Adam Reis", | |
"url": "http://adam.reis.nz" | |
}, | |
"license": "UNLICENSED", |
root: true | |
extends: eslint:recommended | |
parserOptions: | |
ecmaVersion: 2017 | |
ecmaFeatures: | |
impliedStrict: true | |
sourceType: module | |
env: | |
es6: true | |
browser: true |
'use strict'; | |
module.exports = function waterfall(promises) { | |
return promises.reduce((previousPromise, promise) => { | |
return previousPromise.then(() => { | |
return promise(); | |
}); | |
}, Promise.resolve()); | |
}; |
Download and install the following applications:
/** | |
* Module definition and dependencies | |
*/ | |
angular.module('Api.DuplicateRequestsFilter.Decorator', []) | |
/** | |
* Config | |
*/ | |
.config(function($provide) { |
Angular directives |