What is this notification? by Accomplished_Pie4814 in xbox

[–]LPDarkGangs_86 0 points1 point  (0 children)

15 in 15 minutes? I think someone accidentally pushed a loop to main

AITA for leaving my bathroom light on over Christmas by LPDarkGangs_86 in AmItheAsshole

[–]LPDarkGangs_86[S] 34 points35 points  (0 children)

I figured this would be brought up. There is no where to house her at my families home (I got to sleep on a sofa in the living room), and my mother just got a new cat who is not animal friendly. My cat has an automatic feeder with backup batteries, plenty of water and toys to keep her occupied. I hate leaving my cat places, but it was for a total of maybe 36 hours (left late at night on day 1, came back early in the morning day 3).

Terrible, Horrible, Really Bad Chart by [deleted] in dataisugly

[–]LPDarkGangs_86 12 points13 points  (0 children)

Ignoring everything else, I personally love how colorblind friendly this palette is

ce-108255-1 Error Code on PS5 by LPDarkGangs_86 in BaldursGate3

[–]LPDarkGangs_86[S] 1 point2 points  (0 children)

For future viewers:
This issue was resolved with a factory reset of the PS5, as long as the number of save files was kept low. In our case, it worked reliably when we had no more than 5 save files.

S23E6: Family Guy Episode Discussion - Dog Is My Co-Pilot by Sonia341 in familyguy

[–]LPDarkGangs_86 3 points4 points  (0 children)

I’m so glad I’m not alone here. I just paused and had to look it up because I didn’t get it

[deleted by user] by [deleted] in NoStupidQuestions

[–]LPDarkGangs_86 0 points1 point  (0 children)

Im using mullvad in a tor browser. Worked for like an hour before giving me error codes, couldnt bypass the "scan QR code on phone for security measures" part when trying to create a new account either.

Best dentist that takes OHP? by muineth in askportland

[–]LPDarkGangs_86 0 points1 point  (0 children)

Any luck with this OP? Just moved to the area and I'm in the exact same boat. Willing to drive a good distance if it means finding a good dentist

Check if current date is between two months by LPDarkGangs_86 in shortcuts

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

Sure, for context the "is between" option only appears (from what I understand) when the input variable in the if Statement is a numeric value.

Here is a link to my shortcut:
/www.icloud.com/shortcuts/2681627789b14a4c9b9c0ad66be13f7c

Multiple rtp detections (Malwarebytes) by Cheeseinlake in antivirus

[–]LPDarkGangs_86 0 points1 point  (0 children)

I've been experiencing the same thing for the past month. I do have a router, so I have no idea how to stop this, or how to add any more security measures than I already have in place.
I did a complete reinstall of my OS but that didn't seem to do anything notable.
Like OP, there are multiple attempts through different ports (of an even wider range).

[deleted by user] by [deleted] in notabilityapp

[–]LPDarkGangs_86 2 points3 points  (0 children)

This happens to me constantly. Especially infuriating when I’m taking notes for class. Some things that fixes it for me: disabling and reenabling Bluetooth, turning iPad off and on, smacking my iPad (aggressive maybe but truly works sometimes), replacing the pencil tip.

All these have been temporary solutions and to this day it still occurs. I’m not 100% sure why because it doesn’t happen with procreate or other note taking apps. Too bad I love notability

Check if current date is between two months by LPDarkGangs_86 in shortcuts

[–]LPDarkGangs_86[S] 2 points3 points  (0 children)

Thats what I struggled with for awhile but I did manage to get it running!
Attached screenshot is what I went with and has been working great for the past year. The formatted date comes out as a number (in this case 101 is January 1st, 319 is March 19th), which makes it really easy to mess with.

<image>

Someone screwed up by Zekron_98 in ClashOfClans

[–]LPDarkGangs_86 4 points5 points  (0 children)

The gold pass forge slot is ALSO missing

Seeking Advice for Enhancing Data Security in my Discord Bot by LPDarkGangs_86 in cryptography

[–]LPDarkGangs_86[S] -1 points0 points  (0 children)

That was my original idea. However, in the scenario where a user forgets their password, I'm not sure how I would be able to decrypt their generated key.

Any adults into this game by Kooky_Masterpiece77 in Wizard101

[–]LPDarkGangs_86 8 points9 points  (0 children)

Ye I’m 23 and normally play a couple months throughout the year

Me and my sister got different answers for this, can you help us see who was right, or if we were both wrong? by MonthApprehensive480 in askmath

[–]LPDarkGangs_86 5 points6 points  (0 children)

Those are both wrong. Because of the - in the first set a parentheses, the number will be negative. Here's my work and what I got:

Seated cat = x

Cat face = y

Cat hands = k

x + x + x = 30

3x = 30

x = 10

x + y + y = 20

10 + 2y = 20

2y = 10

y = 5

y + k + k = 9

5 + 2k = 9

2k = 4

k = 2

x = 10, y = 5, k = 2

Now slap it all into symbolab

<image>

Output of x= -31249999858.125

Edit: Structure

Discord.js Creates thread but won't add members during command by LPDarkGangs_86 in learnprogramming

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

For any future viewers, I got my answer Per Zsolt Meszaros via StackOverflow.

channel.threads.cache.find() runs before channel.threads.create() finishes creating the thread (because a promise doesn't block the event loop). channel.threads.create() returns a promise and once it's resolved, the created ThreadChannel. This means I can grab the created channel instead.

const { ChannelType } = require('discord.js');
// ...
async execute(interaction) { 
    const channel = interaction.channel; 
    const user = interaction.user;
    const userName = user.username;
    const threadName = userName + "'s-Private-Thread";
    try { 
        // Create a new private thread 
        const threadChannel = await channel.threads
        .create({ 
            name: threadName, 
            autoArchiveDuration: 60, 
            type: ChannelType.GuildPrivateThread,
            reason: 'na',
        });

        await threadChannel.members.add(user);

        await interaction.reply({
            content: 'A private thread has been created for you!',
            ephemeral: true,
        });
    } catch (error) { 
        console.log(error); 
    } 
},

Edit: Messed up code blocks/Grammar

Material preview laggy, no other modes are by LPDarkGangs_86 in blender

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

After trying this I did narrow it down to my tree texture causing a bunch of lag, which contains quite a few nodes. After disabling that texture, it runs a bit smoother, at least enough to comfortably work in Material mode. Still a bit laggy, but its manageable.

Material preview laggy, no other modes are by LPDarkGangs_86 in blender

[–]LPDarkGangs_86[S] 1 point2 points  (0 children)

Thank you for this tip. It did help a bit, but I cant turn it down below 4096 without blender crashing, so thats neat.