User Controls

For practice and fun, you may request a software you'd like to see developed and i will try to make it.

  1. #21
    Sophie Pedophile Tech Support
    It is much easier to randomly select from a set of sentences. Now i don't care how much sentences there are, it could be 100, it could be 1 million. But i can very easily just have the program select one sentence from the list to post when a certain condition is met.
  2. #22
    if there are open source codes that can mash grammatical sentences, then there would likely be specifiers for verb/adjective/noun/adverb etc, then the programmer's input would be to add the buzzwords to the dictionary with the correct specifier, cuck:verb/adjective, derpadew: adjective, jediS: noun/adjective. the sentences would be formed with the same grammar algorithm, just that relevant words would be swapped in (semi)appropriate places

    having enough sentences to be varied could actually be more effort considering you have to make something sort of creative/relevant dozens or hundreds of times for it to work

    Post last edited by the holy ghost at 2016-12-30T14:00:23.000350+00:00
  3. #23
    Sophie Pedophile Tech Support
    Originally posted by the holy ghost if there are open source codes that can mash grammatical sentences, then there would likely be specifiers for verb/adjective/noun/adverb etc, then the programmer's input would be to add the buzzwords to the dictionary with the correct specifier, cuck:verb/adjective, derpadew: adjective, jediS: noun/adjective

    Yes i am aware of that. You don't have to explain the concept to me. The problem is more logistical in nature, i will look for a random sentence generator in python though and if i find it i will make a bot around it.
  4. #24
    Number13 African Astronaut [dispute my snotty-nosed seagull]
    Originally posted by Sophie There is this type of browser extension that lets you dynamically enhancement, edit and/or replace certain content. It's name escapes me at the moment, but you could set it to enhancement out all of Bill Krozby's posts.

    It's not something I'd want personally, but it could be useful.

    Originally posted by Sophie Well, then make me a list of words it has to randomly mash together, because i can't teach a program how to talk without using some type of deep learning algorithms/networks/whatever.

    That said you could use Bill Krozby's post history to make ultimate shit posts.
  5. #25
    Sophie Pedophile Tech Support
    Originally posted by Number13 It's not something I'd want personally, but it could be useful.



    That said you could use Bill Krozby's post history to make ultimate shit posts.

    It would just be an annoying bot most likely. Haha.
  6. #26
    I want a front page flush bot
  7. #27
    Sophie Pedophile Tech Support
    Why does everyone want a bot, i can make a desktop application too
    just remove time.sleep(3600) and replace br.["content"] = "Front page flush" in mQs bot and you got it.

    WELL NOT REALLY, But you get the gist of it, i just have to generate random thread endings for it.

    See this function for that.


    # Function to generate a random string of digits to replace the original page/thread ID
    def digit_generator(size=5, chars=string.digits):
    return ''.join(random.choice(chars) for _ in range(size))

    random_url = "http://niggasin.space/thread/" + digit_generator(3, "0987654321")


    Replace the target URL of mQs bot with the variable `random_url`.



    Post last edited by Sophie at 2016-12-30T22:32:19.466349+00:00

    Post last edited by Sophie at 2016-12-30T22:33:23.094914+00:00
  8. #28
    Merlin Houston
    Make something that scans your filesystem and alerts you of duplicate files.
  9. #29
    Sophie Pedophile Tech Support
    Originally posted by Merlin Make something that scans your filesystem and alerts you of duplicate files.

    I just saw this today.

    I am not going to reinvent the wheel so here is a bash script i found on stackoverflow.


    #!/bin/bash

    file=`mktemp /tmp/duplicates.XXXXX` || { echo "Error creating tmp file"; exit 1; }
    find $1 -type f |sort > $file
    awk -F/ '{print tolower($NF)}' $file |
    uniq -c|
    awk '$1>1 { sub(/^[[:space:]]+[[:digit:]]+[[:space:]]+/,""); print }'|
    while read line;
    do grep -i "$line" $file;
    done

    rm $file
  10. #30
    SBTlauien African Astronaut
    What about a bot that posts on a forum by copying posts/threads from other forums, using multiple user names that are different than the usernames on the forums it's copying from and changes certain words that have the same meaning, to avoid detection?

    Basically making a forum look alive.

    Makes so that it also will copy threads/posts that legit users make on its own forum, to other forums, and then copies the legit replies on those forum back to its own forum. So that any legit users will be engaged in a conversation that is actually happening elsewhere but appears to be on the bots forum.

    This type of shit is going to fuck up the internet...
  11. #31
    Sophie Pedophile Tech Support
    Originally posted by SBTlauien What about a bot that posts on a forum by copying posts/threads from other forums, using multiple user names that are different than the usernames on the forums it's copying from and changes certain words that have the same meaning, to avoid detection?

    Basically making a forum look alive.

    Makes so that it also will copy threads/posts that legit users make on its own forum, to other forums, and then copies the legit replies on those forum back to its own forum. So that any legit users will be engaged in a conversation that is actually happening elsewhere but appears to be on the bots forum.

    This type of shit is going to fuck up the internet…

    Haha, good idea. This sounds like Blackhat SEO to my ears for some reason. I will look into a way to copy text from a website, i think i will need a module that is better equipped for text/HTML/whatever processing than Mechanize, maybe Beautiful Soup? I will have a gander.
  12. #32
    Can you write a script that when Bill Krozby logs in here it automatically redirects him to twink porn?
  13. #33
    Sophie Pedophile Tech Support
    Originally posted by reject Can you write a script that when Bill Krozby logs in here it automatically redirects him to twink porn?

    Sadly i can't. This is more an issue of security on the forum software part than that it is of programming.
  14. #34
    Can Lanny do it?
  15. #35
    Sophie Pedophile Tech Support
    Originally posted by reject Can Lanny do it?

    I would imagine so.
  16. #36
    Huh. Can you write a petition to get Lanny to do it?
  17. #37
    Sophie Pedophile Tech Support
    Originally posted by reject Huh. Can you write a petition to get Lanny to do it?

    Just make an ATTN: Lanny thread.
  18. #38
    Submit a pull.
  19. #39
    Merlin Houston
    Originally posted by Sophie I just saw this today.

    I am not going to reinvent the wheel so here is a bash script i found on stackoverflow.


    #!/bin/bash

    file=`mktemp /tmp/duplicates.XXXXX` || { echo "Error creating tmp file"; exit 1; }
    find $1 -type f |sort > $file
    awk -F/ '{print tolower($NF)}' $file |
    uniq -c|
    awk '$1>1 { sub(/^[[:space:]]+[[:digit:]]+[[:space:]]+/,""); print }'|
    while read line;
    do grep -i "$line" $file;
    done

    rm $file

    Hey reinventing the wheel isn't a bad thing, this is actually an idea I got from /g/ awhile ago, but have yet to try my own. I guess this qualifies, was really thinking unique even if they have different names. I don't know if there's a good way of doing this without using a shitload of space.

    Originally posted by reject Can you write a script that when Bill Krozby logs in here it automatically redirects him to twink porn?

    Imblying his homepage isn't twink porn.
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. #40
    Sophie Pedophile Tech Support
    Originally posted by Merlin Hey reinventing the wheel isn't a bad thing, this is actually an idea I got from /g/ awhile ago, but have yet to try my own. I guess this qualifies, was really thinking unique even if they have different names. I don't know if there's a good way of doing this without using a shitload of space.



    Imblying his homepage isn't twink porn.

    I think there is a utility to do file comparison on Linux.
Jump to Top