personal-blog/content/post/its-alive.md

901 B

title date tags topics draft
It's Alive! 2021-03-30T20:14:33+01:00
shortcodes
hugo
technology
blogging
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.

@RestController
@RequestMapping(value = "/hello")
public class TrainerController {

    @GetMapping
    public String helloWorld(){
        return "Hello, World!";
    }
}

Here's a snippet of Python using code fencing.

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()