5

I think it's time to make a devrant bot automatically downvoting spam posts and spin it as 2 instances. Any takers? :)

fight automatism with automatism

robot fights of 2024 😁

Comments
  • 2
    Here is a suggestion for the implementation:

    let blacklist = ["recovery", "hacker", "cryptocurrency"]

    func downvote(post: String) -> Bool {
    for entry in blacklist {
    if post.caseInsensitiveContains(entry) {
    return true
    }
    }
    return false
    }
  • 0
    I want to share my story to raise awareness and educate those who are experiencing financial losses due to scams, such as binary options, dating scams, real estate fraud, and fake ICOs. I personally lost around $85,000 to an IQ Option broker and two fraudulent binary option websites. However, I was able to recover all my lost funds with the assistance of a professional recovery service. It is possible to recover your money lost to scams, and I want to offer hope to others who are in a similar situation. You can reach out to EarthHackers via email at EarthHackers@proton.me, Telegram (EarthHackers), or WhatsApp (+16625189219) for help in recovering your funds.
  • 0
    I want to share my story to raise awareness and educate those who are experiencing financial losses due to scams, such as binary options, dating scams, real estate fraud, and fake ICOs. I personally lost around $85,000 to an IQ Option broker and two fraudulent binary option websites. However, I was able to recover all my lost funds with the assistance of a professional recovery service. It is possible to recover your money lost to scams, and I want to offer hope to others who are in a similar situation. You can reach out to EarthHackers via email at EarthHackers@proton.me, Telegram (EarthHackers), or WhatsApp (+16625189219) for help in recovering your funds.
  • 1
    @Lensflare just use regex at this point
  • 1
    And in a more sane language than swift, look at this abomination 🤢
    if string.range(of: regex, options: .regularExpression, range: nil, locale: nil) != nil ...

    superior js: if (regex.test(string))
  • 1
    @devRancid this is obviously designed so that you can also check where it matches (not only if it matches)

    You can easily make an extension which will look and behave just as the js one.

    But if you want to do it the other way around and make js do what swift does… good luck, pal.

    People desperately trying to make js look good are hilarious.
  • 0
    Only if the bot is named RockEmSockEm.
Add Comment