-march=x86-64 -mtune=generic to -march=native
MAKEFLAGS="-j$(nproc)"
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.
| # This script will manually rip out all VMware Tools registry entries and files for Windows 2008-2019 | |
| # Tested for 2019, 2016, and probably works on 2012 R2 after the 2016 fixes. | |
| # This function pulls out the common ID used for most of the VMware registry entries along with the ID | |
| # associated with the MSI for VMware Tools. | |
| function Get-VMwareToolsInstallerID { | |
| foreach ($item in $(Get-ChildItem Registry::HKEY_CLASSES_ROOT\Installer\Products)) { | |
| If ($item.GetValue('ProductName') -eq 'VMware Tools') { | |
| return @{ | |
| reg_id = $item.PSChildName; |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| #!/usr/bin/env python | |
| import sys | |
| SUFFIXES = ('', 'KiB', 'MiB', 'GiB', 'TiB') | |
| def do_decode(infile, human): | |
| for line in infile: | |
| line = line[:-1] | |
| newline = line.strip() |
| #!/usr/bin/env python | |
| import sys | |
| SUFFIXES = ('', 'KiB', 'MiB', 'GiB', 'TiB') | |
| def decode(filename, human=False): | |
| with open(filename, 'r') as infile: | |
| for line in infile: | |
| line = line[:-1] |