Skip to content

Instantly share code, notes, and snippets.

View wifelette's full-sized avatar

Leah Silber wifelette

View GitHub Profile
@wifelette
wifelette / RustConf2019_Sizing.txt
Created April 8, 2019 21:33
RustConf 2019 Tshirt Size Guides
Men's cut tshirts will most likely be the DT6000: https://www.apparelvideos.com/cs/CatalogBrowser?todo=mm&productId=DT6000
Women's cut tshirts will most likely be the DM1170L: https://www.apparelvideos.com/cs/CatalogBrowser?todo=mm&productId=DM1170L
Final selection may vary slightly based on design specifications.
var chocolateBars = ["snickers", "hundred grand", "kitkat", "skittles"]
function addElementToBeginningOfArray(array,element){
return ["element", ...array];
}
function destructivelyAddElementToBeginningOfArray(array,element){
var alteredArray = array.unshift(element);
return alteredArray;
}