Conference | When | Where | CFP NLT | Submitted? | What Submitted? | Accepted? | What Accepted? |
---|---|---|---|---|---|---|---|
StarEast | Apr 20-26 | Orlando | - | Y | _ | Y | WD workshop, Auto Testing Beyond Basics |
Romania Testing | may | cluj | - | Y | - | Y | WD workshop, IT Leadership WS, Leading IT teams breakout |
Selenium Conf | June 25 - July 2 | Bangalore | - | Y | - | Y | ER: Changing Testing Culture |
ThatConference | 6-8 Aug | WI | - | Y | forgot | ? | ? |
TestBash Germany | 14 Sep 2018 | Munich! | - | y | ER: testing culture, something else | ? | - |
TestBash Sydney | 19 Oct 2018 | Sydney! | - | y | ER: testing culture, something else | " | - |
DevSpace | Oct 2018 | Huntsville | - | Y | Keynote | Y | Talk about my year |
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta http-equiv="Content-Style-Type" content="text/css"> | |
<title>1-Selecting The Tools</title> | |
<meta name="Author" content="Jim Holmes"> | |
<meta name="CreationTime" content="2014-12-11T12:12:21Z"> | |
<meta name="ModificationTime" content="2014-12-11T12:12:21Z"> | |
<meta name="Generator" content="Cocoa HTML Writer"> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>Local References</title> | |
<link href="content/kendo.common.min.css" rel="stylesheet" /> | |
<link href="content/kendo.default.min.css" rel="stylesheet" /> | |
<script src="scripts/jquery.min.js"></script> | |
<script src="scripts/kendo.web.min.js"></script> | |
</head> | |
<body> |
This file contains hidden or 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
<header> | |
<div class="content-wrapper"> | |
<div class="float-left"> | |
<p class="site-title"> | |
<a href="~/">ASP.NET Web API</a> | |
</p> | |
</div> | |
</div> | |
</header> | |
<div id="body"> |
This file contains hidden or 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
With apologies to Shakespeare's Henry V Crispin Day speech | |
O that we now had here | |
But one ten thousand of those software geeks | |
That do no work to-day! | |
KING HENRY V | |
What's he that wishes so? |
This file contains hidden or 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
require 'optparse' | |
def process_command_args | |
$options = {} | |
opts = OptionParser.new | |
opts.banner = "Usage: build [options]" | |
opts.on( "-r", "--release", "release configuration" ) do | |
$options[:releaseconfig] = true |