sudo apt purge -y libreoffice*
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
| #!/bin/sh | |
| sudo apt-get update && sudo apt-get upgrade --yes && sudo apt autoremove --yes && echo ✅ UPDATES COMPLETED |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
This file has been truncated, but you can view the full file.
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
| 2022/02/11 00:05:15.2168636 1500 13468 Agent Earliest future timer found: | |
| 2022/02/11 00:05:15.2168745 1500 13468 Agent Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2022-02-11 10:10:19, not idle-only, not network-only | |
| 2022/02/11 00:05:16.2179971 1500 14340 Shared UninitializeSUS | |
| 2022/02/11 00:05:16.2179981 1500 14340 Misc CSusClientGlobal::DoServicePreShutdown | |
| 2022/02/11 00:05:16.2180268 1500 14340 IdleTimer Idle timer disabled in preparation for service shutdown | |
| 2022/02/11 00:05:16.2180314 1500 14340 Misc WUTaskManager uninit | |
| 2022/02/11 00:05:16.2180330 1500 14340 Agent Earliest future timer found: | |
| 2022/02/11 00:05:16.2180473 1500 14340 Agent Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2022-02-11 10:10:19, not idle-only, not network-only | |
| 2022/02/11 00:05:16.2212705 1500 14340 Misc CreateSessionStateChangeTrigger, TYPE:2, Enable:No | |
| 2022/02/11 00:05:16.2212735 1500 14340 Misc C |
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
| # A PowerShell script that checks the checksum of one or more linux ISO files for four common Linux distros. | |
| # Supports: POP!_OS, Mint, Manjaro and Ubuntu | |
| # - It's faster and more accurate than manually checking. | |
| # - Be sure to download the ISO files solely from the official sites! | |
| # - To be clear this DOES NOT also check GPG signatures. | |
| $isoFolder = "C:\VMs\ISOs\" | |
| # Checks the ISO folder exists |
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
| [Adblock Plus 2.0] | |
| ! Version: 1.0.1 | |
| ! Title: Dean Custom List | |
| ! Last modified: | |
| ! Expires: 4 days (update frequency) | |
| @@||ajax.googleapis.com^ | |
| @@||ajax.aspnetcdn.com^ | |
| @@||ajax.microsoft.com^ | |
| @@||cdnjs.cloudflare.com^ |
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
| # Clears the Visual Studio Code User Data caches | |
| # Backup your Visual Studio Code user folder before running! | |
| # === Start Edit | |
| $userdataFolder = "C:\Portable Software\PortableApps\PortableApps\Visual Studio Code\data\user-data" | |
| # === End Edit | |
| $cacheFolder = $userdataFolder + "\Cache" | |
| $cachedDataFolder = $userdataFolder + "\CachedData" |
How to fix Python when you get messages like:
WARNING: Ignoring invalid distribution -ip (c:\python39\lib\site-packages)
Since Python is messy in the way it handles packages you sometimes need this fix.
This can happen when a package fails to install (reason may be permissions based).
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
| # Ref: https://aria2.github.io/manual/en/html/aria2c.html | |
| # Ref: https://trackerslist.com/#/?id=aria2 | |
| # Basic Options | |
| dir=C:\Users\Dean\Downloads\Aria2-Downloads | |
| max-concurrent-downloads=1 | |
| max-overall-download-limit=4500K | |
| max-overall-upload-limit=1K | |
| check-integrity=true |