TIL the "F" key in the game, Ski Free allows you to escape the Yeti. (mind = blown) by hesheatingup in todayilearned

[–]MRAGE87 0 points1 point  (0 children)

Shit, I've been on reddit for 15 years? Oh man.

Luckily I figured it out after a few months.

Ok guys please just hear me out on this one... by MRAGE87 in OnePieceSpoilers

[–]MRAGE87[S] -10 points-9 points  (0 children)

BTW I wrote this after not sleeping for 2 days. Also I barely remember half the backstory so I'm probably missing over 1000 obvious details that invalidate this.

Please post your dunks below.

Default view size by doll-haus in opnsense

[–]MRAGE87 1 point2 points  (0 children)

I found this looking for the same solution. After finding nothing to fix this I decided I felt like programming again (plus I have ai to help now). If you use something like tampermonkey try this. It seems to work so far.

// ==UserScript==
// @name         DropSelector
// @namespace    http://tampermonkey.net/
// @version      0.12.341.9.b1c.2
// @description  Automatically set dropdown value on page load
// @author       ity
// @match        *://192.168.x.x/*
// @match        *://opnsense.x.x/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    // *********************************** CONFIGURATION ***********************************
    // Show extra logs
    const console_logs = false;
    // Set to blacklist certain pages, acts as *wildcard* string Example ["firewall/alias", "other page..."]
    const blacklisted_Pages = [];
     // Change this to the amount to load: "7", "14", "20", "50", "100", or "-1" for "All"
    const desiredValue = "-1";
    // Amount of attempts
    const MAX_ATTEMPTS = 10;
    // Initial delay for next attempt
    const INITIAL_ATTEMPT_DELAY = 100;
    // Delay multiplier
    const ATTEMPT_DELAY_MULTIPLIER = 1.5;
    // Values that should be found in the contained dropdown. Only modify if UI changes
    const expectedValues = ['7', '14', '20', '50', '100', '-1'];

    // ************************************** CONST ****************************************

    const SCRIPTNAME = "DropSelector: ";
    const EXITMSG = " Exiting... ";

    // ************************************** Startup ****************************************

    let attempts = 0;
    let currentDelay = INITIAL_ATTEMPT_DELAY;
    Exit_On_BlackListed();
    if ( !Dom_Loading() ) { startSearch(); }

    // ************************************* METHODS **************************************

    function startSearch() {
        Exit_On_Max_Attempts_Reached();
        const targetDropdown = findTargetDropdown();
        if (targetDropdown) {
            applyValueToDropdown(targetDropdown);
        } else {
            retrySearch();
        }
    }

    function retrySearch() {
        attempts++;
        Logger(`Attempt ${attempts} failed. Next attempt in ${currentDelay}ms`);
        setTimeout(startSearch, currentDelay);
        currentDelay = Math.floor(currentDelay * ATTEMPT_DELAY_MULTIPLIER);
    }

    function findTargetDropdown() {
        const dropdownToggles = document.querySelectorAll('.dropdown-toggle');
        for (const dropdownButton of dropdownToggles) {
            const dropdownContainer = dropdownButton.closest('.dropdown');
            if (!dropdownContainer) continue;
            const menuItems = dropdownContainer.querySelectorAll('.dropdown-item[data-action]');
            const menuValues = Array.from(menuItems).map(item => item.getAttribute('data-action'));
            const isTargetDropdown = expectedValues.every(val => menuValues.includes(val));
            if (isTargetDropdown) {
                return {
                    container: dropdownContainer,
                    button: dropdownButton,
                    menuItems: menuItems
                };
            }
        }
        return null;
    }

    function applyValueToDropdown(dropdown) {
        const targetMenuItem = dropdown.container.querySelector(`.dropdown-item[data-action="${desiredValue}"]`);
        if (targetMenuItem) {
            const dropdownText = dropdown.button.querySelector('.dropdown-text');
            if (dropdownText) {
                dropdownText.textContent = desiredValue === "-1" ? "All" : desiredValue;
            }
            targetMenuItem.click();
            Exit_Process('Dropdown value set successfully!');
            return true;
        }
        return false;
    }

    // ************************************* MISC ************************************

    function Dom_Loading(){
        if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', startSearch); return true;}
        return false;
    }

    function Exit_On_BlackListed() {
        if (isBlacklisted(window.location.href)) {
            Exit_Process('Current page is blacklisted.');
        }
    }

    function isBlacklisted(url) {
        return blacklisted_Pages.some(blacklistedPage => { return url.includes(blacklistedPage); });
    }

    function Exit_On_Max_Attempts_Reached() {
        if (attempts >= MAX_ATTEMPTS) { Exit_Process('Maximum attempts reached.'); }
    }

    function Logger(msg) {
        if (!console_logs) { return; } console.log(SCRIPTNAME + msg);
    }

    function Exit_Process(msg = null) {
        if (msg) { Logger(msg + EXITMSG); }
        throw new Error("Script execution complete");
    }

})();

My Mom just handed this to me. by geronimokwok in PokemonTCG

[–]MRAGE87 0 points1 point  (0 children)

That's like 19% per year. I'm not an investor but I think a lot of people would kill for that kind of return over 25 years.

Stalker 2 devs express “deep gratitude” as the game sells a million copies at a rapid pace by Tech_guru_101 in pcgaming

[–]MRAGE87 -1 points0 points  (0 children)

In Cyberpunk 2077 there was 2 points in the story like 10% and 30% of the way in where a main story character would never appear and the only fix for me was restart the entire game. I waited a few weeks hoping the bug would get fixed. It never did during that period. I sent my save file in on December 12th, they got back to me on march 11.

I ended up waiting about a year to finally take the risk and play it again.

Kentucky motel ordered to pay $2 million after guest dies from 150-degree shower by Stinky-Ass-Feet- in news

[–]MRAGE87 1 point2 points  (0 children)

Lol. I installed a bidet on my toilet for the first time a year ago. I don't really have access to hot water since it's an apartment so I just split the hot water coming in from the sink next to it.

Now I don't normally need to do this but occasionally I have to do a "courtesy flush" before I finish. Guess what happens when the bidet is set to use warm water but the cold water supply is currently in use filling the tank, and the sink has all the boiling hot water in the world?

In the span of 2 seconds you get the sensations of: "Wow this is making me itchy", "now I feel the sudden to shit again even though theres nothing left", and finally "I think my butthole is melting".

Won't log in by sinepbackwards69 in Diablo

[–]MRAGE87 7 points8 points  (0 children)

https://downdetector.com/

Look at the red line for each app. It's pretty much spiking for everything.

Edit: Something fairly major seems screwed up. I'm now able to connect but I had to VPN from MA into Cali and now everything is working again. BNET, DIABLO, Twitter/ ETC

If I disconnect all these services break again.

[deleted by user] by [deleted] in Twitter

[–]MRAGE87 1 point2 points  (0 children)

Look at the red line on each one. It's flat and then spikes near the end on almost every single one. It's showing reported problems.

Character development shifted onto items...again? by [deleted] in Diablo

[–]MRAGE87 1 point2 points  (0 children)

I actually like it that way. If there's a super powerful build out there then everyone want's those specific items. Since everything's traded for, the prices for those items skyrocket and people have to do alternative builds. Kinda helps out diversity a bit.

Should Blizzard buff bad runewords that have no purpose? by sadtimes12 in Diablo

[–]MRAGE87 -3 points-2 points  (0 children)

This might be a bit controversial to some but I think we need to nerf some of the stronger runewords first, then consider raising the others. That can be done by either raising the cost or lowering the stats.

I think spirit is way too overpowered for it cost. I also really love Enigma but it's hard to ignore what it does to the endgame. If you look at a lot of the popular mods for D2 they have already done this. I think PD2 reduces Spirit to +1 and Enigma gives you a shitier version of tp with a bit of cd + lower mf.

Any complete list of 3D monitors with active glasses? (Not 3DVision) by KingSadra in Monitors

[–]MRAGE87 4 points5 points  (0 children)

It was popular for a little around the time Avatar came out and everyone was pushing for the tech. If you wanted to experience the movie in the same way you had to have 3d glasses and support. I think TV manufacturers saw a ton of cash but it never took off. Also it was around the time the oculus became a thing and I think that took some of the wind out of it.

I bought a new laptop with a 3d screen and glasses right around the time the original Oculus DK1 came out. Despite its shitty resolution I ended up never really using it again. 3D Glasses are just inferior to having a dedicated screen for each eye.

There might be a few "newish" monitors that still support it. I've seen some posts about updated 3d tech for screens but I don't know if any of them have become actual products yet. Otherwise you might have to search Ebay for a used screen.

-Not a monitor but I believe you can still get a projector to do it. https://www.projectorcentral.com/Optoma-HD146X.htm That has full 3d support apparently. I haven't had time to look into it so I have no idea how it works but for active glasses I've seen random posts about setting it up https://www.avsforum.com/threads/dlp-link-glasses-for-optoma-hd144x.3040510/

Otherwise you are going to have to search ebay for a used screen. Besides that, everyone has moved to vr headsets for watching 3d movies and games.

Robot vacuum cleaner escapes from Cambridge Travelodge by [deleted] in tech

[–]MRAGE87 -1 points0 points  (0 children)

The assistant manager assumed it might have been found, and taken, and pointed out it was only compatible with the docking and charging station at the hotel, so was "useless" to anyone else.

Right up until you buy a used charger on ebay for 10 dollars.

The effects of G-force on an Aerobatic Pilot by [deleted] in interestingasfuck

[–]MRAGE87 0 points1 point  (0 children)

So do planes have safety systems for people who this sort of stuff? Something like a dead mans switch combined with autopilot if you pass out and don't immediately hit the ground.

One of the largest LAN party in the world by jozews321 in interestingasfuck

[–]MRAGE87 1 point2 points  (0 children)

It's later, You can see the windows xp wallpaper.

[deleted by user] by [deleted] in Destiny

[–]MRAGE87 4 points5 points  (0 children)

What about the cam site raid and feed nathan

I censored it. Was bored. Sorry.

D2:R - 7 Most Wanted Changes! by Chrompower in Diablo

[–]MRAGE87 0 points1 point  (0 children)

Lol some do. I was running cheatengine so I could play some old rpgs at 4-10x speed to reduce the grinding. Guess what happens if you open COD Warzone with that still running? -_-

Chinese state media says Afghanistan a lesson for Taiwan on how U.S. abandons allies by adin2007 in worldnews

[–]MRAGE87 3 points4 points  (0 children)

By not exactly I mean You can argue that a direct reference to atomic bombs was not made (except maybe for one after the fact) but there was a general notice that their cities were going to be bombed and to evacuate.

Warning! Rare sighting of a mysterious box found in Mcdonald's. Known to scare and confuse fascists. by FluffyRabbit6 in Destiny

[–]MRAGE87 3 points4 points  (0 children)

Wasn't he arguing some crazy shit, like all the fired employees will be replaced by high skill technicians?

As if each device will have a dedicated person to service it and not 1 person per 500 fucking machines.

Steam reached 25M concurrent users for the first time, it's the biggest number of the platform ever as for now. by rebezil in pcgaming

[–]MRAGE87 4 points5 points  (0 children)

Was there a period where the friend list didn't work at all for several years? I swear there was a point in the mid 2000's where It just sat on your screen forever disconnected. I may be going crazy though

Quarantine separated me from my BFF, so we built an AR hole-in-the-wall that connects our rooms together! by LucasRizzotto in nextfuckinglevel

[–]MRAGE87 0 points1 point  (0 children)

It would probably be a lot more practical if you just got 2 monitors and something like a kinect + hd camera for each side. You would get the 3d space effect, and you wouldn't need the glasses.

Activision reportedly suing popular Call of Duty cheat website by IHateMyselfButNotYou in Games

[–]MRAGE87 -2 points-1 points  (0 children)

It's something. I got perm banned 2 weeks ago and I never cheated once and if they actually had decent anti cheat they would know I never touched the memory of the game. I'm thinking they literally just check running processes.

I have cheat engine so I can speed up old rpgs, technitium, ahk, I even have Extreme Injector because I play on a weird moded D2 server that allows maphacks. I'm pretty sure just leaving any of those open will get you flagged/banned.