User Controls
For practice and fun, you may request a software you'd like to see developed and i will try to make it.
-
2016-12-30 at 1:54 PM UTCIt 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.
-
2016-12-30 at 1:58 PM UTCif 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 -
2016-12-30 at 2 PM UTC
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. -
2016-12-30 at 3:17 PM UTC
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. -
2016-12-30 at 8:10 PM UTC
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. -
2016-12-30 at 9:37 PM UTCI want a front page flush bot
-
2016-12-30 at 10:26 PM UTCWhy 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 -
2016-12-30 at 10:45 PM UTCMake something that scans your filesystem and alerts you of duplicate files.
-
2017-01-06 at 3:27 AM UTC
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 -
2017-01-06 at 6:46 PM UTCWhat 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... -
2017-01-06 at 7:58 PM UTC
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. -
2017-01-06 at 8:14 PM UTCCan you write a script that when Bill Krozby logs in here it automatically redirects him to twink porn?
-
2017-01-06 at 9:03 PM UTC
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. -
2017-01-06 at 9:08 PM UTCCan Lanny do it?
-
2017-01-06 at 9:23 PM UTC
Originally posted by reject Can Lanny do it?
I would imagine so. -
2017-01-06 at 9:28 PM UTCHuh. Can you write a petition to get Lanny to do it?
-
2017-01-06 at 10:09 PM UTC
Originally posted by reject Huh. Can you write a petition to get Lanny to do it?
Just make an ATTN: Lanny thread. -
2017-01-07 at 12:59 AM UTCSubmit a pull.
-
2017-01-07 at 2:37 AM UTC
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. -
2017-01-07 at 2:45 AM UTC
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.