2021 Annual Review

Here we are again, another year come and gone. Let’s look back at the lessons learned and mistakes made. All up, it’s been a big year, we’ve all been redefining ‘normal’ post-2020. There’s been more division over the concern for safety and I genuinely hope you and your family are safe and well, thanks for reading this. Disclaimer, this is a self-indulgent article and will not be value-focused. Since 2019, I’ve written yearly recaps as an exercise to be more intentional and increase personal growth....

22/01/2022 · 6 min · 1070 words · Ash

Python Range Function • Quick Python Project Lesson

So you’re learning Python and want to understand the range function, welcome! The range function paired with a for loop is a great way to repeat code a number of times. Let’s learn the basics of the range function with Python and then it’s over to you for a little project. Basics Let’s have a simple counter go from 1 to 5, and show the results as it counts....

18/11/2021 · 6 min · 1150 words · Mr Ash

Homelabs 2023 Beginner's Guide To Homelabbing

You are probably new to homelabbing and need a bit of guidance. Building a homelab means building a computer network, or lab, at home. Homelabs can be anything from old laptops to expensive high-end enterprise equipment. Typically, you’ll find homelabs involve a lot of virtual computers, meaning they’re not physical. There’s little entry to get started and unlimited possibility as your homelab grows. You’ll find techies and sys-admins from all over the world who love to share their homelabs, projects and builds....

07/11/2021 · 3 min · 579 words · Ash

ZigZag - Beginner Python Project

Let’s learn some Python! Want an easy python program to get started? Here’s zigzag. This program is from Automate The Boring Stuff With Python Chapter 3, under A Short Program: Zigzag. Welcome to my third study session to learn Python Programming! The video above covers the entire process of copying the zig zag program from Automate The Boring Stuff With Python. See Built-in Functions, Time access and conversions and What does end=’ ‘ exactly do?...

19/10/2021 · 2 min · 357 words · Mr Ash

Random Number Generator • Easy Python Project

Want an easy python project to get you started learning python? Here’s a random number generator built-in python! See the project live below or via GitHub. Okay, let’s build your very own number generator python program. Foundation Let’s write the program in stages. But first, it’s recommended to write out pseudo code as it helps to map out and plan the program before you deep dive into writing it....

17/10/2021 · 4 min · 775 words · Mr Ash