User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 88
  6. 89
  7. 90
  8. 91
  9. 92
  10. 93
  11. ...
  12. 139
  13. 140
  14. 141
  15. 142

Thanked Posts by Sophie

  1. Sophie Pedophile Tech Support
    You have ADHD.

    Also Ritalin makes me a little jittery. So i usually ghetto speedball it by snorting it with some oxy. Takes the edge off.
    The following users say it would be alright if the author of this post didn't die in a fire!
  2. Sophie Pedophile Tech Support
    Ever need to serve some files locally for whatever reason? Well i do. So i made a script to do just that. I also added an option to invoke a quick OS shell in case you need to move or copy some files into the dir the files are being served from.

    I decided to post it here in case it may be useful to you. Dependencies are -> blessings, SimpleHTTPServer.


    #!/usr/bin/python 2.7

    import SimpleHTTPServer
    import SocketServer
    import time
    import os

    from blessings import Terminal

    t = Terminal()

    def quickshell():
    cwd = os.system('pwd')
    print "[" + t.green("+") + "]OS Shell in " + cwd
    print "[" + t.green("+") + "]Enter 'Q' to quit"

    try:

    while True:
    command = raw_input("\n<" + t.cyan("SERVER") + ">$ ")
    if not command in ('q', 'Q'):
    os.system(command)
    else:
    print "\n[" + t.red("!") + "]Exiting shell."
    time.sleep(1.5)
    break

    except KeyboardInterrupt:
    print "\n[" + t.red("!") + "]Critical. User Aborted"

    print "\n[" + t.green("+") + "]Basic HTTP Server.\n"

    default = raw_input("[" + t.magenta("?") + "]Default Config? [Y]es/[N]o: ")
    if default == 'y' or 'Y':

    PORT = 8000
    IP = "127.0.0.1"
    print "\n[" + t.green("+") + "]Default settings loaded.\n"

    elif default == 'n' or 'N':

    print "[" + t.green("+") + "]Specify custom values.\n"
    PORT = raw_input(int("[" + t.magenta("?") + "]Enter port: "))
    IP = raw_input("[" + t.magenta("?") + "]Enter host: ")

    print "[" + t.green("+") + "]Invoke a shell to make adjustments in server directory?"
    invoke = raw_input("[" + t.magenta("?") + "][Y]es/[N]o: ")
    if invoke == 'y' or 'Y':
    quickshell()
    elif invoke == 'n' or 'N':
    print "[" + t.green("+") + "]Done."
    else:
    print "\n[" + t.red("!") + "]Unhandled Option."

    else:
    print "\n[" + t.red("!") + "]Unhandled Option."


    print "[" + t.green("+") + "]Starting Server.\n"

    Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
    Handler.extensions_map.update({
    '.webapp': 'application/x-web-app-manifest+json',
    });

    try:
    httpd = SocketServer.TCPServer((IP, PORT), Handler)
    except Exception as e:
    print "\n[" + t.red("!") + "]Critical. An exception was raised with the following error message"
    print e

    print "[" + t.green("+") + "]Serving at", IP, repr(PORT)

    httpd.serve_forever()


    Post last edited by Sophie at 2017-12-26T03:57:23.945355+00:00
    The following users say it would be alright if the author of this post didn't die in a fire!
  3. Sophie Pedophile Tech Support
    Originally posted by 哈哈你看不懂中文

    madre de dios...
    The following users say it would be alright if the author of this post didn't die in a fire!
  4. Sophie Pedophile Tech Support
    Originally posted by RestStop I'll just take the Oath of Baphomet or sacrifice a few small children instead. HIGH END!

    A blood sacrifice to /baphomet/ can be done without sacrficing children.

    The following users say it would be alright if the author of this post didn't die in a fire!
  5. Sophie Pedophile Tech Support
    Originally posted by mashlehash You need your ass beat, carrying on with your niece like you do.

    Cousin actually. And you're free to fly over to come give me this ass beating you god damned mental patient. Don't forget your meds or you will be fighting the voices in your head instead fuccboi.
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. Sophie Pedophile Tech Support
    We'll have a party. And i am pretty sure i will drink a bunch of beer. Perhaps even mead.
    The following users say it would be alright if the author of this post didn't die in a fire!
  7. Sophie Pedophile Tech Support
    God exists. Prove me wrong Rust.
    The following users say it would be alright if the author of this post didn't die in a fire!
  8. Sophie Pedophile Tech Support
    It's 0 degrees C or like 30F. I got the heat turned up but damn niggas. It snowed today as well. I'm cold. Also, i partied too long last night, so i slept in until a ridiculous hour somewhere in the late afternoon. Now all the stores are closed and nigga needs to eat. I would just order something but i'm too much of a jedi to spend that kind of money. Actually, i ordered food the day before yesterday. A nigga gotta pay the rent too.

    It's a rough life but it's my life.

    I'll buy some bread and milk tomorrow morning i guess. I'll starve and freeze in the mean time. FUCK IT WE'LL DO IT LIVE
    The following users say it would be alright if the author of this post didn't die in a fire!
  9. Sophie Pedophile Tech Support
    Pedophile Tech Support, at your service.
    The following users say it would be alright if the author of this post didn't die in a fire!
  10. Sophie Pedophile Tech Support
    Originally posted by RestStop Speaking of recommendations which cell phone would you advise me to get for security purposes? I'm a fan of apple and I really don't like Android so I guess I'm trying to stay away from those OS's maybe something that could be highly customized? IDK I'm an idiot with more money than brains I guess just figured you would be that nigga that knows shit like this.

    A dumb phone. Otherwise get something that supports android and flash CopperheadOS.

    https://copperhead.co/android/

    It's a privacy focused OS for Android devices. Your ROM is basically your Operating System. It's pretty easy to set up. If you have any issues, just make a thread where you get stuck and i am sure people will be along shortly to help out.
    The following users say it would be alright if the author of this post didn't die in a fire!
  11. Sophie Pedophile Tech Support
    Originally posted by NARCassist that works but the terminal is the whole screen, lol.

    no, mouse pointer is normal.

    yes i know pw and un.



    .


    sudo apt-get update
    sudo apt-get install xubuntu-desktop

    sudo reboot


    TADAA now you have xfce for a window manager/desktop environment.
    The following users say it would be alright if the author of this post didn't die in a fire!
  12. Sophie Pedophile Tech Support
    So if you are using Dream Market you should be aware that they are not very good at security. Just by going to http://ecleg2gwe2edwiuf.onion/phpinfo you can see the entire PHP configuration that they are running on. Just a heads up.

    The following users say it would be alright if the author of this post didn't die in a fire!
  13. Sophie Pedophile Tech Support
    Yes. We all have a reason to post here and i think that's something we can all agree on.
    The following users say it would be alright if the author of this post didn't die in a fire!
  14. Sophie Pedophile Tech Support
    The more pressing question is; how high is your testosterone level? You limp wristed faggot. Your bubble yum ass would be dead if you lived my life.
    The following users say it would be alright if the author of this post didn't die in a fire!
  15. Sophie Pedophile Tech Support
    Organized-impersonal.

    Originally posted by 哈哈你看不懂中文 Definitely organized-personal. I feel like anybody who says they'd be an impersonal serial killer probably is probably not being honest with themselves. Like, realistically, if you decided to kill somebody and you aren't mentally deranged, you'd probably kill someone you know because that's what it would take to drive you to kill, you DIG?

    Excuse me. You misunderstand.

    Besides killing someone you know has bad news written all over it. Also for me, the act of murder would be to a specific end. The death of the victim is secondary. I'd kill for infamy.
    The following users say it would be alright if the author of this post didn't die in a fire!
  16. Sophie Pedophile Tech Support
    I thought this thread was going to be about narcissism, i am dissapoint.
    The following users say it would be alright if the author of this post didn't die in a fire!
  17. Sophie Pedophile Tech Support
    I'll give you the whole shaft for the half price
    Pickin' up a tenth at a quarter to five
    Got a bakers dozen of bullets to end your life
    You can find me in your crib, fucking your wife
    Catch me slangin, i do drugs and fine wine
    I had more words for this verse but i snorted the lines
    The following users say it would be alright if the author of this post didn't die in a fire!
  18. Sophie Pedophile Tech Support
    Originally posted by SBTlauien https://www.yahoo.com/gma/cell-phone-tracking-shell-casings-place-alleged-tampa-123405762--abc-news-topstories.html

    Bummer! They caught him. I was hoping to read about about this for years. I hope we get a replacement soon. Serial Killers are the shit. Everyone loves them.

    It was just a matter of time honestly, it usually is with disorganized killers. Also to get back at something you mentioned earlier. The way in which the killings were committed so close to each other geographically and temporally both suggest a disorganized offender. Basically, being disorganized just means the guy responsible didn't plan very far ahead.
    The following users say it would be alright if the author of this post didn't die in a fire!
  19. Sophie Pedophile Tech Support
    Poly-substance abuse is the best. I'll have some Fent, Oxy, Methylphenidate, K-pins and Temazepam in a couple of hours, combined.
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. Sophie Pedophile Tech Support
    Hahah, typical right reactionism. You say literally the exact opposite of the truth in order to make your own extremist position appear moderate.

    No Lan, wanting some border control is not an extremist position. Niether is it racist, how well has immigration worked out so far? I'd love to live in a world where immigration is just called moving but when there is a state or more appropriately a welfare state involved this is simply not possible.

    Immigration is even silly within the statist paradigm, although i suppose importing democrat voting mexifags is beneficial to the democratic party. Even if we accept the 'social-contract' we can safely say that a great number of immigrants have never paid into the system and therefore shouldn't be entitled to benefits. They go to the states and due to liberal social policies are immediately entitled to benefits and they're happy to make use of them in great number.

    http://cis.org/Welfare-Use-Immigrant-Native-Households

    Study related.

    Besides, multiculturalism undermines social cohesion by eroding the trust of the populace in one another and between the diverse ethnical groups.

    http://onlinelibrary.wiley.com/doi/1...176.x/abstract

    Study related.


    To conclude, instead of calling 'diversity-skeptics' extremist and bigots. I'd say they have the more rational approach to the situation and facts seem to support this viewpoint.
    The following users say it would be alright if the author of this post didn't die in a fire!
  1. 1
  2. 2
  3. 3
  4. ...
  5. 88
  6. 89
  7. 90
  8. 91
  9. 92
  10. 93
  11. ...
  12. 139
  13. 140
  14. 141
  15. 142
Jump to Top