-
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
18 changed files
with
155 additions
and
45 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
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/education/maturita-scientifica-sante-simone/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('education', { | ||
date_start: '2008-09', | ||
date_end: '2014-07', | ||
institution: "Liceo Scientifico 'S. Simone'", | ||
description: 'Diploma di maturità scientifica, 100/100 e Lode' | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/education/triennio-isia-urbino/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('education', { | ||
date_start: '2016-09', | ||
date_end: '2020-07', | ||
institution: 'ISIA Urbino', | ||
description: 'Laurea triennale in progettazione grafica e comunicazione visiva, 110/110 e Lode' | ||
}); | ||
</script> |
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,8 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('organizations', { | ||
name: 'Axant', | ||
location: 'Milano, Italia' | ||
}); | ||
</script> |
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,8 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('organizations', { | ||
name: 'Forkbomb b.V.', | ||
location: 'Amsterdam, Paesi Bassi' | ||
}); | ||
</script> |
8 changes: 8 additions & 0 deletions
8
src/routes/(database)/organizations/studio-ardito/+page.svelte
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,8 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('organizations', { | ||
name: 'Studio di Architettura Francesco Ardito', | ||
location: 'Polignano a Mare, Italia' | ||
}); | ||
</script> |
28 changes: 0 additions & 28 deletions
28
src/routes/(database)/work_experiences/2022-10_oggi_dyne/+page.svelte
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/axant-ui-designer.svelte/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2021-07', | ||
date_end: '2021-11', | ||
employer: 'axant', | ||
roles: ['UI/UX designer'] | ||
}); | ||
</script> |
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
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/developer-forkbomb/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2023-10', | ||
current: true, | ||
employer: 'forkbomb', | ||
roles: ['Sviluppatore web'] | ||
}); | ||
</script> |
5 changes: 3 additions & 2 deletions
5
...experiences/2021-05_oggi_sos/+page.svelte → ...rk_experiences/developer-sos/+page.svelte
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,9 +1,10 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules/index'; | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2021-05', | ||
current: true, | ||
organization: 'la-scuola-open-source' | ||
employer: 'la-scuola-open-source', | ||
roles: ['Sviluppatore web'] | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/ff3300-developer/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2020-10', | ||
date_end: '2021-04', | ||
employer: 'ff3300', | ||
roles: ['Sviluppatore web', 'Creative coder'] | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/freelance-multi/+page.svelte
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 @@ | ||
<script lang="ts"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2016-02', | ||
current: true, | ||
employer: 'freelance', | ||
roles: ['Sviluppatore web', 'Information manager', 'UI/UX designer', 'Progettista grafico'] | ||
}); | ||
</script> |
5 changes: 3 additions & 2 deletions
5
...19-07_oggi_freelance_docente/+page.svelte → ...xperiences/freelance-teacher/+page.svelte
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,9 +1,10 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules/index'; | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2019-07', | ||
current: true, | ||
organization: 'freelance' | ||
employer: 'freelance', | ||
roles: ['Docente in workshop'] | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/sos-information-manager/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2021-05', | ||
date_end: '2022-02', | ||
employer: 'la-scuola-open-source', | ||
roles: ['Information manager', 'Project manager'] | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/sos-workshop-organizer/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2021-09', | ||
date_end: '2021-03', // Note: This might be an error in the document, as the end date is before the start date. | ||
employer: 'la-scuola-open-source', | ||
roles: ['Organizzatore di workshop'] | ||
}); | ||
</script> |
10 changes: 10 additions & 0 deletions
10
src/routes/(database)/work_experiences/studio-ardito-designer/+page.svelte
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 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('work_experiences', { | ||
date_start: '2015-09', | ||
date_end: '2016-10', | ||
employer: 'studio-ardito', | ||
roles: ['Progettista grafico specializzato in brand identity'] | ||
}); | ||
</script> |