removing blog bootup posts
This commit is contained in:
parent
5f39605780
commit
3034b0bfa5
@ -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
|
|
@ -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()
|
|
||||||
```
|
|
Loading…
Reference in New Issue
Block a user