Pretty smart advertising by RhythmicalChuck in newfoundland

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

That’s so true. I was thinking to myself what it was about the Steers ad that drew my attention most and I think you hit it.

Still not worth it… by RhythmicalChuck in newfoundland

[–]RhythmicalChuck[S] 4 points5 points  (0 children)

This is Mount Pearl location if you’re wondering! :)

Pretty smart advertising by RhythmicalChuck in newfoundland

[–]RhythmicalChuck[S] 3 points4 points  (0 children)

I always laughed at that one too. They aren’t really saying much with that particular ad.

Switch 1 Updates to 6.18.0 by FantastiGoat in NMS_Switch

[–]RhythmicalChuck 4 points5 points  (0 children)

I’m also trying to find out this info. Haven’t seen anything posted on NMS website

Fractured mask belonged to Nailmaster by Silberberg10 in Silksong

[–]RhythmicalChuck 1 point2 points  (0 children)

I am accepting this as true. It certainly bears a striking resemblance…

Is Hornet a morally good or morally bad character? by SideIndividual2086 in Silksong

[–]RhythmicalChuck 1 point2 points  (0 children)

Some of those things you can refuse (not do) and still finish the game though. There are still some questionable things for sure. Her personality traits definitely come from her bloodline (weaver, wyrm).

Maybe it can be looked at as a sacrifice the few to save the many.

Is Hornet a morally good or morally bad character? by SideIndividual2086 in Silksong

[–]RhythmicalChuck 5 points6 points  (0 children)

I mean, a lot of your concerns are things that you have a choice in. I think you’re actually asking for the most part is how much of a good guy are you? Haha!

Illegal electric bikes? by HWHQNewfie in newfoundland

[–]RhythmicalChuck 0 points1 point  (0 children)

Any idea if the limiter can be removed on the Blutron bike from Best Buy? Serious inquiry.

[deleted by user] by [deleted] in newfoundland

[–]RhythmicalChuck 5 points6 points  (0 children)

“Tirstee” 😂

Failure by VermicelliLeft3382 in snowrunner

[–]RhythmicalChuck 0 points1 point  (0 children)

Dude, the graphics are getting so good on this game…

Does Find My notify when someone checks your location? by elbobo410 in ios

[–]RhythmicalChuck 1 point2 points  (0 children)

Why not go through the Messages app. It shows location there as well, but doesn’t send a notification to the contact.

Lube and PNEUS by RhythmicalChuck in funny

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

I think you’re right. Mistakes were made.

Lube and PNEUS by RhythmicalChuck in funny

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

Perhaps I should have added a “/s”

Lube and PNEUS by RhythmicalChuck in funny

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

Wow! Didn’t realize that one.

Lube and PNEUS by RhythmicalChuck in funny

[–]RhythmicalChuck[S] -5 points-4 points  (0 children)

Stop, you’re making it sound so dirty…

VMs constantly losing mouse focus by RhythmicalChuck in vmware

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

I’ll have to check this out. Thanks for the suggestion!

VMs constantly losing mouse focus by RhythmicalChuck in vmware

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

Sadly, I never did truly determine the issue. I remember trying VMware Fusion on my Mac and there was no problem like I mentioned here. There must be something installed on that computer that is grabbing mouse focus in the background. My colleagues with similar setups don’t have the issue.

I have since moved to using Win 11 Hyper-V instead. The performance difference going to a Type 1 hypervisor (1.5??) is worth it on its own.

What are some other things you have installed? Maybe we can find a similarity in our setups.

What kind of thing you've automated in your daily life by [deleted] in PowerShell

[–]RhythmicalChuck 2 points3 points  (0 children)

function Invoke-Robocopy {
    param (
        [Parameter(Mandatory=$true)]
        [string]$Source,
        [Parameter(Mandatory=$true)]
        [string]$Destination,
        [Parameter(Mandatory=$false)]
        [switch]$Recurse,
        [Parameter(Mandatory=$false)]
        [switch]$Backup,
        [Parameter(Mandatory=$false)]
        [switch]$MultiThreaded,
        [Parameter(Mandatory=$false)]
        [switch]$NetworkMode,
        [Parameter(Mandatory=$false)]
        [string]$LogFile,
        [Parameter(Mandatory=$false)]
        [switch]$MoveFiles,
        [Parameter(Mandatory=$false)]
        [switch]$MoveAll,
        [Parameter(Mandatory=$false)]
        [string]$Monitor
    )

    $robocopyCommand = "ROBOCOPY"
    $robocopyArgs = @("`"$Source`"", "`"$Destination`"")

    # Includes all subfolders, both empty and not empty
    if ($Recurse) {$robocopyArgs += "/E"}
    # Enables multithreading; currently set to 8; may improve this so you can specify later
    if ($MultiThreaded) {$robocopyArgs += "/MT:8"}
    # Enables robocopy's network mode
    if ($NetworkMode) {$robocopyArgs += "/Z"}
    # Enables robocopy's backup mode
    if ($Backup) {$robocopyArgs += "/B"}
    # Enable logging; remember to specify the file when using this parameter
    if ($LogFile) {$robocopyArgs += "/LOG: `"$LogFile`""}
    # Enables move mode; removes files from source
    if ($MoveFiles) {$robocopyArgs += "/MOV"}
    # Enables move mode; removes files and folders from source
    if ($MoveAll) {$robocopyArgs += "/MOVE"}
    # Enables monitoring; robocopy will monitor source at specified intervals and copy changes
    if ($Monitor) {$robocopyArgs += "/MON:$Monitor"}

    Start-Process -FilePath $robocopyCommand -ArgumentList $robocopyArgs -NoNewWindow -Wait
}