- Make sure you have configured git tools: see configuring tools.
- Make sure you have updated git aliases: see how to register aliases.
After each commit in our branch, in order to be up-to-date with the integration branch.
- Make sure you have configured git tools: see configuring tools.
- Make sure you have updated git aliases: see how to register aliases.
After each commit in our branch, in order to be up-to-date with the integration branch.
#!/bin/bash | |
# To create in [.babun/]cygwin/usr/local/bin/subl with chmod +x | |
ARGS="" | |
while test $# -gt 0 | |
do | |
ARGS="$ARGS ${1#/cygdrive/[a-zA-Z]}"; # Remove /cygdrive and disk letter from the path | |
shift | |
done |
const isObject = (it) => it != null && typeof it === 'object'; | |
/** | |
* Encodes an object to be used as query-string. | |
* It uses 'encodeURIComponent' to set each value. | |
* | |
* @param {object} data an object with key-value pairs to create the query-string | |
* @returns {string} the query-string | |
*/ | |
function toUrlParams(data) { |
/** | |
* High-order function that memoizes a function, by creating a scope | |
* to store the result of each function call, returning the cached | |
* result when the same inputs is given. | |
* | |
* @description | |
* Memoization is an optimization technique used primarily to speed up | |
* functions by storing the results of expensive function calls, and returning | |
* the cached result when the same inputs occur again. | |
* |
# in your .zshrc | |
function docker_clean() { | |
containers=$(docker ps -a -q -f status=exited) | |
# echo $containers | |
if [ "" != "$containers" ] ; then | |
docker rm -v $containers | |
fi | |
} |
pact install python-setuptools python-ming | |
pact install libxml2-devel libxslt-devel libyaml-devel | |
curl -skS https://bootstrap.pypa.io/get-pip.py | python | |
Optional/Not sure what these are for: | |
pip install virtualenv | |
curl -skS https://raw.githubusercontent.com/mitsuhiko/pipsi/master/get-pipsi.py | python |
/** | |
* Lightweight script to detect whether the browser is running in Private mode. | |
* @returns {Promise<boolean>} | |
* | |
* Live demo: | |
* @see https://output.jsbin.com/tazuwif | |
* | |
* This snippet uses Promises. If you want to run it in old browsers, polyfill it: | |
* @see https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js | |
* |
/** | |
* Adds or subtracts date portions to the given date and returns the new date. | |
* | |
* @param {Object} options: It contains the date parts to add or remove, and can have the following properties: | |
* - {Date} date: if provided, this date will be affected, otherwise the current date will be used. | |
* - {number} minutes: minutes to add/subtract | |
* - {Number} hours: hours to add/subtract | |
* - {Number} days: days to add/subtract | |
* - {Number} months: months to add/subtract | |
* - {Number} years: years to add/subtract |
var glob = require('glob'); | |
module.exports = { | |
entry: toObject(glob.sync('assets/**/*.js*')), | |
output: { | |
filename: '[name].js' | |
}, | |
//... | |
}; |
/** | |
* Determines whether a text is a palindrome. | |
* Text is lowercased and non-alphabetic characters are removed. | |
* | |
* @param {string} text - the words to check | |
* @return {boolean} | |
*/ | |
function isPalindrome(text) { | |
if (!text) return false; | |
text = text.replace(/[\W_]+/g, '').toLowerCase(); |