User Antony Scott - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T20:57:58Zhttp://stackoverflow.com/feeds/user/62951http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1549200/forcing-a-jquery-ready-block-to-run-after-all-other-ready-blocks2forcing a jQuery ready block to run after all other ready blocksAntony Scott2009-10-10T22:04:41Z2009-11-02T11:41:22Z
<p>Is it possible to have one jQuery ready block executed after all others have done so.</p>
<p>I have this in my master page ...</p>
<pre><code><script type="text/javascript">
$(document).ready(function()
{
$("input[type='text']:enabled:first", document.forms[0]).focus().select();
});
</script>
</code></pre>
<p>and this in one of my other pages ...</p>
<pre><code><script type="text/javascript">
$(document).ready(function()
{
$('textarea.message-body').wysiwyg();
});
</script>
</code></pre>
<p>The problem I am seeing is that the first block is executed before the second block, which is causing a problem with the tab key. What's happening is that the keyboard focus goes to the address bar in my browser when I press the tab key. I've changed the code slightly to have this in my master page ...</p>
<pre><code><script type="text/javascript">
$(document).ready(function()
{
var bodies = $('textarea.message-body');
if (bodies.length > 0)
{
bodies.wysiwyg();
}
$("input[type='text']:enabled:first", document.forms[0]).focus().select();
});
</script>
</code></pre>
<p>and do away with the other ready block completely. Doing that makes the tab key work properly, and set the focus onto my textarea.</p>
<p>I'd rather not have page specific code in my master page.</p>
<p>So, is there a way to make my textbox focusing code run after the wysiwyg code?</p>
http://stackoverflow.com/questions/1549200/forcing-a-jquery-ready-block-to-run-after-all-other-ready-blocks/1660784#16607840Answer by Antony Scott for forcing a jQuery ready block to run after all other ready blocksAntony Scott2009-11-02T11:41:22Z2009-11-02T11:41:22Z<p>This is the solution I went with.</p>
<p>In my master page I have this...</p>
<pre><code><script type="text/javascript">
<!--
$(document).ready(function()
{
if (typeof (OnLoad) != "undefined")
{
OnLoad();
}
$("input[type='text']:enabled:first", document.forms[0]).focus().select();
});
//-->
</script>
</code></pre>
<p>and in my detail pages I have this...</p>
<pre><code><script type="text/javascript">
<!--
function OnLoad()
{
$('textarea.message-body').wysiwyg();
}
//-->
</script>
</code></pre>
http://stackoverflow.com/questions/672524/how-to-get-a-tree-structured-table-data-by-linq/672621#6726210Answer by Antony Scott for How to get a tree structured table data by linq?Antony Scott2009-03-23T09:03:18Z2009-03-23T11:41:17Z<p>If you're able the change the table structure to add extra fields, then one approach I have used in the past is to have a "Path" field, which holds a comma separated list of IDs.</p>
<pre><code>ID ParentID Name Path
-- -------- ---- ----
1 null x 1
2 null y 2
3 null z 3
4 null t 4
5 1 xx 1,5
6 1 xy 1,6
7 1 xz 1,7
8 2 yx 2,8
9 2 yy 2,9
10 9 yyx 2,9,10
11 10 yyxx 2,9,10,11
12 11 yyxxx 2,9,10,11,12
</code></pre>
<p>Then you can query based on the Path field using LIKE (or StartsWith in Linq)</p>
<p>In your question you say you want to get { 1, 5, 6, 7, 10, 11, 12 }, but those IDs are part of two different sub-trees, if I've read it right.</p>
<p>To get "x" and all it's children ...</p>
<pre><code>where Path = "1" || Path.StartsWith("1,")
</code></pre>
<p>To just get x's children ...</p>
<pre><code>where Path.StartsWith("1,")
</code></pre>
http://stackoverflow.com/questions/667412/how-to-call-a-javascript-function-from-a-control-within-a-masterpage/668159#6681590Answer by Antony Scott for How to call a javascript function from a control within a masterpage?Antony Scott2009-03-20T21:55:47Z2009-03-20T21:55:47Z<p>If, as you've said you've got this jQuery dialog to appear when clicking an asp:Button, why not just hide the button and change your javascript to just press the button once the page has loaded?</p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/668117#6681171Answer by Antony Scott for What's the least useful comment you've ever seen?Antony Scott2009-03-20T21:40:46Z2009-03-20T21:40:46Z<pre><code>if (someFlag)
{
// YES
DoSomething();
}
else
{
// NO
DoSomethingElse();
}
</code></pre>
<p>There was one guy who did that constantly, the rest of the team eventually convinced him to stop doing it!</p>
http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/666777#6667770Answer by Antony Scott for What is the first thing you do when you install Visual Studio?Antony Scott2009-03-20T15:58:48Z2009-03-20T15:58:48Z<p>Set the keyboard mappings to VC6 mode. I never liked the new keyboard shortcuts :)</p>
http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/665514#6655140Answer by Antony Scott for What was your first programming language?Antony Scott2009-03-20T09:48:30Z2009-03-20T09:48:30Z<p>BASIC on a Dragon32</p>
http://stackoverflow.com/questions/551652/cannot-access-http-localhost30000Cannot access http://localhost:3000Antony Scott2009-02-15T21:42:57Z2009-03-18T10:46:43Z
<p>I am trying to learn Ruby on Rails, I have followed the instructions from this <a href="http://www.buildingwebapps.com/articles/6491-setting-up-rails-on-windows-vista" rel="nofollow">page</a> to get rails installed on my PC.</p>
<p>I am also trying to follow this <a href="http://rubyonrails.org/screencasts" rel="nofollow">webcast</a> to try and learn the language and framework. Everything is working so far, apart from the fact that I cannot access <pre>http://localhost:3000
<a href="http://0.0.0.0:3000" rel="nofollow">http://0.0.0.0:3000</a>
<a href="http://127.0.0.1:3000" rel="nofollow">http://127.0.0.1:3000</a>, or
<a href="http://<actual" rel="nofollow">http://<actual</a> IP address>:3000
</pre></p>
<p>locally. If I try the from another PC on my network then it works great. I have tried in Chrome, Firefox and IE7 but none work.</p>
<p>Has anyone else had this problem?</p>
<p>EDIT: Typical!! It's started working now. I have no idea why, I am typing the exact same address in to the address bar and it now works. But only if I use <a href="http://127.0.0.1:3000" rel="nofollow">http://127.0.0.1:3000</a>, localhost doesn't work. I do run IIS ASP.NET/ASP websites on this machine, and they work fine with localhost.</p>
<p>EDIT 2: If I trying pinging localhost it actually says</p>
<pre><code>Reply from ::1: time<1ms
</code></pre>
<p>0.0.0.0 yields...</p>
<pre><code>PING: transmit failed, error code 1214
</code></pre>
<p>only 127.0.0.1 seems to work. I did have IPv6 turned on, so I've disabled that and will try again tomorrow to see if a reboot helps.</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657621#6576210Answer by Antony Scott for What software for your own personal use did you write?Antony Scott2009-03-18T10:01:32Z2009-03-18T10:01:32Z<p>I used to use a PVR system called <a href="http://www.gbpvr.com/" rel="nofollow">GB-PVR</a>. When I needed to upgrade to newer hardware I didn't want to lose the recordings from the recordings screen. I could have just copied them over to the new PC and added them to the video library, but that didn't feel right.</p>
<p>So, I wrote a tool that scanned a folder for all MPG files, created an import xml file and ran the built-in recordings import function of the <a href="http://www.gbpvr.com/" rel="nofollow">GB-PVR</a> software. It worked great, but I did have to do a bit of testing with a test installation of the <a href="http://www.gbpvr.com/" rel="nofollow">GB-PVR</a> software. I released the software to the <a href="http://www.gbpvr.com/" rel="nofollow">GB-PVR</a> community and started to get some positive comments along with feature requests. So, it grew for a while. But I began to lose interest in maintaining it when I moved over to <a href="http://www.team-mediaportal.com/" rel="nofollow">MediaPortal</a>, so I released the source code in case anyone else wanted to make changes to it.</p>
<p>I just checked an it's still on the wiki <a href="http://gbpvr.com/pmwiki/pmwiki.php/Utility/MpegImport" rel="nofollow">here</a>. It was interesting for a while as I learnt a few things while doing it.</p>
http://stackoverflow.com/questions/655327/update-panel-and-javascript/655389#6553890Answer by Antony Scott for Update panel and javascriptAntony Scott2009-03-17T18:01:36Z2009-03-17T18:08:07Z<p>Since you're using an UpdatePanel, you don't really need any javascript for this.</p>
<p>If you change your tr2 element to ...</p>
<pre><code><tr id="tr2" runat="server">
</code></pre>
<p>this will allow you to control it in your server side code. To hide your tr2 row, simply do...</p>
<pre><code>tr2.Style["display"] = "none";
</code></pre>
<p>this should keep things in sync nicely on callbacks.</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/654173#6541730Answer by Antony Scott for What's the next thing on your list to learn?Antony Scott2009-03-17T13:09:26Z2009-03-17T13:09:26Z<p>New stuff I'd like to learn is jQuery and Ruby on Rails, along with improving my understanding of everything else, specifically ASP MVC.NET and Linq.</p>
http://stackoverflow.com/questions/653545/keep-your-source-close-and-your-unit-tests-closer/653590#6535900Answer by Antony Scott for Keep your Source Close and your Unit Tests CloserAntony Scott2009-03-17T09:56:33Z2009-03-17T10:24:13Z<p>Try changing your private methods to internal methods and using the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow">InternalsVisibleTo</a> attribute.</p>
<p>EDIT: I should qualify that by saying that I personally don't think having the TestFixture classess in the same assembly as the classes being tested is a good way to go. I've never had any problems with keeping my unit tests in a seperate assembly. My team has adopted a naming conventions of suffixing the unit tests assembly with ".UnitTests"</p>
<p>The InternalsVisibleTo attribute allows me to fully test non-public methods within my classes, as well as testing public methods that may use them.</p>
http://stackoverflow.com/questions/620899/facebook-notification-of-wordpress-post/651302#6513020Answer by Antony Scott for Facebook notification of Wordpress postAntony Scott2009-03-16T17:10:01Z2009-03-16T17:10:01Z<p>I set mine up by just subscribing my facebook page to the RSS feed on my blog. Now I get the first few sentences of each new blog post on my wall (plus other people see it on their notifications) with a link to the original post.</p>
<p>I use a facebook application called "Blog RSS Feed Reader", but it may well be built in to facebook now.</p>
http://stackoverflow.com/questions/650644/terminology-can-events-be-thrown/650649#65064918Answer by Antony Scott for Terminology - can events be "thrown"?Antony Scott2009-03-16T14:25:40Z2009-03-16T14:25:40Z<p>I agree, events are raised/fired/triggered. If anything is thrown it's exceptions.</p>
http://stackoverflow.com/questions/650327/visual-studio-fonts-and-colors-settings/650456#6504560Answer by Antony Scott for Visual Studio Fonts and Colors SettingsAntony Scott2009-03-16T13:40:07Z2009-03-16T13:40:07Z<p>Check this <a href="http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx" rel="nofollow">page</a> out for lots of themes.</p>
<p>Personally, I use the last one.</p>
http://stackoverflow.com/questions/235474/what-infuriates-you-the-most-when-maintaining-others-code/649678#6496781Answer by Antony Scott for What infuriates you the most when maintaining others' code?Antony Scott2009-03-16T08:52:49Z2009-03-16T08:52:49Z<p>Business Logic and Data Access code mixed in with the GUI code (in asp pages, or even worse aspx.cs files). That really irritates me.</p>
<p>And, to agree with an earlier answer, neat stuff I didn't think of first :)</p>
http://stackoverflow.com/questions/643782/how-to-know-if-an-object-is-a-date-or-not-with-javascript/643818#643818-3Answer by Antony Scott for How to know if an object is a Date or not with Javascript?Antony Scott2009-03-13T17:40:27Z2009-03-13T18:02:02Z<p>How about using the typeof operator?</p>
<pre><code>function DateTest()
{
var dt = new Date(2009, 03, 13);
var str = "string";
var number = 1;
alert(dt);
if (typeof(dt) == typeof(new Date()))
{
alert("it's a date");
}
if (typeof(dt) == typeof(str))
{
alert("it's a string");
}
if (typeof(dt) == typeof(number))
{
alert("it's a number");
}
}
</code></pre>
<p>EDIT: Okay, so the above didn't work. But I've just tried the below and it seems to work...</p>
<pre><code>function DateTest()
{
CheckType(new Date());
CheckType("string");
CheckType(1);
CheckType(new Object());
}
function CheckType(obj)
{
var message = obj.toString();
message += "<br />";
message += obj.constructor;
message += "<br />Type = ";
if (obj.constructor==Array)
{
message += "Array";
}
if (obj.constructor==Boolean)
{
message += "Boolean";
}
if (obj.constructor==Date)
{
message += "Date";
}
if (obj.constructor==String)
{
message += "String";
}
if (obj.constructor==Number)
{
message += "Number";
}
if (obj.constructor==Object)
{
message += "Object";
}
message += "<br /><br />";
document.write(message);
}
</code></pre>
http://stackoverflow.com/questions/643340/freeze-th-header-and-scrolling-data/643622#6436220Answer by Antony Scott for Freeze TH header and scrolling dataAntony Scott2009-03-13T16:47:52Z2009-03-13T16:47:52Z<p>Have you looked a the jQuery grid?</p>
<p><a href="http://trirand.com/jqgrid/jqgrid.html" rel="nofollow">http://trirand.com/jqgrid/jqgrid.html</a></p>
http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/643153#6431534Answer by Antony Scott for What's your "ceremony" after finishing your project or solving a hard problem?Antony Scott2009-03-13T15:10:42Z2009-03-13T15:10:42Z<ul>
<li>Commit to source control</li>
<li>Resolve fogbugz case</li>
<li>Have a cup of tea/coffee</li>
<li>Move on to next piece of work</li>
</ul>
http://stackoverflow.com/questions/641784/how-to-get-distance-from-google-map-api-from-server-side-asp-net-2-0/641910#6419100Answer by Antony Scott for How to get distance from Google Map API from server side ASP.NET 2.0Antony Scott2009-03-13T09:18:04Z2009-03-13T09:18:04Z<p>You could try creating a HttpWebRequest "faking" what you'd do in a browser, that is assuming all the parameters for google maps can be passed in the querystring. Then you could just read the response stream.</p>
http://stackoverflow.com/questions/626514/data-transfered-on-each-web-request/626523#6265230Answer by Antony Scott for Data transfered on each web request.Antony Scott2009-03-09T14:48:33Z2009-03-09T14:48:33Z<p>Try debugbar. That will give you the transmitted number of bytes.</p>
<p>Also Fiddler2 could be used to look at each response, and I think that will tell you the number of bytes, as well as being able to actually view what was sent.</p>
http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/620515#6205151Answer by Antony Scott for Which LINQ syntax do you prefer? Fluent or Query ExpressionAntony Scott2009-03-06T21:33:50Z2009-03-06T21:33:50Z<p>I've been using Linq for about 6 months now. When I first started using it I preferred the query syntax as it's very similar to T-SQL.</p>
<p>But, I'm gradually coming round to the former now, as it's easy to write reusable chunks of code as extension methods and just chain them together. Although I do find putting each clause on it's own line helps a lot with readability.</p>
http://stackoverflow.com/questions/617386/limit-text-to-the-width-of-sibling-image-auto-width-in-css/618737#6187371Answer by Antony Scott for Limit text to the width of sibling image / auto width in CSSAntony Scott2009-03-06T12:47:57Z2009-03-06T12:47:57Z<p><strong>Stylesheet</strong></p>
<pre><code>div.figure * { width: 100% }
div.figure div { overflow: hidden; white-space: nowrap; }
</code></pre>
<p><em>note: to enable wrapping just remove that last css line</em></p>
<p><strong>HTML</strong></p>
<pre><code><div class="figure" style="width:150px;">
<img src="logo.png" alt="logo" />
<div>A description for the image</div>
</div>
</code></pre>
<p>I've checked it in Chrome, Firefox and IE7 and it looks good in all three. I realise this has the width on the div and not the img, but at least you only need to set the width in one place. Short of using css-expressions (IE only) I can't see a way of setting the outer divs width to the width of the first child element.</p>
http://stackoverflow.com/questions/618507/ie7-defaults-elements-to-100-width/618536#6185361Answer by Antony Scott for IE7 Defaults Elements to 100% WidthAntony Scott2009-03-06T11:31:31Z2009-03-06T11:31:31Z<p>As Richard and BeafTurkey say, divs are block elements and will fill the width of the browser.</p>
<p>You can either use an inline element, such as a span</p>
<pre><code><span id="test">
Test information!
</span>
</code></pre>
<p>or add some style to your div to force it to be inline</p>
<pre><code>div#test { display: inline; }
</code></pre>
http://stackoverflow.com/questions/618097/how-do-you-easily-horizontally-center-a-div-using-css/618137#6181376Answer by Antony Scott for How do you easily horizontally center a <div> using CSS?Antony Scott2009-03-06T09:08:21Z2009-03-06T09:08:21Z<p>In most browsers this will work...</p>
<p><strong>Stylesheet</strong></p>
<pre><code>div.centre
{
width: 200px;
display: block;
margin-left: auto;
margin-right: auto;
}
</code></pre>
<p><strong>HTML</strong></p>
<pre><code><div class="centre">Some Text</div>
</code></pre>
<p>In IE6 you will need to add another outer div...</p>
<p><strong>Stylesheet</strong></p>
<pre><code>div.layout
{
text-align: center;
}
div.centre
{
text-align: left;
width: 200px;
display: block;
margin-left: auto;
margin-right: auto;
}
</code></pre>
<p><strong>HTML</strong></p>
<pre><code><div class="layout">
<div class="centre">Some Text</div>
</div>
</code></pre>
http://stackoverflow.com/questions/519769/sql-server-2008-pass-arraylist-or-string-to-sp-for-in/519791#5197910Answer by Antony Scott for SQL Server (2008) Pass ArrayList or String to SP for IN()Antony Scott2009-02-06T10:23:24Z2009-03-05T08:46:15Z<p>I cannot provide you with the actual code, but I have solved this problem by writing a function that takes the varchar and returns a table of ints.</p>
<p>You can then do this ....</p>
<pre><code>SELECT *
FROM tbl
WHERE Id IN (SELECT IntValue FROM dbo.CsvToInt(@myList))
</code></pre>
http://stackoverflow.com/questions/561098/disabling-a-module-in-a-program-by-not-shipping-the-dll/613061#6130611Answer by Antony Scott for Disabling a module in a program by not shipping the .dllAntony Scott2009-03-05T00:02:19Z2009-03-05T00:02:19Z<p>One possible approach (assuming you don't want to or can't go the plugin route) would be to create a dummy DLL with all the same classes and methods in there but that actually doesn't do anything.</p>
<p>Depending on the size and complexity of your DLL this may or may not be a viable action.</p>
<p>The plugin route would be the way I'd approach it though, as whenever the "real" DLL changes you will need to update your dummy one.</p>
http://stackoverflow.com/questions/606943/accessing-styles-programmatically-to-get-values/612999#6129991Answer by Antony Scott for Accessing styles programmatically to get valuesAntony Scott2009-03-04T23:41:14Z2009-03-04T23:41:14Z<p>I wrote something along these lines a while back. It involved a HttpHandler to deal with the CSS files, a change to the IIS config to get asp.net to receive the requests for the CSS files, and a simple xml file structure which contained my colour definitions. But you've done that with a database, which is fine too.</p>
<p>Then in the CSS I had something like this ...</p>
<pre><code>.button
{
background-color: $colours:button-background-colour;
color: $colours:button-text-colour;
}
</code></pre>
<p>with my xml defining the values for button-background-colour and button-text-colour. I used regular expression text replacement to process the CSS file substituting in the relevant values from the xml file.</p>
<p>I'm sure you could take some of those ideas and combine it with your existing code to get the desired effect. You will of course need to deal with caching and changes to your database/xml file.</p>
<p>Hope that helps.</p>
<p>If you need any pointers on any of that then I'm sure I can dig out some example code.</p>
http://stackoverflow.com/questions/607521/visited-link-color-changes/608021#608021-1Answer by Antony Scott for Visited link color changesAntony Scott2009-03-03T20:26:59Z2009-03-03T20:26:59Z<p>I would take the colour out into it's own rule.</p>
<pre><code>.news_item_info
{
font-size: .7em;
text-indent: 30px;
}
.news_item_info, .news_item_info a:link, .news_item_info a:visited
{
color: #000;
}
</code></pre>
<p>That way you only need to change the one thing if you ever want to change the colour.</p>
<p>alternatively, if you wanted all elements within the div.news_item_info element to be black, you could use this selector instead</p>
<pre><code>.news_item_info, .news_item_info *
</code></pre>
http://stackoverflow.com/questions/517826/disabling-a-checkbox-in-asp-net/607983#6079830Answer by Antony Scott for Disabling a checkbox in asp.netAntony Scott2009-03-03T20:18:55Z2009-03-03T20:18:55Z<p>It's still a little unclear what you're trying to do. From what you're said this would seem to be what you're wanting to do ...</p>
<pre><code><html>
<body>
<input id="cb" type="checkbox" onclick="cb2.disabled=!cb2.disabled;fs.disabled=!fs.disabled;" />
<label for="cb">Enable/Disable</label>
<br />
<input id="cb2" type="checkbox" disabled="disabled" />
<label for="cb2">Click me</label>
<br />
<input id="cb3" type="checkbox" />
<label for="cb3">Some other checkbox</label>
</body>
</html>
</code></pre>
<p>If not, then perhaps you could include some example html that highlights the problem you're facing.</p>
http://stackoverflow.com/questions/1549200/forcing-a-jquery-ready-block-to-run-after-all-other-ready-blocks/1549241#1549241Comment by Antony Scott on forcing a jQuery ready block to run after all other ready blocksAntony Scott2009-10-10T22:22:12Z2009-10-10T22:22:12ZThanks, I'd sort of got the same solution. I've gone for having an OnLoad() function in my page, with this in the master ...
<script type="text/javascript">
$(document).ready(function()
{
if (typeof (OnLoad) != "undefined")
{
OnLoad();
}
$("input[type='text']:enabled:first", document.forms[0]).focus().select();
});
</script>
http://stackoverflow.com/questions/613026/how-to-deal-with-a-show-making-interviewer/613070#613070Comment by Antony Scott on How to deal with a "show making" interviewer?Antony Scott2009-03-21T23:06:24Z2009-03-21T23:06:24Z+1 for point 3, honesty is the best policy :)
http://stackoverflow.com/questions/667131/selecting-whole-row-in-alternating-colored-rows-gridviewComment by Antony Scott on Selecting whole row in alternating colored rows gridviewAntony Scott2009-03-20T20:55:15Z2009-03-20T20:55:15Zcould you post the code for the HilightRow javascript function please?http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103031#103031Comment by Antony Scott on What was your first home computer?Antony Scott2009-03-20T11:20:39Z2009-03-20T11:20:39ZI didn't have anything as fancy as a floppy drive, I had a tape machine with the perfect "loading" volume marked in tipex!http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/366957#366957Comment by Antony Scott on What was your first programming language?Antony Scott2009-03-20T09:49:24Z2009-03-20T09:49:24Zwow, I'd forgotten the "good old days" when IBM PC clones would boot up in to basic :)http://stackoverflow.com/questions/553523/what-is-the-most-frustrating-restriction-your-it-department-has-ever-put-on-you-o/553585#553585Comment by Antony Scott on What is the most frustrating restriction your IT department has ever put on you or your machine?Antony Scott2009-03-18T10:18:12Z2009-03-18T10:18:12Z+1 - I held on to an older pair of 17" monitors purely because they could run at 100Hz, and the newer "better" monitors could only manage 75Hz. We had a problem with our building power supply which caused noticable screen "wobbling" which would give me a really bad headache by the end of the day.http://stackoverflow.com/questions/654797/why-is-the-updatepanel-response-size-changing-on-alternate-requestsComment by Antony Scott on Why is the UpdatePanel Response size changing on alternate requests?Antony Scott2009-03-17T18:22:30Z2009-03-17T18:22:30Zyou say you're using fiddler, so does the request vary in any way each time?http://stackoverflow.com/questions/653545/keep-your-source-close-and-your-unit-tests-closer/653590#653590Comment by Antony Scott on Keep your Source Close and your Unit Tests CloserAntony Scott2009-03-17T16:12:36Z2009-03-17T16:12:36ZI will admit that I've only used it once so far. I did think it would be more useful when I first learnt of it, but it's turned out that I've not really needed it that much.http://stackoverflow.com/questions/650644/terminology-can-events-be-thrown/650649#650649Comment by Antony Scott on Terminology - can events be "thrown"?Antony Scott2009-03-16T14:56:29Z2009-03-16T14:56:29ZI did think of saying tantrums and exceptions!http://stackoverflow.com/questions/643340/freeze-th-header-and-scrolling-data/643551#643551Comment by Antony Scott on Freeze TH header and scrolling dataAntony Scott2009-03-13T16:46:19Z2009-03-13T16:46:19ZIf my memory serves me, that works in firefox but not IE, you have to use css expressions with IE.http://stackoverflow.com/questions/624310/castle-windsor-cannot-find-my-service-type/626384#626384Comment by Antony Scott on Castle Windsor Cannot find my Service TypeAntony Scott2009-03-09T16:27:13Z2009-03-09T16:27:13ZIt's not a stupid question at all. It can easily be done, if you don't have a reference to the assembly containing your service then it won't exist in the output folder.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3138#3138Comment by Antony Scott on What is the single most influential book every programmer should read?Antony Scott2009-03-06T21:42:57Z2009-03-06T21:42:57ZI found Head-First Design Patterns very biased towards food based businesses, I'm not sure what they were trying to say about developers!http://stackoverflow.com/questions/619767/net-reflection-set-object-property/619788#619788Comment by Antony Scott on .Net - Reflection set object propertyAntony Scott2009-03-06T18:02:01Z2009-03-06T18:02:01ZI have done this very same thing today. The above works great, obviously a null check should be done on prop before attempting to use it.http://stackoverflow.com/questions/617386/limit-text-to-the-width-of-sibling-image-auto-width-in-css/618737#618737Comment by Antony Scott on Limit text to the width of sibling image / auto width in CSSAntony Scott2009-03-06T15:00:03Z2009-03-06T15:00:03Zfair comment on the * selectorhttp://stackoverflow.com/questions/363113/any-good-geeky-baby-names/363695#363695Comment by Antony Scott on Any good geeky baby names?Antony Scott2009-03-06T11:15:03Z2009-03-06T11:15:03Zchildren[0] should be Children.First() :)