Installing Firefox on Ubuntu Snap prevents use of some KeePassXC intergration. To use tools like KeePassXC download the latest and create a desktop icon.
Notable Extensions: KeePassXC DarkReader
| // Recursive personalization contract | |
| export type Personalization<T> = { | |
| type: "merge" | "replace"; // merge = selective, replace = full | |
| value: Partial<T> | T; | |
| nested?: { [K in keyof T]?: Personalization<T[K]> }; | |
| }; | |
| const itemListPersonalization: Personalization<ItemListProps> = { | |
| type: "merge", // merge at the list level | |
| nested: { |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Bouncing Boxes</title> | |
| <style> | |
| .box { | |
| width: 50px; | |
| height: 50px; |
Installing Firefox on Ubuntu Snap prevents use of some KeePassXC intergration. To use tools like KeePassXC download the latest and create a desktop icon.
Notable Extensions: KeePassXC DarkReader
"Three Rules of Three":
References:
| # install docker via apt source | |
| sudo apt update | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg | |
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
| sudo apt update | |
| apt-cache policy docker-ce | |
| sudo systemctl status docker | |
| sudo usermod -aG docker ${USER} |
find . -type f -name 'package.json' -exec sed -i "s/before/after/" {} +Notable browser extensions for development purposes.
Some AD policies may prohibit use and installation of the Windows Store. This is troublesome for installing the Windows Terminal, which is helpful for using multi command prompt tabs.
Open a Powershell terminal in Admin Mode.
Invoke-WebRequest -Uri "https://github.com/microsoft/winget-cli/releases/download/v1.2.10271/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -OutFile "winget.msixbundle"
On Windows 10 an error was encounted where the AWS VPN Client did not install TAP adaptor on some PC with COMODO installed.
Download and install:
swupdate.openvpn.net/community/releases/tap-windows-9.21.2.exe
(More TAP Windows releases are located at http://build.openvpn.net/downloads/releases/)
Download and install AWS VPN Client
Used primarly for video games
Avoid diamond inheritance issue.