Skip to content

Commit 6c2f3b3

Browse files
authored
Merge pull request #28 from Human-Augment-Analytics/peeps
Peeps
2 parents 30da0de + 5d97045 commit 6c2f3b3

11 files changed

Lines changed: 150 additions & 65 deletions

data-science-research.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ <h1>Applied Data Science Research for Social Good (CS 8903 &amp; CS 6999)</h1>
120120
<a href="phd-postdoc.html">PhD / Post-Doc</a>
121121
<a href="data-science-research.html" class="current">Data Science Research</a>
122122
<a href="project-management.html">Project Management</a>
123-
<a href="project-explorer.html">HAAG Project Explorer</a>
123+
<a href="project-explorer.html">Project Explorer</a>
124124
<a href="people.html">People</a>
125125
<a href="recruitment.html">Recruitment Status</a>
126126
</div>

faculty-affiliates.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ <h1>Faculty Affiliates for Transdisciplinary Expansion (FATE)</h1>
125125
<a href="phd-postdoc.html">PhD / Post-Doc</a>
126126
<a href="data-science-research.html">Data Science Research</a>
127127
<a href="project-management.html">Project Management</a>
128-
<a href="project-explorer.html">HAAG Project Explorer</a>
128+
<a href="project-explorer.html">Project Explorer</a>
129129
<a href="people.html">People</a>
130130
<a href="recruitment.html">Recruitment Status</a>
131131
</div>

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
<a href="phd-postdoc.html">PhD / Post-Doc</a>
189189
<a href="data-science-research.html">Data Science Research</a>
190190
<a href="project-management.html">Project Management</a>
191-
<a href="project-explorer.html">HAAG Project Explorer</a>
191+
<a href="project-explorer.html">Project Explorer</a>
192192
<a href="recruitment.html">Recruitment Status</a>
193193
</div>
194194
</nav>
@@ -295,8 +295,8 @@ <h3>Cross-Disciplinary Leadership Education for Advanced Researchers (CLEAR)</h3
295295
<a class="cta-link" href="#">Learn more &rarr;</a>
296296
</div>
297297
<div class="program-card">
298-
<span class="eyebrow2">Certificate Program &middot; Undergraduate</span>
299-
<h3>Undergraduate Certificate in Experience-Based Teaching</h3>
298+
<span class="eyebrow2">Certificate Program &middot; Graduate</span>
299+
<h3>Graduate Certificate in Experience-Based Teaching</h3>
300300
<p>Hands-on experience in pedagogy, research methodology, and collaborative project management.</p>
301301
<a class="cta-link" href="#">Learn more &rarr;</a>
302302
</div>

people.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ <h1>Meet the HAAG Research Community</h1>
201201
<a href="phd-postdoc.html">PhD / Post-Doc</a>
202202
<a href="data-science-research.html">Data Science Research</a>
203203
<a href="project-management.html">Project Management</a>
204-
<a href="project-explorer.html">HAAG Project Explorer</a>
204+
<a href="project-explorer.html">Project Explorer</a>
205205
<a href="recruitment.html">Recruitment Status</a>
206206
</div>
207207
</nav>
@@ -220,7 +220,7 @@ <h2 class="page-title">Researcher Directory</h2>
220220
<button class="chip" data-role="Faculty">Faculty</button>
221221
<button class="chip" data-role="PhD">PhD</button>
222222
<button class="chip" data-role="Postdoc">Postdoc</button>
223-
<button class="chip" data-role="Undergraduate">Undergraduate</button>
223+
<button class="chip" data-role="Graduate">Graduate</button>
224224
</div>
225225

226226
<div class="result-row">
@@ -301,6 +301,13 @@ <h3>Interested in joining HAAG?</h3>
301301
</div>`;
302302
}
303303

304+
function personSortKey(person) {
305+
return String(person?.name || "")
306+
.replace(/^Dr\.\s*/i, "")
307+
.trim()
308+
.toLocaleLowerCase();
309+
}
310+
304311
function renderGrid() {
305312
const container = document.getElementById("grid-container");
306313
const q = document.getElementById("search").value.trim().toLowerCase();
@@ -309,7 +316,7 @@ <h3>Interested in joining HAAG?</h3>
309316
const roleMatch = activeRole === "All" || p.role === activeRole;
310317
const searchMatch = !q || (p.name + " " + (p.tags||[]).join(" ")).toLowerCase().includes(q);
311318
return roleMatch && searchMatch;
312-
});
319+
}).slice().sort((a, b) => personSortKey(a).localeCompare(personSortKey(b)));
313320

314321
document.getElementById("result-count").textContent =
315322
`Showing ${filtered.length} of ${allPeople.length} researchers`;

people.yml

Lines changed: 127 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -4,100 +4,178 @@
44
#
55
# Fields:
66
# name - full display name
7-
# role - one of: Faculty | PhD | Postdoc | Undergraduate (used by the role filter)
7+
# role - one of: Faculty | PhD | Postdoc | Graduate (used by the role filter)
88
# role_label - text shown under the name (can be more descriptive than `role`)
99
# tags - list of research-area tags shown as pills and used by search
1010
# profile_url - link for "View Profile" (use "#" if not yet published)
1111

1212
researchers:
13-
- name: Dr. Sarah Chen
13+
- name: Dr. Arthur Porto
1414
role: Faculty
15-
role_label: Faculty Advisor &middot; Computer Science
16-
tags: [NLP, Human-AI Trust]
15+
role_label: Faculty Advisor &middot; University of Florida
16+
tags: [Biodiversity, AI, Computer Vision]
1717
profile_url: "#"
1818

19-
- name: Marcus Webb
19+
- name: Dr. Heru Handika
20+
role: Postdoc
21+
role_label: Faculty Advisor &middot; Computational Advisor &middot; University of Florida
22+
tags: [Biodiversity, AI]
23+
profile_url: "#"
24+
25+
- name: Dr. Yasha Iravantchi
26+
role: Postdoc
27+
role_label: Computational Advisor &middot; University of Michigan
28+
tags: [AI, Health]
29+
profile_url: "#"
30+
31+
- name: Dr. Tuan-Anh Vu
32+
role: Postdoc
33+
role_label: Computational Advisor &middot; UCLA
34+
tags: [Computer Vision]
35+
profile_url: "#"
36+
37+
- name: Dr. Katherine Wolcott
38+
role: Postdoc
39+
role_label: Computational Advisor &middot; University of Florida
40+
tags: [Data Science, 3D Imaging, Educational Technology]
41+
profile_url: "#"
42+
43+
- name: Ilia Jahanshahi
2044
role: PhD
21-
role_label: PhD Researcher &middot; OMSCS
22-
tags: [Computer Vision, Ethics]
45+
role_label: Computational Advisor &middot; Iowa State University
46+
tags: [Topological Data Analysis, Data Science, Machine Learning]
2347
profile_url: "#"
2448

25-
- name: Dr. Amara Osei
26-
role: Faculty
27-
role_label: Faculty Advisor &middot; HCI
28-
tags: [HCI, Accessibility]
49+
- name: Navya Annapareddy
50+
role: PhD
51+
role_label: Computational Advisor &middot; University of Virginia
52+
tags: [Data Science, Public Good]
53+
profile_url: "#"
54+
55+
- name: Jacqueline Carroll
56+
role: PhD
57+
role_label: Computational Advisor &middot; University of Delaware
58+
tags: [Bioinformatics Data Science, Environmental Health]
59+
profile_url: "#"
60+
61+
- name: Chenwei Xu
62+
role: PhD
63+
role_label: Computational Advisor &middot; Northwestern University
64+
tags: [Statistics, AI]
2965
profile_url: "#"
3066

31-
- name: Priya Patel
67+
- name: Dr. Marco Postiglione
3268
role: Postdoc
33-
role_label: Postdoc &middot; Machine Learning
34-
tags: [ML Systems, Fairness]
69+
role_label: Faculty Advisor &middot; Computational Advisor &middot; Northwestern University
70+
tags: [AI, Social Good]
3571
profile_url: "#"
3672

37-
- name: Dr. James Wu
73+
- name: Dr. Jeffrey Cannon
3874
role: Faculty
39-
role_label: Faculty Advisor &middot; Data Viz
40-
tags: [Data Viz, Education]
75+
role_label: Faculty Advisor &middot; The Jones Center
76+
tags: [Landscape Ecology]
4177
profile_url: "#"
4278

43-
- name: Elena Rodriguez
79+
- name: Maryam Berijanian
4480
role: PhD
45-
role_label: PhD Researcher &middot; Robotics
46-
tags: [Robotics, Human-AI]
81+
role_label: Computational Advisor &middot; Michigan State University
82+
tags: [AI, NLP, Computer Vision]
4783
profile_url: "#"
4884

49-
- name: Dr. Kwame Asante
85+
- name: Samuel Ruipérez-Campillo
86+
role: PhD
87+
role_label: Computational Advisor &middot; ETH Zürich
88+
tags: [Biomedical Engineering, AI]
89+
profile_url: "#"
90+
91+
- name: Dr. Anind Dey
92+
role: Faculty
93+
role_label: Faculty Advisor &middot; University of Washington
94+
tags: [AI, Health]
95+
profile_url: "#"
96+
97+
- name: Dr. Imon Banerjee
98+
role: Faculty
99+
role_label: Computational Advisor &middot; Northwestern University
100+
tags: [Theoretical Machine Learning]
101+
profile_url: "#"
102+
103+
- name: Dr. Shruti Motiwale
104+
role: Faculty
105+
role_label: Computational Advisor &middot; UT Austin
106+
tags: [Deep Learning, Computational Mechanics]
107+
profile_url: "#"
108+
109+
- name: Dr. Supratik Mukhopadhyay
110+
role: Faculty
111+
role_label: Computational Advisor &middot; Louisiana State University
112+
tags: [Environmental Sciences, AI, Healthcare]
113+
profile_url: "#"
114+
115+
- name: Dr. Breanna Shi
50116
role: Faculty
51-
role_label: Faculty Advisor &middot; Public Policy
52-
tags: [NLP, Social Good]
117+
role_label: Faculty Advisor &middot; Georgia Institute of Technology
118+
tags: [Education, Project Management]
53119
profile_url: "#"
54120

55-
- name: Olivia Brooks
121+
- name: Charles Clark
56122
role: PhD
57-
role_label: PhD Researcher &middot; UX
58-
tags: [UX Research, Trust]
123+
role_label: Computational Advisor &middot; University of Florida
124+
tags: [Data Science]
59125
profile_url: "#"
60126

61-
- name: Dr. Noah Kim
127+
- name: Dr. James Stroud
62128
role: Faculty
63-
role_label: Faculty Advisor &middot; Bioinformatics
64-
tags: [Bioinformatics, AI]
129+
role_label: Faculty Advisor &middot; Georgia Institute of Technology
130+
tags: [Ecology, LiDAR]
65131
profile_url: "#"
66132

67-
- name: Fatima Al-Sayed
68-
role: Postdoc
69-
role_label: Postdoc &middot; Management
70-
tags: [Leadership, Mgmt]
133+
- name: Thomas Orth
134+
role: Graduate
135+
role_label: Computational Advisor &middot; Georgia Institute of Technology
136+
tags: [AI]
71137
profile_url: "#"
72138

73-
- name: Dr. Liang Zhao
139+
- name: Dr. Jenny McGuire
74140
role: Faculty
75-
role_label: Faculty Advisor &middot; Systems
76-
tags: [Systems, Scalability]
141+
role_label: Faculty Advisor &middot; Georgia Institute of Technology
142+
tags: [Spatial Ecology]
77143
profile_url: "#"
78144

79-
- name: Grace Thompson
145+
- name: Katherine Slenker
80146
role: PhD
81-
role_label: PhD Researcher &middot; Education
82-
tags: [Teaching, Pedagogy]
147+
role_label: Computational Advisor &middot; Georgia Institute of Technology
148+
tags: [Data Science]
83149
profile_url: "#"
84150

85-
- name: Dr. Rafael Torres
151+
- name: Dr. Benjamin Freeman
86152
role: Faculty
87-
role_label: Faculty Advisor &middot; Community Engagement
88-
tags: [Community, TOPIC]
153+
role_label: Faculty Advisor &middot; Georgia Institute of Technology
154+
tags: [Evolutionary Ecology, Conservation Biology]
89155
profile_url: "#"
90156

91-
- name: Aisha Bello
92-
role: Undergraduate
93-
role_label: Undergraduate &middot; Certificate Program
94-
tags: [Certificate, Teaching]
157+
- name: Raghu Mulukutla
158+
role: Graduate
159+
role_label: Computational Advisor &middot; Georgia Institute of Technology
160+
tags: [AI, ML]
95161
profile_url: "#"
96162

97-
- name: Dr. Ingrid Larsen
163+
- name: Dr. Steve Mussmann
98164
role: Faculty
99-
role_label: Faculty Advisor &middot; Research Ops
100-
tags: [Research Ops, PM]
165+
role_label: Faculty Advisor &middot; Georgia Institute of Technology
166+
tags: [Data-Centric ML, Active Learning]
167+
profile_url: "#"
168+
169+
- name: Arunachal Syam
170+
role: Graduate
171+
role_label: Computational Advisor &middot; Georgia Institute of Technology
172+
tags: [ML]
173+
profile_url: "#"
174+
175+
- name: Eric Dreyer
176+
role: Graduate
177+
role_label: Computational Advisor &middot; Georgia Institute of Technology
178+
tags: [Computer Vision, ML, Deep Learning]
101179
profile_url: "#"
102180

103181
features:

phd-postdoc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ <h1>Cross-Disciplinary Leadership Education for Advanced Researchers (CLEAR)</h1
122122
<a href="phd-postdoc.html" class="current">PhD / Post-Doc</a>
123123
<a href="data-science-research.html">Data Science Research</a>
124124
<a href="project-management.html">Project Management</a>
125-
<a href="project-explorer.html">HAAG Project Explorer</a>
125+
<a href="project-explorer.html">Project Explorer</a>
126126
<a href="people.html">People</a>
127127
<a href="recruitment.html">Recruitment Status</a>
128128
</div>

project-explorer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>HAAG Project Explorer</title>
6+
<title>Project Explorer</title>
77
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
88
<style>
99
:root {
@@ -379,7 +379,7 @@
379379
<a href="phd-postdoc.html">PhD / Post-Doc</a>
380380
<a href="data-science-research.html">Data Science Research</a>
381381
<a href="project-management.html">Project Management</a>
382-
<a href="project-explorer.html" class="current">HAAG Project Explorer</a>
382+
<a href="project-explorer.html" class="current">Project Explorer</a>
383383
<a href="recruitment.html">Recruitment Status</a>
384384
</div>
385385
</nav>

project-management.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ <h1>Research Operations Project Management Practicum (MGT 8803 &amp; CS 8803)</h
118118
<a href="phd-postdoc.html">PhD / Post-Doc</a>
119119
<a href="data-science-research.html">Data Science Research</a>
120120
<a href="project-management.html" class="current">Project Management</a>
121-
<a href="project-explorer.html">HAAG Project Explorer</a>
121+
<a href="project-explorer.html">Project Explorer</a>
122122
<a href="people.html">People</a>
123123
<a href="recruitment.html">Recruitment Status</a>
124124
</div>

recruitment.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ <h1>Human-Augmented Analytics Group</h1>
292292
<a href="#">PhD / Post-Doc</a>
293293
<a href="#">Data Science Research</a>
294294
<a href="#">Project Management</a>
295-
<a href="project-explorer.html">HAAG Project Explorer</a>
295+
<a href="project-explorer.html">Project Explorer</a>
296296
<a href="recruitment.html" class="current">Recruitment Status</a>
297297
</div>
298298
</nav>

recruitment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# 4. Commit and push. No other steps required.
1212

1313
cycle_name: Fall 2026 Recruitment
14-
current_phase: applications_closed
15-
last_updated: 2026-07-20
14+
current_phase: applications_open
15+
last_updated: 2026-07-30
1616

1717
notes: > # Optional free-text shown under the status banner. Leave as null for none.
1818
Applications are open now through August 15 on BuzzMe. Matching will begin

0 commit comments

Comments
 (0)