Add BSc degree

This commit is contained in:
2023-11-05 20:04:16 +01:00
parent fc8bc02463
commit 104d7377b2
11 changed files with 56 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

View File

@ -1,6 +1,7 @@
<template> <template>
<div class="border border-gray-500 dark:border-gray-300 rounded-md p-3 mx-auto w-full lg:w-2/3 xl:w-1/2"> <div class="border border-gray-500 dark:border-gray-300 rounded-md p-3 mx-auto w-full lg:w-2/3 xl:w-1/2">
<h3 class="text-2xl font-semibold text-center text-gray-900 dark:text-white">{{ props.title }}</h3> <h3 class="text-2xl font-semibold text-center text-gray-900 dark:text-white">{{ props.title }}</h3>
<h4 v-if="props.subtitle" class="text font-semibold text-center text-gray-700 dark:text-gray-300">{{ props.subtitle }}</h4>
<div class="text-center mb-2"> <div class="text-center mb-2">
<a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a> <a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a>
</div> </div>
@ -17,6 +18,7 @@
const props = defineProps({ const props = defineProps({
title: String, title: String,
subtitle: { type: String, required: false },
links: Object as PropType<{ label: string, url: string }[]>, links: Object as PropType<{ label: string, url: string }[]>,
image: String image: String
}); });

View File

@ -1,10 +1,18 @@
<template> <template>
<ProjectCard <ProjectCard
:title="$t('bsc_thesis.title')" :title="$t('bsc_thesis.title')"
:subtitle="$t('bsc_thesis.thesis_title')"
:image="image"
:links="[ :links="[
{ label: 'Repository1', url: 'https://github.com/NotXia/biomed-ext-summ' },
{ label: 'Repository2', url: 'https://github.com/NotXia/pubmed-summ' }
]"> ]">
<p class="text-center">{{ $t("unibo_22-23") }}</p> <p class="text-center">{{ $t("unibo_22-23") }}</p>
<p>{{ $t("bsc_thesis.description") }}</p> <p>{{ $t("bsc_thesis.description") }}</p>
</ProjectCard> </ProjectCard>
</template> </template>
<script setup lang="ts">
import image from "@/assets/images/projects/bsc-thesis.png";
</script>

View File

@ -0,0 +1,14 @@
<template>
<ProjectCard
title="Tablut"
:links="[
]">
<p class="text-center">{{ $t("unibo_23-24") }}</p>
<p>{{ $t('tablut.description') }}</p>
</ProjectCard>
</template>
<script setup lang="ts">
</script>

View File

@ -15,17 +15,17 @@
{ {
title: $t('diploma'), time_label: '2015 - 2020', title: $t('diploma'), time_label: '2015 - 2020',
description: $t('aldini'), description: $t('aldini'),
start: new Date(2015, september, 1), end: new Date(2020, june, 1) start: new Date(2015, september, 15), end: new Date(2020, june, 20)
}, },
{ {
title: $t('bs in cs'), time_label: '2020 - 2023', title: $t('bs in cs'), time_label: '2020 - 2023',
description: $t('unibo'), description: $t('unibo'),
start: new Date(2020, september, 1), end: new Date(2023, september, 1), current: true start: new Date(2020, september, 21), end: new Date(2023, october, 11), current: false
}, },
{ {
title: $t('ms in ai'), time_label: '2023 - 2025', title: $t('ms in ai'), time_label: '2023 - 2025',
description: $t('unibo'), description: $t('unibo'),
start: new Date(2023, september, 1), end: new Date(), current: true start: new Date(2023, september, 18), end: new Date(), current: true
} }
]" ]"
:left="[ :left="[

View File

@ -5,12 +5,14 @@
<ActivityParagraph :title="$t('ms in ai')" :subtitle="$t('unibo')" :right_text="`2023 - ${$t('present')}`"> <ActivityParagraph :title="$t('ms in ai')" :subtitle="$t('unibo')" :right_text="`2023 - ${$t('present')}`">
</ActivityParagraph> </ActivityParagraph>
<ActivityParagraph :title="$t('bs in cs')" :subtitle="$t('unibo')" :right_text="`2020 - ${$t('present')}`"> <ActivityParagraph :title="$t('bs in cs')" :subtitle="$t('unibo')" :right_text="`2020 - 2023`">
<div>{{ $t("thesis title") }}: Subtopic-oriented biomedical summarization using pretrained language models</div>
<div>{{ $t("graduation grade") }}: 110/110 {{ $t("with honors") }}</div>
</ActivityParagraph> </ActivityParagraph>
<ActivityParagraph :title="$t('diploma')" :subtitle="$t('aldini')" right_text="2015 - 2020"> <ActivityParagraph :title="$t('diploma')" :subtitle="$t('aldini')" right_text="2015 - 2020">
<div>{{ $t('diploma desc') }}</div> <div>{{ $t('diploma desc') }}</div>
<div>{{ $t("final grade") }}: 100/100 {{ $t("with honors") }}</div> <div>{{ $t("graduation grade") }}: 100/100 {{ $t("with honors") }}</div>
</ActivityParagraph> </ActivityParagraph>
</div> </div>
</template> </template>

View File

@ -6,14 +6,19 @@ export default {
"unibo_20-21": "University of Bologna, A.Y. 2020-2021", "unibo_20-21": "University of Bologna, A.Y. 2020-2021",
"unibo_21-22": "University of Bologna, A.Y. 2021-2022", "unibo_21-22": "University of Bologna, A.Y. 2021-2022",
"unibo_22-23": "University of Bologna, A.Y. 2022-2023", "unibo_22-23": "University of Bologna, A.Y. 2022-2023",
"unibo_23-24": "University of Bologna, A.Y. 2023-2024",
"notxia.github.io.description": "Here's a secret preview of my website.", "notxia.github.io.description": "Here's a secret preview of my website.",
"no recursion": "Recursion out of service, sorry for the inconvenience.", "no recursion": "Recursion out of service, sorry for the inconvenience.",
"tablut.description":
"Project for the Fundamentals of Artificial Intelligence and Knowledge Representation (module 1) course.\n" +
"Agent able to play the Tablut board game.",
"bsc_thesis.title": "Bachelor's thesis", "bsc_thesis.title": "Bachelor's thesis",
"bsc_thesis.description": "Automatic text summarization of biomedical publications using pretrained language models.", "bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models",
"bsc_thesis.description": "Biomedical extractive summarization using pretrained encoders and clustering.",
"wavemap.description": "wavemap.description":
"Project for the Mobile Applications Laboratory course.\n" + "Project for the Mobile Applications Laboratory course.\n" +

View File

@ -19,11 +19,13 @@ export default {
"present": "present", "present": "present",
"final grade": "Final grade", "final grade": "Final grade",
"with honors": "with honors", "graduation grade": "Graduation grade",
"with honors": "cum laude",
"bs in cs": "Bachelor's Degree in Computer Science", "bs in cs": "Bachelor's Degree in Computer Science",
"ms in ai": "Master's Degree in Artificial Intelligence", "ms in ai": "Master's Degree in Artificial Intelligence",
"unibo": "Alma Mater Studiorum, University of Bologna", "unibo": "Alma Mater Studiorum, University of Bologna",
"thesis title": "Thesis title",
"diploma": "Technical institute diploma", "diploma": "Technical institute diploma",
"aldini": "Aldini Valeriani, Bologna, Italy", "aldini": "Aldini Valeriani, Bologna, Italy",
@ -46,7 +48,7 @@ export default {
"pcto toyota description list1": "IT support.", "pcto toyota description list1": "IT support.",
"pcto toyota description list2": "Maintenance and setup of network devices.", "pcto toyota description list2": "Maintenance and setup of network devices.",
"pcto toyota description list3": "Report creation using SQL.", "pcto toyota description list3": "Report creation using SQL.",
"pcto toyota description list4": "Automations using bash and batch scripts.", "pcto toyota description list4": "Automation using bash and batch scripts.",
"ois": "Informatics Olympiad in Teams", "ois": "Informatics Olympiad in Teams",

View File

@ -6,14 +6,19 @@ export default {
"unibo_20-21": "Università di Bologna, A.A. 2020-2021", "unibo_20-21": "Università di Bologna, A.A. 2020-2021",
"unibo_21-22": "Università di Bologna, A.A. 2021-2022", "unibo_21-22": "Università di Bologna, A.A. 2021-2022",
"unibo_22-23": "Università di Bologna, A.A. 2022-2023", "unibo_22-23": "Università di Bologna, A.A. 2022-2023",
"unibo_23-24": "Università di Bologna, A.A. 2023-2024",
"notxia.github.io.description": "Ecco un'anteprima segreta del mio sito.", "notxia.github.io.description": "Ecco un'anteprima segreta del mio sito.",
"no recursion": "Ricorsione fuori servizio, mi scuso per il disagio.", "no recursion": "Ricorsione fuori servizio, mi scuso per il disagio.",
"tablut.description":
"Progetto per il corso di Fundamentals of Artificial Intelligence and Knowledge Representation (modulo 1).\n" +
"Agent in grado di giocare al gioco da tavolo Tablut.",
"bsc_thesis.title": "Tesi triennale", "bsc_thesis.title": "Tesi triennale",
"bsc_thesis.description": "Generazione di riassunti in ambito biomedico utilizzando modelli di linguaggio preaddestrati.", "bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models",
"bsc_thesis.description": "Generazione di riassunti estrattivi in ambito biomedico con modelli di linguaggio preaddestrati e algoritmi di clustering.",
"wavemap.description": "wavemap.description":
"Progetto per il corso di Laboratorio di Applicazioni Mobili.\n" + "Progetto per il corso di Laboratorio di Applicazioni Mobili.\n" +

View File

@ -19,11 +19,13 @@ export default {
"present": "in corso", "present": "in corso",
"final grade": "Valutazione finale", "final grade": "Valutazione finale",
"with honors": "e lode", "graduation grade": "Valutazione finale",
"with honors": "con lode",
"bs in cs": "Laurea Triennale in Informatica", "bs in cs": "Laurea Triennale in Informatica",
"ms in ai": "Laurea Magistrale in Artificial Intelligence", "ms in ai": "Laurea Magistrale in Artificial Intelligence",
"unibo": "Alma Mater Studiorum, Università di Bologna", "unibo": "Alma Mater Studiorum, Università di Bologna",
"thesis title": "Titolo tesi",
"diploma": "Diploma di perito informatico", "diploma": "Diploma di perito informatico",
"aldini": "I.T.I Aldini Valeriani, Bologna", "aldini": "I.T.I Aldini Valeriani, Bologna",

View File

@ -6,13 +6,14 @@
<h2 class="text-3xl text-center mt-10 mb-3">{{ $t("wip") }}</h2> <h2 class="text-3xl text-center mt-10 mb-3">{{ $t("wip") }}</h2>
<div class="[&>*]:my-14 first:[&>*]:mt-8"> <div class="[&>*]:my-14 first:[&>*]:mt-8">
<BScThesis /> <TablutPlayer />
<NotXiaGithubio /> <NotXiaGithubio />
</div> </div>
<h2 class="text-3xl text-center mt-10 mb-3">{{ $t("completed") }}</h2> <h2 class="text-3xl text-center mt-10 mb-3">{{ $t("completed") }}</h2>
<div class="[&>*]:my-14 first:[&>*]:mt-8"> <div class="[&>*]:my-14 first:[&>*]:mt-8">
<BScThesis />
<WaveMap /> <WaveMap />
<Wirefilter /> <Wirefilter />
<TweetAnalysis /> <TweetAnalysis />