<!doctype html>
<html lang="en-US" ng-app="App">
<head>
<meta charset="UTF-8">
<script src="angular.js"></script>
<title>Users</title>
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
(function() { | |
'use strict'; | |
//http://stackoverflow.com/a/26086754/5807080 | |
angular | |
.module('blocks.uirouterlogger') | |
.factory('uirouterlogger', uirouterlogger); | |
uirouterlogger.$inject = ['$rootScope', '$log']; |
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
function defaults(_defaults, opts) { | |
opts = opts || {}; | |
return angular.extend(angular.copy(_defaults), opts); | |
} | |
function foo(options) { | |
var _defaults = { | |
bar: 'baz' | |
}; | |
options = defaults(_defaults, options); | |
} |
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
// 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) |
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
function getCount(words) { | |
var words = (typeof words == 'string') ? words : '', | |
count = re => (words.match(re) || []).length, //when match fails to match, it returns null | |
vowels = count(/[aeiou]/ig), //g - return all matches, not only the first one | |
consonants = count(/[bcdfghjklmnpqrstvxzwy]/ig); | |
return {vowels, consonants}; | |
} |
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
//- https://github.com/pugjs/pug/issues/1852 | |
mixin tabs(tabsItems) | |
- var tabActive = function (t) { return t.active ? 'active' : '' } | |
mixin tab(index) | |
- tabsItems[index].body = block; | |
block | |
- tabsItems[0].active = tabsItems[0].active || !tabsItems.some(function (t) { return t.active; }) |
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
// === Arrays | |
var [a, b] = [1, 2]; | |
console.log(a, b); | |
//=> 1 2 | |
// Use from functions, only select from pattern | |
var foo = () => [1, 2, 3]; |
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
# See list of docker virtual machines on the local box | |
$ docker-machine ls | |
NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS | |
default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1 | |
# Note the host URL 192.168.99.100 - it will be used later! | |
# Build an image from current folder under given image name | |
$ docker build -t gleb/demo-app . |
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
<div class="contact-form"> | |
<form id="contactform" name="contactform" method="post"> | |
<div class="row"> | |
<div class="col-sm-6"> | |
<input name="name" class="form-control" type="text" placeholder="Name*"/> | |
</div> | |
<div class="col-sm-6"> | |
<input name="email" class="form-control" type="email" placeholder="Email*"/> | |
</div> | |
<div class="clearfix"></div> |
OlderNewer