Anonymous ID: df1381 May 25, 2020, 1:28 a.m. No.9307486   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>9307437

>People will always use the elevator

There's supposed to be some kind of reward for making the tough decisions in life, but here we hang by our fingertips and there is no reward in sight.

 

I'm pretty sure we figure out halfway back to the ground as we plummet to our deaths that the rules of this world reward those who never question artificial, unearned authority. Who were we to think a society should be formed upon the backs of the best of us? No, no, no! Not in this world! Here, the most vile, the most corrupt, the worst make it furthest and control the most through deception, lies and manipulation.

 

Halfway through the fall, we will all see it for what it is. I'll be laughing the whole way down because fuck them til the end!

Anonymous ID: df1381 May 25, 2020, 1:48 a.m. No.9307546   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>9307532

I threw together a python script just for fun the other day

 

message = input('Enter text: ')

d = {

'a':'๐–†', 'b':'๐•ญ', 'c':'ฦ†', 'd':'Dา‰', 'e':'ฦŽ', 'f':'๐“•', 'g':'๐•ฒ','h':'๐“—', 'i':'โ‰‹Iโ‰‹', 'j':'ส', 'k':'ำ„', 'l':'ใ€ŽLใ€', 'm':'โ–‘Mโ–‘', 'n':'N', 'o':'ใ„–', 'p':'โ‚ฑ', 'q':'แต ', 'r':'ะฏ', 's':'ึ†', 't':'โŠฅ', 'u':'ใฒ', 'v':'ัถ', 'w':'ลด', 'x':'ไน‚', 'y':'โ…„', 'z':'ฦธ'

}

t = ' '

for ch in message:

t += d.get(ch,' โœท ') + ' '

 

print(t)

 

save it as a .py file and put whatever characters you like to represent the alphabet characters.

Or don't, just figured I'd offer it up.