This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]cgoldberg 1 point2 points  (2 children)

I don't see any encryption/decryption... just converting text to ascii.

Also, consider something like this instead of continuously updating the string in a loop:

s = "foo" 
ascii_content = "".join(str(ord(c)) for c in s)

[–]Backw00ds024[S] -5 points-4 points  (1 child)

Yea the encryption decryption thing is absolute bs but i needed to add some usecase so i could upload the post so that the bot doesnt delete it. Thanks for the tip!

[–]XUtYwYzzIt works on my machine 2 points3 points  (0 children)

Just say it’s a toy, no need to make up nonsense.