Skip to content

Instantly share code, notes, and snippets.

View antonengelhardt's full-sized avatar

Anton Engelhardt antonengelhardt

View GitHub Profile
@antonengelhardt
antonengelhardt / Rust-Docs-Github-pages.md
Last active July 30, 2023 12:46
Rust Docs for GitHub Pages

Deploy Rust Docs to GitHub Pages

Fixes this error, by using chmod to make all files executable.

from time import sleep
def main():
word = ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '!']
alphabet = [' ', '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', '!']
current_word = ''
for i in range(len(word)):
for j in range(len(alphabet)):
print(current_word + alphabet[j])