This file contains 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
/// LICENSE: MIT | |
using System.Web.UI.WebControls; | |
namespace Generic.Frontend.Web | |
{ | |
public class TrimTextBox : TextBox | |
{ | |
/// <summary> | |
/// Returns the text entered, but with leading and trailing whitespace removed. |
This file contains 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 CampingInfo.Core.Setup | |
{ | |
public class CampsiteSetup | |
{ | |
} | |
} |
This file contains 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
[locations] | |
1=first | |
default=first | |
[first] | |
1=first_wptdriver | |
2=first_ie | |
label="My first agent" | |
default=first_wptdriver |
This file contains 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
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name ForceLog | |
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogFailures | |
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogResourceBinds | |
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogPath |
This file contains 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
// author: [email protected] | |
// LICENSE: MIT | |
(function($) { | |
$.fn.moveTo = function(target, method) { | |
method = method || "appendTo"; | |
var randomNumber = Date.now().toString() + (10 ^ 6 * Math.random().toPrecision(6)); | |
var placeholderId = "placeholder-" + randomNumber; | |
var $content = $(this).replaceWith("<script id='" + placeholderId + "' type='text/html'></" + "script>"); | |
// same as $content.appendTo($(target)) but with variable method ;-) | |
$content[method]($(target)); |
This file contains 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.Collections.Generic; | |
using System.Linq; | |
using Newtonsoft.Json; | |
public class ConcreteTypeConverter<TConcrete> : JsonConverter { | |
public override bool CanConvert(Type objectType) { | |
//this method is *not* called when using the JsonConverterAttribute to assign a converter | |
return objectType.IsAssignableFrom(typeof (TConcrete)); | |
} |
This file contains 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 static void SaveTestNameToFailedTestsFile() { | |
var scenarioDesc = ScenarioContext.Current.ScenarioInfo.Title; | |
var methodInfos = typeof (InfrastructureSteps).Assembly.GetTypes() | |
.SelectMany( | |
type => type.GetMethods() | |
.Where(m => m.GetCustomAttributes(typeof (DescriptionAttribute), false) | |
.Any(attr => ((DescriptionAttribute) attr).Description == scenarioDesc))); | |
foreach (var methodInfo in methodInfos) { | |
var fullMethodName = methodInfo.ReflectedType.FullName + "." + methodInfo.Name; |
This file contains 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
@echo off | |
:echo %~p0 | |
REM | |
REM retrieve the name of the last folder in the path | |
REM | |
SET mydir=%~p0 | |
SET mydir=%mydir:\= % | |
for %%a in (%mydir%) do set LastFolder=%%~nxa |