aboutsummaryrefslogtreecommitdiff
path: root/slides.md
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2021-03-19 21:39:15 -0600
committerCody Hiar <cody@hiar.ca>2021-03-19 21:39:15 -0600
commitccabbd345fce9941ff9f3c8e19d5ae3de5eb9d2a (patch)
treebb58e53b3cbf82a42b68d6f80561e242a650c77d /slides.md
parent942d477a3ae9a8ac8500467f5535f3e1b369fbc4 (diff)
Remove note about githubHEADmaster
Diffstat (limited to 'slides.md')
-rw-r--r--slides.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/slides.md b/slides.md
index f01762a..55de889 100644
--- a/slides.md
+++ b/slides.md
@@ -19,7 +19,7 @@
* www.codyhiar.com
* www.github.com/thornycrackers
-# Past Presentations (available on GitHub)
+# Past Presentations
* Docker for Homo Troglodytes (YEGSEC)
* Scraping with scrapy (YEGSEC)
@@ -88,7 +88,7 @@ example.
```
APIURI = "https://lol.nope/redacted"
-infra_client_ID = "ALSO-REDACT"
+infra_client_ID = "ALSO-REDACT"
userlist = { ... }
```
@@ -96,7 +96,7 @@ vs
```
APIURI = "https://lol.nope/redacted"
-INFRA_CLIENT_ID = "ALSO-REDACT"
+INFRA_CLIENT_ID = "ALSO-REDACT"
USERLIST = ( ... )
```
@@ -234,7 +234,7 @@ except ConnectionError:
logging.error("...")
```
-If we have multiple exceptions we can put them all on the same line.
+If we have multiple exceptions we can put them all on the same line.
-------------------------------------------------
@@ -252,7 +252,7 @@ vs
def main():
mystr = "Hello"
print(mystr)
-
+
if __name__ == "__main__":
main()
```