MySQL Daemon Startup Fix 🛠️🕵️
2020-08-28
Problem Brief: MySQL daemon fails to start Details: So, I recently installed MariaDB (Community fork of MySQL) on my Manjaro system and when I started the system with: sudo systemctl start mysqld This is the error I get: Job for …
Manage GitHub Projects Easily ♻📂
2020-06-14
Do you have a lot of repositories on GitHub and are always making changes to them? Do you work on multiple machines, and are struggling to keep the repositories in sync? Have you ever moved to a new machine and spent what seems like an …
Remove Screen Flickering OBS 💻📹
2020-06-08
I was recently trying out OBS for my new YouTube Channel! but faced weird flickering issues when recording, after a lot of tweaking I found the solution. You have to turn of Vsync on your system. On KDE the steps are as follows: Open System …
Sync Forked Repository With Upstream 🔁✔️
2020-06-07
Here’s the situation, You have forked a repository on GitHub, you have made your changes and sent a pull request, and that request has been merged. Now you want to make further changes, but the repository mentions that you are X …
Enable Dark Mode Across Chrome 🌚😎
2020-06-03
There are lots of extensions out there that turn your web browsing experience much better if you prefer dark backgrounds (who doesn’t right?). My favourite one is Dark Reader but there’s just one problem, mobile versions of …
Add Numbers Without Arithmetic Operators 🙅♂️➕
2020-05-03
What if you are given a problem where you have to add two integers but you can’t use any arithmetic operators (+ - * / % // **), like LeetCode’s problem #371. So how do you approach this problem? Answer: Bit manipulation …
Control your Android device from PC 📱💻
2020-04-28
Wouldn’t it be convenient if you could mirror your Android device’s screen onto your PC and interact with it? I have just the right tool for this job that lets you do all this and more and it’s called “scrcpy”. …