Skip to content

Instantly share code, notes, and snippets.

View nootn's full-sized avatar

Andrew Newton nootn

View GitHub Profile
@nootn
nootn / CustomJavascriptConfiguration.js
Created April 23, 2012 10:10
MVC Mega Forms quick start guide - ChangeVisually
//Supply defaults for MegaForms
var MegaFormsChangeVisuallyJQueryParentContainerSelector = '.container'; //sets the class of a component that wraps a whole form control (I.e. label + input + validation message)
var MegaFormsChangeVisuallyJQueryHideEffect = 'fast'; //sets the jQuery effect to use when hiding a field
var MegaFormsChangeVisuallyJQueryShowEffect = 'slow'; //set the jQuery effect to use when showing a field
@nootn
nootn / CustomJavascriptConfiguration.js
Created April 23, 2012 21:28
MVC Mega Forms quick start guide - CascadingSelectList
var MegaFormsCascadeJQueryHideEffect = 'fast'; //sets the jQuery effect to use when hiding a child cascaded list just before refreshing its items
var MegaFormsCascadeJQueryShowEffect = 'fast'; //set the jQuery effect to use when showing a child cascaded list just after refreshing its items
@nootn
nootn / DoSomeProfiling.cs
Created July 9, 2012 12:15
MiniProfiler.Windows Samples
using (StackExchange.Profiling.MiniProfiler.Current.Step("Call Methods"))
{
//Some work to be done here
}
@nootn
nootn / ConfigureIocAndAop.cs
Created July 9, 2012 13:10
MiniProfiler.Windows IOC and AOP
private static void ConfigureIocAndAop()
{
var builder = new ContainerBuilder();
//If using an IOC container, it is a handy to be able to us an IProfiler to
//wrap mini profiler calls just to remove that dependency for unit testing
builder.RegisterType<MiniProfilerWrapper>().AsImplementedInterfaces();
//We want some classes that do some work, but we don't want to have to wrap profiler steps
//around each method call, so use AOP to do it for us!
@nootn
nootn / NewLayout1.cshtml
Created August 15, 2012 08:32
MVC Mega Forms quick start guide - Form Layout
@using (Html.BeginControlGroup())
{
@Html.ControlLabelFor(m => m.Input01)
using (Html.BeginControls())
{
@Html.EditorFor(m => m.Input01)
using (Html.BeginHelpInline())
{
@Html.ValidationMessageFor(m => m.Input01)
}
@nootn
nootn / PowerShellRunner-Default.bat
Created February 5, 2013 11:24
Run Powershell from .NET avoiding System.Management.Automation #1
powershell "%1"
@nootn
nootn / PowerShellRunner-SpecificVersion.bat
Created February 5, 2013 11:27
Run Powershell from .NET avoiding System.Management.Automation #2
C:\Windows\System32\WindowsPowershell\v1.0\powershell.exe "%1"
@nootn
nootn / RunPsUsingBatchFile.cs
Created February 5, 2013 11:28
Run Powershell from .NET avoiding System.Management.Automation #3
// /*
// Copyright (c) 2013 Andrew Newton (http://www.nootn.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT O
@nootn
nootn / RunPsUsingSystemManagementAutomation.cs
Created February 5, 2013 11:28
Run Powershell from .NET avoiding System.Management.Automation #4
// /*
// Copyright (c) 2013 Andrew Newton (http://www.nootn.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT O
@nootn
nootn / Program.cs
Created February 5, 2013 11:51
Run Powershell from .NET avoiding System.Management.Automation #5
// /*
// Copyright (c) 2013 Andrew Newton (http://www.nootn.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT O