Remember when you export dBeaver settings some of the files are hidden, which means they start with a period.
Ubuntu 22.04 System Sounds Files Location
Find the *.oga files here
/usr/share/sounds/Yaru/stereo/
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 IntelliJ on Ubuntu
Refer: https://www.jetbrains.com/help/idea/installation-guide.html#
Install the Toolbox App or use Snap instead
Download the tarball .tar.gz from the Toolbox App web page.
Refer: https://www.jetbrains.com/toolbox/app/
Extract the tarball to a directory that supports file execution.
For example, to extract it to the recommended /opt directory, run the following command:
$ sudo tar -xzf jetbrains-toolbox-1.13.4801.tar.gz -C /opt
Execute the jetbrains-toolbox binary from the extracted directory to run the Toolbox App and select which product and version you want to install. After you run the Toolbox App for the first time, it will automatically add the Toolbox App icon to the main menu.
$ sudo snap install intellij-idea-ultimate --classic
$ sudo snap install intellij-idea-community --classic
Refer: https://www.jetbrains.com/help/idea/uninstall.html#
$ sudo snap remove intellij-idea-ultimate
$ sudo snap remove intellij-idea-community
Debug Python Script with Parms in Visual Studio Code
Refer: https://code.visualstudio.com/docs/python/debugging
Code Example: hello_parms-py.txt
In Visual Studio Code, choose "Run", "Open Configurations" or "Add Configuration".
The magic is in the following array:
"args" : ["--port", "1593", "--parm", "hello"]
IntelliJ Optimize Imports
Update: in IDEA 13 "Use single class import" does not prevent wildcard imports. The solution is to go to Preferences (⌘ + , on macOS / Ctrl + Alt + S on Windows and Linux) > Editor > Code Style > Java > Imports tab set Class count to use import with '*' and Names count to use static import with '*' to a higher value. Any value over 99 seems to work fine.

