User Raithlin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:36:44Zhttp://stackoverflow.com/feeds/user/6528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1765595/javascript-closure-variable-scope-question-i-know-it-works-but-why/1765611#17656112Answer by Raithlin for Javascript closure / variable scope question - I know it works, but why?Raithlin2009-11-19T18:42:03Z2009-11-19T18:42:03Z<p>In a word, yes. Spot on.</p>
http://stackoverflow.com/questions/1063660/need-to-have-spacing-between-end-of-div-and-beginning-of-paragraph/1063672#10636724Answer by Raithlin for Need to have spacing between end of div and beginning of paragraphRaithlin2009-06-30T13:25:05Z2009-06-30T13:57:04Z<p>Give the final paragraph an id - #disclaimer, perhaps - then style that to have padding-top.</p>
<pre><code><p id="disclaimer">Herkimer County Community College does not
discriminate on the basis of race, color, sex,
national origin, age, handicap, or marital status
in admission, employment, or in any aspect regarding
the conduct of College business.</p>
</code></pre>
<p>and...</p>
<pre><code>#disclaimer {
padding-top: 10px;
}
</code></pre>
<p>[EDIT]
An alternative to this, based on your comments, would be to surround the article(s) in a div, and give that div.class a bottom-margin/padding style.</p>
http://stackoverflow.com/questions/1016835/search-engine-redirecting/1016859#10168591Answer by Raithlin for Search engine redirectingRaithlin2009-06-19T08:10:04Z2009-06-19T08:10:04Z<p>Use a sitemap.xml submitted at <a href="http://www.google.com/webmasters" rel="nofollow">Google Webmaster Tools</a>?</p>
<p>The other thing I'd consider would be a 302 redirect from the index.html to index.php. You'd have to be careful about how you go about it though - previous commenters are correct in their concerns...</p>
http://stackoverflow.com/questions/487430/validate-inputs-that-are-not-inside-a-form-with-jquery-validation-plugin/487690#4876902Answer by Raithlin for Validate inputs that are not inside a form with jQuery Validation pluginRaithlin2009-01-28T13:54:56Z2009-06-11T14:41:22Z<p>You can use this plugin: <a href="http://plugins.jquery.com/project/validator" rel="nofollow">jQuery Validator</a></p>
<p>Description from the author:</p>
<blockquote>
<p>A light, extensible, clean and 'easy-to-use' form validator.
It's can validate onblur, onkeyup, onsubmit or you can validate when you want.
<strong>You can validate fields in a DIV without a FORM tag.</strong></p>
</blockquote>
<p>Note: It is a new plugin, <del>in Beta</del> at v1.0.</p>
http://stackoverflow.com/questions/887501/centre-content-horizontally-in-page/887506#8875065Answer by Raithlin for Centre Content Horizontally in PageRaithlin2009-05-20T11:59:20Z2009-05-20T11:59:20Z<p>Set your div CSS as follows:</p>
<pre><code>#container {
width: 800px;
margin: 0 auto;
}
</code></pre>
http://stackoverflow.com/questions/887457/how-can-i-set-an-image-as-a-background-of-asp-net-page/887475#8874753Answer by Raithlin for How can i set an image as a background of asp.net page?Raithlin2009-05-20T11:51:06Z2009-05-20T11:56:14Z<p>Use CSS. Add to the theme if you're using one, or a CSS file...</p>
<pre><code>body {
background-image: url(images/image.png);
}
</code></pre>
<p>Best practices recommend having this in a separate file, rather than the head of the document - and most certainly not inline.</p>
http://stackoverflow.com/questions/878011/jquery-ui-datepicker-override-today-css/878070#8780700Answer by Raithlin for jQuery UI DatePicker: override today cssRaithlin2009-05-18T14:35:11Z2009-05-18T14:35:11Z<p>I found this <a href="http://www.nabble.com/Re%3A-Highlighting-of-special-days-in-datepicker-p20068050s27240.html" rel="nofollow">here</a>... might be of some help to you.</p>
<blockquote>
<p>Why don't u use datepickers
functionality to highlight special
days? I use an inline datepicker as
well and showing special days works
just fine. I use something similar to:</p>
</blockquote>
<pre><code>$("#mnu_calendar").datepicker({
... other options
beforeShowDay: function(thedate) {
var theday = thedate.getDate();
if( $.inArray(theday,specialDays) == -1 )
return [true,""];
return [true, "specialDate"];
},
... more options
});
</code></pre>
<blockquote>
<p>specialsDays is my array with special
days in this month e.g. [3, 12, 24].
"specialDate" is the CSS class name
datepicker will add to the special
days, so you can make them look anyway
you want</p>
</blockquote>
http://stackoverflow.com/questions/877843/can-sifr-show-fonts-on-a-blue-line-like-writing-on-notebook-paper/877987#8779870Answer by Raithlin for Can sIFR show fonts on a blue line (like writing on notebook paper)?Raithlin2009-05-18T14:17:49Z2009-05-18T14:17:49Z<p>Yes. You can follow the tutorial here to get your blue lines in place: <a href="http://www.netmag.co.uk/zine/flash-1/use-custom-type-with-sifr" rel="nofollow">Use custom type with sIFR</a></p>
<p>However, I would caution against the use of sIFR for whole paragraphs of text. Mike Davidson mentions this in his best practices <a href="http://www.mikeindustries.com/blog/sifr/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/665437/purely-as-an-experiment-i-am-trying-to-make-it-absolutely-impossible-to-do-anyth/665510#6655101Answer by Raithlin for Purely as an experiment, I am trying to make it absolutely impossible to do anything but enter more data into an input field; feasible?Raithlin2009-03-20T09:46:15Z2009-03-20T09:46:15Z<p>How about checking the inputted data, running a comparison on the new input, and refusing anything that isn't an extension of what was already there? A little lengthy, perhaps, especially as the field becomes longer, but effective?</p>
http://stackoverflow.com/questions/657876/sifr-load-before-rest-of-page/657937#6579370Answer by Raithlin for sIFR load before rest of page?Raithlin2009-03-18T11:53:14Z2009-03-18T11:53:14Z<p>If I understand the way sIFR works, you need to have created the heading in the DOM before attempting to change it. To be honest, every site I've been to that uses sIFR has that slight flip on loading.</p>
<p>The answer then in my opinion, is no. I stand under correction though.</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657510#6575106Answer by Raithlin for What software for your own personal use did you write?Raithlin2009-03-18T09:20:43Z2009-03-18T09:20:43Z<p>I wrote an app that compares cell phone costs across the spectrum. It was a few years back, when the 3 national operators were doing all they could to obfuscate costs so we couldn't compare apples with apples.</p>
<p>My app would take your itemised bill (csv file), and calculate against a selection of packages. It worked well, and I learned a great deal while writing it.</p>
http://stackoverflow.com/questions/650512/how-much-does-common-sense-affect-software-development/650547#6505471Answer by Raithlin for How much does common sense affect software development?Raithlin2009-03-16T14:01:04Z2009-03-16T14:01:04Z<p>I'm not sure if you are confusing "common sense" with "experience". To a large degree I would agree that common sense helps tremendously, at coding level and otherwise, but I have also found that the answer "just comes to me" - based on problems I have encountered, and solved, before.</p>
<p>To answer the question directly then, yes. Common sense is important, and I believe you will struggle to find a good developer without it. If you lack that, I would spend more time researching solutions, use cases, etc. to find the "obvious" solutions to various problems.</p>
http://stackoverflow.com/questions/625759/how-can-i-show-a-superscript-character-in-net-gui-labels/625772#6257720Answer by Raithlin for How can I show a superscript character in .NET GUI labels?Raithlin2009-03-09T10:45:05Z2009-03-09T10:45:05Z<p>In the label, use the HTML character reference "<code>&sup2;</code>" for the superscript in m². </p>
http://stackoverflow.com/questions/613963/textbox-in-vb-net/613972#6139721Answer by Raithlin for textbox in vb.netRaithlin2009-03-05T08:29:29Z2009-03-05T08:36:12Z<p>How about using the Text.IndexOf(".") Method instead? If it returns >=0 then you already have a decimal point.</p>
<pre><code>If (textbox5.Text.IndexOf(".") >= 0 And e.KeyChar = ".") Then e.Handled = True
</code></pre>
http://stackoverflow.com/questions/552716/is-it-possible-to-work-with-asp-net-2-0-or-asp-net-3-5-under-apache-2-x/552732#5527322Answer by Raithlin for Is it possible, to work with ASP.NET 2.0 or ASP.NET 3.5 under Apache 2.x?Raithlin2009-02-16T09:29:36Z2009-02-16T09:38:45Z<p>The url you link to mentions an old module that is no longer maintained, and doesn't work with Apache 2.2 (according to the comments to that post). Comments further down the page suggest that the <a href="http://sourceforge.net/projects/mod-aspdotnet/" rel="nofollow">updated module</a> works with Apache 2.2 (some even got it to wotk with 3rd party components like MagicAjax, but details are sketchy. Also note the <a href="http://sourceforge.net/tracker/?atid=871785&group_id=175077&func=browse" rel="nofollow">bug list</a>, and the fact that it hasn't been updated since mid-2007. Also note that all posts were pertaining to WAMP - I didn't see any from a LAMP environment.</p>
<p>I would recommend Mono for .Net 2.0 - for 3.5 you are limited to IIS for the moment. One good way to get this right is detailed @ <a href="http://www.dotheweb.net/lama/" rel="nofollow">DoTheWeb</a>.</p>
http://stackoverflow.com/questions/506676/what-does-iformatprovider-do/506726#5067261Answer by Raithlin for What does IformatProvider do?Raithlin2009-02-03T11:09:51Z2009-02-03T11:09:51Z<p><a href="http://msdn.microsoft.com/en-us/library/system.iformatprovider.aspx" rel="nofollow">IFormatProvider</a> provides culture info to the method in question. <a href="http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.aspx" rel="nofollow">DateTimeFormatInfo</a> implements IFormatProvider, and allows you to specify the format you want your date/time to be displayed in. Examples can be found on the relevant MSDN pages.</p>
http://stackoverflow.com/questions/464667/do-you-program-for-profit/465207#4652070Answer by Raithlin for Do you program for profit?Raithlin2009-01-21T13:03:08Z2009-01-21T13:03:08Z<p>Yes, and no. I changed from .Net to ABAP at my employer's request, and worked with it for a year. As interesting as the change was, I weighed up my experience (8 years) with .Net against ABAP, and decided I didn't want to waste that experience. I moved jobs the first chance I got.</p>
<p>I guess it has a lot to do with what direction your career is moving in. I'd say it is a personal decision in many ways.</p>
http://stackoverflow.com/questions/457082/as-an-asp-net-web-developer-using-visual-studio-should-i-have-iis-installed/457201#4572010Answer by Raithlin for As an ASP.NET Web Developer using Visual Studio, should I have IIS installed?Raithlin2009-01-19T10:42:05Z2009-01-19T10:42:05Z<p>Ideally your test server should mirror your production server. That should go without saying. In my opinion, your dev environment should come as close as possible, while fulfilling your needs first (I prefer to keep the dev environment as self-sustaining as possible, in case I am disconnected from the network). </p>
<p>I have no problem using the dev server for development, and IIS (locally or remote, as the case may be) for testing - but it depends on the project requirements too. I prefer to host web services on the local IIS server, for example. YMMV.</p>
http://stackoverflow.com/questions/449808/providing-alternative-images-if-adobe-flash-isnt-available/451148#4511481Answer by Raithlin for Providing alternative images if Adobe Flash isn't availableRaithlin2009-01-16T16:55:12Z2009-01-16T16:55:12Z<p>I use the following code for graceful degradation. It works well.</p>
<pre><code><!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="flash.swf" width="500" height="100">
<!-- <![endif]-->
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
width="500" height="100">
<param name="movie" value="flash.swf" />
<!--><!--dgx-->
<param name="loop" value="false">
<param name="menu" value="false">
<param name="quality" value="high">
<img src="flash_replacement.png" width="500" height="100" alt="No Flash">
</object>
<!-- <![endif]-->
</code></pre>
http://stackoverflow.com/questions/450407/using-linux-vs-windows-for-development/450556#4505561Answer by Raithlin for Using Linux vs Windows for developmentRaithlin2009-01-16T14:32:34Z2009-01-16T14:38:18Z<blockquote>
<p>My question, would it be much easier in terms of setting up a good environment if I were to use Linux, e.g. Ubuntu distribution, as development OS for these things? Would you know some pros and cons when it comes to Windows vs Linux in terms of web development?</p>
</blockquote>
<p>Seeing as how your Windows environment is already set up, I don't see how it would be easier setting one up in Linux. However, there are slight differences between Windows and Linux servers, and although I develop using <a href="http://www.apachefriends.org/en/xampp-windows.html" rel="nofollow">XAMPP</a> I prefer to test on a Linux setup for compatibility.</p>
<blockquote>
<p>(As I'm using mostly web apps these days, switching the OS might be less of a problem. I would need a good replacement for my image editor, though, as I prefer Corel PhotoPaint and PSP4 over Gimp, last time I tried.)</p>
</blockquote>
<p>You might try Krita - it does a reasonable job of bringing image manipulation to the masses. I have moved from PSP/Paint.Net to <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a> - while the learning curve is steep, I haven't looked back - and it runs natively on both Windows and Linux. :) Excellent tutorials via screencast are available from <a href="http://screencasters.heathenx.org/" rel="nofollow">heathenx</a> - helped me tremendously.</p>
http://stackoverflow.com/questions/442529/is-there-a-standard-naming-convention-for-xml-elements/442654#4426541Answer by Raithlin for Is there a standard naming convention for XML elements?Raithlin2009-01-14T11:33:25Z2009-01-14T11:33:25Z<p>I favour TitleCase for element names, and camelCase for attributes. No spaces for either.</p>
<pre><code><AnElement anAttribute="Some Value"/>
</code></pre>
<p>As an aside, I did a quick search for Best Practices in XML, and came up with this rather interesting link: <a href="http://www.xfront.com/BestPracticesHomepage.html" rel="nofollow">XML schemas: Best Practices</a>.</p>
http://stackoverflow.com/questions/212634/best-application-for-storing-code-snippets/373974#3739741Answer by Raithlin for Best Application for storing code snippetsRaithlin2008-12-17T08:24:25Z2008-12-17T08:31:18Z<p>I'm looking for the same thing, and ran across a little app called <a href="http://www.zeraha.org/dload.php?z=za&file_id=1&action=file" rel="nofollow">CodeBank</a> - while I'm blocked from downloading it from my current PC, I will be trying it at home. As a result, I'm not sure if it is portable... still, it looks like a good little app.</p>
<p>On further investigation, I came across the <a href="http://www.portablefreeware.com/?id=1273" rel="nofollow">DevProject Manager</a>, which is definitely portable, has syntax highlighting, search, and a number of other features that have made it my number 1 choice.</p>
http://stackoverflow.com/questions/358788/how-can-i-send-html-mails-with-included-css-with-phpmailer/358895#3588950Answer by Raithlin for How can I send html mails with included CSS with PHPmailer? Raithlin2008-12-11T10:22:26Z2008-12-11T10:22:26Z<p>I've found the best (read broadest) support for CSS is inline (style=""). Sad, but true.</p>
http://stackoverflow.com/questions/320694/do-modern-day-visualstudio-net-projects-still-use-visual-sourcesafe-or-svn/320781#3207812Answer by Raithlin for Do modern-day VisualStudio .NET projects still use Visual SourceSafe, or SVN?Raithlin2008-11-26T14:03:44Z2008-11-26T14:03:44Z<blockquote>
<ul>
<li>I'm getting back into .NET after numerous years in PHP/MySQL</li>
</ul>
</blockquote>
<p>Well done.</p>
<blockquote>
<ul>
<li>back in 2002 on Microsoft projects we always used Visual SourceSafe and everyone hated it</li>
</ul>
</blockquote>
<p>Not much has changed there</p>
<blockquote>
<ul>
<li>in modern day .NET projects do teams still use Visual SourceSafe, has it improved?</li>
</ul>
</blockquote>
<p>Yes, and no. I use SVN in my personal projects, but at work I've had to work with both SVN and VSS2005. As mentioned, there is no standard, and I find it pretty much depends on your team/corporate standard.</p>
http://stackoverflow.com/questions/275631/html-head-best-practices/275752#2757520Answer by Raithlin for HTML <head> best practicesRaithlin2008-11-09T08:37:38Z2008-11-09T08:37:38Z<p>There is a related question <a href="http://stackoverflow.com/questions/190890/order-of-tags-in-headhead#190923">here</a> that may help add some light regarding the order of the tags.</p>
<p>Generally my pages include the following: </p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>...</title>
<meta name="Description" ...>
<meta name="Keywords" ...>
<meta name="Copyright" ...>
<meta name="Author" ...>
<meta name="Language" ...>
<style type="text/css" ...>
</code></pre>
<p>DocType is important to enforce strict rendering (No quirks mode) by the browser. You may want to use XHTML instead - as long as there is one there. I add Copyright and Author purely because I design and create the pages for other companies. Description is for SEO, and Language is for the browser (if it supports it). </p>
<p>I don't believe it makes to much of a difference which meta tag comes first, or whether the title should be above. What counts in most cases is that it exists on the page, and has the correct content.</p>
http://stackoverflow.com/questions/272131/dynamic-resizing-repositioning-of-divs-for-multi-column-viewing/272351#2723510Answer by Raithlin for Dynamic resizing / repositioning of divs for multi-column viewingRaithlin2008-11-07T15:05:44Z2008-11-07T15:22:08Z<p>The only way I can think of is a mixture of dynamic CSS and javascript. Every time a column (feed) is added, use the javascript to rewrite the width (in percentage) of each div. </p>
<p>jQuery would come in handy here.</p>
<pre><code>var columns = $(".feed").size();
var size = 100/columns;
$(".feed").css("width",size+"%");
</code></pre>
<p>Someone feel free to correct me if I'm wrong. My jQuery is a little wobbly.</p>
<p>Of course, if you're not using AJAX, you could implement the same solution entirely in PHP.</p>
http://stackoverflow.com/questions/272270/how-might-i-update-this-code/272328#2723281Answer by Raithlin for How might I update this codeRaithlin2008-11-07T14:58:59Z2008-11-07T14:58:59Z<p>I found this code on the web (from a usability site) which caters for IE and others, and I use it on my flash pages (I've changed it to your code):</p>
<pre><code><!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="http://click-here-to-listen.com/players/iaPlay13.swf?x=1058286910FTRZGK" width="75" height="25">
<!-- <![endif]-->
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="75" height="25">
<param name="movie" value="http://click-here-to-listen.com/players/iaPlay13.swf?x=1058286910FTRZGK" />
<!--><!--dgx-->
<param name="loop" value="false">
<param name="menu" value="false">
<param name="quality" value="high">
</object>
<!-- <![endif]-->
</code></pre>
http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268410#2684100Answer by Raithlin for When writing code do you wrap text or not?Raithlin2008-11-06T11:55:55Z2008-11-06T11:55:55Z<p>I have VS' line wrap on, but I also manually wrap where I think it works best. Been doing this since my VB days, and using C# has made it easier, if anything.</p>
<p>Horizontal scrolling is <strong><em>so</em></strong> counter-intuitive/-productive, and I work with other developers that may not have the same resolution/VS setup as I have, so the word wrap function comes in quite handy.</p>
http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190923#1909232Answer by Raithlin for Order of tags in <head></head>Raithlin2008-10-10T11:41:59Z2008-10-10T11:41:59Z<p>Not a daft question at all.<br />
CSS above Script tags for reasons already mentioned.</p>
<p>CSS is applied in the order you place the tags - the more specific the stylesheet, the lower down the order it should be.</p>
<p>Same goes for scripts - scripts that use functions declared in other files should be loaded after the dependency is loaded.</p>
http://stackoverflow.com/questions/186264/is-it-time-to-start-using-html5/186288#1862880Answer by Raithlin for Is it time to start using HTML5?Raithlin2008-10-09T07:42:17Z2008-10-09T07:52:29Z<p>Firefox 3.1 should support the <video> tag, and the next version of Safari will support that and the <audio> tag - but there will be no way to degrade gracefully (Edit: I've seen some Javascript libraries that allow for this). As always, we are bound to the browser support when designing, and it may still take a while (not to mention user upgrade paths...).</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657510#657510Comment by Raithlin on What software for your own personal use did you write?Raithlin2009-11-18T18:15:56Z2009-11-18T18:15:56ZIt didn't ever generate enough interest for me to complete it, sadly. These days the banks have cleaned up their act and done their own comparisons. :/http://stackoverflow.com/questions/1092376/what-c-knowledge-should-i-have/1092403#1092403Comment by Raithlin on What C# knowledge should I have?Raithlin2009-07-07T13:43:10Z2009-07-07T13:43:10ZThat's a bit harsh, isn't it? It's possible to have used a concept without knowing what it is, after all.http://stackoverflow.com/questions/1063660/need-to-have-spacing-between-end-of-div-and-beginning-of-paragraph/1063718#1063718Comment by Raithlin on Need to have spacing between end of div and beginning of paragraphRaithlin2009-06-30T13:38:25Z2009-06-30T13:38:25ZNot recognised by all browsers - more's the pity.http://stackoverflow.com/questions/1063660/need-to-have-spacing-between-end-of-div-and-beginning-of-paragraph/1063672#1063672Comment by Raithlin on Need to have spacing between end of div and beginning of paragraphRaithlin2009-06-30T13:37:23Z2009-06-30T13:37:23ZYou're giving the last paragraph an ID - only used once in the page. You shouldn't have any hassles with it affecting any other paragraphs - or do I misunderstand you?http://stackoverflow.com/questions/1016835/search-engine-redirecting/1016859#1016859Comment by Raithlin on Search engine redirectingRaithlin2009-06-19T11:28:11Z2009-06-19T11:28:11ZI hope it works out for you. Be sure to mark the answer you do end up using. :)http://stackoverflow.com/questions/920251/vbscript-asp-checking-checkbox/920338#920338Comment by Raithlin on VbScript ASP: checking checkboxRaithlin2009-05-28T11:17:53Z2009-05-28T11:17:53ZThat, and (terms not = "") works nicely.http://stackoverflow.com/questions/887769/lining-up-text-fields/887786#887786Comment by Raithlin on Lining up text fieldsRaithlin2009-05-20T14:33:09Z2009-05-20T14:33:09ZTa. Back to the drawing board...http://stackoverflow.com/questions/878011/jquery-ui-datepicker-override-today-css/878070#878070Comment by Raithlin on jQuery UI DatePicker: override today cssRaithlin2009-05-20T11:02:46Z2009-05-20T11:02:46ZI'm not using it - as I said, I found that on the net. Have you tried using CSS class datepicker_today in conjunction with your .genEvent class? Perhaps by combining both you can override the background...http://stackoverflow.com/questions/657876/sifr-load-before-rest-of-page/657937#657937Comment by Raithlin on sIFR load before rest of page?Raithlin2009-03-20T13:26:52Z2009-03-20T13:26:52ZHa, therein lies the dilemma. I'm not sure, but there are a few different approaches out there. Perhaps one might work better for you.http://stackoverflow.com/questions/661305/how-can-i-trim-the-leading-and-trailing-comma-in-javascript/661325#661325Comment by Raithlin on How can I trim the leading and trailing comma in javascript?Raithlin2009-03-19T07:45:27Z2009-03-19T07:45:27Z+1 for the RE comment.http://stackoverflow.com/questions/661324/format-string-value/661333#661333Comment by Raithlin on Format String valueRaithlin2009-03-19T07:42:16Z2009-03-19T07:42:16ZKudos, mate. I enhanced your solution, is all.http://stackoverflow.com/questions/657876/sifr-load-before-rest-of-page/657937#657937Comment by Raithlin on sIFR load before rest of page?Raithlin2009-03-18T13:52:17Z2009-03-18T13:52:17ZHave you experimented with the various different libraries that implement sIFR?http://stackoverflow.com/questions/657893/is-it-ethical-to-follow-company-policy-when-you-think-its-wrong/657915#657915Comment by Raithlin on Is it ethical to follow company policy when you think it's wrong?Raithlin2009-03-18T11:48:36Z2009-03-18T11:48:36ZI'd add to this by suggesting you point out the advantages of following your route vs IE-only. Perhaps there is a reason why they chose that route (besides pig-headed ignorance).http://stackoverflow.com/questions/625109/jquery-script-load-timing/625126#625126Comment by Raithlin on JQuery Script Load TimingRaithlin2009-03-09T06:54:13Z2009-03-09T06:54:13ZI prefer this solution. You could easily enhance the function to change the text, too.http://stackoverflow.com/questions/613963/textbox-in-vb-netComment by Raithlin on textbox in vb.netRaithlin2009-03-05T10:14:38Z2009-03-05T10:14:38Zrenu, Please choose an accepted answer. ;)