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
var parser = new OFXDocumentParser(); | |
var ofxDocument = parser.Import(new FileStream(@"c:\ofxdoc.ofx", FileMode.Open)); |
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
ko.dependantObservable (-> @deployments().length > 0), @ |
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
bridge = page.driver.browser.send(:bridge) | |
bridge.deleteAllCookies() |
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
page.driver.browser.save_screenshot("c:\\test.png") |
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
var teamcityObservable = new TeamcityObservable(settings["host"], settings["username"], settings["password"]); | |
teamcityObservable.Subscribe(teamcityEvents => | |
{ | |
foreach(var tcEvent in teamcityEvents) | |
{ | |
Console.WriteLine(tcEvent); | |
} | |
}); |
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
<param name="allowScriptAccess" value="always" /> |
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
import flash.external.ExternalInterface; | |
ExternalInterface.call("ttFlash.toggleRestRef"); |
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 language="javascript" type="text/javascript"> | |
var ttFlash = function() { | |
function toggleClass(id, clazz) { | |
var element = document.getElementById(id); | |
if(null == element) return false; | |
if(element.className.indexOf(clazz) == -1) { | |
element.className += " " + clazz; | |
} else { | |
element.className = element.className.replace(clazz,''); | |
} |
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
<param name="wmode" value="transparent" /> |
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
#ttBookingBox | |
{ | |
position:absolute !important; | |
top:45px; | |
left:21px; | |
z-index:1; | |
background-color:#FFF; | |
} |