1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/pages/year3/gestione/index.tsx

92 lines
3.5 KiB
TypeScript
Raw Normal View History

2022-02-04 05:04:59 +00:00
import { Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered } from '@steffo/bluelib-react'
2022-06-28 17:13:40 +00:00
import type { NextPage, NextPageContext } from 'next'
2022-02-04 05:04:59 +00:00
import { Link } from '../../../components/link'
2022-02-04 17:41:40 +00:00
import { Warn1024 } from '../../../components/warn'
2022-02-04 05:04:59 +00:00
2022-06-28 17:13:40 +00:00
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
2022-02-04 05:04:59 +00:00
const Page: NextPage = () => {
return <>
<Heading level={2}>
Gestione dell&apos;informazione
</Heading>
<Chapter>
<Box>
<Heading level={3}>
Premessa
</Heading>
<p>
<I>Gestione dell&apos;informazione</I>: un corso... disordinato!
</p>
<p>
Ho imparato parecchie cose da quest&apos;esame, soprattutto dal progetto che ho realizzato per passarlo, ma le slides erano disorganizzate, e la prova scritta mi è sembrata in buona parte basata sulla fortuna.
</p>
</Box>
</Chapter>
<Chapter>
<Box>
<Heading level={3}>
Materiale raccolto
</Heading>
<p>
Avendolo dovuto provare due volte, ho raccolto e realizzato un sacco di materiale per questo corso!
</p>
<Chapter>
<Panel>
<Heading level={4}>
Appuntiweb
</Heading>
2022-02-04 17:41:40 +00:00
<Warn1024/>
2022-02-04 05:04:59 +00:00
<ListUnordered>
<ListUnordered.Item>
<Link href="/year3/gestione/teoria">Appunti di teoria</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
<Panel>
<Heading level={4}>
Progetto realizzato
</Heading>
<ListUnordered>
<ListUnordered.Item>
<Link href="https://github.com/Steffo99/mandarin">Mandarin</Link>
</ListUnordered.Item>
<ListUnordered.Item>
<Link href="https://github.com/Steffo99/mandarin-search">Mandarin Search</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
<Panel>
<Heading level={4}>
Appunti di altri studenti
</Heading>
<ListUnordered>
<ListUnordered.Item>
<Link href="https://gitlab.com/2429571/gestione-informazione">GitLab di Sharon Guerzoni</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
<Panel>
<Heading level={4}>
Collegamenti utili
</Heading>
<ListUnordered>
<ListUnordered.Item>
<Link href="https://nlp.stanford.edu/IR-book/">Introduction to Information Retrieval</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
</Chapter>
</Box>
</Chapter>
</>
}
export default Page