GirlsWhoCodeUM Profile Banner
Girls Who Code - U of M Profile
Girls Who Code - U of M

@GirlsWhoCodeUM

Followers
193
Following
53
Media
14
Statuses
123

Student Organization at @umich promoting diversity in Programming and STEM. Anti-Racism Resources: https://t.co/JGHo4cW10m

Joined June 2020
Don't wanna be here? Send us removal request.
@GirlsWhoCodeUM
Girls Who Code - U of M
2 years
Apply for our 2024 Girls Who Code Summer Experience! We will meet daily for a week to teach Python programming skills to high school learners. Check out the info in the attached flyer, and apply here!.
Tweet media one
0
1
2
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
We have guest speakers each Tuesday evening from 6:30-7:00 via Zoom. You can sign up for whatever Tuesday works best for you! reply to this tweet if you're interested, and one of our executive committee members will reach out via DM!! 🙂🖥️✨👾.
0
1
2
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Do you do cool work with programming? Great news! @GirlsWhoCodeUM is looking for guest speakers!! Our students love to hear about all sorts of careers where they can use programming in the real world. If this sounds interesting, shoot us an email! More info in the next tweet:.
1
8
15
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Applications are due tonight by midnight! Don't miss your chance to apply for this amazing opportunity!.
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Apply for our 2022-2023 academic year Girls Who Code Club! We meet weekly via Zoom to teach Python programming skills to high school learners. Check out the info in the attached flyer, and apply here!
Tweet media one
0
0
2
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Don’t forget to submit your applications for our Girls Who Code club this year!! We’d love to have you in our (virtual) classroom! Priority is given to those who apply by September 12! 💻💞🧑🏽‍💻.
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Apply for our 2022-2023 academic year Girls Who Code Club! We meet weekly via Zoom to teach Python programming skills to high school learners. Check out the info in the attached flyer, and apply here!
Tweet media one
0
3
3
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
Apply for our 2022-2023 academic year Girls Who Code Club! We meet weekly via Zoom to teach Python programming skills to high school learners. Check out the info in the attached flyer, and apply here!
Tweet media one
0
6
8
@GirlsWhoCodeUM
Girls Who Code - U of M
3 years
RT @ScienceAudrey: Our @GirlsWhoCodeUM club is graduating tonight so they’re giving their final presentations, which are absolutely amazing….
0
5
0
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
RT @bnwolford: Shout out to @umichmedicine PhD candidate @kelly_sovacool for giving an awesome interactive Git workshop for colleagues & me….
0
1
0
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Seeking applicants for our free, virtual 2 week Summer Experience! High school students interested in learning data science with Python are encouraged to apply, no prior coding experience required. 🐍👩‍💻📊Please RT/share!.
Tweet card summary image
docs.google.com
The Data Science Summer Experience is a two-week long immersive program for high schoolers hosted by Girls Who Code at UM DCMB! Girls Who Code at UM DCMB is a student organization founded by PhD...
0
4
4
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Congrats to our co-founder Zena Lapp for winning the Excellence in Service Award! 🥳🎉.
0
0
8
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
We're grateful for the reviewers and editors who volunteered their time and made this possible. Their feedback surely made the curriculum and paper all the better!. Thank you @ThomasArildsen, Jens Lechtenbörger, @JasonWilliamsNY, & @LorenaABarba!.
0
2
3
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
The paper accompanying our Python for data science curriculum is now out in @JOSE_TheOJ! You can read it here: Here's our thread from when we published the preprint: #Python #DataScience #GirlsWhoCode.
jose.theoj.org
Duda et al., (2021). Teaching Python for Data Science: Collaborative development of a modular & interactive curriculum. Journal of Open Source Education, 4(46), 138, https://doi.org/10.21105/jose.0...
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Our preprint describing our curriculum to teach Python for data science in our #GirlsWhoCode club is now on bioRxiv! 💻🐍📊.🧵 Check out the thread below for a summary:.
1
5
11
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
huge thanks to @sciencebanshee, tonight's guest speaker at our weekly club! she gave a great talk about how she uses programming to study the intersections between neuroscience and music, the importance of different brain regulatory networks, and her love for @lizzo !.
0
0
3
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
In our last #ThursdayTipsandTricks we showed how you can create lists with one line of code using list comprehensions in #Python. Well you can also create dictionaries and sets using a similar syntax! We think comprehensions are pretty handy:
Tweet media one
0
0
3
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
List Comprehensions are our favorite way to create lists in Python!. ```.names = ["Sarah", "Katie", "Hayley"].[name for name in names if "y" in name and name.startswith("H")].#> ['Hayley']. [name.upper() for name in names].#> ['SARAH', 'KATIE','HAYLEY'].```.#ThursdayTipsAndTricks.
0
2
5
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Want a reason to upgrade your code base to Python 3.5+? Seamlessly merge 2 dictionaries like so:. 2019Facilitators= {1:"Kelly", 2:"Audrey", 3:"Zena"}.2021Facilitators = {2:"Audrey", 4:"Sarah", 5:"Katie"}.all = {**2019Facilitators, **2021Facilitators}. #ThursdayTipsandTricks.
0
0
2
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
So you write a fancy function that has multiple outputs. How do you return them all? Easy, peasy in Python!. def my_func(arg1):. x=arg1+1. y=arg1*2. z=arg1-3. return x,y,z.a, b, c = x(arg1). Now the variables a, b, & c have the output from my_func! #ThursdayTipsAndTricks.
0
0
3
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
RT @audreydrotos: Seeking Ypsi & other high school teachers (not necessarily near Ann Arbor!) who could spread the word to students & paren….
0
15
0
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Sometimes we're all a little random. Even Python! . import random as r.my_list = ["girls", "who", "code", "at", "UM", "DCMB"].print(r.choice(my_list)). Use this method to pick a random element from list, tuple, or string (anything indexable). #ThursdayTipsAndTricks.
0
0
0
@GirlsWhoCodeUM
Girls Who Code - U of M
4 years
Come code with us! we still have so much space for new students, we can’t wait to learn with you! 🤩👩🏽‍💻.
@audreydrotos
Dr. Audrey Drotos 🧠 🔬
4 years
The @GirlsWhoCodeUM application for our 2021-2022 virtual club is now live! We are looking for rising 10-12th graders who want to learn data science in a supportive environment. No prior coding knowledge needed! Please RT👩🏽‍💻
0
2
4