Welcome! 👋

All the XYZs by Al3xis!

This blog is built with the Hugo - Static Site Generator.

Topics covered:

  • â–º Web development
  • â–º Linux tips
  • â–º Homelab setup guides
  • â–º Projects on Raspberry Pi
  • â–º Garmin watchfaces
  • â–º Other random stuff

Quickguide Git 2023

Install https://git-scm.com/download/linux https://docs.github.com/en/get-started/quickstart/set-up-git sudo add-apt-repository ppa:git-core/ppa sudo apt update sudo apt install git git --version Configure Configure Git git config --global user.name "Xyz" git config --global user.email "xxxxx@xxxx.xyz" # Enable main as the default branch git config --global init.defaultBranch main # Enable colours git config --global color.ui auto # Check the configuration git config --list Generate SSH key https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent https://docs.github.com/en/authentication/connecting-to-github-with-ssh/using-ssh-agent-forwarding https://docs.gitlab.com/ee/user/ssh.html#generate-an-ssh-key-pair # Generate SSH key ssh-keygen -t ed25519 -C "xxxxx@xxxx....

March 21, 2023 Â· 2 min Â· Al3xis

Quickguide - Headless Raspberry Pi setup

This guide is to make the initial steps from formating the microSD card to having ssh access to a headless Raspberry Pi. Headless Raspberry Pi Fresh Installation Install the rpi-imager. Choose the Raspberry Pi OS Lite (64-bit) Select the microSD card and Write Prepare the microSD card Before the first boot the microSD card needs a user account and the SSH connection enabled. User account Add a userconf....

April 17, 2022 Â· 2 min Â· Al3xis

Quickguide - Hugo | Git | Netlify setup

This guide assumes that you have already bought a domain for your website (I recommend Porkbun if you want to buy one now). The domain cost is the only cost needed in this guide. To create, host and publish your website is completely FREE! Hugo installation There are many ways to install Hugo in all major operating systems, described under the Hugo installation documentation To install Hugo on some of the popular Linux distributions:...

February 16, 2021 Â· 6 min Â· Al3xis

Setting Up Disqus Comments in Hugo

Create comments file First create a html file in: layouts/partials/comments.html This is applicable mostly for the PaperMod theme. Other themes usually use a disqus.html file. It is important to name the file in the right way so your theme will recognise it. Check the documentation of your theme, in my case the PaperMod theme documentation about comments is here: https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/#comments Hugo Disqus template Copy from Hugo repository tpl/tplimpl/embedded/templates/disqus.html Add all the lines in the previously created comments....

January 3, 2021 Â· 1 min Â· Al3xis

PaperMod Theme

The PaperMod theme! Installation Install as a submodule with git submodule add https://github.com/adityatelange/hugo-PaperMod.git themes/hugo-PaperMod git submodule update --init --recursive If you liked this, consider sending a tip by ko-fi from the button below, and if you want to send me any feedback, you can reach me by email.

January 2, 2021 Â· 1 min Â· Al3xis

My First Post

Hello world This my first post A new blog site built with Hugo. Future deploy with Netlify. The testing continues Trying to finalise git and then will set-up Netlify. Deploying with Netlify Successfully changed DNS nameservers to point to Netlify. Successfully enabled https. Netlify domain works and shows the website. BUT my domain doesn’t seem to work yet… Maybe needs more time for the nameservers to refresh on the Netlify’s part?...

December 25, 2020 Â· 1 min Â· Al3xis