ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
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 SASManually | |
| { | |
| using System; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| class Program | |
| { | |
| public static string MakeBlobReadSignature( | |
| string accountname, string accountkey, DateTime? starttime, DateTime? endtime, string container, string blobname) |
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
| class VM { | |
| public name: KnockoutObservableString = ko.observable(""); | |
| public commits: KnockoutObservableArray = ko.observableArray(); | |
| public changeName: () => void; | |
| constructor(name: string) { | |
| this.name(name); | |
| this.changeName = () => { this.name("Fumbler"); }; | |
| } | |
| } |
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
| <?php | |
| error_reporting(E_ALL); | |
| require_once "azure_sdk/library/Microsoft/WindowsAzure/Storage/Blob.php"; | |
| define("STORAGE_ACCOUNT_NAME", "......"); | |
| define("STORAGE_ACCOUNT_KEY", "......"); | |
| $storageClient = new Microsoft_WindowsAzure_Storage_Blob('blob.core.windows.net', STORAGE_ACCOUNT_NAME, STORAGE_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
| SET _CSRUN_STATE_DIRECTORY=C:\A |
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
| Microsoft.WindowsAzure.Storage.Blob.CloudPageBlob snapshot = ...; | |
| var builder = new Microsoft.WindowsAzure.Storage.Core.UriQueryBuilder(); | |
| builder.Add("snapshot", snapshot.SnapshotTime.Value.ToUniversalTime() | |
| .ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffff'Z'", CultureInfo.InvariantCulture)); | |
| string uriRequest = builder.AddToUri(snapshot.Uri).AbsoluteUri; |
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
| POST https://management.core.windows.net/ ..... subscriotion guid ... /services/hostedservices/golzheimcms/deployments/golzheimcms/roleInstances/golzheimcms/Operations HTTP/1.1 | |
| Host: management.core.windows.net | |
| Content-Type: application/xml; charset=utf-8 | |
| x-ms-version: 2013-06-01 | |
| <ShutdownRoleOperation xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> | |
| <OperationType>ShutdownRoleOperation</OperationType> | |
| <PostShutdownAction>StoppedDeallocated</PostShutdownAction> | |
| </ShutdownRoleOperation> |
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
| makecert -r -pe -n "CN=Christian Geuer-Pollmann Azure Management Certificate" -a sha1 -ss My -len 2048 -sy 24 -b 01/01/2013 -e 12/31/2099 |
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
| makecert -r -pe -n "CN=Christian Geuer-Pollmann Azure Management Certificate" -a sha1 -ss My -len 2048 -sy 24 -b 01/01/2013 -e 12/31/2099 |
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
| # | |
| # Check if Erlang is installed | |
| # | |
| $erlangkey = Get-ChildItem HKLM:\SOFTWARE\Wow6432Node\Ericsson\Erlang -ErrorAction SilentlyContinue | |
| if ( $erlangkey -eq $null ) { | |
| Write-Host "Erlang not found, need to install it" | |
| Start-Process -Wait otp_win64_R16B03.exe /S | |
| } | |
| # |