About Me

For a living, I resolve customer issues as a technical support engineer. I’m also a passionate metalhead who has been to a great deal of live metal gigs (pre-covid of course). When I’m not working, I’m studying 日本語. Reading manga and watching anime is bae. On weekends, I play and watch football. BTW I use Arch.

Blogs

How to initialise a Git repository on a local machine

Here’s a quick tutorial to initialise your Git repository on your local machine so that you could pull your code, commit it, and push it back to the project hosted at Gitlab or Github. In this tutorial I will be initialising my personal repository at Gitlab. I will be using this Gitlab document for reference.…

Lambda expressions in Python3

After getting familiar with Python functions, let us learn what lambda functions are in Python3! Lambda functions are extremely useful when it comes to writing complex code. The more you practice, the more acquainted you will become with this feature. To simply put it, lambdas are a great way to create anonymous functions that aren’t…

Functions with Python3

Welcome everyone! In the last blog, we learned how to deal with text files in Python3. I it was helpful and easy to comprehend. You can find my last article here. Today, we will study functions in Python3. Those who have previous experience with programming might know what they are, and what they do. But…