This file contains 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 = [99, 2, 17, 103, 77, 3, 1, 8] | |
sorted = [] | |
i, n = 0, 1 # when we get to the end of the list, these indexes become -1, -2, then they become 0, 1 again when they re-rereach the top | |
reverse = False | |
things_to_append_on_reversal = [] | |
while list: | |
print(f"indexes: i {i}, n {n}, list: {list}") | |
if len(list) == 1: |
This file contains 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
all: run-ubuntu-image | |
.PHONY: check-kvm-modules | |
check-kvm-modules: ## Check if kvm modules are loaded | |
lsmod | grep kvm | |
# INFO: There should be kvm_intel or kvm_amd. Use whatever is on your machine. | |
# Setup is done via `sudo modprobe kvm_intel` or `sudo modprobe kvm_amd` | |
.PHONY: check-virtualization-support | |
check-virtualization-support: ## Check if virtualization is supported on your machine |
This file contains 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
# All SombraARG encryption/decryption programming is occuring here: https://github.com/kimdcottrell/sombra | |
CENTER # clave = key in spanish? | |
A B C D E F G H I J K L M Ñ N O P Q R S T U V W X Y Z # shift cipher index 1 | |
S T U V W X Y Z A B C D E F G H I J K L M Ñ N O P Q R # shift cipher index 2 | |
X Y Z A B C D E F G H I J K L M Ñ N O P Q R S T U V W # shift cipher index 3 | |
X Y Z A B C D E F G H I J K L M Ñ N O P Q R S T U V W # FIRST ROW SHIFTED 23 TIMES | |
E | |
Center | |
N |