24 October, 2024

How to remove Logitech hub on a Mac

For weeks I tried to remove the Logitech Hub, that was not needed any more. Removing the programme seemed impossible. But then I found this recipe on github: https://gist.github.com/timotgl 

# How to fully uninstall Logitech G HUB on macOS via terminal/command line
# Tested on macOS version 12.3.1 (21E258) Monterey in April 2022
# with Logitech G HUB version 2022.3.242300 (released on 2022-03-22) installed.

# 1. Make sure "Logitech G HUB" itself is not running. If it is, quit it.

# 2. Open "Activity Monitor" and force-quit all processes named "lghub*".

# 3. Delete system-wide files
sudo rm -rf /Applications/lghub.app
sudo rm /Library/LaunchAgents/com.logi.ghub.plist
sudo rm /Library/LaunchDaemons/com.logi.ghub.updater.plist
sudo rm -rf /Users/Shared/LGHUB
sudo rm -rf /Users/Shared/.logishrd

# 4. Delete files from user directory
sudo rm -rf ~/Library/Application\ Support/lghub
sudo rm ~/Library/Preferences/com.logi.ghub.helper.plist
sudo rm ~/Library/Preferences/com.logi.ghub.plist

A few of the commandlines could not find the directory, then I added -rf to the terminal commands. 

After this I ran htop, and the annoying process was gone. So was the app. Cool!

- Thank you Timotgl !!

BTW after deleting these directories &c. I had to restart the Mac, because a process tried to open the missing directories. But after a restart the problem was gone.


14 October, 2024

Hvordan eksporterer man en CSV fra sparkron?



Denne GUI er ikke nem at gennemskue, jeg fik svaret fra deres helpdesk:

  1. Klik på kontoen
  2. Vælg et datointerval
  3. Marker ALLE i tjekboksen
  4. Nederst på skærmen kommer: eksporter
Muligheden for eksport vises ikke før Alle er afkrydset. 

Har man brugertestet her?

11 October, 2024

How to start a video at a certain timestamp

 If you want to start a video from a certain timestamp you can link to it like this:

https://video.multimusen.dk/github-workflow.mp4#t=468 

Note the #t=468 - this is the timestamp in seconds. If you create a link that will open a new window, the result is a video opening where you please. Your link could look something along these lines:

<a
   href="https://video.multimusen.dk/github-workflow.mp4#t=468"
   target="_blank">
     Text here
</a>