Optimizing your experience

All things related to Cheat Sheet

article

Working With Git Remotes

Clarice Bouwer
Clarice Bouwer
Tuesday, 29 January 2019 · Estimated 2 minute read

I have a repository with two remotes. origin is my personal repository and bitbucket is by BitBucket repository. The nugget of this post is to push to both branches in one command. The git remote com…

article

How To Craft Your Changes Into Small Atomic Commits Using Git

Clarice Bouwer
Clarice Bouwer
Tuesday, 15 January 2019 · Estimated 6 minute read

Small, atomic commits makes it easier for code reviews, browsing the history and reverting changes. Life happens and commits can touch more lines and files than I want but the changes committed shoul…

article

Using the tar Command in Linux

Clarice Bouwer
Clarice Bouwer
Monday, 14 January 2019 · Estimated 6 minute read

I used to right-click on a zipped file and manage the archive using the GUI. Gone are those days. Now I mainly work with tar files and need a cheat sheet to remember the commands for the terminal. 😊 …

article

Checking Disk Usage in Linux

Clarice Bouwer
Clarice Bouwer
Sunday, 13 January 2019 · Estimated 8 minute read

I had to find out much free space was available on a file system on a Linux server. Now getting this information on the GUI is simple - a few clicks, modals and stuff, but the server doesn't have a G…

article

A Service Has Gone Rogue. How Do I Manage It?

Clarice Bouwer
Clarice Bouwer
Tuesday, 8 January 2019 · Estimated 2 minute read

Once I installed a development service on port 3000 and I forgot about it. When I ran my project I couldn't start it because the port was in use. Baffled. 😕 This post forms part of a sequence of comm…