- https://wiki.cyanogenmod.org/w/Angler_Info
- http://forum.xda-developers.com/nexus-6p/general/guides-how-to-guides-beginners-t3206928
- https://www.androidpit.de/cyanogenmod-auf-dem-nexus-6p
- https://developers.google.com/android/nexus/images#angler
- http://www.amazon.de/Vikuiti-GXN800-Blickschutzfolie-Google-Nexus/dp/B016DN9BFW/
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
@REM Globally set Ctrl-D globally to quit Powershell | |
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -Command "Add-Content $PsHome\Profile.ps1 \"`r`nSet-PSReadlineKeyHandler -Key Ctrl+d -Function DeleteCharOrExit`r`n\"" |
- Mesos-DNS is service-discovery for Apache Mesos.
- Project Calico
- Mesos Networking and video
- Networking for Mesos-managed containers
- Per-container Network Monitoring and Isolation
- MesosCon Videos
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
"variables": { | |
"sqlAzureServicePlan": { | |
"Basic": "dd6d99bb-f193-4ec1-86f2-43d3bccbc49c", | |
"S0": "f1173c43-91bd-4aaa-973c-54e79e15235b", | |
"S1": "1b1ebd4d-d903-4baa-97f9-4ea675f5e928", | |
"S2": "455330e1-00cd-488b-b5fa-177c226f28b7", | |
"S3": "789681b8-ca10-4eb0-bdf2-e0b050601b40", | |
"P1": "7203483a-c4fb-4304-9e9f-17c71c904f5d", | |
"P2": "a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0", | |
"P3": "a7c4c615-cfb1-464b-b252-925be0a19446" |
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
goo.gl/tbJRI2 | |
419 | |
_MuchZockt_ | |
Aragorn | |
chgeuer | |
chiniminiz | |
James Cameron | |
Lamon |
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
------------------------------------------ | |
Main problem seems to be this: | |
Could not load signature of Microsoft.WindowsAzure.CloudCredentials:ProcessHttpRequestAsync due to: | |
Could not load file or assembly or one of its dependencies. | |
Could not load signature of Microsoft.WindowsAzure.ICloudTracingInterceptor:SendRequest due to: | |
Could not load file or assembly or one of its dependencies. |
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
/* | |
* await client.CreateAttachmentAsync(document.AttachmentsLink, someStream, new MediaOptions { Slug = "attachment.jpg", ContentType = "..." }); | |
* | |
* var attachments = client.CreateAttachmentQuery(attachmentsLink)... | |
* Attachment attachment = ... | |
* attachment.Id == "attachment.jpg" | |
* | |
* MediaResponse content = await client.ReadMediaAsync(attachment.MediaLink); | |
* content.Slug == "" |
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 Microsoft.ChGeuer | |
{ | |
using Microsoft.Azure; | |
using Microsoft.WindowsAzure.Management.Compute; | |
using Microsoft.WindowsAzure.Management.Compute.Models; | |
using Microsoft.WindowsAzure.Management.Storage; | |
using Microsoft.WindowsAzure.Management.Storage.Models; | |
using Microsoft.WindowsAzure.Storage; | |
using Microsoft.WindowsAzure.Storage.Auth; | |
using Microsoft.WindowsAzure.Storage.Blob; |
app.Use<PureMiddleware>();
app.Use<LoggingMiddleware>();
app.UseHandlerAsync(async (request, response) =>
{
Console.WriteLine("Request " + request.Uri.AbsoluteUri);
response.ContentType = "text/plain";
await response.WriteAsync("Hello, World! " + request.Uri.AbsoluteUri);