Skip to content

Latest commit

 

History

History
executable file
·
75 lines (65 loc) · 3.14 KB

File metadata and controls

executable file
·
75 lines (65 loc) · 3.14 KB
title permalink
People
/people/

{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|postdoc|gradstudent|researchstaff|visiting|others|undergraduate|alumni" | split: "|" %}

{% for role in role_array %}

{% assign people_in_role = people_sorted | where: 'position', role %}

{% if people_in_role.size == 0 %} {% continue %} {% endif %}

{% if role == 'postdoc' %}

Postdoctoral Fellows

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'gradstudent' %}

Graduate Students

{% elsif role == 'researchstaff' %}

Research Staff

{% elsif role == 'visiting' %}

Visiting Scholars

{% elsif role == 'others' %}

Honorary Members

{% elsif role == 'undergraduate' %}

Undergraduate Students

{% elsif role == 'alumni' %}

Alumni

{% endif %}

{% if role != 'alumni' %}

{% for profile in people_sorted %} {% if profile.position contains role %}

{% if profile.avatar %} {% else %} {% endif %} {{ profile.name }}

{% endif %} {% endfor %}

{% else %}


Who are they When were they here Where they went
Cade Armstrong Undergraduate student in ASE (2023-2025) PhD student in ASE at UT Austin
Ryan Park Undergraduate student in CS (2023-2025) PhD student in ME at UC Berkeley
Nick Strohmeyer MS student in ECE (2022-2024) MITRE
Antonio Lopez MS student in ASE (2022-2024) Pacific Northwest National Lab
Andriy Malyshchak Undergraduate student in ECE (2022-2023) Texas Robotics
Jonathan Salfity PhD student in ME (2021-2023) PhD student with UT's Nuclear Robotics Group
Junette Hsin MS student in ASE (2022-2023) PhD student with UT's Human Centered Robotics Lab
Vincent Spada Undergraduate student in ASE (2023) Flight dynamics, NASA Langley
Tyler Westenbroek Postdoc in Oden Institute (2023) Postdoc in CS at UW
Bryant Zhou MS student in ME (2021-2022) PhD student in MAE at Princeton

{% endif %} {% endfor %}