Skip to content

Instantly share code, notes, and snippets.

View larisasmiles's full-sized avatar

Larisa Anderson larisasmiles

  • Denver, CO
View GitHub Profile
@larisasmiles
larisasmiles / gist:c89fa943516630cd2deee64d4d812e51
Created June 8, 2017 02:19
Personal Stories & Connection
Personal Stories & Connection
What brought you here?
I went through a grueling divorce and found myself wondering what type of career path would make sense for me.
I love to problem solve, I love to collaborate, and I enjoy learning. In the past I would become a "master" in my field and
I'd lose interest in what I was doing. With developing there is always ways to grow. I played with coding on a few internet sites
and found that I was staying up till the wee hours going through the excersises and really enjoying them.
What lenses or identities do you view the world through most often?
I view the world through my lense as a mother, as a woman. However I can see this changing as I spend more time working on
myself and learning to program.
@larisasmiles
larisasmiles / gist:6b30a6e133af45fcdc345a1e189ba865
Created June 8, 2017 02:42
Debugging the Gender Gap & Microaggressions in Tech
How are your experiences here at Turing similar or different than those shared in the documentary?
I feel that because of the conversations here at Turing, we won't see as much of outwardly aggression, sexism, and condescending
behavior. I personally haven't experienced sexism, or aggression. I feel that the only thing I have experienced is an instructor
feeling the need to tell me that I may have a place in the tech world, but not as a developer. Which of course as a teacher/student
relationship that struck me as not the "Truing Philosophy". Especially after watching the video on Debugging the Gender Gap.
What role do you play in creating a more inclusive environment in your cohort and the larger community at Turing?
I have made strong connections in my cohort, I am the includer in our group. They feel comfortable to talk to me
about their frustrations, and their wins. That goes for Turing in general. I have made several connections with upper-mods
and feel that I am appreciated for my po
@larisasmiles
larisasmiles / shortcuts
Created December 14, 2017 03:12
shortcuts for code
For everyone tired of typing console.log(), use this function in your code...
[7:53]
function log(input) {
console.log(input);
}
[7:53]