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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
export type Author = {
photo: string; // url of photo relative to content/authors/images/, EXCLUDING EXTENSION
name: string;
title: string;
blurb: string;
email?: string;
facebook?: string;
linkedin?: string;
github?: string;
website?: string;
codeforces?: string;
};
export const Authors: Author[] = [
{
photo: 'nathanw',
name: 'Nathan Wang',
title: 'Coordinator & Webmaster',
blurb: 'Nathan Wang is a two-time USACO Finalist and does web development in his free time.',
website: "https://thecodingwizard.me/",
codeforces: 'thecodingwizard',
email: "nathan.r.wang@gmail.com",
github: "thecodingwizard",
},
// {
// photo: 'briancdean',
// name: 'Brian C. Dean',
// title: 'Content Director',
// blurb: 'Brian Christopher Dean is the director of the USA Computing Olympiad.',
// email: 'bcdean@clemson.edu',
// },
{
photo: 'benq',
name: 'Benjamin Qi',
title: 'Content Director',
blurb: 'Benjamin Qi is a two-time IOI winner, USACO Problemsetter, and part of the MIT Class of 2023.',
codeforces: "Benq",
email: "bqi343@gmail.com",
github: "bqi343"
},
{
photo: 'michael',
name: 'Michael Cao',
title: 'Content Author',
blurb: 'Michael Cao is a USACO Platinum competitor and author of "Bessie\'s Snow Cow."',
facebook: "mike.lao.9400",
codeforces: "caoash",
email: "cao.michael14@gmail.com",
github: "caoash",
},
{
photo: 'darren',
name: 'Darren Yao',
title: 'Content Author',
blurb: 'Darren Yao is a USACO Platinum competitor and author of the textbook "An Introduction to the USA Computing Olympiad."',
website: 'http://darrenyao.com/',
email: 'darren.yao@gmail.com',
codeforces: "darren_yao",
github: "darren-yao",
},
{
photo: 'nathanc',
name: 'Nathan Chen',
title: 'Content Author',
blurb: 'Nathan Chen is a two-time USACO Finalist who competes in both Java and C++ fluently.',
codeforces: "nchn27",
github: "nchn27",
email: "nchn27@gmail.com",
},
{
photo: 'cow',
name: 'Siyong Huang',
title: 'Content Author',
blurb: '',
codeforces: "frodakcin",
github: "frodakcin",
},
];
|