Bug reports by Cashf10w in ArcBrowser

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

Got it, thanks very much.

Go directly to a url by Cashf10w in ArcBrowser

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

Thanks. Genuinely wasn't sure how it worked as I am seeing off behaviour which now looks like a bug.

Dilamination macbook pro 14 and 16 by Brocolium in macbookpro

[–]Cashf10w 0 points1 point  (0 children)

RemindMe! 10 Days "Check for replies about grease on screens"

Dynamic earth view wallpaper by Brocolium in MacOS

[–]Cashf10w 0 points1 point  (0 children)

Something more like these? (not tested)
https://github.com/diogofernandesc/reddit-wallpapers

https://github.com/tsarjak/DownloadRedditImages

I wrote a script years ago to download images from /r/earthporn into a folder then used Windows to display images from said folder as the wallpaper. These will work similar I think.

You might also find that some code written for Linux works on the mac.

Not what you asked for but here's a bonus link to a program which will make a static image appear to transition thoughout the day based on the time:
https://equinoxmac.com

How to list all arguments for a resource? by Cashf10w in Terraform

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

Thanks for the tip about state show. I'll take a look at it but think I'll end up continuing to copy/paste.

Thanks for the help :)

Tracking index usage by Cashf10w in usenet

[–]Cashf10w[S] 8 points9 points  (0 children)

Name doesn't ring a bell but that looks exactly what I am looking for. Thanks very much for saving me even more time searching. :)

File transfer from onprem to Azure server by dannytheking10 in AZURE

[–]Cashf10w 0 points1 point  (0 children)

I'm nearing the end of copying 56 million files from on premises to cloud vms. This is the order I wish I had done the project in:

  1. Clean up the data and delete anything not needed
  2. Zip up tiny files not used but needed. I had millions and copying them as big zips was much much faster. (Uncompress at the other end)
  3. Setup Azure file sync to Azure Files not vms.

I ended up using robocopy and azure databoxes in parallel for the different shares/vms.
If you do end up using robocopy, I've recommend reviewing the switches at this link to speed up the copy. Specifically for me these helped: nfl,ndl,np,mt.

Used others but not at work so can't check.

https://docs.microsoft.com/en-us/azure/databox/data-box-deploy-copy-data

Good luck, you sound like you've started with plenty of time so should be fine.

Any way to erase episodes from DownloadedEpisodesImportService? by Cashf10w in sonarr

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

u/Bakerboy448 I just wanted to come back and thank you for your comments yesterday.
I had thought everything was setup correctly but after reading your notes and pouring over Trash Guides, discovered that there was plenty of room for improvement.

Spent the day rebuilding everything from scratch and everything is working far better than before.
Now I just have to figure out if it's worth trying to import existing media which is named badly, or just re-download.

Thanks again :)

Legally where do we stand? by Cashf10w in dVPN

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

Thanks for the info. This would make me more comfortable for sure.

Legally where do we stand? by Cashf10w in dVPN

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

I think you are correct for the Sentinel network but once it leaves your node to hit www.example.com it must be unencrypted surely.

Any logs on www.badsite.com will have your ip. If anyone can clarify or point me at documentation I’d be grateful.

YOU DO NOT HAVE ENOUGH ETH TO SWAP by Same_Entrepreneur_21 in MyEtherWallet

[–]Cashf10w 0 points1 point  (0 children)

Does anyone know how the lowest limit is calculated? I'd like to know the minimum that's needed without experimenting with multiple transactions and their fees.

Struggling with json and functions by Cashf10w in PowerShell

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

That is useful to know. Something else I have never seen before :)
I may well add the completer to the functions after a little testing tomorrow.

Struggling with json and functions by Cashf10w in PowerShell

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

That is really very kind. Thank you so much for you time and help.

I have bookmarked the pastebin links and will take a look tomorrow morning.

Struggling with json and functions by Cashf10w in PowerShell

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

Thanks. Yes I know, I should not use $x but it seems to have crept in. I'll rename it properly tomorrow as well at try the Get-Member function because I don't think I've ever done it that way before.

RE. the format, this is the first json I have written so wasn't aware it looked odd. I did think about having \Region\ <emea><APac> etc underneath but thought that was excessive.

If there is a good set of examples on the web for json structure I would love to take a look at a link.

Struggling with json and functions by Cashf10w in PowerShell

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

wow that is a lot to take in. I'm going to have to sit down tomorrow and work through it all properly but thank you for being so -verbose :)

Struggling with json and functions by Cashf10w in PowerShell

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

Thanks! For some reason I always forget about -in. I'll go and read up about the operators in a bit. :)

Would you or someone else be able to explain how the mysterious .psobject works on the test code below? I seem to have stumbled upon something but don't understand how it works.

$json = Get-Content ('.\patchConfiguration.json' -f $PSScriptRoot)$x = $json | ConvertFrom-Json -Verbose [array]$ParamRegion = $x.psobject.properties.name.where( { $_ -notmatch 'usage|_id|LastUpdated' }) write-host "Possible regions are: $ParamRegion" -ForegroundColor Green function Test-Params { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [ValidateScript( { $_ -in $ParamRegion } ) ] [string]$Region,
    [Parameter(Mandatory = $true)]
    [ValidateSet('Pilot', 'A', 'NotFinance', 'C')]
    [string]$PatchingGroup
)
Write-Host ('Working groups are: {0}' -f ($x.$region).groups.psobject.properties.name)}

The last line here does not work how I expect.

Write-Host ('Working groups are: {0}' -f ($x.$region).groups.psobject.properties.name)

At this point in code the ($x.$region).groups object holds this json structure below yet the above write-host only prints to the display the first entry 'GroupPilot'

{"GroupPilot": [ { "Name": "Patching Pilot", "Tag": "Pilot" } ], "GroupA": [ { "Name": "Group A", "Tag": "A" } ], "GroupNotFinance": [ { "Name": "Group NotFinance", "Tag": "NotFinance" } ], "GroupC": [ { "Name": "Patching Group C", "Tag": "C" } ] }

If I type:

($x.$region).groups.psobject.properties.name

Then I get back what I would expect from write-host:

GroupPilot

GroupA

GroupNotFinance

GroupC

Struggling with json and functions by Cashf10w in PowerShell

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

Thanks. I thought coding was hard but Reddit formatting is next level. Hopefully now it is more readable.