Skip to content

Commit

Permalink
major: attempt to include organizer github accounts
Browse files Browse the repository at this point in the history
minor: remove time zone from calendar
  • Loading branch information
rowanxshi committed Sep 7, 2024
1 parent 6a2b93d commit 3fc7213
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
24 changes: 24 additions & 0 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,27 @@ This Code of Conduct applies both within community spaces and in public spaces w
This Code of Conduct is adapted from the Julia Gals code of conduct, which in turn was adapted from the [Contributor Covenant, version 1.4](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html), with additions from the [Julia community standards](https://julialang.org/community/standards/).

For answers to common questions about this code of conduct, see [here](https://www.contributor-covenant.org/faq).

# Organizers

```julia:organizers
#hideall
raw = read(`curl https://github.com/orgs/JuliaGenderInclusive/people`, String)
matches = eachmatch(r"<img.*?avatar-user.*?>", raw);
extract_avatarurl(m) = first(match(r"src=\"(.*?)\"", m.match).captures)
extract_username(m) = first(match(r"alt=\"@(.*?)\"", m.match).captures)
profileurl(username) = "http://github.com/$username"
function websitelink(m)
avatarurl = extract_avatarurl(m)
username = extract_username(m)
profile = profileurl(username)
"[![$username]($avatarurl)]($profile)"
end
for m in matches
websitelink(m) |> println
end
```

\textoutput{organizers}
3 changes: 1 addition & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ We run a few events:
- [JGI Hackathon](hackathon)

~~~
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=2&ctz=America%2FDetroit&bgcolor=%23ffffff&showCalendars=0&showDate=0&showTitle=0&mode=AGENDA&src=YWE0NjU4YWFiOWI3YzQ1NmUxN2E4MDRkNWRhYjVkNGZlODBlMDI4YmNkOTg2YjMwOGU1OWE5ZDY3NWI1ZWUzY0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%239E69AF" style="border:0" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
<a class="twitter-timeline" href="https://twitter.com/juliainclusive?ref_src=twsrc%5Etfw">Tweets by juliainclusive</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=2&ctz=America%2FDetroit&bgcolor=%23ffffff&showCalendars=0&showDate=0&showTitle=0&mode=AGENDA&src=YWE0NjU4YWFiOWI3YzQ1NmUxN2E4MDRkNWRhYjVkNGZlODBlMDI4YmNkOTg2YjMwOGU1OWE5ZDY3NWI1ZWUzY0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%239E69AF" style="border:0" width="100%" height="600" frameborder="0" scrolling="no"></iframe><a class="twitter-timeline" href="https://twitter.com/juliainclusive?ref_src=twsrc%5Etfw">Tweets by juliainclusive</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
~~~

0 comments on commit 3fc7213

Please # to comment.