Ubuntu 18.04 LTS Bionic Beavor

tips packages can be found on https://launchpad.net/ubuntu tools Visual Studio Code You may want to go to File>Preference>Settings and in user settings and set “window.titleBarStyle”: “native”, [LXTerminal](the terminall app from LXDE, very lightweight) LLVM LLVM’s deb packages are available at https://apt.llvm.org/ Add llvm.list to /etc/apt/sources.list.d with following content: deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main If you encounter GPG error: http://apt.llvm.org/cosmic llvm-toolchain-cosmic-7 InRelease, import the key:...

Upgrade to Window 10

tips How To Enable Delete Confirmation Dialog In Windows 10/8.1 backup & restore chrome user data open "%LOCALAPPDATA%\Google\Chrome\User Data\, backup directory default resotre default backup & restore firefox user data open %APPDATA%\Mozilla\Firefox\Profiles\, backup directory *.default resotre previous content from *.default to new *.default shortcuts Win-x to open a system menu Win-i to open Settings In “Run” box, type cmd and press Ctrl+Shift+Enter to run it in Admin....

Vim

Tips You can get latest gvim build from vim-win32-installer Cheat Sheets Graphical cheatsheet Vim Cheat Sheat for Programmers by Michael Pohoreski Vim Visual Cheat Sheet By function: Vim cheatsheet Vim Cheat Sheet A Great Vim Cheat Sheet List 5 Best VIM Cheat Sheet Show recent files Vim keeps a list of recent files in .viminfo. Run :oldfiles to view the list. Run :browse oldfiles to select from the list by entering a number....

VSCode

Syntax Use Developer: Inspect TM Scopes to inspect syntax highlighting. Tips Double click to open files In Settings, change Workbench › List: Open Mode to doubleClick. Don’t not add semicolons when formating document In Settings, change prettier.semi to false CPU runs high after renaming sysmbol in a Python file delete all the caches and restart VSCode code –status Extension One Dark Pro is a really pleasant dark theme for VSCode....

Windows

Windows 11 Turn off “Search the Web” How to turn off “Search the Web” results in Windows 11 This does not work on newest Windows 11. The ONLY option that works is the following registry tweak: -) HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer -) create the Explorer key if not present -) inside of Explorer, create new DWORD 32bit entry called DisableSearchBoxSuggestions and set the value to 1 -) reboot How to Disable Windows Search on Windows 11 How to Disable Web Links in Search in Windows 11 How to disable the search functionality on Windows 11 How To Disable Search Indexing in Windows 11 Essentials QTTabBar....

Windows Command Line

tips install scoop Set-ExecutionPolicy RemoteSigned -scope CurrentUser iex (new-object net.webclient).downloadstring(‘https://get.scoop.sh’) set proxy for chocolatey choco config set proxy http://localhost:8888 choco config set proxyUser bob choco config set proxyPassword 123Sup#rSecur3 choco config set proxyBypassList "'http://localhost,http://this.location/'" #0.10.4 required choco config set proxyBypassOnLocal true #0.10.4 required source: Explicit Proxy Settings set proxy for scoop scoop config proxy proxy.example.org:8080 Note that don’t put http:// in the proxy’s address. source: Using Scoop behind a proxy...