Create and fill hash of arrays in Powershell
You can initialize and fill multidimension hashes (arrays) in powershell this way:
$orderIds = New-Object System.Collections.ArrayList
$orderIds = @{
ids = @(1,2,3,4,5);
deps = @('one', 'two', 'three', 'four', 'five')
};

Create new list item in SharePoint with CSOM and .Net (C#) in 6 steps
PostgreSQL in Docker: when DBeaver lies (and psql saves the day)