Initialize a git repo in the current directory
# git init
Add a remote called "origin"
Initialize a git repo in the current directory
# git init
Add a remote called "origin"
#RxJS 5 Operators By Example
UPDATE: I have moved the contents of this gist plus more to https://github.com/btroncone/learn-rxjs and http://www.learnrxjs.io. For expanded examples, explanations, and resources, please check out this new location!
A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
/** | |
* @author ebidel@ (Eric Bidelman) | |
* License Apache-2.0 | |
* | |
* Shows how to use Puppeeteer's code coverage API to measure CSS/JS coverage across | |
* different points of time during loading. Great for determining if a lazy loading strategy | |
* is paying off or working correctly. | |
* | |
* Install: | |
* npm i puppeteer chalk cli-table |
// to be run from current directory (e.g app/src/ ) | |
const fs = require('fs'); | |
const path = require('path'); | |
const REGEX = /beforeEach\(async\((.+?)\)\.compileComponents\(\);\n\s+}\)\);$/gms; | |
function readDirR(dir) { | |
return fs.statSync(dir).isDirectory() | |
? Array.prototype.concat( | |
...fs.readdirSync(dir).map(f => readDirR(path.join(dir, f))), |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
DEFAULT_USER="mckenzie" | |
ZSH_THEME="kenziebottoms" |