Skip to content

Latest commit

 

History

History
executable file
·
70 lines (60 loc) · 2.67 KB

people.md

File metadata and controls

executable file
·
70 lines (60 loc) · 2.67 KB
title permalink
People
/people/

{% assign people_sorted = site.people | sort: 'joined' %}

{% assign role_array = "pi|faculty|researchstaff|gradstudent|former|others|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 == 'faculty' %}

Faculty

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'gradstudent' %}

Graduate Students

{% elsif role == 'researchstaff' %}

Research Associates

{% elsif role == 'former' %}

Alumni

{% elsif role == 'others' %}

Honorary Members

{% 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
Tony Liu Graduate Student (2018-2024) Assistant Professor of Computer Science, Mount Holyoke College
Xinyue Wang Graduate Student (2021-2023) PhD Student, Halıcıoğlu Data Science Institute, UCSD
Justin Brantley Post-doc (2021-2023) Data Scientist, Texas Rangers, yes they did win the super something twice in a row after he joined them
Laboratory
Titipat Achakulvisut Graduate Student (2014 - 2021) Biomedical and Data Lab, Dept of Biomedical Engineering, Mahidol University, Thailand
Pedro Ribeiro Graduate Student (2018 - 2021) Programmer Analyst at Cedars-Sinai Department of Computational Biomedicine
{% endif %}
{% endfor %}