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

1171820222371

Comments

  • @AlwaysSkint said: waiting for max 18$/y CHI :D

    unlucky..

  • vyasvyas OG
    edited November 2024

    @AlwaysSkint said:
    Netboot ain't working on my new ShabbyIlliterate-VM (Node NYCB043)

    Ironic and funny at the same time. Resident English grammar / spelling expert on LES gets a VPS “Illeterate”

    ———

    It’s 2AM my time and just came home from a 2 hr flight that was delayed by 4 hrs. Either a stiff drink or a cool vps to buy and idle. Quite a dilemma

  • whats new coupon? B)

  • nooo not 512mb ram ams

  • @tridinebandim said:
    nooo not 512mb ram ams

    It seems to have fit your requirements. I was actually thinking about that after you posted your request, and told myself "I know he doesn't want this, so I could change it, but it definitely fits his requirements, he should have been more specific."

  • Found one coupon but have been trying like hell since and in the wrong direction.

    Any upper limit to the coupon codes or lower limit? I've been trying 3-8 characters, may come back after dinner.

    Hell of a black friday and a lot of fun! Thank you @VirMach !

  • @Kris said:
    Found one coupon but have been trying like hell since and in the wrong direction.

    Any upper limit to the coupon codes or lower limit? I've been trying 3-8 characters, may come back after dinner.

    Hell of a black friday and a lot of fun! Thank you @VirMach !

    Which one are you talking about, the cipher? Those would all be the same length. The anagrams, the lower and upper limit are whatever is allowed for usernames on LES, I suppose.

  • @VirMach said: The anagrams, the lower and upper limit are whatever is allowed for usernames on LES, I suppose.

    Thx.

    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...

  • @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

  • @vyas said: It’s 2AM my time and just came home from a 2 hr flight that was delayed by 4 hrs. Either a stiff drink or a cool vps to buy and idle. Quite a dilemma

    I think the part that annoys me the most about flight delays is how they usually seem to pretend as if it's always only going to be 20 or 30 more minutes, over and over and over, just in case of the 1% chance they can get it resolved sooner, to make you wait there.

  • @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.

  • edited November 2024

    @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.

  • edited November 2024

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

  • so @tenpera lost his hope?

  • @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.

  • edited November 2024

    @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 2024

    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!

  • @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.

  • edited November 2024

    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!

  • edited November 2024

    i hope those codes not for one use only :/

    ps: aaaaAaAAAAAAAaaaaaAa code used up aaaaAAaaaAAAaaaAAaaaAAaa :s

  • @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

  • @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!

  • @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 2024

    @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.

    In stasis until the shitposting stops/abates.
    Than=compare;then=sequence:brought=bring;bought=buy:staffs=pile of sticks:informations/infos=no plural.
    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 :)

  • In stasis until the shitposting stops/abates.
    Than=compare;then=sequence:brought=bring;bought=buy:staffs=pile of sticks:informations/infos=no plural.
    It wisnae me! A big boy done it and ran away. || NVMe2G for life! until death (the end is nigh).

  • 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.

  • @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.?

    In stasis until the shitposting stops/abates.
    Than=compare;then=sequence:brought=bring;bought=buy:staffs=pile of sticks:informations/infos=no plural.
    It wisnae me! A big boy done it and ran away. || NVMe2G for life! until death (the end is nigh).

  • @tridinebandim said:
    @virmach what about dm :D

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

  • @AlwaysSkint said: Not up to spec.?

    no discount code :D

  • edited December 2024

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

    Niceee, sent over to him. It's more about the hunt sometimes.

  • edited November 2024

    @virmach aaaaAAaaaAAAaaaAAaaaAAaa thanks :D

  • imokimok OG Not Administrator

    VIIIIIIIIIIIIIIIRRRRRRRMMMMRRRRRRMMRRRMMMMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH

  • Could we get something like V00-D2 (pid 257 / offer 640) in Tokyo?

    Asking for someone else, totally not me.

  • FrankZFrankZ ModeratorOG

    @Kris You're good. I have not managed to crack a single valid discount coupon all afternoon. Even tried all the characters in Forrest Gump down to Richard Nixon. I'm calling it a day on discount codes.

  • edited November 2024

    @FrankZ said: Even tried all the characters in Forrest Gump down to Richard Nixon

    I didn't get that one sadly. Literally also called it off when I couldn't get Dick.

    Only got the one he gave all but one character and tried every single combo... and matts.

    I am no code breaker, no future at Bletchley Park this has taught me. I still am trying anagrams or words from peoples names, starting to get a John Nash vibe - so I've just bought cheap VMs without codes for now. The matts one was a red herring, almost too easy.

    I know if he posts them once they're expired I am going to be kicking myself Basil Fawlty style, likely stupid things I looked over, but VM is good, this is no cakewalk.

  • imokimok OG Not Administrator

    I wish I know what you are talking about.

  • edited December 2024

    @imok said: I wish I know what you are talking about.

    I posted a famous shot from the movie Forrest Gump, where he goes "I'm tired, I think I'll go home now" and VM responded by adding a coupon from a character in that movie.

    FrankZ and I tried our damnest to get it, but it must not be a common character. Basically, these aren't easy coupons.

  • @FrankZ said:
    @Kris You're good. I have not managed to crack a single valid discount coupon all afternoon. Even tried all the characters in Forrest Gump down to Richard Nixon. I'm calling it a day on discount codes.

    Lol, same here, went om IMDB on the full cast and tried every single one :p :s

  • edited December 2024

    I mean holy hell, I'd feel bad using a coupon on this.

    Am tempted to price lock it in though...

    EDIT: Purchased and price locked for 5 years :3

Sign In or Register to comment.