Date: [date]
Between us [company name] and you [customer name].
In short; neither of us will share any confidential information about each-other, by any means, with anyone else.
ffmpeg -framerate 25 -f image2 -pattern_type glob -i "*.JPG" -s:v 1920x1440 -c:v libx264 -r 25 ../timelapse.mp4 |
/** | |
* Filters an array of objects by custom predicates. | |
* | |
* @param {Array} array: the array to filter | |
* @param {Object} filters: an object with the filter criteria | |
* @return {Array} | |
*/ | |
function filterArray(array, filters) { | |
const filterKeys = Object.keys(filters); | |
return array.filter(item => { |
// Geosyl.js – Convert Latitude longitude Pairs to Readable Words. | |
// based on David Troy's https://github.com/davetroy/hash-js | |
// also see: http://www.movable-type.co.uk/scripts/hash.html | |
// Distributed under the MIT License | |
geosyl = (function(){ | |
var bits = [32, 16, 8, 4, 2, 1], | |
vocals = 'aeiou'.split(''), | |
consonants = 'kgsztdnhfpmyr'.split(''), |