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 red = Math.rand() * 255 | |
const green = Math.rand() * 255 | |
const blue = Math.rand() * 255 | |
return [red, green, blue] |
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
# Credit: Martin Ankerl: How to Generate Random Colors Programmatically | |
# Source: https://martin.ankerl.com/2009/12/09/how-to-create-random-colors-programmatically/ | |
# use golden ratio | |
golden_ratio_conjugate = 0.618033988749895 | |
h = rand # use random start value | |
gen_html { | |
h += golden_ratio_conjugate | |
h %= 1 | |
hsv_to_rgb(h, 0.5, 0.95) |
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
function generateComplementaryColors ( numberToGenerate ) { | |
/** | |
* I: Three arguments are the number of complementary colors to generate (integer > 0), | |
* O: A set of color and pattern | |
* Credit for the inspiration to use the golden ratio goes to Martin Ankerl who wrote: | |
* https://martin.ankerl.com/2009/12/09/how-to-create-random-colors-programmatically/ | |
* NB: Definitions of helperfunctions `rgbFromHSL` and `hexFromRGB` can be found here: | |
* https://gist.github.com/stephencweiss/eab510dabb2ba50652434372e46b5980 | |
*/ |
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
/** | |
* This gist covers the conversion of color values. | |
* It includes: | |
* 1) hsvFromRGB | |
* 2) rgbFromHSV | |
* 3) hslFromRGB | |
* 4) rgbFromHSL | |
* 5) hexFromRGB | |
* 6) rgbFromHex | |
* |
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 goldenRatioConjugate = 0.61803398749895; | |
const hues = [] | |
const patterns = ['plus', 'cross', 'dash', 'cross-dash', 'dot', 'dot-dash', 'disc', 'ring', 'line', 'line-vertical', 'weave' , 'zigzag', 'zigzag-vertical', 'diagonal', 'diagonal-right-left','square', 'box', 'triangle', 'triangle-inverted', 'diamond', 'diamond-box'] | |
const saturation = 0.8; | |
const lightness = 0.5; | |
function hslToRgb(h, s, l) { | |
var r, g, b; | |
if (s == 0) { |
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
// sh | |
# In one terminal window | |
$ node server/index.js 8082 | |
listening on port 8082 | |
# In a different terminal window | |
$ node server/index.js 8083 | |
listening on port 8083 |
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
// sh | |
FAIL jestTests/app.test.js | |
● Test suite failed to run | |
Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @ba | |
bel/core, it is likely that something in your build process is loading the wrong version. Inspect the stack trace | |
of this error to look for the first entry that doesn't mention "@babel/core" or "babel-core" to see what is call | |
ing Babel. (While processing preset: "/Users/Stephen/Documents/_coding/matilda/node_modules/@babel/preset-env/lib | |
/index.js") |
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
/** | |
* Boolean overview | |
* if (a < b) { | |
* // do this because it's true | |
* } else { | |
* // do this because it's false | |
* } | |
*/ | |
const arr = [4,1,2,5,3,2]; |
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 nestedArray = [ [ 'm', 1 ], [ 'i', 4 ], [ 's', 4 ], [ 'p', 2 ] ]; | |
function descNumbersAscChar(arrA, arrB) { | |
if (arrA[1] > arrB[1]) { return -1 } | |
else if (arrA[1] === arrB[1]) { | |
if (arrA[0] < arrB[0]) { return -1 } | |
else if (arrA[0] > arrB[0]) { return 1} | |
} | |
else if (arrA[1] < arrB[1]) { return 1 } | |
else { |
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 arr = [4,1,2,5,3,2]; | |
function ascendingSort(a, b) { | |
if (a < b) { return -1 } | |
return 1 | |
}; | |
function descendingSort(a, b) { | |
if (a < b) { return 1 } | |
return -1 |