Recent Posts
Adding Audio to Hugo
The website you are reading was generated using Hugo. I recently upgraded the version of Hugo up quite a few releases.
Overall everything went smooth, but something I didn’t catch till the next day was all my audio embeds stopped working. The embedded html5 audio tag in the post or page was being ommited. It was getting rendered as an html comment, “raw HTML omitted.”
<!-- raw HTML omitted --> Considering I was upgrading from v 0.
read more
Introducing CMSutil, GraphQL backups
At work I selected GraphCMS to be our preferred headless CMS. It is already leveraged on multiple projects and has been working out well for us. The beauty of a good headless CMS is you can use in many scenarios. Case in point, of the 3 instances we have, 2 are web apps; only one is marketing site.
If you are not familiar with GraphCMS, it is a flexible headless CMS with native GraphQL support.
read more
Messing Around with Amazon Polly
I heard good things about Amazon Polly and wanted to take a peek and judge for myself. It’s very easy to use. The example below were done with the AWS CLI.
In case you’re not familiar, Polly is a text to speech service created by Amazon for AWS. Learn more at https://aws.amazon.com/polly/
First Example Lets start with the standard text to speech engine, which uses Concatenative Synthesis. I generated some random text using Nietzsche Ipsum
read more
Cobra Part 1: Strike first, build a CLI In Go
Cobra is a library and generation tool for creating command line interfaces. It simplifies the work needed to create a good CLI. It is written in Go and is used in quite a few well know open source projects. Docker, Kubernetes, Etcd and the GitHub CLI all use Cobra. Check out this link for a larger list of projects.
There are some great older posts on how to use Cobra available online, but I still thought it was worth creating my own.
read more
Improve DevOps Security with Container Scanning
Running your code in containers is a great way manage and deploy software. All of the code needed to run your app is inside one or more containers. You can move these containers from environment to enviornment by creating images and running these images in each environment (as containers).
If you’re using Docker, or a similar alternative, you already know all of this. That’s great but how are you managing security within each container?
read more
Golang Food
Golang is a hot topic among developers these days. languages like Golang and node.js are getting a lot of attention.
For most folks switching programing languages is a big deal and it usually takes some production catastrophe or poorly aging codebase to motivate the switch. It’s like when someone has that way too special night with tequila and decides “never again.” For others they switch and/or experiment with other languages like they change their socks.
read more