After countless hours of trying to resolve issues with screen flickering and a host of other graphics issues, I finally managed to get the graphics working correctly with the GTX…
GTX 1050Ti working perfectly on Dell XPS 9570
Replacing failed disk/OSD in Ceph
There are quite a few guides out there on how to do what I'd consider a pretty essential part of manager a Ceph storage cluster, yet the ones I came…
Shift Gnome application icon to top Ubuntu
To shift the application launcher icon to the top by issuing the following command: gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true To show the icon at the bottom of the application bar…
Ceph map OSD to disk/drive serial number
A handy little script to output which Ceph OSD it mapped to which drive serial number: #!/bin/bash DISKS=`ceph-disk list | grep "ceph data"` old_IFS=$IFS IFS=$'n' #echo $DISKS for DISK in…
Ubuntu manual partition installation
From time to time you might need to create partitions manually in order to install Ubuntu on a specific hard drive in a multi-drive PC. Get started by deleting all…
Reload html, css and js without restarting app Spring
When working on the frontend for Spring web apps, you will probably have come across an issue where you'll need to reload the app each time you change one line…
Strange emoticons/icons in Thunderbird Ubuntu
Thunderbird on Ubuntu sometimes displays enlarged icons for mails containing certain emoticons. To solve this you can run the following command: sudo apt-get install fonts-symbola
Graphics card not showing in Nvidia X Server Settings Ubuntu
It can sometimes be quite a mission to get Nvidia graphics cards working correctly with Ubuntu/Linux. I recently encountered an issue where after installing the drivers (for the GTX 1060)…
Find duplicate rows MySQL
A nice simple query to find duplicate rows in MySQL: SELECT COLUMN_NAME, COUNT(*) c FROM TABLE GROUP BY COLUMN_NAME HAVING c > 1; Credit to the Tin Man
Update root password MySQL
ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';









