mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-05-06 08:46:40 +00:00
Update projects
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<img src="~/assets/images/icons/wip.svg" class="h-6 sm:h-8 dark:invert"/>
|
||||
<span class="sm:text-lg font-bold ml-2">WIP</span>
|
||||
</div>
|
||||
<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 md:mx-10">{{ 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">
|
||||
<a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/animal-house' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_21-22") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_21-22") }}</p> -->
|
||||
<p>{{ $t('animalhouse.description') }}</p>
|
||||
<ul class="list-inside list-['-_']">
|
||||
<li>{{ $t('animalhouse.description.game') }}</li>
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
:title="$t('bsc_thesis.title')"
|
||||
:subtitle="$t('bsc_thesis.thesis_title')"
|
||||
:title="$t('bsc_thesis.thesis_title')"
|
||||
:subtitle="$t('bsc_thesis.title')"
|
||||
:image="image"
|
||||
:links="[
|
||||
{ label: 'Repository1', url: 'https://github.com/NotXia/biomed-ext-summ' },
|
||||
{ label: 'Repository2', url: 'https://github.com/NotXia/pubmed-summ' },
|
||||
{ label: $t('thesis'), url: 'https://amslaurea.unibo.it/id/eprint/29686' }
|
||||
{ label: $t('thesis'), url: 'https://amslaurea.unibo.it/id/eprint/29686' },
|
||||
{ label: $t('paper'), url: 'https://doi.org/10.1145/3766905' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_22-23") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_22-23") }}</p> -->
|
||||
<p>{{ $t("bsc_thesis.description") }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
10
components/projects/cards/CouriersOptimization.vue
Normal file
10
components/projects/cards/CouriersOptimization.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Multiple Couriers Optimization"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/couriers-optimization' }
|
||||
]">
|
||||
|
||||
<p>{{ $t('couriers_optimization.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
15
components/projects/cards/DistributedOptimization.vue
Normal file
15
components/projects/cards/DistributedOptimization.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Distributed Optimization" :image="image" image_classes="w-1/2"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/distributed-optimization' }
|
||||
]">
|
||||
|
||||
<p>{{ $t('distributed_optimization.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
import image from "@/assets/images/projects/distributed_optmization.png";
|
||||
</script>
|
||||
@@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Image deblur" :image="image"
|
||||
title="Image Deblur" :image="image"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/imaging' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_21-22") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_21-22") }}</p> -->
|
||||
<p>{{ $t('imaging.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
15
components/projects/cards/InstanceDetection.vue
Normal file
15
components/projects/cards/InstanceDetection.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
:title="$t('instance_detection.title')" :image="image" image_classes=""
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/opencv-instance-detection' }
|
||||
]">
|
||||
|
||||
<p>{{ $t('instance_detection.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
import image from "@/assets/images/projects/instance_detection.png";
|
||||
</script>
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/MNKGame' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_20-21") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_20-21") }}</p> -->
|
||||
<p>{{ $t('mnk.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
14
components/projects/cards/NaturalExamples.vue
Normal file
14
components/projects/cards/NaturalExamples.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Natural example-based XAI" :image="image"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/natural-examples-xai' }
|
||||
]">
|
||||
|
||||
<p>{{ $t('natural_examples.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import image from "@/assets/images/projects/natural_example.png";
|
||||
</script>
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/pandos-plus' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_21-22") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_21-22") }}</p> -->
|
||||
<p>{{ $t('pandos+.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Pathfinding visualizer" :image="image"
|
||||
title="Pathfinding Visualizer" :image="image"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/pathfinding-visualizer' },
|
||||
{ label: 'Demo', url: 'https://notxia.github.io/pathfinding-visualizer/' }
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Platform game" :image="image"
|
||||
title="Platform Game" :image="image"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/platform-game' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_20-21") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_20-21") }}</p> -->
|
||||
<p>{{ $t('platform.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Sorting visualizer" :image="image"
|
||||
title="Sorting Visualizer" :image="image"
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/sorting-visualizer' },
|
||||
{ label: 'Demo', url: 'https://notxia.github.io/sorting-visualizer/' }
|
||||
|
||||
15
components/projects/cards/StreetAnomaly.vue
Normal file
15
components/projects/cards/StreetAnomaly.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<ProjectCard
|
||||
title="Street Anomaly Segmentation" :image="image" image_classes=""
|
||||
:links="[
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/street-anomaly-segmentation' }
|
||||
]">
|
||||
|
||||
<p>{{ $t('street_anomaly.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
import image from "@/assets/images/projects/street_anomaly.png";
|
||||
</script>
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/tablut-player' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_23-24") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_23-24") }}</p> -->
|
||||
<p>{{ $t('tablut.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/tweet-analysis' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_22-23") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_22-23") }}</p> -->
|
||||
<p>{{ $t('tweet_analysis.description') }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
{ label: 'Repository', url: 'https://github.com/NotXia/wave-map' },
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_22-23") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_22-23") }}</p> -->
|
||||
<p>{{ $t("wavemap.description") }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{ label: 'VirtualSquare', url: 'http://wiki.virtualsquare.org/#!index.md' }
|
||||
]">
|
||||
|
||||
<p class="text-center">{{ $t("unibo_22-23") }}</p>
|
||||
<!-- <p class="text-center">{{ $t("unibo_22-23") }}</p> -->
|
||||
<p>{{ $t("wirefilter.description") }}</p>
|
||||
</ProjectCard>
|
||||
</template>
|
||||
Reference in New Issue
Block a user