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
# See /boot/overlays/README for all available options | |
#gpu_mem=64 | |
initramfs initramfs-linux.img followkernel | |
kernel=kernel8.img | |
arm_64bit=1 | |
disable_overscan=1 | |
#enable sound | |
dtparam=audio=on |
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
from string import maketrans | |
intab = "abcdefghijklmnopqrstuvwxyz" | |
outtab = "cdefghijklmnopqrstuvwxyzab" | |
trantab = maketrans(intab, outtab) | |
text = "g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle. sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj" | |
print text.translate(trantab) | |
print 'map'.translate(trantab) |