This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo add-apt-repository ppa:jtaylor/keepass | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install keepass2 -y | |
| keepass2 --version | |
| Gtk-WARNING | |
| cli:44125): Gtk-WARNING **: 14:47:11.864: Unable to locate theme engine in module_path: "adwaita", | |
| KeePass 2.45 | |
| Copyright © 2003-2020 Dominik Reichl | |
| --> ignored it! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get purge firefox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| list all drivers | |
| sudo ubuntu-drivers devices | |
| install the recommended one | |
| sudo apt-get install nvidia-driver-470 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update | |
| sudo apt upgrade | |
| wget --version | |
| cd | |
| cd Downloads | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| sudo dpkg -i google-chrome-stable_current_amd64.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo snap install slack --classic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.clear(); | |
| var urls = document.querySelectorAll('a.icon-menu'); | |
| console.log('element count a.icon-menu: ' + urls.length); | |
| for (url in urls) { | |
| console.log (urls[url].href); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.clear(); | |
| function saveData(blob, fileName) | |
| { | |
| var a = document.createElement("a"); | |
| document.body.appendChild(a); | |
| a.style = "display: none"; | |
| var url = window.URL.createObjectURL(blob); | |
| a.href = url; |
NewerOlder