User Bayard Randel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T07:47:03Zhttp://stackoverflow.com/feeds/user/68742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1658748/question-about-css-form-layout/1658775#16587750Answer by Bayard Randel for Question about CSS form layoutBayard Randel2009-11-01T23:27:43Z2009-11-01T23:27:43Z<p>I'm not entirely sure what you're trying to achieve in terms of layout, but you can get the same result using a lot less markup:</p>
<pre><code> <div style="overflow:hidden; width:100%; border:1px solid #000;">
<div>
<input type="text" style="float:left" /><input type="text" style="float:right" />
</div>
<div style="clear:left">
<input type="text" />
</div>
</div>
</code></pre>
<p>Make sure you move those in-line styles into class or id definitions too. Avoid having css definitions in your markup.</p>
http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout1Selenium IDE click() timeoutBayard Randel2009-09-08T02:43:57Z2009-09-21T05:26:27Z
<p>I have a simple page that returns an ajax success/error message on submission. The form is submitted using a standard ASP.Net linkbutton.</p>
<p>My Selenium test correctly clicks the linkbutton, however the click event times out and fails. The rest of the testcase conditions pass (as selenium is successfully clicking the link and the ajax success message is displayed). </p>
<p>All I can think is that for some reason click() is calling waitForPageToLoad which is why it is timing out. Is there any way to suppress this, or am I barking up the wrong tree?</p>
<p>Is there an alternative way to handle the click that doesn't care what happens after the event fires?</p>
<p>More Info: Selenium IDE 1.0.2 hosted in Firefox 3.5.2 on Vista (don't ask)</p>
<p><img src="http://i59.photobucket.com/albums/g311/squidsoup/webdev/selenium-wtf-linkbutton.png" alt="weirdness" /></p>
<p><hr /></p>
<p><strong>Workaround</strong></p>
<p>I've managed to get my test to pass by creating my own click() function in user-extensions.js that does <strong>not</strong> call <em>Selenium.decorateFunctionWithTimeout()</em>. While my test does pass now, this is not really an ideal solution.</p>
<p>If you'd like to try this yourself, add the following to user-extensions.js (make sure you are referencing this file in your Se:IDE configuration via Tools | Selenium IDE | Options | Options | General | Selenium Core extensions)</p>
<pre><code>Selenium.prototype.doBeatnicClick = function(locator) {
/**
* Clicks on a link, button, checkbox or radio button.
* Hacky workaround for timeout problem with linkbutton.
* Suspect there is an issue with Selenium.decorateFunctionWithTimeout()
*/
var element = this.browserbot.findElement(locator);
var elementWithHref = getAncestorOrSelfWithJavascriptHref(element);
if (browserVersion.isChrome && elementWithHref != null) {
var win = elementWithHref.ownerDocument.defaultView;
var originalLocation = win.location.href;
var originalHref = elementWithHref.href;
elementWithHref.href = 'javascript:try { '
+ originalHref.replace(/^\s*javascript:/i, "")
+ ' } finally { window._executingJavascriptHref = undefined; }';
win._executingJavascriptHref = true;
this.browserbot.clickElement(element);
}
this.browserbot.clickElement(element);
</code></pre>
<p>};</p>
<p>Reload Se:IDE and you'll have access to a new command, beatnicClick() which should work where you're experiencing a click() timeout.</p>
<p>Hopefully this will be patched, or fixed in the next release of Se:IDE.</p>
http://stackoverflow.com/questions/1430395/how-to-perform-a-basic-arithmetics-from-unix-csh-tcsh-shell/1430425#14304250Answer by Bayard Randel for how to perform a basic arithmetics from unix csh/tcsh shellBayard Randel2009-09-16T01:10:06Z2009-09-16T01:10:06Z<p>I know this is technically not arithmetic from the shell, but most modern distributions come with ruby and IRB (interactive ruby shell) which is perfect for this sort of thing (assuming you know a bit of Ruby). Another alternative is invoking the python interpreter which starts in an interactive shell if you don't provide any arguments.</p>
http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide2Parsing URL for querystring values with Selenium IDEBayard Randel2009-09-03T20:44:18Z2009-09-04T11:19:48Z
<p>I'm new to integration testing, but have had great success so far buiding up a suite of tests using Se:IDE. As I've been running my tests, it has occurred to me that I'm generating a substantial amount of data and I'd like to clean up after myself.</p>
<p>Most of my tests involve creating a new 'page', and the id is available in the querystring. I'd like to have Se:IDE store a querystring value and pass it to another page that calls a delete method to tidy up after I have run my verifications.</p>
<p>I see that I can use the command storeLocation, but I'm not sure how I would go about parsing that value for the id in the querystring, and then pass it to another page using Open.</p>
<p>Have I reached the point where I need to migrate my tests to c#, or is this possible using the IDE?</p>
http://stackoverflow.com/questions/1045283/how-to-remove-aspxautodetectcookiesupport/1338125#13381251Answer by Bayard Randel for How to remove AspxAutoDetectCookieSupportBayard Randel2009-08-26T23:28:22Z2009-08-26T23:33:45Z<p>To remove this, change the <strong>cookieless</strong> property of sessionState in your web.config to <em>false</em>. </p>
<p>e.g.</p>
<pre><code><sessionState mode="InProc" cookieless="false" timeout="20" />
</code></pre>
<p>When cookieless is set to <em>autodetect</em>, the framework generates the AspxAutoDetectCookieSupport querystring to determine if the client has cookie support. If the client does not have cookies enabled, ASP.Net will store the users Session Id directly in the URL. </p>
<p><img src="http://i.msdn.microsoft.com/Aa479314.cookieless01%28en-us,MSDN.10%29.gif" alt="An application using ASP.Net cookieless session support" /></p>
<p><em>An application using ASP.Net cookieless session support</em></p>
<p>This potentially opens up your application to session hijacking and might be considered a risk. A better option may be to disable this feature and alert your users that they will need to have cookies enabled to use your application.</p>
<p>For more a more detailed look at this, read <a href="http://msdn.microsoft.com/en-us/library/aa479314.aspx" rel="nofollow">Cookieless ASP.Net by Dino Esposito</a> on MSDN.</p>
http://stackoverflow.com/questions/1106719/first-programming-language-after-web-development/1107015#11070152Answer by Bayard Randel for First programming language after web development?Bayard Randel2009-07-09T23:49:09Z2009-07-09T23:49:09Z<p>Many people have been suggesting low level languages such as C, C++, but frankly I'm not certain that it would be a worthwhile investment of your time. The first programming language I learned was C, from the K&R book, but if I were to teach my son how to program today I would introduce him to python or ruby. </p>
<p>Both python and ruby are very expressive, sophisticated languages that are easy to learn and have an intuitive, english like syntax. By all means do learn about structured programming, and older compiled languages, but initially you'll reap more benefit from learning OO concepts in a high level language.</p>
<p>Java and C# are excellent languages, however they are very tightly coupled with their frameworks, and you may run the risk of getting bogged down learning a framework instead of programming fundamentals.</p>
http://stackoverflow.com/questions/1095472/is-sql-outdated/1101695#11016953Answer by Bayard Randel for Is SQL outdated?Bayard Randel2009-07-09T03:24:12Z2009-07-09T03:24:12Z<p>By SQL I'm going to assume your friend is talking about relational databases in general, which certainly aren't going anywhere - businesses require them for datawarehousing, and reporting across huge disparate systems. There is a definite trend however toward distributed applications where Key/Pair Databases such as BigTable and CouchDB make a lot of sense. I suspect these newer technologies will become more commonplace on the web, but SQL and relational databases will continue to be used in the Enterprise.</p>
http://stackoverflow.com/questions/1060435/writing-a-web-application-in-excel-why-not/1060467#10604672Answer by Bayard Randel for Writing a web application in excel? Why not?Bayard Randel2009-06-29T20:50:00Z2009-06-29T20:50:00Z<p>It's not a bad idea, but it does come with some limitations. If deployment isn't an issue for you, and you don't need "universal" access to the application, your solution will likely save you some time. A web application would certainly be a more elegant approach, particularly if you want to make the software available publicly.</p>
http://stackoverflow.com/questions/1055682/good-ruby-on-rails-free-hosting/1055705#105570526Answer by Bayard Randel for Good Ruby on Rails Free HostingBayard Randel2009-06-28T20:41:40Z2009-06-28T20:41:40Z<p><a href="http://heroku.com/" rel="nofollow">Heroku</a> is what you're after. They're widely considered one of the finest commercial rails hosts which offers <a href="http://heroku.com/pricing#blossom-1" rel="nofollow">a free account option</a>.</p>
http://stackoverflow.com/questions/1040969/is-there-anything-wrong-with-writing-parts-of-a-webpage-in-xhtml-with-an-html-doc/1041038#10410385Answer by Bayard Randel for Is there anything wrong with writing parts of a webpage in XHTML with an HTML doctype?Bayard Randel2009-06-24T21:10:12Z2009-06-24T21:42:29Z<p>HTML 5 allows for the use of XHTML syntax.</p>
<p>You can start using an HTML 5 doctype now which will push all browsers into standards mode, but be aware that new features of HTML 5 are only supported in some browsers.</p>
<p>From the <a href="http://wiki.whatwg.org/wiki/FAQ#Should%5FI%5Fclose%5Fempty%5Felements%5Fwith%5F.2F.3E%5For%5F.3E.3F" rel="nofollow">Web Hypertext Application Technology Working Group</a>:</p>
<blockquote>
<p>Should I close empty elements with /> or >?</p>
<p>Void elements in HTML (e.g. the br, img and input elements) do not require a trailing slash. e.g. Instead of writing <code><br /></code>, you only need to write <code><br></code>. This is the same as in HTML 4.01. However, due to the widespread attempts to use XHTML 1.0, there are a significant number of pages using the trailing slash. Because of this, the trailing slash syntax has been permitted on void elements in HTML in order to ease migration from XHTML 1.0 to HTML5.</p>
</blockquote>
<p>The marvellously simple HTML 5 doctype looks like this:</p>
<pre><code><!DOCTYPE html>
</code></pre>
<p>So yes, you can write standards compliant HTML with self closing tags and it will validate against an <a href="http://html5.validator.nu/" rel="nofollow">HTML 5 validator</a>. The industry has widely chosen to adopt HTML5 over XHTML2, and consequently I wouldn't recommend using XHTML for any new projects.</p>
<p><hr /></p>
<p>Edit: Just as a point of clarification, it is safe to use the HTML 5 doctype now, and it is also safe to assume that HTML 5 will be widely adopted over XHTML 2 given industry support. You can certainly author HTML 5 documents now, however many of the features of HTML5, such as <code><canvas></code> (notably lacking support from MS given that it competes with Silverlight) do not have cross browser support and are subject to change.</p>
http://stackoverflow.com/questions/1024960/how-do-you-make-a-combo-of-two-emotes-in-lua-in-world-of-warcraft-work/1029593#10295931Answer by Bayard Randel for How do you make a combo of two emotes in lua in World of Warcraft work?Bayard Randel2009-06-22T21:52:37Z2009-06-22T21:52:37Z<p>This may be an intentional limitation of the API to prevent in game automation (botting).</p>
http://stackoverflow.com/questions/1029344/replacing-part-of-a-string-with-javascript/1029369#10293690Answer by Bayard Randel for Replacing part of a string with javascript?Bayard Randel2009-06-22T21:02:00Z2009-06-22T21:02:00Z<p>You can pass regular expressions to the match() and replace() functions in javascript.</p>
http://stackoverflow.com/questions/1016096/rails-development-with-v3-merb-merger-in-mind0Rails development with v3 merb merger in mindBayard Randel2009-06-19T02:26:42Z2009-06-19T03:41:50Z
<p>I'm in the preliminary stages of designing a new web application, and have yet to begin any sort of implementation. The application models a fairly complex domain, and I'd feel more comfortable using tools such as the ruby DataMapper ORM (having using NHibernate in the .net world) than Rails Active Record. I also prefer jquery over prototype. All of these considerations of course point to using Merb, yet I'm aware that Merb is being merged into Rails for version 3 and will no longer exist as a distinct framework.</p>
<p>Is there any sense in starting work on the implementation of the application now given the fairly profound changes coming to rails? I'd really like to know if it would be worth starting development in Merb now and then porting it to Rails, but I've yet to find anything suggesting how difficult this may be. Another approach would be to start work on the domain now in Rails, and only give consideration to the ORM and frontend once v3 is released.</p>
<p>In essence, I'd like to know how portable a Merb app is going to be to Rails 3, but am aware that it may be too early for anyone other than the core developers to know this.</p>
<p>Any thoughts would be greatly appreciated. Thanks :)</p>
<p>-------------- Edit ---------------</p>
<p>Yehuda Katz, lead developer of the Merb project has this to say on his blog:</p>
<blockquote>
<p>The plan is to start working on Rails immediately, and to continue fixing bugs and resolving other major issues in Merb in the interim. We will also release versions of Merb specifically designed to help ease the transition to Rails 3.</p>
<p>In particular, we will do Merb releases with deprecation notices and other transitional mechanisms to assist developers in tracking down the changes that will come between Merb 1.x and Rails 3. Expect a number of interim releases that get incrementally closer to Rails 3, and expect parts of Merb (most notably the helpers) to be ported to run on Rails 3 in order to further reduce friction.</p>
<p>To be perfectly clear: we are not abandoning the Merb project. There are many production applications running on Merb that are relying on both timely bug fixes and a clear path to the future. <strong>If you’re using Merb today, continue using Merb. If you’re considering using Merb for a project because it works better for your needs, use Merb</strong>. You will not be left in the cold and we’re going to do everything to make sure that your applications don’t get stuck in the past.</p>
<p>If you’ve already learned Merb, we will be working hard to make sure that you can parlay that knowledge into Rails 3. At Engine Yard, we fully intend to continue using Merb for our internal apps until Rails 3 is out, but we will be using those (non-trivial) applications to be sure the experience is smooth for everyone. There will be no huge jumps and you will not need to rewrite your application from scratch.</p>
</blockquote>
http://stackoverflow.com/questions/913067/sqlite-as-a-production-database-for-a-low-traffic-site/913137#9131372Answer by Bayard Randel for sqlite as a production database for a low-traffic site?Bayard Randel2009-05-26T22:37:51Z2009-05-26T23:12:14Z<p>SQLite doesn't support any kind of concurrency, so you may have problems running it on a production website. If you're looking for a 'lighter' database, perhaps consider trying a contemporary object-document store like CouchDB.</p>
<p>By all means continue to develop against SQLlite, and you're probably fine to use it initially. If you find your application has more users down the track, you're going to want to transition to postgres or mysql however.</p>
<p>The author of SQLlite addresses this <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">on the website</a>:</p>
<blockquote>
<p>SQLite usually will work great as the database engine for low to medium traffic websites (which is to say, 99.9% of all websites). The amount of web traffic that SQLite can handle depends, of course, on how heavily the website uses its database. Generally speaking, any site that gets fewer than 100K hits/day should work fine with SQLite. The 100K hits/day figure is a conservative estimate, not a hard upper bound. SQLite has been demonstrated to work with 10 times that amount of traffic.</p>
<p>SQLite will normally work fine as the database backend to a website. But if you website is so busy that you are thinking of splitting the database component off onto a separate machine, then you should definitely consider using an enterprise-class client/server database engine instead of SQLite.</p>
</blockquote>
<p>So I think the long and short of it is, go for it, and if it's not working well for you, making the transition to an enterprise class database is fairly trivial anyway. Do take care over your scheme however, and design your database with growth and efficiency in mind.</p>
<p><hr /></p>
<p>Here's <a href="http://forum.slicehost.com/comments.php?DiscussionID=1312" rel="nofollow">a thread</a> with some more independent comments around using SQLite for a production web application. It sounds like it has been used with some mixed results.</p>
<p>From personal experience, I remember back in the dark days of web development using MS Access and Filemaker Pro that file locking was a persistent and painful problem. SQLlite may handle this more elegantly, but essentially it's the same problem, and I doubt much would have changed.</p>
http://stackoverflow.com/questions/695265/events-work-in-firefox-chrome-but-fail-in-ie0Events work in Firefox/Chrome but fail in IEBayard Randel2009-03-29T20:03:52Z2009-05-26T07:39:03Z
<p>I've just built an SVG map of New Zealand for use with the excellent javascript library <a href="http://raphaeljs.com" rel="nofollow">Raphael</a>, but unfortunately have stumbled upon what I can only imagine is a bug or syntactic variation in IE's javascript interpreter.</p>
<p>In Firefox and other browsers the onlick and onmouseover events work perfectly - however they do not fire in IE (tested in IE 7). Unfortunately there is no javascript error to help me debug this, so I can only assume IE handles these events in some fundamentally different way.</p>
<pre><code><script type="text/javascript" charset="utf-8">
window.onload = function() {
var R = Raphael("paper", 450, 600);
var attr = {
fill: "#3f3f40",
stroke: "#666",
"stroke-width": 1,
"stroke-linejoin": "round"
};
var nz = {};
nz.northland = R.path(attr, "M 193.34222,3.7847503 C 194.65463");
// SVG data stripped for sake of brevity
var current = null;
for (var region in nz) {
nz[region].color = Raphael.getColor();
(function(rg, region) {
rg[0].style.cursor = "pointer";
rg[0].onmouseover = function() {
current && nz[current].animate({ fill: "#3f3f40", stroke: "#666" }, 500) && (document.getElementById(current).style.display = "");
rg.animate({ fill: rg.color, stroke: "#ccc" }, 500);
rg.toFront();
R.safari();
document.getElementById(region).style.display = "block";
current = region;
};
rg[0].onclick = function() {
alert("IE never gets this far.");
//window.location.href = "my-page.aspx?District=" + region;
};
rg[0].onmouseout = function() {
rg.animate({ fill: "#3f3f40", stroke: "#666" }, 500);
};
if (region == "northland") {
rg[0].onmouseover();
}
})(nz[region], region);
}
};
</script>
</code></pre>
<p>Many thanks :)</p>
http://stackoverflow.com/questions/900922/what-to-learn-ruby-on-rails-or-asp-net-mvc-given-that-am-familiar-with-asp/908710#9087106Answer by Bayard Randel for What to learn - Ruby on Rails or ASP .NET MVC...given that am familiar with ASP .NETBayard Randel2009-05-26T02:34:26Z2009-05-26T02:34:26Z<p>I suggest you learn <strong>both</strong>! </p>
<p>I'm a professional ASP.Net developer by day, and a hobbyist RoR developer by night. Learning RoR will in fact make you a better .Net developer, and it's fun!</p>
<p>Also consider that one day you may in fact be able to write an ASP.NET MVC app in IronRuby instead of fussy old c# :)</p>
http://stackoverflow.com/questions/904592/what-ide-is-needed-to-develop-a-first-time-simple-windows-application/904694#9046940Answer by Bayard Randel for What IDE is needed to develop a first time simple Windows application?Bayard Randel2009-05-24T21:24:32Z2009-05-24T21:31:16Z<p>If you're new to gui programming, <a href="http://shoooes.net/" rel="nofollow">Shoes</a> is a fun way to pick up some of the concepts as well as learn some ruby along the way. It's primarily a learning tool however, so you'll need to eventually pick up Visual Studio (or something similar) when you're ready to develop a functional windows app.</p>
<p><hr /></p>
<p>Edit: I see you've done some programming in linux from one of your comments, so this might be a bit too rudimentary for you. For anyone new to programming and wanting to try their hand at a windows program, Shoes is worth looking at. The free version of Visual Studio is definitely what you'll want to check out, or alternatively you could continue to work in Eclipse on windows, as you're already familiar with it.</p>
http://stackoverflow.com/questions/895768/js-css-include-section-replacement-debug-vs-release2JS/CSS include section replacement, Debug vs ReleaseBayard Randel2009-05-21T23:25:04Z2009-05-22T20:20:29Z
<p>I'd be interested to hear how people handle conditional markup, specifically in their masterpages between release and debug builds.</p>
<p>The particular scenario this is applicable to is handling concatenated js and css files. I'm currently using the .Net port of YUI compress to produce a single site.css and site.js from a large collection of separate files. </p>
<p>One thought that occurred to me was to place the js and css include section in a user control or collection of panels and conditionally display the <code><link></code> and <code><script></code> markup based on the Debug or Release state of the assembly. Something along the lines of:</p>
<pre><code>#if DEBUG
pnlDebugIncludes.visible = true
#else
pnlReleaseIncludes.visible = true
#endif
</code></pre>
<p>The panel is really not very nice semantically - wrapping <code><script></code> tags in a <code><div></code> is a bit gross; there must be a better approach. I would also think that a block level element like a <code><div></code> within <code><head></code> would be invalid html.</p>
<p>Another idea was this could possibly be handled using web.config section replacements, but I'm not sure how I would go about doing that.</p>
http://stackoverflow.com/questions/895025/what-should-a-main-page-of-a-web-application-be/895078#8950782Answer by Bayard Randel for What should a main page of a web application be?Bayard Randel2009-05-21T20:51:41Z2009-05-21T20:59:17Z<p>It really depends on the focus of your application, but if you were to generalise I would say determine the one or two most critical paths in your application and focus on those.</p>
<ul>
<li><p>Registration is probably what you
want to drive more than anything
else, so make it clear how users can
sign up and get involved.</p></li>
<li><p>Make it is easy for existing users to sign in.</p></li>
<li><p>Consider the amount of text you have
on your front page and reduce and<br />
pair it down as much as possible. Keep the messages and information you
convey here as succinct as possible.</p></li>
<li><p>Provide some content immediately
showing what your application or site
provides. Don't make users follow a
link to access the core functionality
of your site immediately e.g. if
you're building an auction site,
ensure there are listings on the
front page.</p></li>
<li><p>Consider your audience. If your site is non-technical, the fewer UI elements you present the better. Portal like sites, with lots of compartmentalised functionality and information can be confusing and overwhelming for many non-technical users.</p></li>
<li><p>Make it clear how users can get Help if they require it</p></li>
</ul>
http://stackoverflow.com/questions/890872/css-inheritance/890992#8909922Answer by Bayard Randel for CSS InheritanceBayard Randel2009-05-21T01:06:21Z2009-05-21T01:06:21Z<p>If you <a href="http://css-tricks.com/id-your-body-for-greater-css-control-and-specificity/" rel="nofollow">apply a unique id to the <code><body></code> of your custom page</a>, you can easily make declarations specific to that page in your global css. There's no sense in serving a different css file really, as your global/site css will be cached on the client anyway.</p>
<p>Personally I think this is a good practice generally for managing page specific styles. In php you can achieve this dynamically in your view with</p>
<pre><code><body id="<?= basename($_SERVER['PHP_SELF'], ".php")?>">
</code></pre>
<p>in ASP.Net you can set an id using:</p>
<pre><code>System.IO.Path.GetFileNameWithoutExtension(HttpContext.Current.Request.Url.AbsolutePath).ToLower
</code></pre>
http://stackoverflow.com/questions/886205/how-to-avoid-flickering-in-iframes-in-html-files/886299#8862990Answer by Bayard Randel for how to avoid Flickering in IFRAMES in html files.Bayard Randel2009-05-20T05:32:27Z2009-05-20T05:32:27Z<p>If you want to provide a better user experience I suspect you're going to need to make an ajax request instead of trying to load multiple documents in an iframe. </p>
<p>All I could really suggest would be to preload the documents with javascript and render them once the http requests have completed. </p>
http://stackoverflow.com/questions/886221/does-django-scale/886269#8862699Answer by Bayard Randel for Does Django Scale?Bayard Randel2009-05-20T05:22:37Z2009-05-20T05:22:37Z<p>The largest django site I know of is the <a href="http://www.washingtonpost.com/" rel="nofollow">Washington Post</a>, which would certainly indicate that it <strong>can</strong> scale well.</p>
<p>Good design decisions probably have a bigger performance impact than anything else. Twitter is often cited as a site which embodies the performance issues with another dynamic interpreted language based web framework, Ruby on Rails - yet Twitter engineers have stated that the framework isn't as much an issue as some of the database design choices they made early on. </p>
<p>Django works very nicely with memcached and provides some classes for managing the cache, which is where you would resolve the majority of your performance issues. What you deliver on the wire is almost more important than your backend in reality - using a tool like yslow is critical for a high performance web application. You can always throw more hardware at your backend, but you can't change your users bandwidth.</p>
http://stackoverflow.com/questions/867498/at-the-end-of-the-day-why-choose-xhtml-over-html/885755#8857552Answer by Bayard Randel for At the end of the day, why choose XHTML over HTML?Bayard Randel2009-05-20T01:17:16Z2009-05-20T02:34:22Z<p>Instead of continuing to debate HTML 4.01 Strict vs XHTML Strict, I would suggest starting to use HTML 5 today. John Resig, the author of jquery, <a href="http://ejohn.org/blog/html5-doctype/" rel="nofollow">made a similar suggestion last year</a> on his blog.</p>
<p>The HTML 5 doctype, in it's beautiful simplicity will trigger standards mode in all browsers (including IE6).</p>
<pre><code><!DOCTYPE html>
</code></pre>
<p>That's it.</p>
<p>HTML 5 provides some exciting new features such as the <code><canvas></code> tag which potentially can push javascript application development to the next level. HTML 5 also has proper support for media (and media is a fairly important aspect of the web these days!) in the form of <code><video></code> and <code><audio></code> tags.</p>
<p>If you like the syntax of XHTML, i.e. closing "empty" tags such as <code><br /></code>, that is fully supported in HTML 5. From Karl Dubost of the W3C's post <a href="http://www.w3.org/QA/2008/11/html5-howto.html" rel="nofollow">Learn How To Write HTML 5</a>:</p>
<blockquote>
<p>auto-closing tag is allowed and conformant in HTML 5.</p>
</blockquote>
<p>XHTML2 has received relatively little attention compared to HTML 5. It's becoming increasingly clear that HTML 5 is the future of markup on the web. Microsoft's latest browser, IE8 <strong>still</strong> renders XHTML served as text/xml as text/html. </p>
<p>Microsoft have a co-chair on the W3C HTML working group and there's an implied support from them for HTML 5. All of the browser vendors have publicly announced their support for HTML 5.</p>
<p>At the end of the day, even if XHTML2 regains support from the industry, it won't be a significant issue having two competing standards as it has been in the past. Both languages support XML namespaces (in the case of HTML 5, serialization of HTML i.e. DOCTYPE switching).</p>
http://stackoverflow.com/questions/885330/whats-your-favorite-ide/885337#8853371Answer by Bayard Randel for What's your favorite IDE?Bayard Randel2009-05-19T22:28:20Z2009-05-19T22:33:42Z<p><a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> and <a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> approach the richness of Visual Studio in the Java world.</p>
<p>This is a very subjective question - for some developers Vim is the perfect development environment. I'm not sure that it's constructive to ask "What is the best IDE?" when developers have so many different requirements and preferences. </p>
<p>I think generally you should try to pick the IDE that best suits your task. When I'm working on asp.net projects in C# Visual Studio is clearly the best choice, while I prefer using a more lightweight text editor like <a href="http://www.e-texteditor.com/" rel="nofollow">e</a> when working with Ruby. In a unix environment I'm quite content using Vim.</p>
<p>The best IDE is the one that suits your style of development. Programmers are all different and it's fortunate that we have a plethora of tools to support those differences.</p>
http://stackoverflow.com/questions/206943/what-features-would-you-most-like-to-see-in-visual-studio-2010/885086#8850860Answer by Bayard Randel for What features would you most like to see in Visual Studio 2010?Bayard Randel2009-05-19T21:21:45Z2009-05-19T21:21:45Z<p>I'd like to see first class support for dynamic languages like IronRuby and IronPython out of the box.</p>
http://stackoverflow.com/questions/880623/do-you-have-a-better-idea-to-simulate-coin-flip/881005#8810054Answer by Bayard Randel for Do you have a better idea to simulate coin flip?Bayard Randel2009-05-19T04:48:13Z2009-05-19T04:48:13Z<p>a wee homage to xkcd:</p>
<pre><code>string getHeadsOrTails {
return "heads"; //chosen by fair coin toss,
//guaranteed to be random
}
</code></pre>
http://stackoverflow.com/questions/880898/why-do-dynamic-language-newbies-seem-to-default-to-ruby-instead-of-python/880928#8809284Answer by Bayard Randel for Why do dynamic language newbies seem to default to Ruby instead of Python?Bayard Randel2009-05-19T04:07:16Z2009-05-19T04:07:16Z<p>I was inspired to learn Ruby after reading Why's Poignant Guide.</p>
<p>I mean, come on.. CARTOON FOXES.</p>
http://stackoverflow.com/questions/880597/how-can-i-capitalize-the-first-letter-of-each-word/880683#8806830Answer by Bayard Randel for How can I capitalize the first letter of each word?Bayard Randel2009-05-19T02:05:12Z2009-05-19T02:30:07Z<p>In ruby:</p>
<pre><code>str.gsub(/^[a-z]|\s+[a-z]/) { |a| a.upcase }
</code></pre>
<p>hrm, actually this is nicer:</p>
<pre><code>str.each {|word| puts word.capitalize}
</code></pre>
http://stackoverflow.com/questions/880401/what-book-on-tdd-for-c-with-treatment-of-mocks/880431#8804311Answer by Bayard Randel for What book on TDD for C# with treatment of MocksBayard Randel2009-05-19T00:24:41Z2009-05-19T00:24:41Z<p>Have a look at <a href="http://www.mockobjects.com/book/" rel="nofollow">Growing Object-Oriented Software, Guided by Tests</a> by Steve Freeman and
Nat Pryce - a work in progress, but free online. The code examples are in java, which shouldn't be a problem if you're a C# developer, and does focus extensively on Mocks.</p>
http://stackoverflow.com/questions/879769/is-helvetica-a-browser-base-font/879808#8798081Answer by Bayard Randel for Is Helvetica a browser base font?Bayard Randel2009-05-18T20:58:04Z2009-05-18T21:23:37Z<p>Helvetica is a standard system font on Macs only.</p>
<p>What you can do however is specify Helvetica in a CSS font declaration, but also make sure that you include fallback fonts for Windows users.</p>
<p>e.g. </p>
<pre><code>body {font-family: Helvetica, Arial, sans-serif;}
</code></pre>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/1206263#1206263Comment by Bayard Randel on What's the most egregious pop culture perversion of programming?Bayard Randel2009-09-08T22:36:40Z2009-09-08T22:36:40Zlol, brilliant!http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/177733#177733Comment by Bayard Randel on What's the most egregious pop culture perversion of programming?Bayard Randel2009-09-08T22:30:51Z2009-09-08T22:30:51ZUpvoted for MawMaw.http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout/1396378#1396378Comment by Bayard Randel on Selenium IDE click() timeoutBayard Randel2009-09-08T22:15:23Z2009-09-08T22:15:23ZThere is a workaround provided in my post that works with Selenium IDE 1.0.2 hosted in Firefox 3.5.2. Fortunately it only appears to be certain cases where the click() event timesout.. in most instances it works. Where it doesn't consider using paired down click() event in your user-extensions.js (I'll post the code).http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout/1392711#1392711Comment by Bayard Randel on Selenium IDE click() timeoutBayard Randel2009-09-08T08:35:23Z2009-09-08T08:35:23ZExcellent find Dave - thanks very much. It certainly was feeling like a bug.http://stackoverflow.com/questions/1391718/selenium-ide-click-timeoutComment by Bayard Randel on Selenium IDE click() timeoutBayard Randel2009-09-08T03:24:06Z2009-09-08T03:24:06ZThanks bryan, updated my post with some details. Yes, the script does pause until the click() event fails (or SE:IDE interprets it as failed more accurately.. given that the click event fires!)http://stackoverflow.com/questions/1017153/lerning-selenium/1047148#1047148Comment by Bayard Randel on lerning SeleniumBayard Randel2009-09-08T03:12:01Z2009-09-08T03:12:01ZI actually discovered Selenium this way oddly enough. We use it properly for integration testing too of course, but it's a very handy tool for automation while developing as you discovered :)http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide/1376262#1376262Comment by Bayard Randel on Parsing URL for querystring values with Selenium IDEBayard Randel2009-09-03T22:45:45Z2009-09-03T22:45:45ZAh figured it out, I need to use storeEval to run javascript against the stored variable.http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide/1376262#1376262Comment by Bayard Randel on Parsing URL for querystring values with Selenium IDEBayard Randel2009-09-03T22:20:03Z2009-09-03T22:20:03ZDo I run the javascript from the Value textbox?http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide/1376110#1376110Comment by Bayard Randel on Parsing URL for querystring values with Selenium IDEBayard Randel2009-09-03T22:16:44Z2009-09-03T22:16:44ZWhile that's very handy to know, I still have the issue of parsing the URL that is stored in ${variable} for the querystring value. Either I need a method which can return the querystring value, or some way to parse ${variable} with a regular expression.http://stackoverflow.com/questions/508994/asp-net-dropdownlist-autopostback-and-google-chrome/531989#531989Comment by Bayard Randel on Asp.Net, DropDownList, AutoPostBack and Google ChromeBayard Randel2009-08-19T02:31:21Z2009-08-19T02:31:21Z"If at all possible stop using WebForms and Ajax.NET and use MVC and jQuery." Sage advice, but in the meantime, this fix works beautifully. Thank you kind sir.http://stackoverflow.com/questions/1196870/natural-language-dates-in-ruby-railsComment by Bayard Randel on Natural language dates in ruby/rails?Bayard Randel2009-07-28T21:35:08Z2009-07-28T21:35:08Zanswered here <a href="http://stackoverflow.com/questions/605388/natural-language-date-parser-for-ruby-rails" rel="nofollow" title="natural language date parser for ruby rails">stackoverflow.com/questions/605388/…</a>http://stackoverflow.com/questions/1095472/is-sql-outdatedComment by Bayard Randel on Is SQL outdated?Bayard Randel2009-07-10T02:43:20Z2009-07-10T02:43:20Zwow... spooky O.ohttp://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/8489#8489Comment by Bayard Randel on Practical non-image based CAPTCHA approaches?Bayard Randel2009-07-09T03:38:33Z2009-07-09T03:38:33Zhoneypot captchas are bad for usability - screenreaders will not ignore hidden form fields.http://stackoverflow.com/questions/1095472/is-sql-outdatedComment by Bayard Randel on Is SQL outdated?Bayard Randel2009-07-09T03:31:11Z2009-07-09T03:31:11ZI'll be your friend Postman.http://stackoverflow.com/questions/1095472/is-sql-outdated/1100226#1100226Comment by Bayard Randel on Is SQL outdated?Bayard Randel2009-07-09T03:29:22Z2009-07-09T03:29:22ZActiverecord and ORMs offer an abstraction which rely fundamentally on SQL; they aren't an alternative.