I recently bought a MSI 27″ gaming monitor for regular office use I connected it to my MacBook 12″. The mouse pointer started to lag a lot, so I turned it upside down and put some ice at the base. Now i am unable to run 4K resolutions flawlessly.
Install HP Printers on Ubuntu
Download hplip from https://developers.hp.com/hp-linux-imaging-and-printing Download plugins from https://developers.hp.com/hp-linux-imaging-and-printing/plugins
Install Google Chrome on Ubuntu CLI via Official Repo
Open Terminal with CTRL + ALT + T wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add – sudo sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main” >> /etc/apt/sources.list.d/google.list’ sudo apt-get update sudo apt-get install google-chrome-stable
Move Window Buttons ‘Min, Max, Close’ to Left in Ubuntu
Window buttons ‘minimize, maximize, close’ were on the left side till Ubuntu 16.04 . This quick tutorial will show you how to change window buttons position in 18.04 LTS and later. Open “Ubuntu Software” and install “GNOME TWEAKS” Click “Left” in Placement
Apple Music doesn’t Play Explicit Rated Songs
I had restrictions turned off on my iPhone 11 Pro Max running iOS 13, yet I wasn’t able to play/download tracks marked “E” in Apple Music. On searching google I came across a work around Go to iTunes Store (Pink icon). Search for an explicit song and click BUY (you don’t have to actually buy […]
CS GO & Intel® Iris® Plus Graphics 640 Dimming
So I used to play Counter Strike Global Offensive on my Mac Pro 5,1 and never had any issues. Recently I switched to Intel NUC (NUC7i5BNH) because MacPro was taking a lot of space on my desk and the gaming experience was more or less the same. I am just a noob when it comes […]
Install MySQL on Mac OS Catalina
Download MySQL from https://dev.mysql.com/downloads/mysql/ Use (x86, 64-bit), DMG Archive version Open .dmg and run the installer Use ‘legacy’ option if you want to use phpMyAdmin, wordpress etc Keep a strong password which you’ll need later to log into MySQL Fix the 2002 MySQL Socket error Open Terminal and enter sudo mkdir /var/mysql sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock Download […]
Install LAMP stack on Ubuntu 18.04 / 20.04
Open terminal (ctrl+alt+t) and type the following commands sudo apt-get update sudo apt-get install apache2 mysql-server php7.2 libapache2-mod-php libapache2-mod-php7.2 php7.2-mysql php7.2-curl php7.2-json php7.2-cgi php7.2-gd git htop curl htpdate php7.2-mbstring For 20.04 use the following command sudo apt-get install apache2 mysql-server php7.4 libapache2-mod-php libapache2-mod-php7.4 php7.4-mysql php7.4-curl php7.4-json php7.4-cgi php7.4-gd git htop curl htpdate php7.4-mbstring The above […]
Install Apache, PHP on macOS Catalina 10.15
Open Terminal. Terminal is found at /Applications/Utilities/Terminal. sudo apachectl start Now open Safari / Chrome /any other web browser and type localhost. Hit Enter You’ll see this Now go back to Terminal & create “Sites” folder in home directory cd && mkdir Sites Next we need to configure the Apache Server by editing the httpd.conf located in […]