HUGO

GitHub Actions copy one git repository to another git repository

GitHub Actions copy one git repository to another git repository

Configuration to have GitHub automatically copy files from one repository to another

Introduction GitHub provies “Actions” which are automatic actions that are ran on gitHub for you. This can be used to compile your code, compile your docker image, or do any arbitrary set of commands. This typically is done in software development to automatically push software between development and test. This is typically done to insure all the necessary code, configurations, etc necessary are checked into the source repository. Additionally this insures all the neccessary steps are done uniformly no matter which developer checks in the code.
Hugo install on Redhat Enterprise Linux 9

Hugo install on Redhat Enterprise Linux 9

Installation of Hugo on RHEL 9

Nathan Obert
Introduction HUGO is a static website rendering engine. Essentially you write a collection of Mark Down to files with headers, and HUGO can very rapidily theme an entire website. This website for instance is on the HUGO platform. Other very large sites like most likely the Kubernetes Documentation is also on HUGO. You end up with a “wordpress” like feel for the end user, however its actually static HTML that can be served up on git pages or any http server.
Markdown Cheatsheet

Markdown Cheatsheet

Cheatsheet for writing Markdown

Nathan Obert
Introduction This is a quick cheat sheet from Adam Pritchard’s Cheatsheet that is useful when writing markup to make sure the syntax is correct. Markdown is a syntax used to format text. It essentially is a short form version of Hypertext Mark Up Language (HTML). You can achieve similar formatting with far less effort and by writing in Markdown instead of HTML. There is a Live Demo of Markdown available. This is especially useful if you would like to see what the rendered interactively.