From 32222a5bc936f4ab90f7505257f2b0882074e2e0 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Tue, 21 Aug 2018 19:50:55 +0300 Subject: Initial batch of slides --- README.md | 5 ++++ slides.html | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ styles.css | 49 +++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 slides.html create mode 100644 styles.css diff --git a/README.md b/README.md index a81e7cb..0d73d41 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,12 @@ ## Abstract +### N00bing Through Rust +The Rust language no doubt has a steep learning curve. +In this talk I will share my experience of getting started with Rust in addition to some ideas that can be applied to making things easier for Rust beginners. + +Yuval Adam is a full stack developer, freelance consultant and a Rustacean in the making ## Ideas diff --git a/slides.html b/slides.html new file mode 100644 index 0000000..efa9156 --- /dev/null +++ b/slides.html @@ -0,0 +1,86 @@ + + + + N00bing through Rust + + + + + + + + + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..9531488 --- /dev/null +++ b/styles.css @@ -0,0 +1,49 @@ +@import url('https://fonts.googleapis.com/css?family=Fira+Sans'); +@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro'); + +body { + font-family: 'Fira Sans'; +} + +.remark-code, .remark-inline-code { + font-family: 'Source Code Pro'; +} + +blockquote { + background: #f9f9f9; + border-left: 10px solid #ccc; + margin: 1.5em 10px; + padding: 0.5em 10px; +} + +blockquote:before { + color: #ccc; + font-size: 4em; + line-height: 0.1em; + margin-right: 0.25em; + vertical-align: -0.4em; +} + +blockquote p { + display: inline; +} + +table { + border: solid 1px #333; + border-spacing: 0; + border-collapse: collapse; + text-align: center; +} + +table thead th { + background-color: #ccc; + border: solid 1px #ccc; + color: #333; + padding: 10px; +} + +table tbody td { + border: solid 1px #ccc; + color: #333; + padding: 10px; +} \ No newline at end of file -- cgit v1.3.1