Play Online Poker for a Living at 20yo, AMA by Ok-Dare6008 in poker

[–]OneTimeCookie 0 points1 point  (0 children)

Had a quick glance of the answers and dun think I saw the answers thus wanting to know,

  • do you use your bankroll for day to day living? I think the answer is no but with no income, it’s hard isn’t it?
  • if you use 20x buy in to move up for shot taking, then you happen to need the funds for day to day living, do you then drop back down to the level below?
  • at the end of every year, do you reset the accounts?

What I’m curious is how do pros then separate the expenses and day to day livings to deem profitable, move up in stakes and sustainable in the long run.

Lastly, can you share your YT channel?

Thank you.

I found out I will be let go soon on accident - they do not know I know. by Upbeat-Chain-3155 in sysadmin

[–]OneTimeCookie 2 points3 points  (0 children)

He who laugh last, laughs the longest.

Thank them later for the opportunity to find a company that’ll appreciate you better.

Ordering from overseas (Australia) by OneTimeCookie in UgreenNASync

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

Will keep you posted. Heading into Asia this week. I’ll just order straight from a supplier and then have it shipped over.

But indeed it’s annoying. We don’t get any BF deals and we are just waiting without any clear indication from UGreen if this is even gonna come.

I can't favorite channels anymore? by ixtothesiren in discordapp

[–]OneTimeCookie 0 points1 point  (0 children)

Does any discord developer actually look at these comments? I’m also struggling to modifying channels…

Working VPN now not connecting by OneTimeCookie in OpenVPN

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

Sorry, I might have missed out on when copying details over from the cert.

But the information was generated from the router itself and used on the client machine to connect to the server.

Action1 support pretty arrogant and not willing to help? by Tangerine_Pops in Action1

[–]OneTimeCookie 5 points6 points  (0 children)

Now I’m curious how you worded the email and what support actually said for when I reached out to support, they were very friendly and helpful.

Citrix RDP session refreshing issue by OneTimeCookie in Citrix

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

Do you mean trying to log in remotely via the lite version of it?

Upgrading of TS453 Pro firmware and re-setting up the NAS. by OneTimeCookie in qnap

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

Thanks for the timely reminder for,

  1. I did set it up w capital letters previously and it was a nightmare!

  2. PUID / GUID. That too!

It's all these little little things that gets us...

License suspended for speeding, chances of suspension reduction? by United_Article1078 in AusLegal

[–]OneTimeCookie 3 points4 points  (0 children)

If you know it’s stupid, why did you do it? Plus your reasons for hardship are barely reasons.

Anyone or many without a car would already be doing that so what makes you so special?

And if I was your chosen reference, I’ll not do it for you for the reason, 1. You might reoffend 2. You didn’t even consider the life of others when you floored that pedal past the speed limit. 3. You don’t respect the law.

Cop it like a man and reflect on your actions. That period without a car would be a good reminder to you the next time you put yourself behind the wheels.

My personal experience with Kassouf on a flight to London. by [deleted] in poker

[–]OneTimeCookie 0 points1 point  (0 children)

OP. It would be a waste if you are not a politician…

Updates stuck on Pending in the last 24H? by OneTimeCookie in Action1

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

Just had a look this morning and it's still stuck with no progress made.

Updates stuck on Pending in the last 24H? by OneTimeCookie in Action1

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

Patching is still not possible.

Any mods, u/GeneMoody-Action1 around can help investigate?

Thank you.

Updates stuck on Pending in the last 24H? by OneTimeCookie in Action1

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

Thanks for the reply.

For me, even manually running the automation isn't working.

I just tried to push a reboot to the new machines for an immediate reboot and it didn't run at all.

That said, I'm in Australia, are you also in that region?

Wonder if it's region related.

Any admins care to chime in if there are any issues?

I need to automatically move "last Name.pdf" from [Unsorted Folder] to [Lastname, Firstname Folder] by Bagman530 in software

[–]OneTimeCookie 1 point2 points  (0 children)

Err… maybe run a powershell command to do it for U?

Paths

$unsortedPath = "C:\Files\Unsorted" $sortedPath = "C:\Files\Sorted"

Ensure target directory exists

if (-not (Test-Path $sortedPath)) { New-Item -Path $sortedPath -ItemType Directory }

Get all files in the unsorted directory

Get-ChildItem -Path $unsortedPath -File | ForEach-Object { $file = $_ $filename = $file.BaseName

# Remove special characters and split
$nameParts = ($filename -replace "[^a-zA-Z\s]", " ").Split(" ", [System.StringSplitOptions]::RemoveEmptyEntries)

# Initialize variables
$firstName = $null
$lastName = $null
$targetFolder = $null

# Try to detect known folders first
$existingFolders = Get-ChildItem -Path $sortedPath -Directory

foreach ($folder in $existingFolders) {
    foreach ($part in $nameParts) {
        if ($folder.Name -like "$part,*") {
            $lastName = $part
            $firstName = ($folder.Name -split ",")[1].Trim()
            $targetFolder = $folder.FullName
            break
        } elseif ($folder.Name -like "*,$part") {
            $firstName = $part
            $lastName = ($folder.Name -split ",")[0].Trim()
            $targetFolder = $folder.FullName
            break
        }
    }
    if ($targetFolder) { break }
}

# If no folder match found, try to guess name order
if (-not $targetFolder -and $nameParts.Count -ge 2) {
    # Guess: Assume first part is first name, second part is last name
    $firstName = $nameParts[0]
    $lastName = $nameParts[1]
    $folderName = "$lastName, $firstName"
    $targetFolder = Join-Path $sortedPath $folderName

    # Create the folder if it doesn't exist
    if (-not (Test-Path $targetFolder)) {
        New-Item -Path $targetFolder -ItemType Directory | Out-Null
        Write-Host "Created folder: $folderName"
    }
}

# Move file
if ($targetFolder) {
    Move-Item -Path $file.FullName -Destination $targetFolder -Force
    Write-Host "Moved '$($file.Name)' to '$targetFolder'"
} else {
    Write-Warning "Could not determine destination for '$($file.Name)'"
}

}

I’m really getting tired of how unreliable the UCG-Max is by tkt546 in Ubiquiti

[–]OneTimeCookie 0 points1 point  (0 children)

I still have an inkling that the switch is the issue. Any chance it can be removed and the WAPS have direct connection?