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
import socket | |
import requests | |
import time | |
""" | |
tform shifts string :m: by :shift: values up the ASCII mapping | |
""" | |
def tform(m,shift): | |
n = "" | |
for c in m: |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
) | |
var ( | |
N uint64 | |
) |
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
''' | |
"Russianize" English text to make it look Russian. | |
Note: This works best when most of the letters are UPPERCASE. | |
''' | |
table = { | |
'R': 'Я', | |
'r': 'Г', | |
'N': 'И', |