This is a simplistic setup trying to emulate at least part of i3 behaviour on MacOS using yabai. Key-bindings are partially replicated due to the presence of MacOS built-in bindings
Start with installing (and understanding) following tools
This is a simplistic setup trying to emulate at least part of i3 behaviour on MacOS using yabai. Key-bindings are partially replicated due to the presence of MacOS built-in bindings
Start with installing (and understanding) following tools
Internet health: | |
ISC: http://www.isc.org | |
NetCraft: http://news.netcraft.com/ | |
US-CERT: http://www.US-Cert.gov | |
General technology and security trends: |
https://rfc3161.ai.moda | |
https://rfc3161.ai.moda/adobe | |
https://rfc3161.ai.moda/microsoft | |
https://rfc3161.ai.moda/apple | |
https://rfc3161.ai.moda/any | |
http://rfc3161.ai.moda | |
http://timestamp.digicert.com | |
http://timestamp.globalsign.com/tsa/r6advanced1 | |
http://rfc3161timestamp.globalsign.com/advanced | |
http://timestamp.sectigo.com |
# We want to sort a list by its second element in descending order. | |
# The example illustrates the difference in the results of different | |
# process of sorting in descending order. | |
# Sort in ascending order, then use list reverse | |
>>> a = [('A', 1), ('C', 5), ('A', 2), ('B', 3), ('B', 5)] | |
>>> a.sort(key=lambda x: x[1]) | |
>>> print(a) | |
[('A', 1), ('A', 2), ('B', 3), ('C', 5), ('B', 5)] | |
>>> a.reverse() |