Modified Caesar cipher program I've been working on

Hello, I'm a young amateur python developer with barely any skills, but I've created an encoder/decoder using a modified Caesar cipher that I just wanted to share. It can also do a lot more if you type "SMenu" on the main menu part.

https://replit.com/@cal8205/coderdecoder#main.py

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/CReddit8205
πŸ“…︎ Jan 25 2022
🚨︎ report
The Chinese Caesar Cipher

Has there ever been a Chinese version (or something close to a Chinese version) of a Caesar cipher? For reference, a Caesar cipher is a code written with the Latin alphabet that shifts letters over a designated number of places in the order.

Example:

"Hello", if the shift number is 5 would be "mjqqt."

(For reference, the order of the alphabet is abcdefghijklmnopqrstuvwxyz)

H: i, j, k, l: m

e: f, g, h, i: j

l: m, n, o p: q

o: p, q, r, s: t

I'm learning about Caesar ciphers in my coding class and I immediately wondered how one might have similarly written in code using Chinese characters in the past. I realize a Chinese version wouldn't imitate this exactly, but I'm interested in how that may have worked, of course!

πŸ‘︎ 9
πŸ’¬︎
πŸ“…︎ Jan 12 2022
🚨︎ report
I finally made Caesar Cipher

Yesterday, I posted like I can't move further in coding. After billions of comments saying that I needed a break. I took a break. Guess what?

As of now, I have overcome my challenge and finally made Caesar Cipher on my own.

πŸ‘︎ 210
πŸ’¬︎
πŸ‘€︎ u/Lilbutlitty
πŸ“…︎ Nov 11 2021
🚨︎ report
The cylinder is speaking in Caesar Cipher, make the shift 13 and you get real words (if you're too lazy he says here "bologna is hands down the best lunch meat"
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/RandomPersonIAm21
πŸ“…︎ Dec 27 2021
🚨︎ report
Caesar-Cipher (but not really?). Letter substitution, each color seems to hint at a different cipher. It's english. Can't solve it...
πŸ‘︎ 13
πŸ’¬︎
πŸ“…︎ Dec 11 2021
🚨︎ report
Caesar Cipher C, correct output but failed tests

Hi all,

I am doing the problem set 2 and I am getting correct outputs but when I run the check i get almost all errors.

Here is my code

https://preview.redd.it/7m47zxj94o481.png?width=778&format=png&auto=webp&s=e25a658d0561c9d1b83f1bf0b865a5737272b214

And this is the result from the checks

https://preview.redd.it/6vwtwly34o481.png?width=1088&format=png&auto=webp&s=e04f93434633de5eaedfb242148b25e712214915

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/therealcoolpup
πŸ“…︎ Dec 10 2021
🚨︎ report
Ouija, do you know Caesar cipher?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/12121212l
πŸ“…︎ Dec 11 2021
🚨︎ report
Need advice for completing my first meaningful C program: caesar cipher

Newb C programmer here. Trying to recreate a caesar cipher program that I made in python. The program shifts alphabetical characters by a key and leaves anything else (such as spaces and symbols) as they are. It is also supposed to wrap around the alphabet so that the letter Z with a key of 2 would end up being B. My python programs works fine, but my program in C right now is only shifting the first character and not the rest. For example, Hello with a key of 2 is shifting to Jello. I can not figure out why. Any advice on how to fix it or any other tips to improve my code?

#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <ctype.h>

int main()
{


    
    char msg[20];
    printf("Enter a message\n");
    fgets(msg, 20, stdin);
    printf("How many positions should I shift forward?\n");
    int key;
    int i;
    scanf("%i", &key);
    bool isLetter;
    for (i=0; msg[i] != '\n'; i++)

    {
        char newCharacter;
        char symbol;
        if (msg[i] == ' ')
        {
            printf("%c", msg[i]);
            continue;
        }

        if (isalpha(msg[i]) == 1)
        {

            key %= 26;
            int previousDecimalOfChar = (int) msg[i];
            int shifted = (previousDecimalOfChar + key);

            if ((int) msg[i] >= 65 && (int) msg[i] <= 90 && shifted > 90)
            {
                shifted = (previousDecimalOfChar + key) - 26;


            }
            else if((int) msg[i] >= 97 && (int) msg[i] <= 122 && shifted > 122)
            {
                shifted = (previousDecimalOfChar + key) - 26;


            }


            printf("%c", (char) shifted);
        }


        else
        {
                int previousDecimalOfChar =(int) msg[i];
                symbol = (char) previousDecimalOfChar;
                printf("%c", symbol);


        }



    }






    return 0;

}
πŸ‘︎ 11
πŸ’¬︎
πŸ“…︎ Nov 24 2021
🚨︎ report
Control Ultimate Edition GOG Key in Keyed Caesar Cipher

57JF8381T86TT6I9A0 that's the ciphered key.

Update : The code has been redeemed. Congrats to whoever you are! If anyone wonders , here's the key phrase - "it's not a lake, it's an ocean"

So, there are 0 iterations , and the key to the cipher is the last phrase Alan Wake has spoken in the original "Alan Wake" game, NOT in DLCs.

Good luck, and I hope the key will be redeemed by someone who really wants to play this great game and not by some "collector" :/

πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Z13B
πŸ“…︎ Nov 01 2021
🚨︎ report
help making a Caesar cipher

Hello, i am making a caesar cipher and im getting stuck on the function to actually encode the string using the new cipher list. i am also stuck on the function to decode the newly encoded message. here is my code

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',' ']

def main():
    message=input("Enter the message to encode: ")
    key_value=int(input("Enter the key: "))
    message=message.lower()
    cipher_list=generate_cipher(key_value)
    encoded_message=encode_message(message,cipher_list)
    print(f"Encoded message:{encoded_message}")
    decoded_message=decode_message(encoded_message,cipher_list)
    print(f"Decoded message:{decoded_message}")
    #encode_message(message)

def generate_cipher(key):
    shifted_list=ALPHABET[-key:] + ALPHABET[:-key]
    return shifted_list

def encode_message(message,cipher_list):
    for char in message:
        

def decode_message():

main()
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/herrickv
πŸ“…︎ Nov 25 2021
🚨︎ report
I created a Caesar Cipher Cryptographer (or descryptographer)

Right, so I've always considered amazing those movie scenes in which a code is broken by testing dozens of combinations, and I tried to do the same with Caesar's Cipher:

def array_element_checker(array, element):
    count = 0
    for e in array:
        if count > len(array):
            return False
        if e == element:
            return count
        else:
            count += 1

def cryptor(text, jumpcase=3):
    cryptotext = ''
    text = text.upper()
    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, '
    alphabet = alphabet.split(', ')
    jalphabet = ', 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, '
    jalphabet = jalphabet.split(', ')
    for letter in text:
        index = array_element_checker(jalphabet, letter)
        if not index:
            cryptotext = cryptotext + letter
        else:
            index = index + jumpcase
            while True:
                if index > 26:
                    index -= 26
                else:
                    break
            cryptotext = cryptotext + jalphabet[index]

    return cryptotext
text = str(input('>>> '))
for count in range(0, 26):
    print(f'Jumpcase: {count} | {cryptor(text, count)}')

I ran into some bugs (like the letter "A" always being translated as "A", or Z never being ciphered) but was able to fix it changing some values in the code (please don't ask me how I made it work. It simply works and I have no idea why).

If you write any text, ciphered or not, it will return all the possible ciphered/unciphered results.

And I'm flairing it as easy because if I, a newbie, was able to build this from zero, it's probably very easy.

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Tyro_tk
πŸ“…︎ Oct 25 2021
🚨︎ report
Any help with this? Playfair cipher, key could be Caesar, Winston Churchill or Georgy Zhukov
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/EternalHellfire
πŸ“…︎ Oct 21 2021
🚨︎ report
Need help for a Caesar Cipher code

i have the following caesar cipher code that can transform any text into its "crypted version" but i don't understand how to do the opposite, i don't know how to decrypt it using the same key... could you guys help me out? I've been trying for almost a hour now...

key = input("key? ")
result = ""

   for i in range(len(text)):
      char = text[i]
      
      if (char.isupper()):
         result += chr((ord(char) + key -65) % 26 + 65)
      else:
         result += chr((ord(char) + key - 97) % 26 + 97)

print(result)
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Frox04Ita
πŸ“…︎ Oct 30 2021
🚨︎ report
OwO's Morse Code/Caesar Cipher Message

that bunch of random text on matts video is actually a cipher and it was indeed morse code

the morse spelled out this gibberish

uvof joupu ifnbe oftt podf nspf

but if you put that text into a caesar cipher decoder forward it 27 and on an a to b format you get this:

tune intot hemad ness once more

Or

Tune into the madness once more.

I believe this is a reference as to how there's always an old tv involved in owo's arg videos

and with old tv's you had to tune into channels so it's just a cool little message I found watching matpat's video

πŸ‘︎ 29
πŸ’¬︎
πŸ“…︎ Aug 24 2021
🚨︎ report
<caesar_shift_cipher>

Hufvul jhu hzr huf UWJ xblzapvuz vu aolpy zvjphs tlkph hjjvbuaz. Johyhjalyz vusf ruvd doha aol johyhjaly ruvdz myvt aolpy wlyzwljapcl pu Pu-Nhtl. KWY

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/DreadBob50
πŸ“…︎ Sep 30 2021
🚨︎ report
[2021-04-26] Challenge #387 [Easy] Caesar cipher

Warmup

Given a lowercase letter and a number between 0 and 26, return that letter Caesar shifted by that number. To Caesar shift a letter by a number, advance it in the alphabet by that many steps, wrapping around from z back to a:

warmup('a', 0) =&gt; 'a'
warmup('a', 1) =&gt; 'b'
warmup('a', 5) =&gt; 'f'
warmup('a', 26) =&gt; 'a'
warmup('d', 15) =&gt; 's'
warmup('z', 1) =&gt; 'a'
warmup('q', 22) =&gt; 'm'

Hint: taking a number modulo 26 will wrap around from 25 back to 0. This is commonly represented using the modulus operator %. For example, 29 % 26 = 3. Finding a way to map from the letters a-z to the numbers 0-25 and back will help.

Challenge

Given a string of lowercase letters and a number, return a string with each letter Caesar shifted by the given amount.

caesar("a", 1) =&gt; "b"
caesar("abcz", 1) =&gt; "bcda"
caesar("irk", 13) =&gt; "vex"
caesar("fusion", 6) =&gt; "layout"
caesar("dailyprogrammer", 6) =&gt; "jgorevxumxgsskx"
caesar("jgorevxumxgsskx", 20) =&gt; "dailyprogrammer"

Hint: you can use the warmup function as a helper function.

Optional bonus 1

Correctly handle capital letters and non-letter characters. Capital letters should also be shifted like lowercase letters, but remain capitalized. Leave non-letter characters, such as spaces and punctuation, unshifted.

caesar("Daily Programmer!", 6) =&gt; "Jgore Vxumxgsskx!"

If you speak a language that doesn't use the 26-letter A-Z alphabet that English does, handle strings in that language in whatever way makes the most sense to you! In English, if a string is encoded using the number N, you can decode it using the number 26 - N. Make sure that for your language, there's some similar way to decode strings.

Optional bonus 2

Given a string of English text that has been Caesar shifted by some number between 0 and 26, write a function to make a best guess of what the original string was. You can typically do this by hand easily enough, but the challenge is to write a program to do it automatically. Decode the following strings:

Zol abyulk tl puav h ulda.

Tfdv ef wlikyvi, wfi uvrky rnrzkj pfl rcc nzky erjkp, szx, gfzekp kvvky.

Qv wzlmz bw uiqvbiqv iqz-axmml dmtwkqbg, i aeittwe vmmla bw jmib qba eqvoa nwzbg-bpzmm bquma mdmzg amkwvl, zqopb?

One simple way is by using a letter frequency table. Assign each letter in the string a score, with 3 for a, -1 for b, 1 for c, etc., as follows:

3,-1,1,
... keep reading on reddit ➑

πŸ‘︎ 207
πŸ’¬︎
πŸ‘€︎ u/Cosmologicon
πŸ“…︎ Apr 26 2021
🚨︎ report
I tested the code in a Caesar cipher feel free to use these to find if you have to rearrange the letters.1. Is with the symbols used as letters 2. Is without any symbols 3. Is using the symbols as the alphabet in the order they showed up 4. Is just the symbols as letters. reddit.com/gallery/olllgm
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/A-shadow-creeper
πŸ“…︎ Jul 16 2021
🚨︎ report
Teen hacker is broken out of prison by a group of teens, led by an old man. They need him to decrypt a cipher (maybe caesar cypher/scytale??). eventually the code is decrypted giving location, they go there and find treasure (maybe aztec or mayan??) and it collapses. the old man wants to be immortal

read a while ago in late primary school, i remember there were 2 guys and 2 girls in the group i think? one of the girls is very skilled at manipulation and has green eyes i believe. she refuses to sit in the back of the car as that is how she witnessed her parents dying.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Slow-Bobcat9995
πŸ“…︎ Aug 25 2021
🚨︎ report
Caesar ciphers of amogus

Bnphvt

Coqiwu

Dprjxv

Eqskyw

Frtlzx

Gsumay

Htvnbz

Iuwoca

Jvxpdb

Kwyqec

Lxzrfd

Myasge

Nzbthf

Oacuig

Pbdvjh

Qcewki

Rdfxlj

Segymk

Tfhznl

Ugiaom

Vhjbpn

Wikcqo

Xjldrp

Ykmesq

Zlnftr

(All the letters of Amogus have an odd number as a position in the alphabet, for example A is 1, M is 13, O is 15, and so on. All the vowels also have odd numbers as positions in the alphabet. So the odd shifts of Amogus will change all the letters to even letters, which aren't vowels, so there can't be any words in odd shifts of Amogus. Only even shifts of Amogus could create words, which they don't. The 6 and 20-shifts of Amogus are only one letter away from being anagrams of Amogus.)

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/GlowstoneLove
πŸ“…︎ Oct 04 2021
🚨︎ report
Caesar Cipher in 2 lines, just for fun
rot3 = dict(zip(map(ord, 'abcdefghijklmnopqrstuvwxyz'), 'defghijklmnopqrstuvwxyzabc'))

'tiberivs clavdivs caesar'.translate(rot3)
# 'wlehulyv fodyglyv fdhvdu'
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/V1A0
πŸ“…︎ Aug 17 2021
🚨︎ report
Caesar Cipher Secret could be Intentional in Kvothe's Name

Caesar Cipher for people who don't know is when you move a letter a long the alphabet. For example. If I moved Hello by 1 it'd be immp.

If I move Kvothe by 21, it becomes Patymj. First 3 letters are Pat.

Pat likes using 3s and 7s to describe things so could make sense. 3 x 7 = 21.

Probably is unintentional but could be the way Pat chose the name Kvothe. As he may have liked the idea of starting a name with Kvo.

Pat also always says Kvothe is my character.

(Update)Found more evidence, during the time Kvothe is making the Denna Resin Apricots for the Drakus he says something along the lines of "21 3 times seven, a great number, it should do"

Other caesar ciphers of pat include.

Ale Epi Itm Cng Doh Hsl Nyr Sdw Wha Ozs Tex Bmf 6Jun 4Lwp Ufy XibGrk Qbu Rcv Yjc Fqj Mxq Vgz Zkd

If someone's noticed this before, sorry. It probably is coincidental but you never know.

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/Deathly_Dylan
πŸ“…︎ Jul 19 2021
🚨︎ report
This random person messaged me in Caesar cipher. I sent him the message and eating for the link. I think its an arg. If anyone else got the message tell if they sent you more info.
πŸ‘︎ 3
πŸ’¬︎
πŸ“…︎ Jul 06 2021
🚨︎ report
This is the image filling out what the text says. The cipher text is not Caesar Cipher… at least I think.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/AgitatedFuel2139
πŸ“…︎ Sep 03 2021
🚨︎ report
In Schaff’s new Pixar movie ranking video, at 43:43 there’s a google search bar filled with gibberish. It’s actually a Caesar cipher that translates to β€œGOTH PATTY is Watching”.
πŸ‘︎ 188
πŸ’¬︎
πŸ‘€︎ u/WitherLord888
πŸ“…︎ Feb 28 2021
🚨︎ report
Sense in metaverse. 011_Journey02(Caesar Cipher) v.redd.it/u76r5foow1471
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/ssung8354
πŸ“…︎ Jun 08 2021
🚨︎ report
Sense in metaverse. 011_Journey02(Caesar Cipher) v.redd.it/8a72gs7nj0471
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/ssung8354
πŸ“…︎ Jun 08 2021
🚨︎ report
Caesar Cipher in Wireworld (RGB) youtu.be/S85xZikgaSw
πŸ‘︎ 24
πŸ’¬︎
πŸ“…︎ Jun 26 2021
🚨︎ report
Caesar Cipher: Why are letters at the end of the alphabet decrypting to symbols?

I followed a tutorial and this is exactly the code they provided. It works, but letters like X, Y, Z are decrypted as symbols. What is going on here, please? πŸ˜…

function caesar_cipher(string, key) {
    var output = "";

    for (var i = 0; i &lt; string.length; i++) {
        var unicode = string.charCodeAt(i);

  // Uppercase
    if ((unicode &gt;= 65) &amp;&amp; (unicode &lt;= 90)) {
        var res_unicode = ((unicode - 65 + key) % 26) + 65;
        output += String.fromCharCode(res_unicode);
  }
  // Lowercase
  else if ((unicode &gt;= 97) &amp;&amp; (unicode &lt;= 122)) {
    var res_unicode = ((unicode - 97 + key) % 26) + 97;
    output += String.fromCharCode(res_unicode);
  }
  // Not a letter
  else {
    output += String.fromCharCode(unicode);
  }  
}
    return output;
}
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/spankygrrl
πŸ“…︎ Jul 09 2021
🚨︎ report
Caesar cipher in Python

Just now completed my project of implementing Caesar cipher in Python. Have a look at it.

https://dev.to/bharadwaj6262/caesar-cipher-in-python-3j09

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/Big_Limit_379
πŸ“…︎ Apr 24 2021
🚨︎ report
A codex/Caesar cipher for a a girl who loves Rome. Tough to crack, but I did and I love it! (Came with gift card) Tysm!!
πŸ‘︎ 158
πŸ’¬︎
πŸ“…︎ Dec 31 2020
🚨︎ report
Can someone decode this? I tried the Caesar cipher but it didn't work. Thanks

TRF OD DID YTSMDLSYR TRF FPMY NPMN MR LSYR OD DJPTY NLPPFU JRLL TRF OD FIZN TRF ARYD DRR GLVE TRBOSA

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Pyrotechnic17
πŸ“…︎ May 28 2021
🚨︎ report
Modified Caesar cipher program I've been working on

Hello, I'm a young amateur python developer with barely any skills, but I've created an encoder/decoder using a modified Caesar cipher that I just wanted to share. It can also do a lot more if you type "SMenu" on the main menu part.

https://replit.com/@cal8205/coderdecoder#main.py

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/CReddit8205
πŸ“…︎ Jan 22 2022
🚨︎ report
Caesar Cipher in 2 lines, just for fun
rot3 = dict(zip(map(ord, 'abcdefghijklmnopqrstuvwxyz'), 'defghijklmnopqrstuvwxyzabc'))

'tiberivs clavdivs caesar'.translate(rot3)
# 'wlehulyv fodyglyv fdhvdu'
πŸ‘︎ 19
πŸ’¬︎
πŸ‘€︎ u/V1A0
πŸ“…︎ Aug 17 2021
🚨︎ report
A code to cipher using caesar cipher

yep, just that,

caesar cipher link https://en.wikipedia.org/wiki/Caesar_cipher

It can handle spaces and lowercase characters. other things will break it

$echo -n "e07 hello world" | bf caesar.bf

olssv dvysk

$ echo -n "d07 olssv dvysk" | bf caesar.bf

hello world

&gt;,&gt;++++++++++[&lt;----------&gt;-]&lt;&gt;+&lt;&gt;&gt;+&lt;&lt;&gt;&gt;&gt;[-]&lt;&lt;&lt;[&gt;&gt;[-]&lt;&lt;&gt;&gt;&gt;+&lt;&lt;&lt;-[&gt;[-]&lt;,&gt;&gt;+&lt;&lt;[-]][-]]&gt;[&gt;&gt;&gt;,&gt;+++++++++[&lt;-----&gt;-]&lt;---&gt;,&gt;+++++++++[&lt;-----&gt;-]&lt;---&lt;[&gt;++++++++++&lt;-]&gt;[&lt;+&gt;-]&lt;&gt;&gt;&gt;,[&gt;+&lt;""&lt;++++++[&gt;-----&lt;-]&gt;--[&gt;[-]&lt;&lt;++++++[&gt;+++++&lt;-]&gt;++&lt;&lt;&lt;/[&gt;+&gt;+&lt;&lt;-]&gt;[&lt;+&gt;-]&lt;&lt;&lt;&lt;[-]&lt;[-]&lt;[-]&gt;&gt;&gt;[[-]&lt;&lt;&lt;+&gt;&gt;&gt;&gt;&gt;&gt;&gt;[-&gt;-&lt;]&lt;&lt;&lt;&lt;]&gt;[[-]&lt;&lt;&lt;+&gt;&gt;&gt;&gt;&gt;&gt;[-&gt;+&lt;]&lt;&lt;&lt;]&lt;&lt;&lt;&lt;[&gt;&gt;&gt;+&lt;&lt;&lt;[-]]&gt;[&gt;&gt;&gt;+&lt;&lt;&lt;[-]]&gt;&gt;&gt;&gt;&gt;&gt;&gt;-------------------------------------------------------------------------------------------------&gt;[-]&gt;[-]&gt;[-]&gt;[-]&gt;[-]&lt;&lt;&lt;&lt;&lt;++++++++++++++++++++++++++&gt;&gt;&gt;&gt;++++++++++++++++++++++++++&lt;&lt;&lt;&lt;[-&gt;+&gt;&gt;+&gt;-[&lt;-]&lt;[&lt;&lt;[-&gt;&gt;&gt;+&lt;&lt;&lt;]&gt;&gt;&gt;&gt;+&lt;&lt;-&lt;]&lt;&lt;]&gt;[&lt;+&gt;-]&lt;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.[-]]&gt;[&lt;&lt;++++++[&gt;+++++&lt;-]&gt;++.[-]&gt;[-]&lt;&gt;]&lt;,]&gt;[-]&lt;]&gt;[[-]&gt;[-]&gt;[-]&lt;&lt;""""+++++++++[&gt;++++++++&gt;++++++++++++&gt;++++&gt;+++++++++++&lt;&lt;&lt;&lt;-]&gt;--.&gt;---.+++++++++.+.+.&gt;----.&gt;.+++++.-------.&lt;&lt;--.&gt;&gt;.++.&lt;&lt;++.&gt;&gt;++.&lt;&lt;--.&gt;.&lt;-----.++++++++.--.+.&gt;.&gt;---.+++.&lt;.&gt;.++++.&lt;&lt;.&gt;&gt;-.---.&lt;&lt;--.&gt;.++.&gt;.&lt;.--.&gt;+.&lt;&lt;---.+++.&gt;.&gt;-.&lt;&lt;----.&gt;&gt;--.&lt;&lt;+.&gt;&gt;+.+.&lt;.&lt;.+++.&gt;.++.&gt;-.&lt;.--.&gt;++.&lt;&lt;---.+++.&gt;.&gt;--.+.--.&lt;&lt;---.&gt;&gt;+.+.[-]&gt;[-]&gt;[-]&lt;&lt;+++++++[&gt;+&gt;+++++++&gt;++++++++++++++++&gt;+++++&gt;++++++++++++++++&lt;&lt;&lt;&lt;&lt;-]&gt;+++.&gt;+.&gt;--.----------.&gt;---.&lt;---.&gt;&gt;--.&lt;&lt;+++.&gt;.&lt;&lt;+.&gt;&gt;&gt;++++.&lt;&lt;.&gt;.&lt;-.+++++.-------.&gt;&gt;.+.&lt;.&gt;------.++++++++.--.
... keep reading on reddit ➑

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/metalblueberry
πŸ“…︎ Jul 11 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.