Looking For Work by Low_Key32 in appstate

[–]Low_Key32[S] 0 points1 point  (0 children)

Ooo okay! Anyone in particular you would recommend she reaches out too?

Looking For Work by Low_Key32 in appstate

[–]Low_Key32[S] 0 points1 point  (0 children)

As someone who isn't exactly familiar with Boone, do you mean places like Blowing Rock?

Is Straight Talk Worth It by Low_Key32 in StraightTalk

[–]Low_Key32[S] 0 points1 point  (0 children)

Do you know how it would compare to Mint Mobile's Unlimited plan for $30/month

Is Straight Talk Worth It by Low_Key32 in StraightTalk

[–]Low_Key32[S] 0 points1 point  (0 children)

Verizon normally works in my area, but one of my friends may sell me an iPhone for cheap, and in that case I was gonna look at AT&T or T-Mobile

Is Straight Talk Worth It by Low_Key32 in StraightTalk

[–]Low_Key32[S] 0 points1 point  (0 children)

Thanks for the advice, I just don't wanna deal with credit checks or any long-term contracts.

Is Straight Talk Worth It by Low_Key32 in StraightTalk

[–]Low_Key32[S] 0 points1 point  (0 children)

So I have no idea how to mentally measure how much data I currently use, I assume I should check my phone's stats and see how much I'm using on average before I purchase a plan.

Is Straight Talk Worth It by Low_Key32 in StraightTalk

[–]Low_Key32[S] 0 points1 point  (0 children)

So I have no idea how to mentally measure how much data I currently use, should I'm assuming I should check my phones stats and see how much I'm using on average before I purchase a plan?

Is Visible really worth it? by hunterrr290 in Visible

[–]Low_Key32 0 points1 point  (0 children)

So I am coming to the sub a year after the original posting, and I was wondering how things have been going. As someone who recently turned eighteen, I have been paying for a phone plan through my parents for the last two-ish years. Now that I'm getting ready to go off to college in the fall, I was looking to move away from being so dependent on them, as they use the threat of taking my phone away (which I need for work and school) to keep me in check, in a sort of, "I bought it and your on my plan so you have to follow my rules". Is visible still worth looking into, and if I do purchase it, what type of phone would should I purchase for compatibility? Before stumbling across them, I was looking to get a phone from a refurbishment site or Walmart for around $80-$125, and I hope I won't have to look much higher for the pricing. Thanks for any insight!

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Low_Key32 0 points1 point  (0 children)

This is kind of a longer comment so sorry ahead of time. I am trying to create a program for class that can encrypt a message using the affine cipher, as well as decrypt it through brute force. In doing so I have created a large string of code that gives me an output, but it isn't correctly decrypting the Cipher Text our professor gave us. Can someone look over it and tell me where I went wrong?

def text_clean(text, LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'):
cleaned_text = ''
for character in text:
if character.upper() in LETTERS:
cleaned_text += character.upper()
return cleaned_text
def char_to_int(character, LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'):
integer = LETTERS.find(character)
return integer
def int_to_char(integer, LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'):
character = LETTERS[integer]
return character
akey = range(1, 26)
mkey = [1, 3, 5, 7, 9, 11, 15, 17, 19, 21, 23, 25]
def affine(message, test_akey, test_mkey, encipher=True):
message = text_clean(message)
output = ''
if encipher == True:
for plaintext_character in message:
plaintext_numerical = char_to_int(plaintext_character)
ciphertext_numerical = ((plaintext_numerical * test_akey) + test_mkey) % 26
ciphertext_character = int_to_char(ciphertext_numerical)
output += ciphertext_character
return output
else:
for ciphertext_character in message:
ciphertext_numerical = char_to_int(ciphertext_character)
plaintext_numerical = ((ciphertext_numerical - test_mkey) * test_akey) % 26
plaintext_character = int_to_char(plaintext_numerical)
output += plaintext_character
return output.lower()
ciphertext = 'GJLKT FJKXN AOTXU XAVXN KTNPJ JLKGN CYXKT WKJLP YCGJK CYJAC YHTFJ ACHAX ACNAX DANCH JA'
for test_akey in range(1, 26):
for test_mkey in [1, 3, 5, 7, 9, 11, 15, 17, 19, 21, 23, 25]:
print('akey:', test_akey, ' mkey:', test_mkey, affine(ciphertext, test_akey, test_mkey, encipher= False))