Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~1K People Reached
Member Avatar for bob24bob

Ok, so the other day, my password(I am an administrator) somehow was changed. I do not know how. That is not important. I need to be able to view every users password using a limited account. Even the administrator's password(which is me). I am using windows vista. Please don't tell …

Member Avatar for Not possiblguy
0
179
Member Avatar for bob24bob

this is the therapist code- [CODE]import string import regex import whrandom #---------------------------------------------------------------------- # translate: take a string, replace any words found in dict.keys() # with the corresponding dict.values() #---------------------------------------------------------------------- def translate(str,dict): words = string.split(string.lower(str)) keys = dict.keys(); for i in range(0,len(words)): if words[i] in keys: words[i] = dict[words[i]] return string.join(words) …

Member Avatar for TrustyTony
0
186
Member Avatar for bob24bob

So i've been working on this code that i got online and it is a chat server code. This is the code- [CODE]# import needed modules: from socket import * # get sockets, for well, sockets import string # string functions import time # for sleep(1) function # define global …

Member Avatar for bob24bob
0
778
Member Avatar for bob24bob

I have recently made a guessing game code and I am now trying to make it so when you enter a number above 3, it will give a print command that i will write. I don't need help on the print command, I just need to know what the string …

Member Avatar for TrustyTony
0
163
Member Avatar for bob24bob

hey, I don't know if you have seen my other post or not, but I have been working on a small code lately to get the users credentials such as their password and username. As you can see, the code gives a warning and says there is a problem with …

Member Avatar for crunchie
0
150