Skip to content

Instantly share code, notes, and snippets.

View MarkBorcherding's full-sized avatar

Mark Borcherding MarkBorcherding

  • World Wide Technology
  • St Louis, MO
View GitHub Profile
[StringLength(50, ErrorMessage = "Less than 50)]
public string CustomerLastName { get; set; }
public decimal? MonthlyPrice
{
get
{
try
{
return AddOnRates.Single(x => x.PaymentTerm == PaymentTerm.Monthly).Price;
} catch(InvalidOperationException ex)
{
throw new InvalidOperationException("Monthly price for " + idAddOn + " was not found.",ex);
function shouldValidate(input){
var $input = $(input);
return $input.data("startingValue") != "" || $input.is(".error");
}
function shouldValidate(input){
var $input = $(input);
var weStartedWithAValue = $input.data("startingValue") != "";
var weWereAlreadyMarkedWithAnError = $input.is(".error");
return weStartedWithAValue || weWereAlreadyMarkedWithAnError;
<!-- Which way would would you expect this to render? -->
<%= Html.TextBoxFor(x=>x.CustomerTelephone, new {style="width:240px !important"}) %>
A) <input type="text" id="CustomerTelephone" style="width:240px !important" />
B) <input type="text" id="CustomerTelephone" style="width:240px ! important" />
<!-- Hint: It's not the way that generates valid CSS! -->
$('#foo1').foo();
$('#foo2').foo({bar:'baz'});
// later on, maybe in a event handler of something else.
// These calls need the options set up above, but the way they are defined,
// they are not in the closure of $.fn.foo function block
$('#foo1').foo('doFoo');
$('#foo2').foo('doFoo');
<script type="text/javascript">
if(console == null){
console = {};
}
if(console.debug == null){
console.debug = function(){};
}
</script>
public static void Wait(this IWebDriver @this,
Func<IWebDriver,bool> untilThisHappens,
int orThisManyMillisecondsPass = 5000,
int waitingThisManyMillisecondsBetweenTests = 100)
{
//
}
Array.send :define_method, :swap do |a,b|
temp = deck[a]
self[a] = self[b]
self[b] = temp
end
Array.send :define_method, :shuffle do |i|
length = self.length
0.upto(length-1) do
swapKeys = [i,rand(length)]
# this is how it would be invoked as a new task in the rakefile
# you can override the hashing function or exclude/include files
revfiles :revfiles do |rev|
rev.files_to_rev << './**/*.bmp'
end
<Project DefaultTargets="Default" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Foo Condition="$(Foo)==''">bar</Foo>
</PropertyGroup>
<Target Name="Default">
<Message Text="$(Foo)" />
</Target>
</Project>