User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 1018
  6. 1019
  7. 1020
  8. 1021
  9. 1022
  10. 1023
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429

Posts by Sophie

  1. Sophie Pedophile Tech Support
    Originally posted by mmQ How come people, especially BLACKS, buy loads and loads of airplane shots at the liquor store? Looking for a genuine answer here. I see it happening all the time. Obviously if it was because they're cheap, buying an actual bottle is way more efficient, so that doesn't seem to be the case, unless they're that stupid that they think buying a bunch of 99 cent bottles is saving them money.

    The other day I went to buy some ale and this guy was in front of me, he grabbed one of the containers that hold the airplane shots, and set it on the counter, and said to the clerk 'lemme get like 7 or 8 of dem bitches.' She says, 'what?' He replies, 'lemme get like 7 or 8 of dem bitches.' My transaction was complete at the time but I stood there staring at him incredulously, and he says it again- 'lemme get 7 or 8 of DEM BITCHES.' I'm like 'DEM BITCHES? WHY THE FUCK YOU CALLING THEM 'DEM BITCHES?'' He's like 'don't worry about it' and I just scoffed at him and left.

    No clue, but you could also just download this file. https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi

    Install it, and check the box when it asks you if you want it to be added to the environment variables. Then when you are done you open your Windows shell\commandline\terminal and do this:


    cd C:\python27\scripts

    pip install mechanize

    cd C:\Users\mQ\directory_where_your_python_file_lives

    mq.py
  2. Sophie Pedophile Tech Support
    Originally posted by mmQ LOL. Well, I'm not FEARING anything. I just came up with an idea to see if it might work since you wanted an idea. Obviously I can post 'tendies' on my own when I feel the need. This isn't to say I don't appreciate your effort in making the program and if it winds up working, all the better, just don't stress yourself over it. I'll live either way.

    I want it to work though. It is on my mind, and i shall not quit until i have succeeded.
  3. Sophie Pedophile Tech Support
    Originally posted by hydromorphone Fuck that! ^ Technology brings a great degree of happiness and satisfaction. People get burned out on shit- I love riding but I got burned out dealing with "horse people" and the show scene. They're all retarded assholes, most anyway. Even now, I've been dealing with "Horse people" again to find work and it just gives me a sour taste in my mouth, except for a select few.

    Hi, Sophie. :( Fucking I return to complain about WD from a research chem and you fuckking leave.. what kinda shit is that?

    Lol i didn't actually leave though.
  4. Sophie Pedophile Tech Support
    Originally posted by mmQ Yeah it didn't work. :/

    Yeah after looking into it i figured as much. Fear not though! Never fear! For the Soph is cunning and resourceful and i shall have your program working on windows in binary form shortly.
  5. Sophie Pedophile Tech Support
    Originally posted by Lanny TRT gets locked once it hits 420 pages, to be born again like a phoenix with downs syndrome or something.

    Oh yeah, that's right.
  6. Sophie Pedophile Tech Support
    Originally posted by Lanny shit, I'm going to have to make thread locking actually work now.

    Why?
  7. Sophie Pedophile Tech Support
    Carrie Fisher died.

    http://www.independent.co.uk/news/people/carrie-fisher-dead-death-dies-star-wars-princess-leia-heart-attack-a7497896.html

    RIP Princess Leia.

    "Rejoice for those around you who transform into the Force. Mourn them, do not. Miss them, do not. Attachment leads to jealousy. The shadow of greed that is."
  8. Sophie Pedophile Tech Support
    Get Loperamide, lots of it.
  9. Sophie Pedophile Tech Support
    Human made climate change is bullshit. The Earth goes through climate changes on it's own. The climate change industrial complex is just another bullshit government program.
  10. Sophie Pedophile Tech Support
    Originally posted by SCronaldo_J_Trump Maybe you just need to get a hobby that doesn't involve so much technical stuff engrained into security and hacking internet and everything associated with that world. It seems like a stressful hobby to me, but what do I know. My interests aren't exactly the most normal either.

    It just seems to me if you are on a computer all day long and thats all you do, all you care about you can get burned out really quick. Humans aren't really designed to sit in front of a screen all day.

    So maybe you can take a break and try to focus on something else, maybe you can start a fish tank or do some more cooking and reading books or going for walks. Who knows.

    Technology will never bring you the happiness or satisfaction you want, that is all I know for sure.

    Thank you for your sincere advice, but security/hacking/technology does bring me happiness and satisfaction. Especially when my efforts are appreciated and appraised at security sites, tool repositories, forums, github and twitter.
  11. Sophie Pedophile Tech Support
    Originally posted by mmQ Oh yes and shitfucker. And tort. Did you spill mustard on it? huehuehuehuehuehue

    Test my binary nigger, i am pretty sure it will not work, i am installing Windows 7 in VM to compile in a windows environment to get the proper dependencies. It's a lot of work nigga'.
  12. Sophie Pedophile Tech Support
    IV Oxy instead. Or just snort it, works pretty well too.
  13. Sophie Pedophile Tech Support
    Originally posted by thelittlestnigger Can you make a program that follows my General Theory of Kek Activity?

    i.e. sorts post numbers by dubs trips etc and search for keywords and files related to Kek

    Blehrhg i'll have to make a scraper and do some regex mumbo jumbo for that. If you really really want it, it's possible but it will probably take me an hour orn two to research and to write.

    Any other requests?
  14. Sophie Pedophile Tech Support
    Originally posted by Lanny "may"

    It's his super extreme doxing technique.
  15. Sophie Pedophile Tech Support
    Remove the semi colons, the code tags add them after the URLs.
  16. Sophie Pedophile Tech Support

    import mechanize
    import time

    br = mechanize.Browser()
    br.set_handle_robots(False)
    br.addheaders = [('user-agent', ' Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100423 Ubuntu/10.04 (lucid) Firefox/3.6.3'),
    ('accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8')]


    def login():
    username = raw_input("Please enter your username: ")
    password = raw_input("Please enter your password: ")

    print "[+]Logging in."

    try:
    br.open("http://niggasin.space")
    except Exception as e:
    print "\nCould not open target URL, please reference the error message below: "
    print
    print e


    br.form = list(br.forms())[0]
    br["username"] = username
    br["password"] = password

    # Submit values for username and password fields
    response = br.submit()

    print "\n[+]Response:"
    print
    print response

    post()


    def post():
    while True:
    br.open("http://niggasin.space/thread/206")

    br.form = list(br.forms())[21]
    br["content"] = "tendies"

    response = br.submit()

    print "\n[+]Response:"
    print
    print response
    print
    print "[+]One hour until your next post"

    time.sleep(3600)


    login()
    [/code]

    Done, see my "tendies" post in TRT? That was posted by this script for testing purposes.



    [i]Post last edited by Sophie at 2016-12-27T23:17:09.813891+00:00[/i]
  17. Sophie Pedophile Tech Support
    tendies
  18. Sophie Pedophile Tech Support
    Originally posted by mmQ Can you make one that automatically makes my account post 'tendies' in trt at the top of the hour, every hour?

    I probably can. Let me try.
  19. Sophie Pedophile Tech Support
    I am feeling like programming, but i am a little out of inspiration. IF you want to have a program developed but you can't code i will try to make it for you. No guarantees though. You have the option of getting the program in Bash as a .sh, in Python as .py or binary form should you desire.

  20. Sophie Pedophile Tech Support
    Originally posted by Lanny He does, I've seen pictures of her. Latina gals aren't really my thing but she's pretty cute.

    orly?

    Now i'm curious.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 1018
  6. 1019
  7. 1020
  8. 1021
  9. 1022
  10. 1023
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429
Jump to Top