Skip to content

Instantly share code, notes, and snippets.

View devuxer's full-sized avatar

Dan M. devuxer

View GitHub Profile
@devuxer
devuxer / HtmlWizard.cs
Last active December 21, 2015 12:08
I was curious if I could build a C# "tag builder" that comes close to the succinctness of the Parrot view engine (https://github.com/ParrotFx/Parrot). This is purely hypothetical at the moment (i.e., HtmlWizard does not really exist), but I believe something very close to this would be possible. Do you like the syntax? Do you think it would be e…
public HtmlWizard GetWelcomeView
{
var model = new { Features = new[] { "Easy to type", "Easy to read", "Easy to maintain" } };
return new HtmlWizard((e /* element */, a /* attribute */, ca /* custom attribute */) =>
{
e.Html(
e.Head(
e.Title("Check out ", e.Strong("HTML Wizard"), "!")),
e.Body(

ReactiveUI 4.0 Preview is live!

After coding some pretty interesting new features, as well as to update to the latest released version of Rx (2.01), I am now releasing a preview release of ReactiveUI 4.0. You can get the binaries one of two ways:

  • install-package reactiveui -pre or install-package reactiveui-winrt -pre
  • Download the Zip release from GitHub

How does this break backwards compatibility?