- Is it involving back-end and front-end? 1
- Is it involving multiple models/apps? 1
- Is a database schema change required? 1
- How many ui screens are involved? N (as number of UI screens involved)
- Is it involving changes on the mobile apps/extensions? N (as number of apps/extensions involved)
- Is this a new feature? 1 (due to uncertainity)
- Will a feature switch be used? 1
- Does it involve old code (> 2 years old)? 1
- Do we need to upgrade a library? 1
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
release-rc () { | |
rctag=$1 | |
project=$2 | |
# Validates tag name | |
regex='^[0-9]+\.[0-9]+\.[0-9]+' | |
if [[ ! $rctag =~ $regex ]]; then | |
echo "Tag version is not following the pattern" |
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
const initialObjectivesState = { | |
aString: '', | |
}; | |
/* | |
* As the number of actions increases, the cyclomatic complexity of the reducer will skyrocket | |
*/ | |
const Reducer = function (state = initialObjectivesState, action) { | |
switch(action.type){ | |
"UPDATE_STRING": function(state, action){ |
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
# You will need fswatch installed (available in homebrew and friends) | |
# The command below will run tests and wait until fswatch writes something. | |
# The --stale flag will only run stale entries, it requires Elixir v1.3. | |
fswatch lib/ test/ | mix test --stale --listen-on-stdin |
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
import time | |
import getpass | |
import requests | |
from gmusicapi import Mobileclient | |
import spotipy | |
key = '3qetuttqnjhwfbv2usagog6cca' | |
secret = '2q0buOGtQNaNih7kyorJxA' |
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
var request = require("request"), | |
cheerio = require("cheerio"), | |
url = "https://www.google.com/search?q=data+mining", | |
corpus = {}, | |
totalResults = 0, | |
resultsDownloaded = 0; | |
function callback () { | |
resultsDownloaded++; |
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
# Public : Base on the `label` and the `fieldset`, return the element id of the | |
# linked input. | |
# | |
# label - {String} Label of the input targeted. | |
# fieldset - {String} In case several label with the same value are visible, | |
# the fieldset can be provided to limit the research. (default: ''). | |
# | |
# Returns | |
# an {Error} | |
# a {Number} which is the element id |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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
set nocompatible " Disable vi-compatibility | |
set t_Co=256 | |
colorscheme xoria256 | |
set guifont=menlo\ for\ powerline:h16 | |
set guioptions-=T " Removes top toolbar | |
set guioptions-=r " Removes right hand scroll bar | |
set go-=L " Removes left hand scroll bar | |
set linespace=15 |
NewerOlder