- 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 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
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 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
import time | |
import getpass | |
import requests | |
from gmusicapi import Mobileclient | |
import spotipy | |
key = '3qetuttqnjhwfbv2usagog6cca' | |
secret = '2q0buOGtQNaNih7kyorJxA' |
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
# 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 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
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 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
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" |
OlderNewer