This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var connection = KrakenConnection.Create("key", "secret", true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"MyData": "Kevin Bronsdijk", | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"MyData": "Kevin Bronsdijk", | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema":"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2015-08-01-preview/workflowdefinition.json#", | |
"actions":{ | |
"Http":{ | |
"conditions":[ | |
{ | |
"dependsOn":"Values_GetJsonString" | |
} | |
], | |
"foreach":"@Json(body('Values_GetJsonString')).employees", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2015-08-01-preview/workflowdefinition.json#", | |
"actions": { | |
"CallAutomationWebhook": { | |
"conditions": [], | |
"inputs": { | |
"body": "[ { \"Id\": 1, \"Name\": \"S1\", \"ServiceName\": \"S1\" }, { \"Id\": 2, \"Name\": \"S2\", \"S2\": \"M\" }]", | |
"method": "POST", | |
"uri": "https://s1events.azure-automation.net/webhooks?token={token}}" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Http": { | |
"conditions": [ | |
{ | |
"dependsOn": "GetArrayOfStringsJson" | |
} | |
], | |
"foreach": "@body('GetArrayOfStringsJson')", | |
"inputs": { | |
"body": "@{item()}", | |
"method": "POST", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using AzureADReportingApi; | |
using AzureADReportingApi.Http; | |
using AzureADReportingApi.Models; | |
var connection = AzureConnection.Create( | |
"clientId", | |
"clientSecret", | |
"tenantDomain" | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"uri": "http://www.microsoft.com", | |
"method": "GET" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Azure Blob Storage | |
using SeaMist.Model.Azure; | |
var krakenClient = new KrakenClient(connection); | |
response = await client.OptimizeWait( | |
new Uri("http://image-url.com/file.jpg"), | |
new DataStore( | |
"account", | |
"key", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Win Config | |
Install-WindowsUpdate -AcceptEula | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
#Base Apps | |
choco install 7zip.commandline | |
choco install 7zip.install | |
choco install dropbox |