Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

OFFICIAL B-L-A-C-K-F-R-I-D-A-Y THREAD -- COMMUNITY ENDORSED! Take a peek! (RackNerd's Black Friday)

15415425445465471117

Comments

  • dustincdustinc Patron Provider, Top Host, Veteran

    @Xrmaddness said:

    @dustinc said:

    @Xrmaddness said:

    @FrankZ said:

    Wow, that swag looks great. I am seriously looking forward to getting mine.
    Thanks again @dustinc for giving such great swag a way.

    I'm excited to get mine as well, thanks again @phucvandinh! I just have to wait for the mail room to sort it...

    Good morning @Xrmaddness! Were you able to receive the package after all?

    Good afternoon now, and I got my swag!

    Thanks @dustinc and @phucvandinh!

    Woot woot! Thank You for sharing @Xrmaddness -- enjoy the swag :)

    Thanked by 1Xrmaddness
  • VoidVoid Member
    edited November 2022

    @rattlecattle said:

    @sonu said: For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    With the captchas in place no one can be using bots.

    Interesting. I thought some people were suspected to be using bots already

  • dustincdustinc Patron Provider, Top Host, Veteran

    @phucvandinh said:

    @dustinc said:

    @phucvandinh said:
    I went to sleep at 11pm and 11am I'm still awake... Then I could go to sleep a little bit 2 days consecutive

    Oh man! I hope you’re able to get some rest and wish you a speedy recovery.

    Thank you boss? The chef is coming?

    You never know! Though, we need tons of demand to try to influence the Chef to make an appearance :)

  • dustincdustinc Patron Provider, Top Host, Veteran

    @tuc said:

    Hello everyone :)

    Howdy @tuc!

  • dustincdustinc Patron Provider, Top Host, Veteran
    edited November 2022

    @tuc said:
    Hosting words of wisdom...
    Life at Racknerd GA is fingers stuck to F5 while eyes peeled for GA updates

    Hahaha, sounds like fun :) Love it.

  • @jmaxwell said:

    @rattlecattle said:

    @sonu said: For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    With the captchas in place no one can be using bots.

    Interesting. I thought some people were suspected to be using bots already

    You can always go arround catchas as they are not displayed 100% of the time

    Thanked by 1Void
  • dustincdustinc Patron Provider, Top Host, Veteran

    @Idling said:

    @dustinc said:

    @nicozhen said:

    4754993 can i get the double RAM?

    thank you.

    Hi @nicozhen -- Thank You for placing an order with RackNerd!

    We've gone ahead and doubled your bandwidth resources 👊 Stay tuned for our RAM/resource giveaways we'll be doing randomly throughout this thread.

    RAM resource upgrade giveaways are highly popular among the fans of Racknerd :)

    Let's go! We'll be doing more of these soon :)

    Thanked by 1Xrmaddness
  • @dustinc Boss, do you have any plan to replenish LA server sometime soon? ;)

    Thanked by 1dustinc
  • dustincdustinc Patron Provider, Top Host, Veteran

    @MooCowGalaxy said:

    @phucvandinh said:
    The boss is here, GA time

    I like these quiet drops!

    :) We'll continue to introduce more diversity to our giveaways!

  • @dustinc said:

    @Idling said:

    @dustinc said:

    @nicozhen said:

    4754993 can i get the double RAM?

    thank you.

    Hi @nicozhen -- Thank You for placing an order with RackNerd!

    We've gone ahead and doubled your bandwidth resources 👊 Stay tuned for our RAM/resource giveaways we'll be doing randomly throughout this thread.

    RAM resource upgrade giveaways are highly popular among the fans of Racknerd :)

    Let's go! We'll be doing more of these soon :)

    Will that happen in the next hours? For all the European people? :)

    Thanked by 1dustinc
  • dustincdustinc Patron Provider, Top Host, Veteran

    @DrLowEndTalk said:
    more and more

    #MORE-AND-MORE!!

  • dustincdustinc Patron Provider, Top Host, Veteran

    @suut said:

    ON OUR WAY TO 555 !! 🔥🔥🔥

    Whoa, we're almost there!

  • dustincdustinc Patron Provider, Top Host, Veteran

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

  • Dust Incorporated

    Thanked by 1dustinc
  • @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Thanked by 1dustinc
  • @AXYZE said:
    Dust Incorporated

    Or Dustin Corporation

    Thanked by 1dustinc
  • @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    Thanked by 1dustinc
  • @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    Let's put the text in yellow so that they won't be able to see it :#

    Thanked by 1dustinc
  • @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

  • @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

    By the time you read it fully, there would be 17 comments already

    Thanked by 1dustinc
  • @jmaxwell said:

    @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

    By the time you read it fully, there would be 17 comments already

    but I saw the ___ spelled out! Thats why I spelled SIX out, and I missed the NOT :( I did NOT win the GA then :D

  • @jmaxwell said:

    @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

    By the time you read it fully, there would be 17 comments already

    Same xD

  • @MrEd said:

    @jmaxwell said:

    @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

    By the time you read it fully, there would be 17 comments already

    but I saw the ___ spelled out! Thats why I spelled SIX out, and I missed the NOT :( I did NOT win the GA then :D

    Keeping the same logic, @dustinc could use (NOT NOT NOT NOT NOT SPELLED OUT)... have fun :D

    Thanked by 1dustinc
  • dustincdustinc Patron Provider, Top Host, Veteran

    @MooCowGalaxy said:

    @sonu said:

    Bots are boring, let's feel the excitedness of f5 pressing and mouse clicking.

    I must say the rush of adrenaline when anticipating a giveaway is really fun!

    Hahaha, this is true 😂 Can't beat the rush of adrenaline.

  • dustincdustinc Patron Provider, Top Host, Veteran

    @diabolus said:
    I am completely energized and feeling terrific o:) o:) o:)

    @diabolus -- Let's goooo!!! We're happy to have you here :)

  • RAM resource upgrade giveaways!!!

  • dustincdustinc Patron Provider, Top Host, Veteran

    @tuc said:
    Hosting words of wisdom...
    Keep yourself in @dustinc's posts, the others out, and the stick on F5.

    Hahaha, love it!

  • @MrEd said:

    @jmaxwell said:

    @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @dustinc said:

    @sonu said:
    For people who don't use a bot but would like to win a gift from RackNerd, I created a Tampermonkey script to highlight Dustinc's post, while remove all other's comments. It worked really well yesterday.

    The idea was inspired by @DeadlyChemist, who created a Firefox extension.

    Now I share this script, hope it can bring some fun.

    // ==UserScript==
    // @name         LET Highlight
    // @version      0.1
    // @description  Highlight Dustinc's message
    // @author       Sonu
    // @match        https://lowendtalk.com/*
    // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const comments = document.getElementsByClassName('Comment')
        for (var comment of comments) {
            if (comment.getElementsByTagName('a')[0].getAttribute("title") == 'dustinc') {
                comment.style.backgroundColor = "#ffff00";
            } else {
                comment.getElementsByClassName('Item-BodyWrap')[0].innerHTML = '' // clear every thing
            }
        }
    })();
    

    Demo:

    Thank You for sharing this with the community @sonu :) Good stuff.

    @dustinc now you need someone to post the giveaway messages, so that these "not bots" would not work :D

    Nah, he has captcha, bots cant add numbers

    And the captcha is also dynamic with "spelled out", "not spelled out", etc... :) I am still angry on myself to not see the NOT in the rule - I lost the resource GA because of this...

    By the time you read it fully, there would be 17 comments already

    but I saw the ___ spelled out! Thats why I spelled SIX out, and I missed the NOT :( I did NOT win the GA then :D

    lol gotta be so careful and fast at the same time

  • dustincdustinc Patron Provider, Top Host, Veteran

    @jmaxwell said:

    @tuc said:
    It's very close to page #550 :)

    Magical number 555 is our target

    🎯

This discussion has been closed.