-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from SERG-Delft/pderakhshanfar/add-people-page
Add people page
- Loading branch information
Showing
24 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/_site/ | ||
.idea | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
- category: Administrators | ||
people: | ||
- name: Arie van Deursen | ||
role: Academic Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/arie.jpeg | ||
- name: Maliheh Izadi | ||
role: Academic Administrator | ||
affiliation: TUDelft | ||
photo_url: img/avatars/maliheh.jpeg | ||
- name: Vladimir Kovalenko | ||
role: Industry Lead | ||
affiliation: JetBrains | ||
photo_url: img/avatars/vladimir.png | ||
- name: Pouria Derakhshanfar | ||
role: Industry Administrator | ||
affiliation: JetBrains | ||
photo_url: img/avatars/pouria.jpeg | ||
|
||
|
||
- category: Track 1 - Validation of Generated Code | ||
people: | ||
- name: Annibale Panichella | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/annibale.jpeg | ||
- name: Pouria Derakhshanfar | ||
role: Track Lead | ||
affiliation: JetBrains | ||
photo_url: img/avatars/pouria.jpeg | ||
- name: Azat Abdullin | ||
role: PhD Researcher | ||
affiliation: JetBrains | ||
photo_url: img/avatars/azat.jpeg | ||
- name: Marat Akhin | ||
role: Researcher | ||
affiliation: JetBrains | ||
photo_url: img/avatars/marat.jpeg | ||
- name: Remco Schrijver | ||
role: Intern/MSc Student | ||
affiliation: JetBrains, TUDelft | ||
photo_url: img/avatars/remco.jpeg | ||
|
||
- category: Track 2 - Adaptation of Large Language Models | ||
people: | ||
- name: Maliheh Izadi | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/maliheh.jpeg | ||
- name: Egor Bogomolov | ||
role: Track Lead/PhD Researcher | ||
affiliation: JetBrains | ||
photo_url: img/avatars/egor-b.jpeg | ||
- name: Tim Olivier van Dam | ||
role: Intern/MSc Student | ||
affiliation: JetBrains, TUDelft | ||
photo_url: img/avatars/tim.jpeg | ||
|
||
- category: Track 3 - Interactive and Aligned IDE | ||
people: | ||
- name: Maliheh Izadi | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/maliheh.jpeg | ||
- name: Sergey Titov | ||
role: Track Lead | ||
affiliation: JetBrains | ||
photo_url: img/avatars/sergey.jpeg | ||
- name: Agnia Sergeyuk | ||
role: PhD Researcher | ||
affiliation: JetBrains | ||
photo_url: img/avatars/agnia.jpeg | ||
- name: Andrei-Cristian Ionescu | ||
role: Intern/MSc Student | ||
affiliation: JetBrains, TUDelft | ||
photo_url: img/avatars/andrei.jpeg | ||
- name: Frank van der Heijden | ||
role: Intern/MSc Student | ||
affiliation: JetBrains, TUDelft | ||
photo_url: img/avatars/frank.jpeg | ||
- name: Remco Schrijver | ||
role: Intern/MSc Student | ||
affiliation: JetBrains, TUDelft | ||
photo_url: img/avatars/remco.jpeg | ||
|
||
- category: Track 4 - Utilizing Runtime Information to Improve Development Processes | ||
people: | ||
- name: Annibale Panichella | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/annibale.jpeg | ||
- name: Egor Klimov | ||
role: Track Lead/PhD Researcher | ||
affiliation: JetBrains | ||
photo_url: img/avatars/egor-k.jpeg | ||
|
||
- category: Track 5 - Intelligent Teaching Assistant in Programming Education | ||
people: | ||
- name: Gosia Migut | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/gosia.jpg | ||
- name: Fenia Aivaloglou | ||
role: Track Lead | ||
affiliation: TUDelft | ||
photo_url: img/avatars/fenia.jpg | ||
- name: Anastasiia Birillo | ||
role: Track Lead | ||
affiliation: JetBrains | ||
photo_url: img/avatars/anastasiia.jpeg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<html> | ||
<head> | ||
<style> | ||
.image-container { | ||
display: inline-block; | ||
width: 200px; | ||
height: 200px; | ||
overflow: hidden; | ||
margin-right: 20px; | ||
margin-bottom: 10px; | ||
position: relative; | ||
|
||
} | ||
.image-container img { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: cover; /* Ensures the image covers the div without overflow */ | ||
} | ||
</style> | ||
</head> | ||
<div style="display: inline-block; margin-right: 20px;"> | ||
<div class="image-container"> | ||
<img src="{{ include.person.photo_url }}" alt="{{ include.person.name }}" style="width:200px; height:200px; margin-bottom:10px;"/> | ||
</div><br> | ||
<b>{{ include.person.name }}</b> | ||
<p>{{ include.person.role }}</p> | ||
<p style="top-margin=0px;"> | ||
{% if person.affiliation %} | ||
{% if person.affiliation contains "TUDelft" %} | ||
<img src="img/tudelft-color-logo.png" alt="TUDelft Logo" style="width: 80px; height: 40px;"> | ||
{% endif %} | ||
{% if person.affiliation contains "JetBrains" %} | ||
<img src="img/jetbrains.png" alt="JetBrains Logo" style="width: 50px; height: 50px;"> | ||
{% endif %} | ||
{% endif %} | ||
</p> | ||
</div> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: default | ||
title: AI4SE People | ||
--- | ||
|
||
# People | ||
|
||
{% for category in site.data.people %} | ||
## {{ category.category }} | ||
|
||
{% for person in category.people %} | ||
{% include person.html person=person %} | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
|