-
Notifications
You must be signed in to change notification settings - Fork 1
/
name_to_handle
43 lines (42 loc) · 1.24 KB
/
name_to_handle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
names = {
"2shea" => "Emily Shea",
"ahung" => "Albert Hung",
"ajnassar" => "Anthony Nassar",
"annalo" => "Anna Lo",
"benjaminkreen" => "Benjamin Miller",
"BiggieSols" => "Solomon Garger",
"brianmcgue" => "Brian McGue",
"BuckShlegeris" => "Buck Shlegeris",
"chris-hallquist" => "Chris Hasllquist",
"coleww" => "Cole Willsea",
"cowalla" => "Connor Wallace",
"damanjeff6" => "Jeffrey Chen",
"DanFan1988" => "Dan Fan",
"djwy" => "David Yuen",
"eatseng" => "Edward Tseng",
"enquea" => "Wenbo Chang",
"esrobinson" => "Eric Robinson",
"FongChin" => "Fong Chin",
"fosterdill" => "Dylan Foster",
"gkchesterton" => "John Fellman",
"gotno" => "Will Floyd",
"heated" => "Edward Swernofsky",
"IronRadon" => "Fern Wood",
"jacknoble" => "Jack Noble",
"jacobhaile" => "Jacob Haile",
"josephclaymiller" => "Joseph Clay Miller",
"juliekang" => "Julie Kang",
"leesungchul" => "Lloyd Sungchul Lee",
"Madmat418" => "Mathew Woodard",
"mike809" => "Michael Romano",
"nicollette" => "Nicollette Lui",
"ridingrails" => "Ric Lescouflair",
"rorysaur" => "Rory Ou",
"satishkunisi" => "Satish Kunisi",
"Supernats" => "Nathan Seither"
"thedig" => "Dig Vargas",
"vardarac" => "Seth Swenson"
"yourself" => "Yourself"
}
require 'yaml'
File.open("names_and_handles", "w") { |f| f.puts names.to_yaml }