Remember when you export dBeaver settings some of the files are hidden, which means they start with a period.
New AI Tools
AI Search Enging
https://www.perplexity.ai/search
AI IDE Editor built on Visual Studio Code
https://www.cursor.com/
Macbook Closing Windows with Mission Control
You can cmd+tab, and then while still holding command press Q over any app you want to quit, and then tab onto the next
Refresh local applications in Ubuntu 22.04
When using menu libre you want it to pickup the new application settings, right away.
#!/bin/bash
# Show a notification that the app is launching
notify-send "Refreshing ~/.local/share/applications/"
update-desktop-database ~/.local/share/applications/
Edmonds Library WiFi Hotspot
Search for
Wi-Fi Hotspot To Go
Refer:
Raw:
https://sno-isle.bibliocommons.com/v2/search?query=Wi-Fi%20Hotspot%20To%20Go&searchType=smart
Search Monkey Text Search Tool for Ubuntu 22.04
GUI Text Search Tool
sudo apt install searchmonkey
If the application icon is missing, try the following:
sudo nano /usr/share/applications/searchmonkey.desktop
Use the following image, verify it exists.
/usr/share/icons/hicolor/48x48/apps/searchmonkey.png
Install Go on Ubuntu 18.04, Using Snap
Refer: https://www.codeooze.com/ubuntu/ubuntu-18-golang-snap/
Step 1: Check if Go is already installed
$ go version
Step 2: Install Go using snap, see what's available
$ snap info go
Step 3: Classic confinement error
Explanation: Most snaps are installed in confined containers and only have limited access to other system resources. However, snaps published with classic confinement have greater access to the rest of the system, which is desirable for scripting packages such as Go.
$ sudo snap install go --classic
Step 4: Verify the install
$ snap list
$ go version
$ go env
Conclusion
You have now successfully installed Go in Ubuntu 18 using snap
