Physics Lab Tex Template

I have just finished my first Physics lab in many years and it was quite more time-consuming than I initially thought. This post will go over briefly a few tex commands I found useful when writing my lab along with a link to my Physics template that’ll be subject to change as I write more and more labs.

Read More

Using Fedora GNOME VPN Feature

I recently decided it is about time to start using a VPN for personal use. Although there are many reasons for one to use a VPN such as masking your IP address and location, I only want to get a VPN to encrypt my traffic on Public Wifi. VPN can be great to bypass region locking, but I rarely ever have any issues with this. The VPN provider I chose is NordVPN for no particular reason other than there was a summer deal and is a strong choice for Linux users.

Read More

C Programming - Variable Length Array (VLA)

I always thought it was not possible to create a “dynamic” array in C without the use of malloc till recently where I was introduced to variable length arrays (VLA). Although the use of “dynamic” is a poor choice, the ability to allocate an array at runtime based on a variable whose value is not known till runtime came as a shock to me.

Read More