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
#!/bin/bash | |
############################################### | |
# To use: | |
# chmod +x install-redis.sh | |
# ./install-redis.sh | |
############################################### | |
version=3.2.0 | |
echo "*****************************************" | |
echo " 1. Prerequisites: Install updates, set time zones, install GCC and make" |
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
{ | |
"beautify.config": { | |
"js": { | |
"e4x": true | |
}, | |
"css": { | |
"selector_separator_newline": true, | |
"newline_between_rules": true, | |
"preserve_newlines": true, | |
"end_with_newline": true |
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
package main | |
import ( | |
"bytes" | |
"encoding/base64" | |
"errors" | |
"github.com/aws/aws-lambda-go/lambda" | |
"github.com/disintegration/imaging" | |
"github.com/nickalie/go-webpbin" | |
"io/ioutil" |
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
/* | |
Usage: | |
const http = json => fetch('http://yourGraphQLEndpoint.com', { | |
method: 'POST', | |
cache: 'no-store', | |
headers: { | |
'content-type': 'application/json' | |
}, | |
body: JSON.stringify(json) |
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 filter from 'lodash/filter'; | |
import forEach from 'lodash/forEach'; | |
import isFunction from 'lodash/isFunction'; | |
import isString from 'lodash/isString'; | |
export default class Events { | |
constructor(persist) { | |
this._fns = []; | |
} |
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
export function get(fn, defaultValue = null, args) { | |
try { | |
const result = fn(args); | |
return result !== undefined && result !== null ? result : defaultValue; | |
} catch (e) { | |
return defaultValue; | |
} | |
} |
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
// safe object getter setter | |
// get({}, ['prop1', 'prop2], []) | |
// set({}, ['prop1', 'prop2], []) | |
const isString = path => typeof path === 'string'; | |
export function get(object, path, defaultValue = null) { | |
const string = isString(path); | |
const length = path.length; |
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 _ from 'lodash'; | |
export const degToRad = x => { | |
return x / 180 * Math.PI; | |
}; | |
export const radToDeg = x => { | |
return x / Math.PI * 180; | |
}; |
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 regex = { | |
headline: /^(#{1,6})([^#\n]+)$/m, | |
hr: /^(?:([*\-_] ?)+)\1\1$/gm, | |
style: /(?:([*_~]{1,3}))([^*_~\n]+[^*_~\s])\1/g | |
}; | |
export default function(str) { | |
let stra; | |
/* headlines */ |
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
{"user":1,"assertiveSize":8,"assertiveRatio":7.207,"recsSize":138,"testSize":111} | |
{"user":2,"assertiveSize":2,"assertiveRatio":10,"recsSize":149,"testSize":20} | |
{"user":3,"assertiveSize":0,"assertiveRatio":0,"recsSize":150,"testSize":14} | |
{"user":4,"assertiveSize":1,"assertiveRatio":10,"recsSize":151,"testSize":10} | |
{"user":5,"assertiveSize":9,"assertiveRatio":17.308,"recsSize":145,"testSize":52} | |
{"user":6,"assertiveSize":9,"assertiveRatio":10.465,"recsSize":143,"testSize":86} | |
{"user":7,"assertiveSize":15,"assertiveRatio":8.427,"recsSize":127,"testSize":178} | |
{"user":8,"assertiveSize":3,"assertiveRatio":11.538,"recsSize":148,"testSize":26} | |
{"user":9,"assertiveSize":1,"assertiveRatio":10,"recsSize":150,"testSize":10} | |
{"user":10,"assertiveSize":9,"assertiveRatio":10,"recsSize":144,"testSize":90} |