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

62 lines
2.1 KiB
TypeScript
Raw Normal View History

2022-09-28 09:16:00 +00:00
import {Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered, Parenthesis} from "@steffo/bluelib-react"
import type { NextPage, NextPageContext } from 'next'
import { Link } from '../../../components/link'
import { Warn1024 } from '../../../components/warn'
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
const Page: NextPage = () => {
return <>
<Heading level={2}>
Big data analytics
</Heading>
<Chapter>
2022-09-29 01:13:48 +00:00
<Box>
2022-09-28 09:16:00 +00:00
<Heading level={3}>
Premessa
</Heading>
<p>
2022-09-29 01:13:48 +00:00
Per ora il corso sembra interessante, ma ho seguito ancora troppe poche lezioni per dirlo con certezza.
2022-09-28 09:16:00 +00:00
</p>
2022-09-29 01:13:48 +00:00
<Parenthesis>
La prof. Mandreoli consiglia il film <Link href={"https://en.wikipedia.org/wiki/Moneyball_(film)"}>Moneyball</Link>, perchè fa vedere quanto è efficace la data science.
</Parenthesis>
2022-09-28 09:16:00 +00:00
</Box>
</Chapter>
<Chapter>
2022-09-29 01:13:48 +00:00
<Box>
2022-09-28 09:16:00 +00:00
<Heading level={3}>
Materiale raccolto
</Heading>
<p>
2022-09-29 01:13:48 +00:00
Sto seguendo le lezioni di questo corso, pertanto sto raccogliendo attivamente materiale.
2022-09-28 09:16:00 +00:00
</p>
<Chapter>
<Panel>
<Heading level={4}>
Appuntiweb
</Heading>
<Warn1024/>
<ListUnordered>
<ListUnordered.Item>
2022-09-30 08:56:07 +00:00
<Link href="/year4/bigdata/teoria">Appunti di teoria (Mandreoli)</Link>
</ListUnordered.Item>
<ListUnordered.Item>
<Link href="/year4/bigdata/pratica">Appunti di pratica (Martoglia)</Link>
2022-09-28 09:16:00 +00:00
</ListUnordered.Item>
</ListUnordered>
</Panel>
</Chapter>
</Box>
</Chapter>
</>
}
export default Page