From 3034b0bfa56e8a9ab1b31933e7ae52727386693d Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 21 Nov 2021 19:24:37 +0000 Subject: [PATCH] removing blog bootup posts --- content/post/hello-world.md | 38 ------------------------------- content/post/its-alive.md | 45 ------------------------------------- 2 files changed, 83 deletions(-) delete mode 100644 content/post/hello-world.md delete mode 100644 content/post/its-alive.md diff --git a/content/post/hello-world.md b/content/post/hello-world.md deleted file mode 100644 index 5ee4350..0000000 --- a/content/post/hello-world.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Hello, World!" -date: 2021-03-29T20:14:33+01:00 -draft: false ---- - -# Hello World! - -This is my first static blog post. I think I might be doing a lot of this in the future. - -## Do Not Go Gentle - - Do not go gentle into that good night, - Old age should burn and rave at close of day; - Rage, rage against the dying of the light. - - Though wise men at their end know dark is right, - Because their words had forked no lightning they - Do not go gentle into that good night. - - Good men, the last wave by, crying how bright - Their frail deeds might have danced in a green bay, - Rage, rage against the dying of the light. - - Wild men who caught and sang the sun in flight, - And learn, too late, they grieve it on its way, - Do not go gentle into that good night. - - Grave men, near death, who see with blinding sight - Blind eyes could blaze like meteors and be gay, - Rage, rage against the dying of the light. - - And you, my father, there on the sad height, - Curse, bless, me now with your fierce tears, I pray. - Do not go gentle into that good night. - Rage, rage against the dying of the light. - - Dylan Thomas diff --git a/content/post/its-alive.md b/content/post/its-alive.md deleted file mode 100644 index b0dd7fd..0000000 --- a/content/post/its-alive.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "It's Alive!" -date: 2021-03-30T20:14:33+01:00 -tags: ["shortcodes", "hugo"] -topics: ["technology", "blogging"] -draft: false ---- - -# Welcome To My Blog - -Here's a snippet of Go, using the built-in "highlight" shortcode. - -{{< highlight go >}} -func str2int(strnum string) int { - i, err := strconv.Atoi(strnum) - if err != nil { - return 9999 - } - return i -} -{{< /highlight >}} - -Here's a snippet of Java Springboot using code fencing. - -```java -@RestController -@RequestMapping(value = "/hello") -public class TrainerController { - - @GetMapping - public String helloWorld(){ - return "Hello, World!"; - } -} -``` - -Here's a snippet of Python using code fencing. - -```python -def test_firefox_browser(headless): - bd = BrowserDriver().get("firefox", headless=headless) - bd.get('https://test.io') - assert "QA Testing as a Service | test IO" == bd.title - bd.quit() -```