Skip to content

Instantly share code, notes, and snippets.

View stephencweiss's full-sized avatar
🎉

Stephen Weiss stephencweiss

🎉
View GitHub Profile
@stephencweiss
stephencweiss / naive-rgb-color-generation.js
Created December 18, 2018 23:37
A random color generator
const red = Math.rand() * 255
const green = Math.rand() * 255
const blue = Math.rand() * 255
return [red, green, blue]
@stephencweiss
stephencweiss / gen_html.rb
Last active December 18, 2018 23:39
A ruby snippet for generating random colors using the golden ratio. Credit: Martin Ankerl
# 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)
@stephencweiss
stephencweiss / generateComplementaryColors.js
Last active December 18, 2018 23:37
Generate a number of complementary colors using the golden ratio
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
*/
@stephencweiss
stephencweiss / convertingColors.js
Last active December 26, 2018 16:24
Color conversion algorithms for HSV, HSL, and RGB in Javascript
/**
* This gist covers the conversion of color values.
* It includes:
* 1) hsvFromRGB
* 2) rgbFromHSV
* 3) hslFromRGB
* 4) rgbFromHSL
* 5) hexFromRGB
* 6) rgbFromHex
*
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) {
@stephencweiss
stephencweiss / process.argv - multiple ports
Created December 10, 2018 15:58
A simple example of passing multiple ports into a node process to be captured as process.argv[2]
// 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
// 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")
@stephencweiss
stephencweiss / JS - boolean custom sort
Created December 10, 2018 15:17
Using boolean logic to create a simple custom sort -- returning a 1 or -1
/**
* 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];
@stephencweiss
stephencweiss / JS - custom sort multi-condition
Created December 10, 2018 15:14
Example of multiple condition sort method for a nested array -- sorts numbers descending then letters ascending (in event of tie)
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 {
@stephencweiss
stephencweiss / JS - custom sort basics
Last active December 10, 2018 15:13
A basic ascending and descending use case for sorting an array with Javascript's built-in sort utilizing a custom sort function
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