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
[StringLength(50, ErrorMessage = "Less than 50)] | |
public string CustomerLastName { get; set; } |
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
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); |
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
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; |
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
<!-- 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! --> |
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
$('#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'); |
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
<script type="text/javascript"> | |
if(console == null){ | |
console = {}; | |
} | |
if(console.debug == null){ | |
console.debug = function(){}; | |
} | |
</script> |
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
public static void Wait(this IWebDriver @this, | |
Func<IWebDriver,bool> untilThisHappens, | |
int orThisManyMillisecondsPass = 5000, | |
int waitingThisManyMillisecondsBetweenTests = 100) | |
{ | |
// | |
} |
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
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 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
# 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 |
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
<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> |
OlderNewer