Over about

Welcome to yet another Hugo blog!

Moonstreet is the name of the street where I live, together with my lovely girlfriend. I am a devops engineer by day that just can't stop thinking about technology in the night.

The opinions expressed in this blog are my own personal opinions and do not represent my employer’s view in any way.

About this website

These are my notes about the things I learn and think I worthy of sharing with the world. This website is made with the following tools:

Here are the steps to create this site:

1sudo dnf install -y hugo
2mkdir ~/blog && cd ~/blog
3hugo new site moonstreet
4cd themes
5git init
6git clone https://github.com/kimcc/hugo-theme-noteworthy.git
7cd ..
8echo 'theme = "hugo-theme-noteworthy"' >> config.toml
9hugo serve -D

Then in a new terminal window:

1hugo new posts/hugo.md

And then paste this content in hugo.md.

Push to Github and publish with Netlify

When publishing, make sure your post is not set to 'draft'. Run a final hugo to build the site. Then commit and push.

On a new computer

1git clone # this repo
2cd moonstreet
3git submodule update --init --recursive
4hugo server -D

Some markdown pointers

On how to include and resize images.

1![tmux](https://upload.wikimedia.org/Tmux_logo.svg/1280px-Tmux_logo.svg.png)
2 
3<img src="https://upload.wikimedia.org/1280px-Tmux_logo.svg.png" width="400">
4
5<img src="/termimal2.png" width="600">
6
7![plaatje](/termimal2.png)

About Hugo

Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.

Hugo makes use of a variety of open source projects including:

Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.

Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.

Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.

Learn more and contribute on GitHub.