Skip to content

Commit

Permalink
Add aiware observability presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
brombaut committed Nov 10, 2024
1 parent e9d58ab commit a4d05b4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
Binary file not shown.
21 changes: 19 additions & 2 deletions src/publications/publications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const publications: Publication[] = [
url: "publications/Rombaut_Benjamin_J_202205_GreenkeeperOverhead_Presentation_CSER2022.pdf",
},
],
"Montreal, QC, Canada",
"Montreal, Canada",
),
new UnpublishedPublication(
"Leveraging the crowd for dependency management: An empirical study on the Dependabot compatibility score",
Expand Down Expand Up @@ -109,7 +109,7 @@ const publications: Publication[] = [
"Dayi Lin",
"Ahmed E. Hassan"
],
new Date(2024, 11, 5),
new Date(2024, 10, 5),
[
{
type: PublicationLinkType.Arxiv,
Expand All @@ -121,6 +121,23 @@ const publications: Publication[] = [
},
],
),
new PresentationPublication(
"AIware Observability",
["Benjamin Rombaut"],
"AIware Leadership Bootcamp 2024",
new Date(2024, 10, 8),
[
{
type: "AIWare Leadership Bootcamp 2024",
url: "https://www.aiwarebootcamp.io/",
},
{
type: PublicationLinkType.Slides,
url: "publications/202411_aiware_bootcamp_observability_for_pdf.pdf",
},
],
"Toronto, Canada",
),
];

export default publications;
10 changes: 5 additions & 5 deletions src/publications/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export enum PublicationLinkType {
}

export interface PublicationLink {
type: PublicationLinkType;
type: PublicationLinkType | string;
url: string;
}

Expand All @@ -36,7 +36,7 @@ export interface Publication {
type: PublicationType;
title: string;
authors: string | string[];
venue: PublicationVenue;
venue: PublicationVenue | string;
dateAccepted: Date;
links: PublicationLink[];

Expand All @@ -56,7 +56,7 @@ export class JournalPublication implements Publication {
constructor(
public title: string,
public authors: string[],
public venue: PublicationVenue,
public venue: PublicationVenue | string,
public dateAccepted: Date,
public links: PublicationLink[],
) { }
Expand All @@ -79,7 +79,7 @@ export class ThesisPublication implements Publication {
constructor(
public title: string,
public authors: string,
public venue: PublicationVenue,
public venue: PublicationVenue | string,
public dateAccepted: Date,
public links: PublicationLink[],
public thesisType: string,
Expand All @@ -104,7 +104,7 @@ export class PresentationPublication implements Publication {
constructor(
public title: string,
public authors: string[],
public venue: PublicationVenue,
public venue: PublicationVenue | string,
public dateAccepted: Date,
public links: PublicationLink[],
public location: string,
Expand Down

0 comments on commit a4d05b4

Please sign in to comment.