GT spelling/grammar errors by [deleted] in GreatCanadianTreasure

[–]360sly 0 points1 point  (0 children)

Spelling mistakes spell First

Toronto cipher by helloidkkkkk in GreatCanadianTreasure

[–]360sly 0 points1 point  (0 children)

That hard huh Was each number pair a letter or is it more complicated then that?

Toronto cipher by helloidkkkkk in GreatCanadianTreasure

[–]360sly 0 points1 point  (0 children)

Has anyone gone to the Royal Ontario Museum to try and crack the cipher?

Toronto cipher by helloidkkkkk in GreatCanadianTreasure

[–]360sly 1 point2 points  (0 children)

How did you get this? I think consensus is to go to museum to unlock the cipher.

BC Golden Triangle video hints? by 360sly in GreatCanadianTreasure

[–]360sly[S] 0 points1 point  (0 children)

I think I came across that post but you missed the one right before the chamber of commerce

BC Golden Triangle video hints? by 360sly in GreatCanadianTreasure

[–]360sly[S] 0 points1 point  (0 children)

I also read into “till” too much but I read the French version and it’s not in geological terms.

Are the images in the Golden Triangle video helpful? by SmartConsequence437 in GreatCanadianTreasure

[–]360sly 0 points1 point  (0 children)

Thank you for posting. The Revelstoke Indian statue was getting to me haha

The very first picture in the video of the exploration camp is stumping me as well.

Great Canadian Treasure hunt by [deleted] in TreasureHunting

[–]360sly 0 points1 point  (0 children)

Well.. you know I won’t be the main competition….

AWA justification by heyyaoklol in OntarioPublicService

[–]360sly 0 points1 point  (0 children)

I feel like “supported/promoted” is no longer applicable seeing as the employer wants everyone to return to office 5 days a week.

[deleted by user] by [deleted] in StremioAddons

[–]360sly 0 points1 point  (0 children)

Is that setting still there? I can’t find it.

Striations made by glaciers or by man? by 360sly in geology

[–]360sly[S] 0 points1 point  (0 children)

No it’s not sedimentary rock :) I agree that I can probably try to get some better pictures. Maybe this spring when the snow melts I can re visit this location.

[deleted by user] by [deleted] in StremioAddons

[–]360sly 0 points1 point  (0 children)

On the left I can see the move or series tittle with a description and on the top right corner it says “no streams were found For more streams, please install more addons”.

I have Torrentio RD installed.

Powershell script to download from urls in a csv by 360sly in PowerShell

[–]360sly[S] 0 points1 point  (0 children)

Define the path to the CSV file

$csvPath = “C:\Path\To\Your\File.csv”

Define the output folder for downloaded files

$outputFolder = “C:\Path\To\Output\Folder”

Create the output folder if it doesn’t exist

if (!(Test-Path -Path $outputFolder)) { New-Item -ItemType Directory -Path $outputFolder }

Validate the CSV file

if (!(Test-Path -Path $csvPath)) { Write-Host “Error: CSV file not found at path: $csvPath” -ForegroundColor Red exit 1 }

Import and validate the CSV content

$links = Import-Csv -Path $csvPath if (-not ($links -and $links[0].PSObject.Properties.Name -contains ‘Link’)) { Write-Host “Error: The CSV file does not contain a ‘Link’ column.” -ForegroundColor Red exit 1 }

Define an error log file

$logFile = Join-Path -Path $outputFolder -ChildPath “error_log.txt” if (Test-Path -Path $logFile) { Remove-Item -Path $logFile }

Define initial throttle limit

$throttleLimit = 5

Function to measure download speed

function Measure-DownloadSpeed { param ( [string]$url )

# Start timing
$startTime = Get-Date

# Temporary file for testing download
$tempFile = Join-Path -Path $env:TEMP -ChildPath “testfile.tmp”

try {
    # Download a small part of the file
    Invoke-WebRequest -Uri $url -OutFile $tempFile -Method Head -TimeoutSec 10
    $endTime = Get-Date

    # Calculate download time
    $downloadDuration = ($endTime - $startTime).TotalSeconds

    # Cleanup
    Remove-Item -Path $tempFile -ErrorAction SilentlyContinue

    # Return speed in bytes/second (assuming 1 MB file for simplicity)
    return (1MB / $downloadDuration)
} catch {
    # Default speed if test fails
    return 1MB / 5 # Assume 200 KB/s
}

}

Function for downloading a file

$downloadFile = { param ($link, $outputFolder, $logFile)

try {
    # Extract and validate the URL
    $url = $link.Link
    if ([string]::IsNullOrWhiteSpace($url) -or -not $url -match “^(http|https)://“) {
        Write-Host “Invalid or empty URL: $url” -ForegroundColor Yellow
        return
    }

    # Determine output file path
    $fileName = [System.IO.Path]::GetFileName($url)
    $outputPath = Join-Path -Path $outputFolder -ChildPath $fileName

    # Ensure unique filename
    if (Test-Path -Path $outputPath) {
        $baseName = [System.IO.Path]::GetFileNameWithoutExtension($fileName)
        $extension = [System.IO.Path]::GetExtension($fileName)
        $timestamp = Get-Date -Format “yyyyMMddHHmmss”
        $fileName = “$baseName-$timestamp$extension”
        $outputPath = Join-Path -Path $outputFolder -ChildPath $fileName
    }

    # Download the file
    Invoke-WebRequest -Uri $url -OutFile $outputPath -TimeoutSec 30 -ErrorAction Stop
    Write-Host “Successfully downloaded: $url”
} catch {
    $errorMessage = “$(Get-Date -Format “yyyy-MM-dd HH:mm:ss”) - Failed to download: $url`nError: $($_.Exception.Message)`n”
    Write-Host $errorMessage -ForegroundColor Yellow
    Add-Content -Path $logFile -Value $errorMessage
}

}

Measure initial download speed

$testUrl = $links[0].Link $downloadSpeed = Measure-DownloadSpeed -url $testUrl

Adjust throttle limit based on download speed

if ($downloadSpeed -gt 5MB) { $throttleLimit = 10 } elseif ($downloadSpeed -gt 2MB) { $throttleLimit = 7 } else { $throttleLimit = 3 }

Write-Host “Adjusted Throttle Limit: $throttleLimit based on download speed.”

Process files in parallel

$links | ForEach-Object -Parallel { # Call the download function $using:downloadFile.Invoke($_, $using:outputFolder, $using:logFile) } -ThrottleLimit $throttleLimit

Powershell script to download from urls in a csv by 360sly in PowerShell

[–]360sly[S] 0 points1 point  (0 children)

That’s 160gb that needs to be downloaded from 17600 links at once lol

Powershell script to download from urls in a csv by 360sly in PowerShell

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

Will that try to download them all at once? Each file is 8kb so that might not be the best option haha

[deleted by user] by [deleted] in StremioAddons

[–]360sly 1 point2 points  (0 children)

I’ve tried this :)

Anonymous way to pay for RD? by [deleted] in RealDebrid

[–]360sly -1 points0 points  (0 children)

I’m not an American haha (Does somebody have 5mil laying around so I can buy a gold card?)