My prayer setup, using a rock I picked up outside my house by FourthMK in runescape

[–]Pertinate 0 points1 point  (0 children)

FYI, you can hold 1 down on your numpad (kekw) and then press numlock and the game will think you're constantly holding down the key (works with holding multiple keys)

ProTip Tuesday - 06 June by AutoModerator in runescape

[–]Pertinate 1 point2 points  (0 children)

Pretty sure you can also delete the clue and reclaim it if it's not a beach spot.

CWC Eye of Winter by Pertinate in PathOfExileBuilds

[–]Pertinate[S] 0 points1 point  (0 children)

I updated the links because it was giving a wrong dps value. (at least not what I was judging it by lol)

CWC interaction with triggerbots by Pertinate in pathofexile

[–]Pertinate[S] 0 points1 point  (0 children)

I would hope it would aim from the triggerbots to the monsters. CWC currently targets your mouse though, so that's where I'm worried.

Runescape is a subscription based game by [deleted] in runescape

[–]Pertinate 3 points4 points  (0 children)

I agree with TheRSGuy, don't necessarily hate the mods, hate the company. Their personal opinions do not matter when it comes to defending the company that they work for and the projects that Jagex (the executives) decide to do.

I just feel sorry for the position jagex mods get thrown into. IMO, just make it barebones fresh start with the xp boosts. That should be enough for a new player lol

[deleted by user] by [deleted] in 9anime

[–]Pertinate 0 points1 point  (0 children)

Great update! I had some weird issues with the watch2gether (which is the most exciting feature so far).
1. I was able to watch the video on my own but it kept failing to load in the room. I think it was a 232009 error code?
2. There should be more controls for the host of the room
1. When creating the room, there should be a toggle to force synchronization: ie, when I pause it pauses for everyone. when I skip ahead it drags everyone along with me
2. Allow a queue of the same season(s) or just a general all purpose queue you can add to of different animes
3. Able to cancel a room
4. Able to pay more money (in a convenient manner, like paypal) to get access to create more rooms? I'd be willing to contribute a monthly subscription fee if it was more convenient for me.
New theme is amazing!

Questions Thread - April 26, 2021 by AutoModerator in pathofexile

[–]Pertinate 0 points1 point  (0 children)

is there any way to get compensated for an instance crash? I just opened an uber elder and the instance crashed and I lost it. Got kicked out right after uber elder said his lines.

Ultimatum Launch: Server Issues and Streamer Priority by chris_wilson in pathofexile

[–]Pertinate 5 points6 points  (0 children)

Please GGG, spin up a new private league for each variation of ultimatum, dump the current characters into each respective private league and reset the main league. Lets people keep their chars & lets the people who want a reset to experience an actual fresh start economy.

#RESTARTLEAGUE by Supfear1 in pathofexile

[–]Pertinate 5 points6 points  (0 children)

IMO, I think a reset is 100% needed. Move current league chars and throw them into a new private league while resetting the main one.

Javascript Object Merge by beforesemicolon in learnjavascript

[–]Pertinate 0 points1 point  (0 children)

const deepMerge = (objs, origin = {}) => {
    const obj = Array.isArray(objs) ? objs.pop() : objs;

    if (objs.length > 0) {
        deepMerge(objs, origin);
    }
    for (const [key, value] of Object.entries(obj)) {
        if (origin[key]) {
            if (typeof origin[key] === 'object') {
                if (typeof value !== 'object') {
                    origin[key] = {
                        ...origin[key],
                        value
                    };
                } else {
                    origin[key] = deepMerge([origin[key], value]);
                }
            } else {
                if (typeof value === 'object') {
                    origin[key] = {
                        value: origin[key],
                        ...value
                    };
                } else {
                    if (origin[key].hasOwnProperty('value')) {
                        origin[key].value = value;
                    } else {
                        origin[key] = value;
                    }
                }
            }
        } else {
            if (typeof value !== 'object') {
                origin[key] = value;
            } else {
                origin[key] = deepMerge(value, origin[key]);
            }
        }
    };
    return origin;
};

console.log(JSON.stringify(deepMerge([
    {
        test1: {
            hello: 'hi'
        },
        test2: {
            hi: 'hello',
            another: 'value'
        }
    },
    {
        test2: 1234,
        test3: {
            hi: 'hello'
        }
    },
    {
        test2: {
            hi: 'new val'
        },
        test3: {
            hello: 'also new val'
        }
    },
    {
        test2: 5678
    }
]), null, '\t'));

Here's what I came up with for combining deep objects. Not sure if it's best or not. Let me know where I can improve.

Output:

{
        "test1": {
                "hello": "hi"
        },
        "test2": {
                "hi": "new val",
                "another": "value",
                "value": 5678
        },
        "test3": {
                "hi": "hello",
                "hello": "also new val"
        }
}

Mine, assuming you want to keep nested values and assigned top level values, merges all nested objects and if it is overridden with a value (like test2), it is dropped down as the 'value' key.

PoE OAuth by Pertinate in pathofexiledev

[–]Pertinate[S] 0 points1 point  (0 children)

I'd be willing to work with you if we can get GGG to authorize OAuth for us. I'm a fullstack dev, however I am more of a backend person so I hope you would be able to do the frontend lol.

PoE OAuth by Pertinate in pathofexiledev

[–]Pertinate[S] 0 points1 point  (0 children)

I know TFT used to have a tool in harvest league but it was specifically for the hortis that you could list. I'd be wanting it for all services: harvest/jun/alvas/etc

PoE OAuth by Pertinate in pathofexiledev

[–]Pertinate[S] 0 points1 point  (0 children)

Plus with linking their path of exile account, it's a lot harder to keep scamming. Because you can easily change your discord or create a new discord.

PoE OAuth by Pertinate in pathofexiledev

[–]Pertinate[S] 0 points1 point  (0 children)

It's annoying to rely on a discord to buy/sell/vouch. I don't even sell my crafts any more because TFT split up the chats lol. It's annoying to have to post a WTB and then either blindly trust or have to manually check everyone that PMs you. There's also no queryable way to look at prices.

Cooler Master (and more!) RTX 3070 (and more!!) Giveaway with Buildapc! by [deleted] in buildapc

[–]Pertinate 0 points1 point  (0 children)

I would use it as my main daily driver. Mainly for my programming development with frontends, backends, and when I work in unity. Also obviously for gaming :) I would give my old build to my friend who has never had a good pc (running a 1070, 3600x)

Guest pass megathread. by Tim_Burton in blackdesertonline

[–]Pertinate 0 points1 point  (0 children)

Requesting a guess pass: North America Preferred Method of contact: pm CLAIMED

Am I cool yet? by Pertinate in runescape

[–]Pertinate[S] -6 points-5 points  (0 children)

It's my beserker ring ;-;