The Beginners Coding Blog
The Beginners Coding Blog

The Beginners Coding Blog

I am a software engineer with multiple years of excessive C++ experience. In this blog I will introduce you to the world of programming from scratch using the programming language C++. If you like to program, but don't know where to start, this blog will help you to get started.


C++ Basics - [Part 2] Input/Output

24 Feb 2021 3 minute read 0 comments Giemo

Before we start with this lesson, I recommend adding your code to GitHub. It's free, easy to use and will help you in the long run. If you never used GitHub before, have a look at this guide, which will help you setting up a GitHub repository and get...

Git - [Part 2] Add your code to a Github repository

19 Feb 2021 3 minute read 0 comments Giemo

If you are programming with a team or just for yourself, it is always recommended to add your changes to a version control system. It helps you keep track of your changes and also works as a backup if you lose all your locally stored files. In this a...

C++ Basics - [Part 1] Hello, Publish0x!

17 Feb 2021 4 minute read 0 comments Giemo

This series is for people with no or very little programming experience. We will be programming in C++, a programming language that is used in a lot of domains (like automotive, aerospace and many more). Although this series is dedicated to complete...

Setup your Virtual Machine

4 Feb 2021 3 minute read 0 comments Giemo

We all have our favourite Operating Systems (OS). May it be Windows, Linux, MacOS or something else entirely. But from time to time there will be some instances where a different OS is convenient. An easy way to cope with such situations is using a V...

VisualStudioCode - [Part 2] Useful Extensions

29 Jan 2021 1 minute read 0 comments Giemo

The bread and butter of VSCode is the ability to choose from a huge variety of extensions. If you don't know where the available extensions can be found, have a look here. Here is a list of some of the most useful extensions, that will help you with...

Git - [Part 1] What is Git?

28 Jan 2021 4 minute read 0 comments Giemo

Imagine you are working on your project and always save your progress into the same file. One day you realise, that the changes you made the day before are not correct and you would like to go back to a previous state. Because you saved all your prog...

VisualStudioCode - [Part 1] Introduction

27 Jan 2021 1 minute read 0 comments Giemo

In theory all you need to write a program is a text editor and (depending on the programming language) a compiler. With only this minimal setup however, it will be hard to write or debug your code efficiently. That's why IDEs (Integrated Development ...