Skip to content

Instantly share code, notes, and snippets.

View saracope's full-sized avatar
💾

Sara Cope saracope

💾
View GitHub Profile
@saracope
saracope / talk-outline.md
Created March 15, 2019 00:13
A generic talk outline applicable to a wide variety of domains

Ask: Why is this a problem and how wide spread is it

Identify: What are the things I need to know to understand the problem and what are the issues

Detect: How do I know if there's an issue like this in my project

Mitigate: What do I do when I see an issue in my project

Prevent: How do I prevent an issue from starting

@saracope
saracope / LGBTA-events-2019.md
Last active March 14, 2019 11:36
2019 LGBT & Allies Events

Sharing from the GSA LGBT & Allies Employee Association listserv:

International Transgender Day of Visibility -- Sunday, March 31, 2019 dedicated to celebrating transgender people and raising awareness of discrimination faced by transgender people worldwide.
Day of Silence -- Friday, April 12, 2019
Harvey Milk Day -- Wednesday, May 22, 2018 -- Celebration of being a member of the LGBT Community in public service
First Case of AIDS reported by CDC on June 5, 1981 -- Wednesday, June 5, 2019 (38th anniversary commemoration)
50th Commemoration of Stonewall Uprising -- Friday, June 28, 2019 Stonewall Inn, located at Christopher Street and Waverly Place, NYC)
[LGBT Pride Month 2019 NYC LGBT Pride March](https://2

@saracope
saracope / Gov-open-source-training.md
Last active January 1, 2019 01:05
Open Source/Version Control Training (Gov)
@saracope
saracope / conf-justification.md
Last active May 17, 2018 16:25
An Event Apart justification

The An Event Apart conference will provide learning opportunities to more efficiently leverage technology practices in software development, user experience design, and accessibility. As a software engineer in the CTO office, my role includes developing prototype and proof-of-concept systems which often require a wide range of cutting-edge techniques and tools. At the conference, I intend to learn about up-and-coming technologies, how to better leverage existing technologies, and deep-dive into several areas that I have experience in, but need additional insights in order to apply them to our work at GSA.

@saracope
saracope / js
Created September 10, 2017 14:29
Create a function that will ask user a yes or no question.
It will continue to ask until their input is "yes" or "y" or "no" or "n"
//answer
https://repl.it/KtiW
@saracope
saracope / javascript-map
Created July 25, 2017 15:23
JavaScript map()
JavaScript map()
Use it when: You want to translate/map all elements in an array to another set of values.
Exercises for .map():
1.) Given an array of words, transform that to contain the length of each word.
2.) Given an array of dollar values, transform it to contain the values converted to another currency (your choice).
3.) Given and array of numbers 1-7, transform it to contain the corresponding day of the week. 1 is equal to Monday.
@saracope
saracope / gist:0ef3c8b8242610d28f3741f70922e11b
Created May 2, 2017 12:07
Export contributors from Git
git log --all --format='%cN <%cE>' | sort -u > contributors