This file contains hidden or 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
# In git controlled folder run from console as mergeMaster name-of-branch | |
mergeMaster() { | |
git checkout master && | |
git pull && | |
git checkout $1 && | |
git pull && | |
git merge master | |
} |
This file contains hidden or 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
// ___ Internal logic ___ | |
/** | |
* Indication does browser have all required methods for application to work without polyfills | |
* @const {boolean} | |
*/ | |
const ALL_FEATURES_SUPPORTED_BY_BROWSE = Boolean(window.Promise && | |
window.Array.from && | |
window.Array.prototype.includes && | |
window.Map && |
This file contains hidden or 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
#!/bin/bash | |
# run it as sudo yes | sh ubuntu_software_installer.sh | |
# CURL | |
sudo apt-get install curl | |
# CHROME | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |
This file contains hidden or 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
{ | |
// Use IntelliSense to learn about possible Node.js debug attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Run Tests", | |
"type": "node", | |
"request": "launch", |
This file contains hidden or 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
#!/usr/bin/bash | |
############################################## | |
#from http://zeromq.org/intro:get-the-software | |
############################################## | |
#get zeromq | |
wget http://download.zeromq.org/zeromq-4.0.5.tar.gz | |
#unpack tarball package |
This file contains hidden or 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
<template> | |
<section> | |
<div class="avatar-group" data-group-size="4"> | |
<div class="avatar"> | |
<img src="https://randomuser.me/api/portraits/women/10.jpg"> | |
</div> | |
<div class="avatar"> | |
<img src="https://randomuser.me/api/portraits/women/2.jpg"> | |
</div> | |
<div class="avatar"> |
This file contains hidden or 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
{ | |
"extends": [ | |
"eslint:recommended" | |
], | |
"env": { | |
"browser": true, | |
"jasmine": true | |
}, | |
"ecmaFeatures": { | |
"blockBindings": true, |
This file contains hidden or 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 file is for unifying the coding style for different editors and IDEs. | |
# More information at http://EditorConfig.org | |
# No .editorconfig files above the root directory | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf |
This file contains hidden or 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
/************************************************ | |
CSS RESET | |
Eric Meyers’ CSS reset and tested | |
box-sizing fix popularized by Paul Irish. | |
************************************************/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, |