Skip to content

Commit

Permalink
adds people cards for jan-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
billbrod committed Oct 1, 2024
1 parent fed610e commit 839edfe
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 7 deletions.
24 changes: 24 additions & 0 deletions site/_includes/people_cards.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<div style="height: 2rem"></div>

<!-- based on https://jekyllrb.com/docs/step-by-step/09-collections/#list-authors-posts -->
{% assign filtered_people = site.people | where_exp: 'person', "include.people contains person.short_name" %}
<people-list>
{% for person in filtered_people %}
{% if person.center %}
{% assign object_pos = person.center %}
{% else %}
{% assign object_pos = "0 0" %}
{% endif %}
<people-card style="display:flex;align-items:center">
<h2>
{{ person.name }}
</h2>
<img src="{{ person.picture }}" style="object-fit:cover;object-position:{{ object_pos }}" width="100" height="100"/>
{% if person.job %}
{{ person.job }}
{% endif %}
</people-card>
{% endfor %}
</people-list>

<div style="height: 2rem"></div>
1 change: 1 addition & 0 deletions site/_people/balzani.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ name: Edoardo Balzani
short_name: balzani
external_url: https://www.simonsfoundation.org/people/edoardo-balzani/
picture: /assets/edoardo.jpg
job: Associate Research Scientist, CCN
---
Edoardo is the one of the principal developers of Nemos, a package for statistical modeling of neural activity. He earned his Ph.D. in Neuroscience from the Italian Institute of Technology in Genova, under the guidance of Valter Tucci. Before joining the Flatiron institute as a data scientist, he worked as a postdoc in Cristina Savin's lab at NYU's Center for Neural Science where he developed statistical methods for the analysis of neural spike trains during naturalistic behavior.
1 change: 1 addition & 0 deletions site/_people/broderick.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ name: Billy Broderick
short_name: broderick
external_url: https://wfbroderick.com
picture: /assets/billy.jpg
job: Associate Research Scientist, CCN
---
Billy Broderick received his Ph.D. from NYU's Center for Neural Science, where he was advised by Eero Simoncelli and Jon Winawer. During his Ph.D., he studied how vision changes across the visual field using fMRI, psychophysics, and computational models. Before that, he worked as a research assistant at Duke University, spent a year at South China Normal University in Guangzhou, China as a [Luce Scholar](http://www.hluce.org/lsprogram.aspx), and got his B.A. in neuroscience and mathematics at Oberlin College
2 changes: 2 additions & 0 deletions site/_people/lewis.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
name: Caitlin Lewis
short_name: lewis
picture: /assets/caitlin.png
center: 50% 0
job: PhD student, Duke University
---
Caitlin received her B.S. in Computer Science and Statistics from UNC Chapel Hill. During this time she worked as an Undergraduate Research Assistant in the lab of Dr. Adam Hantman - where she helped to develop software tools for calcium imaging analysis and automated behavioral classification. She is also the co-developer of fastplotlib, a cutting-edge scientific visualization library. Caitlin will begin pursuing her PhD in Electrical and Computer Engineering this coming Fall at Duke University in the lab of Dr. John Pearson.
8 changes: 8 additions & 0 deletions site/_people/schomburg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Erik Schomburg
short_name: schomburg
picture: /assets/schomburg.avif
job: Research Scientist, CCN
---


10 changes: 10 additions & 0 deletions site/_people/skromne-carrasco.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Sofia Skromne Carrasco
short_name: skromne-carrasco
picture: /assets/skromne-carrasco.jpeg
center: 0 30%
job: PhD candidate, McGill University
---



7 changes: 7 additions & 0 deletions site/_people/tanelus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Aramis Tanelus
short_name: tanelus
picture: /assets/Tanelus_Aramis-scaled.avif
job: Research Associate, CCN
---

1 change: 1 addition & 0 deletions site/_people/venditto.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
short_name: venditto
name: Sarah Jo Venditto
picture: /assets/sjvenditto_headshot.jpeg
job: Associate Research Scientist, CCN
---
Sarah Jo supports and develops open-source software for the center and with the Statistical Analysis of Neural Data group. She received her Ph.D. in Neuroscience from Princeton University working with Carlos Brody and Nathaniel Daw, where she studied neural mechanisms of cognition in rodents using experimental methods, statistical analysis, and computational models. Prior to her Ph.D., she worked as a research assistant at Indiana University and got her B.S. in Physics with a minor in Mathematics from Bethel University in Minnesota.
1 change: 1 addition & 0 deletions site/_people/viejo.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ short_name: viejo
name: Guillaume Viejo
external_url: https://www.simonsfoundation.org/people/guillaume-viejo/
picture: /assets/guillaume.jpg
job: Associate Research Scientist, CCN
---
Guillaume Viejo joined the Center for Computational Neuroscience as a data scientist, where he focuses on developing software for analyzing neurophysiological data. He holds a Ph.D. in computational neuroscience from the Institute of Intelligent Systems and Robotics at the Pierre and Marie Curie University in Paris, France. After completing his doctorate, Guillaume worked as a postdoctoral fellow at the Montreal Neurological Institute, where he studied the head-direction system (also known as the brain’s compass) in rodents.
Binary file added site/assets/Tanelus_Aramis-scaled.avif
Binary file not shown.
26 changes: 26 additions & 0 deletions site/assets/main2.css
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,32 @@ project-list {
}
}

people-list {
display: grid;
grid-gap: 1rem;
}

@media (min-width: 800px) {
people-list {
grid-template-columns: repeat(3, 1fr);
}
}

people-card {
display: flex;
height: min-content;
background-color: white;
flex-direction: column;
border: 1px solid var(--grey-color);
padding: 2rem;
border-radius: 1rem;
font-size: 0.9rem;
line-height: 1.2;
text-align: center;
}
people-card > img {
margin: 0 0 10px 0;
}
project-card {
display: flex;
height: min-content;
Expand Down
Binary file added site/assets/schomburg.avif
Binary file not shown.
Binary file added site/assets/skromne-carrasco.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 2 additions & 7 deletions site/workshops/jan-2025/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,5 @@ To get a sense of the material we will cover, see our [workshop from FENS 2024](

## Speakers and TAs

- Edoardo Balzani
- Billy Broderick
- Guillaume Viejo
- Aramis Tanelus
- Erik Schomburg
- Sofia Skromne Carrasco
- Sarah Jo Venditto
{% assign speakers = "balzani,broderick,venditto,viejo,lewis,schomburg,skromne-carrasco,tanelus" | split: "," %}
{% include people_cards.html people=speakers %}

0 comments on commit 839edfe

Please sign in to comment.