The application icons in the toolbar along the top of the screen are specified in the .desktop files in the Hone/.local/share/plasma_icons folder. An absolute path is not needed as long as an icon file exists with the application name in, e.g. the /usr/share/pixmaps folder.
Author: wp4T0upgUqkf
Google maps to Garmin Edge Touring
Export Google map as a KML file.
Convert KML to GPX here: https://kml2gpx.com
On the Garmin Edge SD card there’s a folder called “NewFiles”. Copy the GPX file here.
After power-cycling the Edge the map will be available.
Connect to a NAS in Ubuntu Studio 20.10
I had to do the following to connect to a D-Link DNS320L network drive after an update to Ubuntu Studio 20.10 (prior to the update the drive was discovered and mounted automatically in Dolphin).
- Add this to the [global] section in /etc/samba/smb.conf:
client min protocol = NT1
- Add a vers=1.0 option to fstab, so the entry in /etc/fstab is:
//192.168.0.99/Volume_1 /mnt/raid-lounge cifs vers=1.0,guest,uid=1000,iocharset=utf8 0 0
Installing nVidia driver and CUDA toolit for GeForce GTX1050 Ti in Ubuntu Studio 20.10
CUDA allows the GPU on the graphics card to be used for general computing.
System info:

Installation instructions here: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html
But then I found these instructions and followed them: https://askubuntu.com/questions/1288672/how-do-you-install-cuda-11-on-ubuntu-20-10-and-verify-the-installation
I didn’t do the verification step at the end, but after a reboot following installation I can now select CUDA as the Cycles render device in Blender.
Side tables
1. American cherry boards

2. Wood cut list

3. Thicknessing the boards

4. Ripping the legs

5. Using a jig to cut the legs to length

6. Unshaped legs, cut to length

7. Shaping the legs with a round-over cutter on the router table

8. Shapely legs

9. Routing the leg mortises

10. Tidying the mortises

11. Cutting the side tenons

12. Legs and side aprons

13. Machining the end mortices

14. Shaping the edges of the top with an ogee cutter

15. Gluing the legs

16. Oiling the top, first coat

17. Marking the positions of the top clamps

18. Completed tables

Duplicating a WordPress site locally
Use the Snap Creek Duplicator plugin. The plugin generates a zip file and an installer.php script. First, delete all the files and folders in the local WordPress root folder. Then copy the zip file and the installer script to this folder, and browse to installer.php. Click ‘next’ a few times, enter the database details, done.
Sorting out local WordPress installation file permissions
Do
sudo chown -R www-data:myusername /path/to/your/wordpress/install/
then
sudo find /path/to/your/wordpress/install/ -type d -exec chmod 775 {} \;
sudo find /path/to/your/wordpress/install/ -type f -exec chmod 664 {} \;
Midi with Ardour on Linux
Here’s how to get Ardour set up so that the DAW can control a MIDI synthesizer. I’m using Ubuntu Studio, Ubuntu 20.04.1 LTS, Ardour 5.12.0.
- Start Jack (I use QjackCtl).
- In a terminal, type
a2jmidid -j default
a2jmidid is a bridge between the ALSA MIDI system and JACK.
- Start Qsynth (a front-end to the fluidsynth MIDI synthesizer) and make sure a soundfont is loaded.
- In the QjackCtl MIDI connections tab, connect the Output Port ‘midi_out’ of the MIDI track in Ardour to the Input Port a2j ‘FLUID Synth’.
- In QjackCtl Audio tab, make sure that the qsynth left and right channels are connected either to a system audio output (for listening) or to an Ardour audio track (for recording).