VirMach * 2024 * RYZEN * NVMe ** VPS Black Friday * Flash Deals ** Check inside for offers!

1303133353676

Comments

  • VirMachVirMach Hosting Provider

    @tridinebandim said:

    @VirMach said: he should have been more specific.

    18-20$/y standart virbot deal like (2c 1.5-2g ram 20-40 hdd ) or more :D if the code didnt expire i ll buy right away

    When are you planning on going to sleep? I'll try to time it for that but right now the next Amsterdam is like 6 deals out. I'll spice that one up for you.

    Thanked by (1)tridinebandim
  • VirMachVirMach Hosting Provider
    edited November 30

    @Kris said: Have Been trying the username anagrams, one actual word, 3-8 characters, mildly caffeinated, no coding, nothing but real words, not just usernames shuffled, or is that maybe where i went wrong...

    Not sure if I'm reading it wrong or you read what I said wrong so I'll just say it again just in case, don't want to waste your time.

    You said "one actual word" and it can be multiple actual words. And it can be the type of word I mentioned earlier for any of them, where it's technically not going to be a word on some dictionaries and just a suffix like "Pre"

    Usually one, two, or three words I think total. And they're all CapitalizedLikeThis no spaces, where CapitalizedLikeThis translates over to someone's username that has all those letters in it in the exact number of times as CapitalizedLikeThis -- oh and for this example it's important to keep in mind that it could also be LikeThisCapitalized or ThisLikeCapitalized if it's multiple words.

    Thanked by (1)Kris
  • edited November 30

    @VirMach thanks i can wait till 2 am, so 2 hours if possible

  • so @tenpera lost his hope?

  • VirMachVirMach Hosting Provider

    @tridinebandim said:
    @VirMach thanks i can wait till 2 am, so 2 hours if possible

    I think at this rate it'll go live right after you go to sleep. About 4 plans left.

    Thanked by (1)user123
  • edited November 30

    @VirMach said: I think at this rate it'll go live right after you go to sleep. About 4 plans left.

    no sleep then :D

  • edited November 30

    I'm going sleeping now and I'll be dreaming about a great offer in Atlanta with 2 cores, 1GB RAM, 20GB drive and 2 IPs for $9.99.

  • Add to you dreams that $20 super Amsterdam, maybe I'll be lucky the 3rd try to get it!

  • VirMachVirMach Hosting Provider

    @Crab said:
    I'm going sleeping now and I'll be dreaming about a great offer in Atlanta with 2 cores, 1GB RAM, 20GB drive and 2 IPs for $9.99.

    I'm going to make sure you're fast asleep before possibly adding it then.

    Thanked by (3)Crab FrankZ vyas
  • edited November 30

    Me after attempting to find more codes:

    Got two after a hint above and feel like the rest should be found by others, or remain unclaimed. Saying this of course after trying to find more and failing... :#

    It was a hell of a BF.

    Thanks VirMach!

    Thanked by (1)FrankZ
  • edited November 30

    i hope those codes not for one use only :/

    ps: aaaaAaAAAAAAAaaaaaAa code used up aaaaAAaaaAAAaaaAAaaaAAaa :s

  • VirMachVirMach Hosting Provider

    @Kris said:
    Me after attempting to find more codes:

    Got two after a hint above and feel like the rest should be found by others, or remain unclaimed. Saying this of course after trying to find more and failing... :#

    It was a hell of a BF.

    Thanks VirMach!

    Added another coupon. It's the full name of a character in that movie, first and last, no space, for 35% off recurring.

  • I tried parsing out usernames and got this far.

    Need beautifulsoup installed then python this. I didn't bother with pagination and I think it needs work.

    import requests
    from bs4 import BeautifulSoup
    
    # URL of the discussion thread
    #url = "https://lowendspirit.com/discussion/8605/virmach-2024-ryzen-nvme-vps-black-friday-flash-deals-check-inside-for-offers/p7"
    url = "https://lowendspirit.com/discussion/8605/virmach-2024-ryzen-nvme-vps-black-friday-flash-deals-check-inside-for-offers/p1"
    
    # Send a request to the webpage
    response = requests.get(url)
    if response.status_code == 200:
        # Parse the HTML content
        soup = BeautifulSoup(response.content, "html.parser")
    
        # Find all elements containing usernames (update selector based on the site structure)
        usernames = soup.find_all("span", class_="Username")  # Example: adjust the tag and class
    
        # Extract and print usernames
        extracted_usernames = [username.text.strip() for username in usernames]
        print(extracted_usernames)
    else:
        print(f"Failed to access the page. Status code: {response.status_code}")
    

    Codes are an anagram of users in the thead, VirMach gave a bunch of clues.

    Should give output like this

    ['tridinebandim', 'Kris', 'VirMach', 'AlwaysSkint', 'skorous', 'kidoh', 'user123', 'imok', 'msatt', 'ATInDaHause', 'bigfish', 'risturiz', 'amaha', 'ZA_capetown', 'nullnothere', 'FrankZ', 'edenten', 'vyas', 'tototo', 'feeed']
    
  • @Kris said:
    Me after attempting to find more codes:

    Got two after a hint above and feel like the rest should be found by others, or remain unclaimed. Saying this of course after trying to find more and failing... :#

    It was a hell of a BF.

    Thanks VirMach!

    But neither Risk or Irks works, nor the 1,109 others I've tried so far :s

  • VirMachVirMach Hosting Provider

    @tridinebandim said:
    i hope those codes not for one use only :/

    ps: aaaaAaAAAAAAAaaaaaAa code used up aaaaAAaaaAAAaaaAAaaaAAaa :s

    Yeah I was going to say I wouldn't be as brave as you've been. Well at least you didn't end up staying up for it.

    @Kris said:
    I tried parsing out usernames and got this far.

    Need beautifulsoup installed then python this. I didn't bother with pagination and I think it needs work.

    > import requests
    > from bs4 import BeautifulSoup
    > 
    > # URL of the discussion thread
    > #url = "https://lowendspirit.com/discussion/8605/virmach-2024-ryzen-nvme-vps-black-friday-flash-deals-check-inside-for-offers/p7"
    > url = "https://lowendspirit.com/discussion/8605/virmach-2024-ryzen-nvme-vps-black-friday-flash-deals-check-inside-for-offers/p1"
    > 
    > # Send a request to the webpage
    > response = requests.get(url)
    > if response.status_code == 200:
    >     # Parse the HTML content
    >     soup = BeautifulSoup(response.content, "html.parser")
    > 
    >     # Find all elements containing usernames (update selector based on the site structure)
    >     usernames = soup.find_all("span", class_="Username")  # Example: adjust the tag and class
    > 
    >     # Extract and print usernames
    >     extracted_usernames = [username.text.strip() for username in usernames]
    >     print(extracted_usernames)
    > else:
    >     print(f"Failed to access the page. Status code: {response.status_code}")
    > 

    Codes are an anagram of users in the thead, VirMach gave a bunch of clues.

    Should give output like this

    > ['tridinebandim', 'Kris', 'VirMach', 'AlwaysSkint', 'skorous', 'kidoh', 'user123', 'imok', 'msatt', 'ATInDaHause', 'bigfish', 'risturiz', 'amaha', 'ZA_capetown', 'nullnothere', 'FrankZ', 'edenten', 'vyas', 'tototo', 'feeed']
    > 

    Hey why didn't I think of that, I ended up doing all that work manually!

    Thanked by (1)tridinebandim
  • @VirMach said: Well at least you didn't end up staying up for it

    i ll see the deal :/ dig some more for codes maybe

  • @VirMach said: Hey why didn't I think of that, I ended up doing all that work manually!

    Once I couldn't get it to paginate easy, did it manual, and tried with https://word.tips/unscramble/kris/ - got one, but if Roobet or any of these sites ever needs to keep people around, they've gotta hire you @VirMach

  • Is it just me or the coupon on OGF doesn't work for everyone?

  • edited November 30

    @VirMach said: Added another coupon. It's the full name of a character in that movie, first and last, no space, for 35% off recurring.

    Tried every combo I could think of that both lower and sentence case. You're good. Was going to send it to someone else, I feel I got my share, but... well done.

  • @tridinebandim said: i ll see the deal dig some more for codes maybe

    If it helps, msatt was coupon: matts (used).

    I haven't found any others, I'm sure if you coded the above to properly extract users, and used Dev Tools on chrome to "Copy as cURL' entering a coupon code, it posts to cart.php?=view, you could get something together fast with ChatGPT or even just shell.

    I've used two coupons today, hope this helps someone else.

  • Missed an ATL one, watching telly. :| Didn't catch the spec. though maybe just as well.

    It wisnae me! A big boy done it and ran away.
    NVMe2G for life! until death (the end is nigh)

  • @VirMach %50 off code please :)

  • Thanked by (1)tridinebandim

    It wisnae me! A big boy done it and ran away.
    NVMe2G for life! until death (the end is nigh)

  • VirMachVirMach Hosting Provider

    I'm probably going to be adding a lot of San Jose, Tokyo, Amsterdam, and Atlanta later tonight as I finish cleaning up nodes and putting some into production. We'll probably power through them as I want to try out a lot of different variations for the same nodes. Maybe. We'll see if I can finish up by then or if it ends up being pushed into Cyber Monday.

  • VirMachVirMach Hosting Provider

    @tridinebandim said:
    @VirMach %50 off code please :)

    But if I just give you one here then someone else might use it. Also I made for you already based on your last message when you discovered they're one time use only.

  • @tridinebandim said: didnt get it

    Not up to spec.?

    It wisnae me! A big boy done it and ran away.
    NVMe2G for life! until death (the end is nigh)

  • VirMachVirMach Hosting Provider

    @tridinebandim said:
    @virmach what about dm :D

    You could look at your comment and try every word you said :)

    Thanked by (2)tridinebandim Kris
  • @AlwaysSkint said: Not up to spec.?

    no discount code :D

Sign In or Register to comment.