This Gist, although public - is using a VM image that is private due to licencing issues. So the only interesting part of this is as a reference to how to set up a workshop environment with X number of virtual machines from your own user image.
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://www.microsoftazurepass.com | |
1. MC5K0T98D6RB1F | |
2. MCGPBWTTKDMD9G | |
3. MC8JVRXIC2D1QN | |
4. MCJO6UI4K893YO | |
5. MCH4AJVPLE58F7 | |
6. MC9YVE0ED3VWWF | |
7. MCK36HK0K9QX5F |
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 System; | |
using System.Text; | |
using System.Threading; | |
using Microsoft.ServiceBus.Messaging; | |
using Newtonsoft.Json; | |
namespace EventHubDataGenerator | |
{ | |
class Program | |
{ |
As a follow-up to the labs below and you have big-data scenarios, you should have a look at these
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
private IEnumerable<UIElement> GetAllChildrenRecursively() | |
{ | |
var elements = new List<UIElement>(); | |
this.GetAllChildrenRecursively(this, elements); | |
return elements; | |
} | |
private void GetAllChildrenRecursively(FrameworkElement element, IList<UIElement> elements) | |
{ |
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
<!-- | |
Basically, the idea is to provide a syntax for doing client side rendering. | |
Based on my experience with Silverlight - I did have in mind that it looks quite a lot like it. | |
--> | |
<Grid> | |
<Grid.ColumnDefinitions> |
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
<system.web> | |
<httpHandlers> | |
<add path="*.js" verb="*" type="System.Web.StaticFileHandler"/> | |
<add path="*.css" verb="*" type="System.Web.StaticFileHandler"/> | |
<add path="*.html" verb="*" type="System.Web.StaticFileHandler"/> | |
</httpHandlers> | |
</system.web> |
NewerOlder