-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
5,648 additions
and
3,230 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
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,30 @@ | ||
import { Card, CardContent, Typography, Link } from '@mui/material'; | ||
|
||
export interface ServiceType { | ||
id: string; | ||
name: string; | ||
description?: string; | ||
special?: string; | ||
venue?: string; | ||
} | ||
|
||
export const Service = ({ service }: { service: ServiceType; } ) => { | ||
return ( | ||
<Card sx={{ margin: 2 }}> | ||
<CardContent> | ||
<Typography variant="body2" component="div"> | ||
{service.name} | ||
</Typography> | ||
<Typography variant="body2"> | ||
<b>{service.special}</b> | ||
</Typography> | ||
<Typography variant="body2"> | ||
{service.description} | ||
</Typography> | ||
<Typography variant="body2" component="div"> | ||
{service.venue} | ||
</Typography> | ||
</CardContent> | ||
</Card> | ||
); | ||
} |
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,15 @@ | ||
import { Paper, Typography } from '@mui/material'; | ||
import { Service, ServiceType } from './Service'; | ||
|
||
export const Services = ({ services }: { services: [ServiceType];}) => { | ||
return ( | ||
<Paper elevation={0} square id='services'> | ||
<Typography variant="h4" component="div"> | ||
Service | ||
</Typography> | ||
{services.map(service => { | ||
return <Service key={service.id} service={service} />; | ||
})} | ||
</Paper> | ||
); | ||
} |
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,23 @@ | ||
import { Card, CardContent, Typography } from '@mui/material'; | ||
|
||
export interface TalkType { | ||
id: string; | ||
venue: string; | ||
subject: string; | ||
year: string; | ||
} | ||
|
||
export const Talk = ({ talk }: { talk: TalkType; }) => { | ||
return ( | ||
<Card sx={{ margin: 2 }}> | ||
<CardContent> | ||
<Typography variant="body2" component="div"> | ||
{talk.subject} | ||
</Typography> | ||
<Typography variant="body2" component="div"> | ||
{talk.venue} | ||
</Typography> | ||
</CardContent> | ||
</Card> | ||
); | ||
} |
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,15 @@ | ||
import { Paper, Typography } from '@mui/material'; | ||
import { Talk, TalkType } from './Talk'; | ||
|
||
export const Talks = ({ talks }: { talks: [TalkType]; }) => { | ||
return ( | ||
<Paper elevation={0} square id='talks'> | ||
<Typography variant="h4" component="div"> | ||
Talks | ||
</Typography> | ||
{talks.map(talk => { | ||
return <Talk key={talk.id} talk={talk} />; | ||
})} | ||
</Paper> | ||
); | ||
} |
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
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,10 @@ | ||
[ | ||
{ | ||
"id": 2, | ||
"name": "External reviewer for ISSTA 2024" | ||
}, | ||
{ | ||
"id": 1, | ||
"name": "Reviewer for Transactions on Interactive Intelligent Systems (TiiS)" | ||
} | ||
] |
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,14 @@ | ||
[ | ||
{ | ||
"id": 2, | ||
"venue": "ASE tutorial", | ||
"subject": "Dynamically analyzing Python programs using DynaPyt", | ||
"year": "2023" | ||
}, | ||
{ | ||
"id": 1, | ||
"venue": "Dagstuhl Seminar on Programming Language Processing", | ||
"subject": "Iterative code completion using large language models", | ||
"year": "2023" | ||
} | ||
] |
Oops, something went wrong.