From f90661700f0af57c0ca1a3389ea30ea23f86db4f Mon Sep 17 00:00:00 2001 From: Drew Short Date: Mon, 24 Sep 2018 10:50:51 -0500 Subject: [PATCH] Adding a starting blog post --- .gitlab-ci.yml | 1 - config.toml | 19 +++++++++++++++++-- content/posts/2018-09-24-hello-world.md | 20 ++++++++++++++++++++ 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 content/posts/2018-09-24-hello-world.md diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 994623a..61c5c83 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,6 @@ site-build: image: jojomi/hugo stage: build script: - - ls -al - hugo only: - master diff --git a/config.toml b/config.toml index 42af855..e01b711 100644 --- a/config.toml +++ b/config.toml @@ -3,6 +3,21 @@ languageCode = "en-us" title = "NullOctet Blog" theme = "hyde" +paginate = 10 +paginatePath = "page" + +[permalinks] + post = "/:year/:month/:day/:slug/" + code = "/:slug/" + +[taxonomies] + tag = "tags" + topic = "topics" + +[author] + name = "Drew Short" + email = "warrick@nulloctet.com" + [params] - copyright = "Drew Short © 2018. All rights reserved." - description = "A simple developer blog" \ No newline at end of file + description = "A simple developer blog" + copyright = "© 2018 Drew Short. All rights reserved." \ No newline at end of file diff --git a/content/posts/2018-09-24-hello-world.md b/content/posts/2018-09-24-hello-world.md new file mode 100644 index 0000000..a3125bc --- /dev/null +++ b/content/posts/2018-09-24-hello-world.md @@ -0,0 +1,20 @@ +--- +title: "Hello World" +date: 2018-09-24T09:53:07-05:00 +draft: false +tags: + - "personal" + - "informational" +topics: + - "personal" +--- + +Beginning anything is hard. + +Setting up a new site seems especially hard. Comitting to blogging, especially when I'm not entirely certain of the direction is hard. + +However, it is often the hard things that are worth doing. We grow and change through the adventure of completing what is set before us. + +My immediate goals are to cover the technology that I touch, projects I work on, interesting resources and articles that I come across, and possibly any recent tech news that I have strong reactions to. + +I'm a senior software engineer currently working in the Healthcare industry. I have 7 years under my belt in Java, split fairly evenly between working with the Spring framework and no framework. Much of my experience is in middleware and backend systems. On my own time I've taken to using Rust and Python for my personal projects. Along my programing adventure I've picked up and built projects in Ruby, Go, C#, C++, Haxe, and Lisp/Scheme. Most of the langauges I've put down have been because I didn't have a problem I wanted to solve with them, and less about the languages themselves.␀ \ No newline at end of file