Compare commits

..

2 commits

Author SHA1 Message Date
a5380a6048
appearances: Add PDFs to talks
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2026-01-12 19:14:59 +01:00
0ebb907096
chore: Move PDFs to separate folder
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2026-01-12 19:14:29 +01:00
6 changed files with 6 additions and 4 deletions

Binary file not shown.

View file

@ -31,4 +31,4 @@ WHAT NO ONE PROPAGATES, BUT FOR US MERE HUMANS WILL BECOME MORE AND MORE INDISPE
LET'S LOVE EACH OTHER. LET'S LOVE EACH OTHER.
[whatchaos.pdf](/whatchaos.pdf) [whatchaos.pdf](/pdfs/whatchaos.pdf)

View file

@ -28,14 +28,16 @@
"url": null, "url": null,
"date": "08.02.2025", "date": "08.02.2025",
"origin": "XChange 2025", "origin": "XChange 2025",
"description": "I had the pleasure of holding a talk at Capgemini's internal knowledge-sharing event, XChange. In my talk, 'Why you as a Capgemini-employee should care about Open Source', I gave an introduction to open source, highlighting its relevance to our values, customer portfolio, and how it drives innovation and sustainability." "description": "I had the pleasure of holding a talk at Capgemini's internal knowledge-sharing event, XChange. In my talk, 'Why you as a Capgemini-employee should care about Open Source', I gave an introduction to open source, highlighting its relevance to our values, customer portfolio, and how it drives innovation and sustainability.",
"pdf": "/pdfs/hvorfor-skal-du-som-capgemini-ansatt-bry-deg-om-os.pdf"
}, },
{ {
"title": "[NO] Introduksjon til Open Source", "title": "[NO] Introduksjon til Open Source",
"url": "https://files.fribyte.no/boskonf/2024/sindre.mp4", "url": "https://files.fribyte.no/boskonf/2024/sindre.mp4",
"date": "07.11.2024", "date": "07.11.2024",
"origin": "Bergen Open Source 2024", "origin": "Bergen Open Source 2024",
"description": "I had the pleasure of holding a lightning talk on the Bergen Open Source Conference in 2024. In my lightning talk I gave a quick introduction to open-source, mentioning some of the benefits, showing some well-known project, and how you can get started yourself." "description": "I had the pleasure of holding a lightning talk on the Bergen Open Source Conference in 2024. In my lightning talk I gave a quick introduction to open-source, mentioning some of the benefits, showing some well-known project, and how you can get started yourself.",
"pdf": "/pdfs/introduksjon-til-open-source.pdf"
} }
] ]
} }

View file

@ -41,7 +41,7 @@ import appearances from "../data/appearances.json";
<p>📅: {appearance.date}</p> <p>📅: {appearance.date}</p>
<p>🎤: {appearance.origin}</p> <p>🎤: {appearance.origin}</p>
</div> </div>
<p>{appearance.description}</p> <p>{appearance.description} <a href={appearance.pdf} target="none">[PDF]</a></p>
</div> </div>
)) ))
} }