Author | SHA1 | Message | Date |
---|---|---|---|
Ka-Ping Yee | d08081045a | Switch to occupation_title | 8 years ago |
Ka-Ping Yee | 877570bcc5 | Add scripts to make signature files. | 8 years ago |
@ -0,0 +1,64 @@ | |||||
#!/usr/bin/env python | |||||
import commands | |||||
import re | |||||
import requests | |||||
import sys | |||||
import os | |||||
token = os.environ['GITHUB_ACCESS_TOKEN'] | |||||
def errprint(s): | |||||
sys.stderr.write(s) | |||||
sys.stderr.flush() | |||||
prs = [] | |||||
for page in range(1, 10): | |||||
more_prs = requests.get('https://api.github.com/repos/neveragaindottech/neveragaindottech.github.io/pulls?access_token=%s&page=%d' % (token, page)).json() | |||||
prs += more_prs | |||||
errprint('fetched %d PRs\n' % len(prs)) | |||||
if not more_prs: | |||||
break | |||||
for pr in reversed(prs): | |||||
pr_num = pr['number'] | |||||
author = pr['user']['login'] | |||||
errprint('PR #%s from %s: ' % (pr_num, author)) | |||||
diff_lines = commands.getoutput('./pr-diff %s' % pr_num).strip().split('\n') | |||||
if len(diff_lines) == 1 and diff_lines[0].startswith('+<'): | |||||
line = diff_lines[0].lstrip('+') | |||||
props = {} | |||||
props['github_user'] = author | |||||
props['pull_request_number'] = str(pr_num) | |||||
match = re.search(r'<a *href *= *"([^"]*)', line, re.I) | |||||
props['link'] = match and match.group(1) | |||||
text_line = re.sub(r'<[^>]*>', '', line) | |||||
parts = text_line.split(',', 2) | |||||
if len(parts) == 3: | |||||
props['name'], props['occupation_title'], props['affiliation'] = parts | |||||
elif len(parts) == 2: | |||||
props['name'], props['affiliation'] = parts | |||||
else: | |||||
props['name'] = text_line | |||||
filename = '../_signatures/%s.md' % author | |||||
if os.path.exists(filename): | |||||
errprint('%s ALREADY EXISTS\n' % filename) | |||||
continue | |||||
with open(filename, 'w') as file: | |||||
file.write('---\n') | |||||
for key, value in props.items(): | |||||
value = value and value.strip() | |||||
if value: | |||||
file.write(' %s: %s\n' % (key, value)) | |||||
file.write('---\n') | |||||
errprint('ok, made %s\n' % filename) | |||||
else: | |||||
errprint('BAD; diff is:\n') | |||||
errprint(' ' + '\n '.join(diff_lines) + '\n') |
@ -0,0 +1,7 @@ | |||||
#!/bin/bash | |||||
prnum=$1 | |||||
base=$(git merge-base origin/master origin/pr/$prnum) | |||||
git diff --no-color --unified=0 --text --ignore-all-space $base origin/pr/$prnum \ | |||||
| grep -v '^--- ' | grep -v '^+++ ' | grep --color=never '^[-+]' |
@ -1,5 +1,5 @@ | |||||
--- | --- | ||||
name: Aaron Ringgenberg | name: Aaron Ringgenberg | ||||
affiliation: Patreon | affiliation: Patreon | ||||
title: DevOps Engineer | |||||
occupation_title: DevOps Engineer | |||||
--- | --- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Director of Engineering | |||||
github_user: AmyC | |||||
link: https://twitter/amychanta | |||||
name: Amy Chantasirivisal | |||||
pull_request_number: 366 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: CTO Pitchly | |||||
github_user: BlakeBarrett | |||||
link: https://github.com/BlakeBarrett/ | |||||
name: Blake Barrett | |||||
pull_request_number: 441 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: DoomGerbil | |||||
name: Sean Robertson | |||||
pull_request_number: 518 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
name: Daniel Gamble McAdam | |||||
occupation_title: Software Engineer | |||||
github_user: Gamble715 | |||||
affiliation: Bazaarvoice | |||||
pull_request_number: 507 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
name: Karin Obermüller | |||||
occupation_title: Software Engineer | |||||
github_user: Hesperis | |||||
affiliation: Meltwater | |||||
pull_request_number: 469 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: Juul | |||||
link: https://juul.io/ | |||||
name: Marc Juul | |||||
pull_request_number: 445 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: New Relic | |||||
github_user: LawnGnome | |||||
link: https://twitter.com/LGnome | |||||
name: Adam Harvey | |||||
pull_request_number: 589 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: LtHummus | |||||
link: https://keybase.io/bschwartz | |||||
name: Benjamin Schwartz | |||||
pull_request_number: 550 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: NullHypothesis | |||||
link: https://nymity.ch | |||||
name: Philipp Winter | |||||
pull_request_number: 542 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: Siliconrob | |||||
name: Robin Michael | |||||
pull_request_number: 515 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: Sorrien | |||||
name: Collin Sparks | |||||
pull_request_number: 516 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Akamai | |||||
github_user: aglasgall | |||||
name: Adam Glasgall | |||||
pull_request_number: 500 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Software Engineer | |||||
github_user: astronaut-wannabe | |||||
link: https://twitter.com/_Michael_Becker | |||||
name: Michael Becker | |||||
pull_request_number: 590 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: New Relic | |||||
github_user: aughr | |||||
link: https://twitter.com/aughr | |||||
name: Andrew Bloomgarden | |||||
pull_request_number: 521 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Developer at Elevator Up | |||||
github_user: awestmoreland | |||||
link: https://twitter.com/akwestmoreland | |||||
name: Andy Westmoreland | |||||
pull_request_number: 511 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Daniel Berrangé | |||||
occupation_title: Software Engineer | |||||
github_user: berrange | |||||
affiliation: Red Hat | |||||
link: https://www.berrange.com | |||||
pull_request_number: 484 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: bradfair | |||||
link: https://github.com/bradfair | |||||
name: Brad Fair | |||||
pull_request_number: 431 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: braiotta | |||||
name: Chris Braiotta | |||||
pull_request_number: 503 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Bruce Bennett | |||||
occupation_title: Senior Technical Writer | |||||
github_user: brucecbennett | |||||
affiliation: Avid | |||||
link: https://www.brucechristianbennett.com | |||||
pull_request_number: 506 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: calebthompson | |||||
link: http://calebthompson.io | |||||
name: Caleb Thompson | |||||
pull_request_number: 514 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Khan Academy | |||||
github_user: celiala | |||||
link: https://twitter.com/celiala | |||||
name: Celia La | |||||
pull_request_number: 524 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: cmccorvey | |||||
link: https://twitter.com/ChuckMcCorvey | |||||
name: Chuck McCorvey | |||||
pull_request_number: 509 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: cndreisbach | |||||
link: http://www.dreisbach.us/ | |||||
name: Clinton Dreisbach | |||||
pull_request_number: 534 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: craig-chasseur | |||||
name: Craig Chasseur | |||||
pull_request_number: 579 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Some Assembly | |||||
github_user: csuhta | |||||
link: https://github.com/csuhta | |||||
name: Corey Csuhta | |||||
pull_request_number: 608 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Christopher Buecheler | |||||
occupation_title: Founder | |||||
github_user: cwbuecheler | |||||
affiliation: CloseBrace | |||||
link: https://cwbuecheler.com/ | |||||
pull_request_number: 477 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: danasf | |||||
name: Dana Sniezko | |||||
pull_request_number: 527 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Amazon | |||||
github_user: davidbarsky | |||||
link: davidbarsky.com | |||||
name: David Barsky | |||||
pull_request_number: 613 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: dgonyeo | |||||
link: http://twitter.com/dgonyeo | |||||
name: Derek Gonyeo | |||||
pull_request_number: 537 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Software Engineer | |||||
github_user: egracer | |||||
link: https://github.com/egracer/ | |||||
name: Ethan Gracer | |||||
pull_request_number: 483 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Cloudflare | |||||
github_user: ejcx | |||||
link: https://ejj.io | |||||
name: Evan Johnson | |||||
pull_request_number: 621 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Open Context | |||||
github_user: ekansa | |||||
link: https://twitter.com/ekansa | |||||
name: Eric Kansa | |||||
pull_request_number: 612 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Erik Moeller | |||||
occupation_title: Founder | |||||
github_user: eloquence | |||||
affiliation: lib.reviews | |||||
link: https://twitter.com/xirzon | |||||
pull_request_number: 438 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: emc2 | |||||
link: https://github.com/emc2 | |||||
name: Eric McCorkle | |||||
pull_request_number: 470 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: IBM | |||||
github_user: emckean | |||||
name: Erin McKean | |||||
pull_request_number: 510 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: AethLabs | |||||
github_user: erikhopp | |||||
name: Erik Hopp | |||||
pull_request_number: 601 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: AI and Datacenter Support Engineer | |||||
github_user: fezzik02 | |||||
link: https://github.com/jgarcia/ | |||||
name: John Garcia | |||||
pull_request_number: 543 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: freddymartinez9 | |||||
link: https://lucyparsonslabs.com/ | |||||
name: Lucy Parsons Labs | |||||
pull_request_number: 210 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: fvntr | |||||
link: https://github.com/fvntr | |||||
name: Felipe Ventura | |||||
pull_request_number: 436 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: g-clef | |||||
name: Aaron Gee-Clough | |||||
pull_request_number: 474 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Gabriela Rodriguez Beron | |||||
occupation_title: Software Engineer | |||||
github_user: gabelula | |||||
affiliation: Mozilla | |||||
link: https://twitter.com/gaba | |||||
pull_request_number: 473 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: ginader | |||||
link: https://ginader.com | |||||
name: Dirk Ginader | |||||
pull_request_number: 499 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: hannesstruss | |||||
link: https://twitter.com/hannesstruss | |||||
name: Hannes Struss | |||||
pull_request_number: 594 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Code.org | |||||
github_user: islemaster | |||||
link: https://github.com/islemaster | |||||
name: Brad Buchanan | |||||
pull_request_number: 591 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: James Cunningham | |||||
occupation_title: CTO | |||||
github_user: jamescun | |||||
affiliation: Hash Intelligence | |||||
link: https://jamescun.com | |||||
pull_request_number: 481 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Software Engineer | |||||
github_user: jamesewelch | |||||
link: http://www.jamesewelch.com | |||||
name: James Welch | |||||
pull_request_number: 538 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Carnegie Mellon University | |||||
github_user: jeanqasaur | |||||
name: Jean Yang | |||||
pull_request_number: 533 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: James Ebentier | |||||
occupation_title: Senior Software Engineer | |||||
github_user: jebentier | |||||
affiliation: Invoca | |||||
link: https://github.com/jebentier | |||||
pull_request_number: 554 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: jennz0r | |||||
link: http://mochimachine.com/ | |||||
name: Jennifer Wong | |||||
pull_request_number: 442 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: jneedle | |||||
link: https://people.redhat.com/jneedle | |||||
name: Jeff Needle | |||||
pull_request_number: 520 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Stroz Friedberg | |||||
github_user: jonstewart | |||||
link: https://github.com/jonstewart | |||||
name: Jon Stewart | |||||
pull_request_number: 488 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: jordansissel | |||||
name: Jordan Sissel | |||||
pull_request_number: 587 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Designer | |||||
github_user: jrubenoff | |||||
link: http://jrubenoff.com | |||||
name: Josh Rubenoff | |||||
pull_request_number: 588 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: kalolo | |||||
link: http://twitter.com/kalolo | |||||
name: Kalolo Lopez | |||||
pull_request_number: 548 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: OpenWorks Group | |||||
github_user: kayaelle | |||||
link: https://twitter.com/kayaelle | |||||
name: Kerri Lemoie | |||||
pull_request_number: 547 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Rabble | |||||
github_user: kellyhiser | |||||
link: http://www.musicat.co/ | |||||
name: Kelly Hiser | |||||
pull_request_number: 497 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Zendesk | |||||
github_user: kencheeto | |||||
link: https://www.kencheeto.com | |||||
name: Kenshiro Nakagawa | |||||
pull_request_number: 610 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Operable | |||||
github_user: kevsmith | |||||
link: https://github.com/kevsmith | |||||
name: Kevin A. Smith | |||||
pull_request_number: 616 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Spring | |||||
github_user: maiamcc | |||||
link: http://code.maiamccormick.com/ | |||||
name: Maia McCormick | |||||
pull_request_number: 551 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: matthewg | |||||
link: https://github.com/matthewg | |||||
name: Matthew Sachs | |||||
pull_request_number: 592 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: CEO Bovsi Studios and Bovsihosting.com | |||||
github_user: mattparksdev | |||||
link: https://Bovsistudios.com | |||||
name: Matthew Parks | |||||
pull_request_number: 539 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Mapbox and OSM Foundation | |||||
github_user: mikelmaron | |||||
link: https://twitter.com/mikel | |||||
name: Mikel Maron | |||||
pull_request_number: 519 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Dan Andreescu | |||||
occupation_title: Sr. Analytics Engineer | |||||
github_user: milimetric | |||||
affiliation: Wikimedia Foundation | |||||
link: https://twitter.com/DanAndreescu | |||||
pull_request_number: 478 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Etsy | |||||
github_user: mlauter | |||||
link: https://twitter.com/miriamlauter | |||||
name: Miriam Lauter | |||||
pull_request_number: 604 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Agaric | |||||
github_user: mlncn | |||||
link: http://agaric.com/ | |||||
name: Benjamin Melançon | |||||
pull_request_number: 479 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: UC Berkeley School of Information | |||||
github_user: mollymahar | |||||
link: https://mollymahar.com | |||||
name: Molly Mahar | |||||
pull_request_number: 522 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Digital Anarchy | |||||
github_user: mrbobpowell | |||||
name: Bob Powell Software Engineer | |||||
pull_request_number: 644 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Nat Tarnoff | |||||
occupation_title: Technical Consultant | |||||
github_user: nattarnoff | |||||
affiliation: SSB BART Group | |||||
link: https://twitter.com/nattarnoff | |||||
pull_request_number: 513 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: neild | |||||
name: Damien Neil | |||||
pull_request_number: 540 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: nemmons | |||||
link: https://github.com/nemmons | |||||
name: Nate Emmons Software Developer | |||||
pull_request_number: 615 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: netdpb | |||||
link: http://twitter.com/netdpb | |||||
name: David P. Baker | |||||
pull_request_number: 501 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Nikunj Chapadia | |||||
occupation_title: Sr. Software Engineer | |||||
github_user: nikunjchapadia | |||||
affiliation: Pandora | |||||
link: https://github.com/nikunjchapadia | |||||
pull_request_number: 619 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: nribeka | |||||
name: Nyoman Ribeka | |||||
pull_request_number: 504 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: nsaphra | |||||
link: https://twitter.com/nsaphra | |||||
name: Naomi Saphra | |||||
pull_request_number: 471 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Occipital | |||||
github_user: philnelson | |||||
link: https://extrafuture.com | |||||
name: Phil Nelson | |||||
pull_request_number: 600 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: piranna | |||||
link: https://github.com/piranna | |||||
name: Jesús Leganés-Combarro "piranna" | |||||
pull_request_number: 444 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Google | |||||
github_user: puzzlement | |||||
link: https://mary.gardiner.id.au/ | |||||
name: Mary Gardiner | |||||
pull_request_number: 439 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Mozilla Corporation | |||||
github_user: rafrombrc | |||||
link: https://twitter.com/n0nsequitarian | |||||
name: Robert Miller | |||||
pull_request_number: 576 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: rbanikaz | |||||
link: https://github.com/rbanikaz | |||||
name: Reza Banikazemi | |||||
pull_request_number: 614 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Software Engineer | |||||
github_user: rbogdanoff | |||||
link: https://www.linkedin.com/in/ronbogdanoff | |||||
name: Ron Bogdanoff | |||||
pull_request_number: 549 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Google/YouTube | |||||
github_user: ryankennedy | |||||
link: https://twitter.com/rckenned | |||||
name: Ryan Kennedy | |||||
pull_request_number: 535 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Docker | |||||
github_user: sarahpark | |||||
name: Sarah Park | |||||
pull_request_number: 593 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Scott P Overmyer | |||||
occupation_title: Chair | |||||
github_user: scotto703 | |||||
affiliation: IT Department, Bay State College | |||||
link: https://www.facebook.com/scott.overmyer | |||||
pull_request_number: 512 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: redaktor foundation | |||||
github_user: sebilasse | |||||
link: https://plus.google.com/+SebastianLasse | |||||
name: Sebastian Lasse | |||||
pull_request_number: 480 | |||||
--- |
@ -0,0 +1,5 @@ | |||||
--- | |||||
github_user: simonv3 | |||||
name: Vansintjan Simon | |||||
pull_request_number: 532 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: sinak | |||||
link: https://twitter.com/sinak | |||||
name: Sina Khanifar | |||||
pull_request_number: 580 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: sn0wmonster | |||||
occupation_title: FOSS developer | |||||
github_user: skifree-snowmonster | |||||
affiliation: RZZT | |||||
link: https://github.com/skifree-snowmonster | |||||
pull_request_number: 466 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Aaron Smith | |||||
occupation_title: DevOps Engineer | |||||
github_user: slapula | |||||
affiliation: Civis Analytics | |||||
link: https://github.com/slapula | |||||
pull_request_number: 575 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Data Warehouse Developer | |||||
github_user: sqlsauce | |||||
name: Jonathan Woodard | |||||
pull_request_number: 134 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: HYFR / Cops & Vampires | |||||
github_user: stickwithjosh | |||||
name: Joshua Blount | |||||
pull_request_number: 609 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Stripe | |||||
github_user: tetrakai | |||||
link: https://twitter.com/tetrakazi | |||||
name: Karla Burnett | |||||
pull_request_number: 525 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: thejoelpatrol | |||||
link: http://www.laserscorpion.com/ | |||||
name: Joel Cretan | |||||
pull_request_number: 201 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Technologist | |||||
github_user: tildebyte | |||||
link: https://github.com/tildebyte | |||||
name: Ben Alkov | |||||
pull_request_number: 498 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
github_user: tmarble | |||||
link: http://twitter.com/tmarble | |||||
name: Tom Marble | |||||
pull_request_number: 546 | |||||
--- |
@ -0,0 +1,7 @@ | |||||
--- | |||||
affiliation: Codespeaks | |||||
github_user: tobie | |||||
link: http://www.tobie.me/ | |||||
name: Tobie Langel | |||||
pull_request_number: 502 | |||||
--- |
@ -0,0 +1,6 @@ | |||||
--- | |||||
affiliation: Senior Programmer/Analyst | |||||
github_user: toby-farley | |||||
name: Toby Farley | |||||
pull_request_number: 530 | |||||
--- |
@ -0,0 +1,8 @@ | |||||
--- | |||||
name: Alaina Hardie Alaina Hardie | |||||
occupation_title: Singularity University | |||||
github_user: trianglegrrl | |||||
affiliation: Precision Nutrition | |||||
link: https://twitter.com/trianglegrrl | |||||
pull_request_number: 598 | |||||
--- |