tips
-
Three ways to switch between views in Blender, without using a NumPad
I generally work on my laptop a lot, including using Blender, and as most laptops do; this one does not have a NumPad. Most tutorials that you find on the internet presume you do; if you are like me you struggle with not being able to easily switch between views using the NumPad or to…
-
How to fix DigitalOcean’s RancherOS disk size
If you, like me, experienced when you start a RancherOS droplet that the disk size is only 8 gigabytes out of the expected 50 gigabytes, then the following two commands may help: sudo growpart /dev/vda 1sudo resize2fs /dev/vda1 Please note that the space between /dev/vda and the 1 in the first command is necessary. This…
-
Live templates in phpStorm
For phpDocumentor I have the strict rule to apply a File DocBlock on the top with the necessary legal information such as copyright, license information and where to find the homepage. Anytime I add a new file, I have to open another existing sourcefile, copy the File DocBlock and paste it into the new file.…