From ccabbd345fce9941ff9f3c8e19d5ae3de5eb9d2a Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 19 Mar 2021 21:39:15 -0600 Subject: Remove note about github --- slides.md | 10 +++++----- 1 file 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() ``` -- cgit v1.2.3