query="[?contains(instanceId,'providers/Microsoft.Compute/virtualMachines/') && (contains(product,'Virtual Machines') || contains(product,'VM RI - Compute'))].{start:usageStart,end:usageEnd,id:instanceId}"
echo -e "from\tto\tID" > usage.csv
for sub in $(az account list | jq -r ".[].id")
do
az consumption usage list \
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
| ssh 52.166.92.21 | |
| # | |
| # Install jq (https://stedolan.github.io/jq/) | |
| # | |
| sudo apt-get -y install jq | |
| # | |
| # Install yq & xq (https://github.com/jeffbr13/xq) | |
| # |
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/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "variables": { | |
| "nsgName": "nsg", | |
| "numberOfASGs": 130, | |
| "apiVersions": { "network": "2018-01-01" } | |
| }, | |
| "resources": [ | |
| { |
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
| defmodule StatefulServer do | |
| defmodule Demo do | |
| alias StatefulServer.WorkerSupervisor, as: WorkerSupervisor | |
| def demo do | |
| once_per_second = Demo.start(200) | |
| ten_per_second = Demo.start(220) | |
| hundret_per_second = Demo.start(250) | |
| IO.puts("Launced processes") |
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
| namespace redis_parkhaus | |
| { | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| using StackExchange.Redis; | |
| class Program | |
| { | |
| static async Task Main(string[] args) |
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
| #!/bin/bash | |
| aadTenant="sapdevchallenge.onmicrosoft.com" | |
| resource="https://sapteameagleui.blob.core.windows.net" | |
| container="tobias" | |
| blob="test" | |
| deviceResponse="$(curl \ | |
| --silent \ | |
| --request POST \ |
- Limit concurrency https://play.golang.org/p/htP6RXGaq65
- renew lease https://play.golang.org/p/49JyWl-dyCt
- Limit concurrency and leases https://play.golang.org/p/JTtDpr4O0Ag
- Limit concurrency and leases https://play.golang.org/p/_ig6v28MAV1
- Lease, blob upload and concurrency https://play.golang.org/p/H067BMRacsb
- Pipelines https://play.golang.org/p/-Vt-enOQSzd and https://play.golang.org/p/aupOsAfu5fs
Please note all of these shell samples use jq for JSON parsing...
#!/bin/bash
aadTenant="chgeuerfte.onmicrosoft.com"
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
| Moved to https://github.com/chgeuer/external_gardener_machine-controller-manager/blob/master/pkg/driver/driver_azure.go |
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
| import argparse | |
| import sys | |
| import grp | |
| import pwd | |
| import subprocess | |
| import os | |
| import json | |
| class PreRegistration: |