Skip to content

Instantly share code, notes, and snippets.

@vigor-rus
vigor-rus / show-clicked-row-details-right-way.md
Created January 9, 2016 11:51 — forked from umidjons/show-clicked-row-details-right-way.md
Show clicked row details. Using ng-switch, ng-click, ng-class, ng-repeat, $index.

Show clicked row details. Using ng-if, ng-repeat-start and ng-repeat-end directives

<!doctype html>
<html lang="en-US" ng-app="App">
<head>
	<meta charset="UTF-8">
	<script src="angular.js"></script>
	<title>Users</title>
@vigor-rus
vigor-rus / gist:6c29bd13dafe9684b324
Created February 23, 2016 20:35 — forked from rikh42/gist:efad95142b1be3429a94
Laravel Homestead XDebug Nginx and Composer config changes

Laravel Homestead XDebug Nginx and Composer config changes

/etc/nginx/fastcgi_params

Update nginx config to support a longer timeout to prevent it dropping the connection when trying to debug in PHP Storm

fastcgi_read_timeout 600; # Set fairly high for debugging
@vigor-rus
vigor-rus / uirouterlogger.js
Created June 9, 2016 14:50
simple ui-router logger snippet
(function() {
'use strict';
//http://stackoverflow.com/a/26086754/5807080
angular
.module('blocks.uirouterlogger')
.factory('uirouterlogger', uirouterlogger);
uirouterlogger.$inject = ['$rootScope', '$log'];
function defaults(_defaults, opts) {
opts = opts || {};
return angular.extend(angular.copy(_defaults), opts);
}
function foo(options) {
var _defaults = {
bar: 'baz'
};
options = defaults(_defaults, options);
}
@vigor-rus
vigor-rus / functional-utils.js
Created July 14, 2016 15:14 — forked from bendc/functional-utils.js
A set of pure and immutable ES2015 functions aimed to make functional JavaScript more idiomatic.
// 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)
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};
}
@vigor-rus
vigor-rus / pug tabs.jade
Created October 31, 2017 11:31
Tabs with Pug and bootstrap
//- 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; })
@vigor-rus
vigor-rus / destructuring.js
Created November 17, 2017 15:52 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];
@vigor-rus
vigor-rus / Docker shell commands.sh
Created December 1, 2017 16:48 — forked from bahmutov/Docker shell commands.sh
A personal cheat sheet for running local Node project in a Docker container
# 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 .
@vigor-rus
vigor-rus / contact.html
Created January 8, 2019 08:49 — forked from ShuvoHabib/contact.html
Mailgun Contact Form
<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>