Skip to content

Instantly share code, notes, and snippets.

View burkeholland's full-sized avatar

Burke Holland burkeholland

  • Microsoft
  • Franklin, TN
View GitHub Profile
#!/usr/bin/env bash
nvm_install_script=https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh
NVM_DIR="$HOME/.nvm"
NVM_NODE_VERSION=14
if [ ! -d "$HOME/.nvm" ]; then
echo "> Downloading NVM..."
curl -s -o- $nvm_install_script | bash >/dev/null 2>&1
@burkeholland
burkeholland / quotes.md
Last active September 6, 2016 13:18 — forked from toddmotto/quotes.md

What is this?

Basically, we're launching native Angular 2 Components (some free, some paid) next month. I'd love to get a quote from you about Kendo UI or your thoughts on Kendo UI and Angular 2. We'll use these quotes as testimonials on our site if you're cool with that. Here's an example quote:

"The fact that a UI framework such as Kendo UI is now going to be built on Angular 2 is exciting. Very exciting."

Your answer

To make it easier, simply provide an answer to one of these two questions:

@burkeholland
burkeholland / main-page.xml
Last active February 15, 2016 14:16 — forked from vakrilov/main-page.xml
Centering The Android Action Bar Title In NativeScript
<Page loaded="pageLoaded">
<ActionBar title="Title">
<GridLayout>
<Button text="centerd" horizontalAlignment="center" />
</GridLayout>
</ActionBar>
<StackLayout>
<Button text="do nothing" />
</StackLayout>
@burkeholland
burkeholland / Monarchy.cs
Created July 23, 2011 01:20 — forked from derekgreer/Monarchy.cs
Monarchy Refactored
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Monarchy
{
public class ObjectFactory {
static readonly IDictionary<Type, Func<object>> Container = new Dictionary<Type, Func<object>>();
static readonly MethodInfo CreateObjectMethodInfo = typeof (ObjectFactory).GetMethod("Get");
@burkeholland
burkeholland / MonarchySpecs.cs
Created July 23, 2011 01:19 — forked from derekgreer/MonarchySpecs.cs
Monarchy Refactored Specs
using Machine.Specifications;
namespace Monarchy.Specs
{
[Subject(typeof (ObjectFactory))]
public class when_retrieving_a_type_with_registered_dependency_factory
{
static TestService _instance;
static ObjectFactory _factory;
@burkeholland
burkeholland / Monarchy.cs
Created July 23, 2011 01:18 — forked from derekgreer/Monarchy.cs
Monarchy Refactored
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Monarchy
{
public class ObjectFactory {
static readonly IDictionary<Type, Func<object>> Container = new Dictionary<Type, Func<object>>();
static readonly MethodInfo CreateObjectMethodInfo = typeof (ObjectFactory).GetMethod("Get");