-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.nim
61 lines (54 loc) · 2.52 KB
/
intro.nim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import nimib, nimiSlides
import custom_blocks
template titleSlide* =
mySlide:
nbText: "# NIMIB🐳 GOES INTERACTIVE🤯"
nbTextSmall: "[github.com/pietroppeter/nimconf22-nimib](https://github.com/pietroppeter/nimconf22-nimib)"
template whoIsPietroSlide* =
mySlide:
nbText: "### 👨👩👧 Pietro"
unorderedList:
listItem: nbText: "Pietro Peterlongo, [Milan, Italy 🇮🇹](https://goo.gl/maps/ceG6UsLEGqmx5Kpa7)"
listItem: nbText: "Python Data Scientist working on a [Supply Chain Planning Software](https://www.toolsgroup.com)"
listItem: nbText: "talked previously about nimib at [NimConf2021](https://pietroppeter.github.io/nimconf2021/revealjs/index.html)"
listItem: nbText: "helped organize [Nim Devroom at FOSDEM 2022](https://archive.fosdem.org/2022/schedule/track/nim_programming_language/)"
listItem: nbText: "let's organize again the Nim Devroom and meet at [FOSDEM 2023](https://fosdem.org/2023/)!"
template whoIsHugoSlide* =
mySlide:
nbText: "### HUGO 🙋♂️"
unorderedList:
listItem: nbText: "Engineering Physics student"
listItem: nbText: "Nimib maintainer - since July 2022"
unorderedList:
listItem: nbText: "nimiSlides"
listItem: nbText: "SciNim member - since the start 2020"
unorderedList:
listItem: nbText: "NumericalNim"
listItem: nbText: "Scinim/getting-started (uses nimiBook)"
template previouslyAtNimConfSlide* =
mySlide:
nbText: "### Previously at NimConf 2021"
nbRawHtml: """<iframe width="560" height="315" src="https://www.youtube.com/embed/sWA58Wtk6L8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>"""
template contentSlide* =
slideText: hlMdF"""## Content of presentation
- A livecoding👨💻 intro to Nimib🐳
- ✨Release of Nimib 0.3 - BlockMaker🧱
- {title_block}
- {title_js}
- Nimiboost🚀
- {title_roadmap}
- {title_contribute}
"""
template slideLiveCoding* =
mySlide:
nbText: "## A livecoding👨💻 intro to Nimib🐳"
nbRawHtml: """<iframe width="560" height="315" src="https://www.youtube.com/embed/6jTZWkof4Cs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>"""
when isMainModule:
myInit("intro.nim")
titleSlide
whoIsPietroSlide
whoIsHugoSlide
previouslyAtNimConfSlide
contentSlide
slideLiveCoding
nbSave