User HBoss - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:45:41Z http://stackoverflow.com/feeds/user/17091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820593/search-a-javascript-object/1820742#1820742 0 Answer by HBoss for Search a JavaScript object HBoss 2009-11-30T16:11:08Z 2009-11-30T16:11:08Z <p>You might like using jLinq (personal project)</p> <p><a href="http://Hugoware.net/Projects/jLinq" rel="nofollow" >http://Hugoware.net/Projects/jLinq</a></p> <p>Works like LINQ but for JSON and it allows you to extend it and modify it however you want to. There is already a bunch of prebuilt methods to check values and ranges.</p> http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess 57 Javascript - How do you organize this mess?!? HBoss 2008-10-29T15:19:32Z 2009-11-01T16:53:39Z <p>As Javascript Frameworks like jQuery make client side web applications richer and more functional, I've started to notice one problem...</p> <p><strong>How in the world do you keep this organized?</strong></p> <ul> <li>Put all your handlers in one spot and write functions for all the events?</li> <li>Create function/classes to wrap all your functionality?</li> <li>Write like crazy and just hope it works out for the best?</li> <li>Give up and get a new career?</li> </ul> <p>I mention jQuery, but it's really any Javascript in general. I'm finding that as lines upon lines begin to pile up, it gets harder to manage the script files or find what you are looking for. Quite possibly the biggest propblems I've found is there is so many ways to do the same thing, it's hard to know which one is best. </p> <p>Is there any general recommendations on the best way to keep your <strong>.js</strong> files as nice and neat as the rest of your application? Or is this just a matter of IDE? Is there a better option out there?</p> <p><hr /></p> <p><strong>EDIT</strong></p> <p>This question was intended to be more about code organization and not file organization. There has been some really good examples of merging files or splitting content around.</p> <p>My question is what is the best way to organize your actual code. What is your way, or even a recommended way to interact with page elements and create reuseable code that doesn't conflict with each other.</p> <p>Some people have listed <strong>namespaces</strong> which is a good idea. What are some other ways, more specifically dealing with elements on the page and keeping the code organized and neat?</p> http://stackoverflow.com/questions/987995/alternatives-to-using-buildproviders-with-web-applications 0 Alternatives to Using BuildProviders with Web Applications HBoss 2009-06-12T17:35:34Z 2009-10-19T17:37:06Z <p>I've read that you cannot use a BuildProvider with Web Applications in Visual Studio (or more specifically, you can use it, but your code isn't part of the project)</p> <p>Are there any other ways to generate code on the fly using a Web Application project? With or without using third-party tools?</p> http://stackoverflow.com/questions/1143417/json-data-parsed-or-evaled 2 JSON Data - Parsed Or 'Eval'ed HBoss 2009-07-17T13:51:54Z 2009-09-30T17:51:33Z <p>From a security perspective, I can see simply doing an 'eval' on incoming JSON data as a critical mistake. If you got data like below you'd have some problems.</p> <pre><code>{ someData:((function() { alert("i'm in ur code hackin' ur page"); })()) } </code></pre> <p>I wondered what do most popular Javascript libraries do? Is it a manual parse or simply an eval?</p> <p><strong>[Edit]</strong></p> <p>I'm not asking if <em>I</em> should eval/parse - I was asking what methods some of the popular Javascript libraries used (jQuery, Prototype, etc...)</p> http://stackoverflow.com/questions/820646/jquery-most-impressive-thing-you-do-in-a-single-chained-command -7 jQuery: Most impressive thing you do in a single chained command? HBoss 2009-05-04T15:45:46Z 2009-09-17T06:45:03Z <p><em>I didn't see anything about this, and if it happens to be done then my apologies.</em></p> <p>What is the most impressive, single chained command you can create with jQuery? Not a command like $.someFancyPlugin("#target"), but using the core library functions.</p> <p>I thought it would be interesting to see what people could come up with so this is <strong>going straight to Community Wiki.</strong></p> <p><strong>Here is an example,</strong> in Windows, some password boxes let you check on and off to see the value in the password field. This command will do the same thing for all password boxes on a page.</p> <pre><code>$("input[type=password]") .each(function(index,input) { input = $(input); $("&lt;div/&gt;") .append( $("&lt;input type='checkbox' /&gt;") .attr("id", ("check_"+index)) .click(function() { var change = $(this).is(":checked") ? "text" : "password"; var rep = $("&lt;input type='" + change + "' /&gt;") .attr("id", input.attr("id")) .attr("name", input.attr("name")) .val(input.val()) .insertBefore(input); input.remove(); input = rep; }) ) .append( $("&lt;label/&gt;") .attr("for", ("check_"+index)) .text("Show contents of the password box.") ) .insertAfter(input); }); </code></pre> http://stackoverflow.com/questions/1335293/need-help-with-regex-to-extract-zip-code-from-string/1335321#1335321 1 Answer by HBoss for Need help with Regex to extract zip code from string HBoss 2009-08-26T14:54:46Z 2009-08-26T14:54:46Z <p>I think you're looking for <em>Grouping</em> that you can do with RegExes...</p> <p>For an example...</p> <pre><code>Regex.Match(input, ", (?&lt;zipcode&gt;[0..9]{4}) ").Groups["zipcode"].Value; </code></pre> <p>You might need to modify this a bit since I'm going off of memory...</p> http://stackoverflow.com/questions/1325700/how-to-create-a-moving-clouds-using-jquery/1325727#1325727 0 Answer by HBoss for How to create a moving clouds using jQuery? HBoss 2009-08-25T02:15:03Z 2009-08-25T02:15:03Z <p>You might want to check out Glimmer (<a href="http://visitmix.com/Lab/Glimmer" rel="nofollow" >http://visitmix.com/Lab/Glimmer</a>). </p> <p>It appears to be geared towards performing complex animations using jQuery.</p> http://stackoverflow.com/questions/1324909/inserting-a-character-inside-the-body-of-a-paragraph/1324974#1324974 0 Answer by HBoss for Inserting a character inside the body of a paragraph. HBoss 2009-08-24T21:50:47Z 2009-08-24T21:50:47Z <p>I'm not sure you can solve this by splitting the content with breaks since you aren't guaranteed that the break will fit uniformly across browsers. You have variations of font-size, widths, etc.</p> <p>Normally when I see content that extends too var it simply overlaps over the rest of the page or the designer sets the overflow so that the content can be scrolled. There could potentially be some CSS tricks you could use, but I'm not aware of any.</p> <p>As an alternative approach, instead of simply inserting a line break every <em>x number</em> of characters, you might just insert a space after certain characters, for example, punctuation. This will make sure that the content wraps at some point or another.</p> http://stackoverflow.com/questions/1322607/find-first-element-of-certain-type-in-a-list-using-linq/1322767#1322767 3 Answer by HBoss for Find first element of certain type in a list using LINQ HBoss 2009-08-24T14:32:58Z 2009-08-24T14:32:58Z <p>You could just use the <code>FirstOrDefault</code> and pass in the delegate to use for the comparison.</p> <pre><code>object[] list = new object[] { 4, "something", 3, false, "other" }; string first = list.FirstOrDefault(o =&gt; o is string); //something </code></pre> http://stackoverflow.com/questions/1246004/how-to-insert-javascript-in-asp-net-master-pages/1246037#1246037 -1 Answer by HBoss for How to insert javascript in asp.net master pages HBoss 2009-08-07T17:34:38Z 2009-08-07T17:34:38Z <p>Can you explain what you mean by the "~/" isn't working? It should be exactly what you're looking for. You might check that your <strong>head</strong> tag has the <strong>runat="server"</strong> attribute, since that might prevent the "~/" from working.</p> http://stackoverflow.com/questions/335546/even-column-heights-without-using-a-table 2 Even column heights without using a TABLE HBoss 2008-12-02T21:36:43Z 2009-08-07T08:19:09Z <p>Is there a way to have two columns, that match each other in height, without using table cells, fixed heights or Javascript?</p> <p><strong>Using a TABLE</strong></p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td style="background:#F00;"&gt; This is a column &lt;/td&gt; &lt;td style="background:#FF0;"&gt; This is a column&lt;br /&gt; That isn't the same&lt;br /&gt; height at the other&lt;br /&gt; yet the background&lt;br /&gt; still works &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p><strong>Using DIVs</strong></p> <pre><code>&lt;div style="float:left;background:#F00" &gt; This is a column &lt;/div&gt; &lt;div style="float:left;background:#FF0" &gt; This is a column&lt;br /&gt; That isn't the same&lt;br /&gt; height at the other&lt;br /&gt; yet the background&lt;br /&gt; still works &lt;/div&gt; &lt;div style="clear:both;" &gt;&lt;/div&gt; </code></pre> <p>The goal is to make both backgrounds extend the full height regardless of which side is taller.</p> <p>Nesting one in the other wouldn't work because it doesn't guarantee both side are the correct height.</p> <p><strong>Unfortunately, the preview showed the working HTML, but the actual post stripped it out. You should be able to paste this into an HTML file and see what I mean.</strong></p> http://stackoverflow.com/questions/1213224/code-protection-with-loaded-assemblies-net 1 Code Protection With Loaded Assemblies (.NET) HBoss 2009-07-31T15:33:05Z 2009-07-31T19:36:40Z <p>This an example problem to illustrates my point. I'm not looking for a solution to <strong>this problem</strong> but instead the general idea behind it.</p> <p>Lets just say I've got a project that lets people load in dynamic assemblies -- the idea being "plug-ins". Lets say it runs on a Web Server. They inherit from the abstract plugin class and define a few methods... but one of them does this...</p> <pre><code>public class SomePlugin : PluginBaseClass { //Some method that is supposed to update the //the plugin information public virtual void Update() { HttpContext.Current.Response.Redirect("http://new-website.com"); } } </code></pre> <p>I wouldn't want to allow a dynamic assembly to have access to something like that -- but since it is static, what can you do?</p> <p>I'm not sure how you lock down assemblies, but it seems to me that you can't possibly cover all of your bases. You still want them to be able to create classes and have access to <em>some</em> things, but not others.</p> <p>Any suggestions for protecting your static information in .NET from dynamic assemblies?</p> http://stackoverflow.com/questions/1213086/postpone-postback-for-3-seconds/1213151#1213151 0 Answer by HBoss for Postpone Postback For 3 Seconds? HBoss 2009-07-31T15:21:32Z 2009-07-31T15:21:32Z <p>You're probably going to need to override a couple things in your Javascript and use a "setTimeout" to delay the loading.</p> <pre><code>&lt;script type="text/javascript" &gt; var __handleSubmit = theForm.submit; theForm.onsubmit = function() { alert('loading'); //Show your message here window.setTimeout(function() { __handleSubmit(); }, 3000); } &lt;/script&gt; </code></pre> <p><em>You might want to play with a bit more... this is may not work for all instances since I've never done it.</em></p> <p>If the delay is simply for "aesthetics", to make it appear it is working, then I'd recommend against it - programmers appear to be the only people that think loading bars are cool :)</p> http://stackoverflow.com/questions/1166231/any-famous-book-on-designing-website-user-interface-to-recommend/1166276#1166276 0 Answer by HBoss for any famous book on designing website user interface to recommend ? HBoss 2009-07-22T15:50:15Z 2009-07-22T15:50:15Z <p>I agree with the guy above for Don't Make Me Think -- <a href="http://www.sensible.com/chapter.html" rel="nofollow" >I thought a link to a sample chapter of the book might be valuable as well.</a></p> http://stackoverflow.com/questions/1166073/how-to-fadeout-a-div-after-a-document-has-loaded/1166096#1166096 7 Answer by HBoss for How to fadeOut a div after a document has loaded? HBoss 2009-07-22T15:26:20Z 2009-07-22T15:26:20Z <p>I think you're missing a little of your code</p> <pre><code>$(document).ready(function() { $("#notify-container").fadeOut(2000); } </code></pre> <p>Should be...</p> <pre><code>$(document).ready(function() { $("#notify-container").fadeOut(2000); }); // &lt;--- </code></pre> http://stackoverflow.com/questions/1159800/silverlight-support-for-dynamic-code 1 Silverlight - Support For Dynamic Code? HBoss 2009-07-21T15:07:55Z 2009-07-21T15:51:53Z <p>I'm trying to understand a little about the relationship of server-side code to client side code in Silverlight.</p> <p>I would anticipate that you can't simply 'eval' a string and have new code, but <strong>could you load an assembly on the server side and include it with the Silverlight code that is sent down to the client?</strong></p> <p>I'm a complete 'noob' when it comes to Silverlight so I may be completely misunderstanding how it works so any clarification would be appreciated.</p> <p><strong>[Edit]</strong></p> <p>Just so it makes a little more sense what I'm trying to do, I'd like to write some simple code (as in logic only), compile it on the server and then send it back down to the client so it can be used on the client side. I'm not sure if that would be a DLL or even possible...</p> http://stackoverflow.com/questions/811614/c-is-keyword-and-checking-for-not 10 C# : 'is' keyword and checking for Not HBoss 2009-05-01T14:34:26Z 2009-07-11T21:26:39Z <p>This is a silly question, but you can use this code to check if something is a particular type...</p> <pre><code>if (child is IContainer) { //.... </code></pre> <p>Is there a more elegant way to check for the "NOT" instance?</p> <pre><code>if (!(child is IContainer)) { //A little ugly... silly, yes I know... //these don't work :) if (child !is IContainer) { if (child isnt IContainer) { if (child aint IContainer) { if (child isnotafreaking IContainer) { </code></pre> <p>Yes, yes... silly question....</p> <p><strong>Because there is some question</strong> on what the code looks like, it's just a simple return at the start of a method.</p> <pre><code>public void Update(DocumentPart part) { part.Update(); if (!(DocumentPart is IContainer)) { return; } foreach(DocumentPart child in ((IContainer)part).Children) { //...etc... </code></pre> http://stackoverflow.com/questions/1110069/throw-exception-vs-return-error-within-a-try-catch-finally 0 Throw Exception VS Return Error within a Try,Catch,Finally HBoss 2009-07-10T15:03:03Z 2009-07-10T15:34:11Z <p>I'm pretty sure I already know the answer, but I'm still curious what the opinion is on handling an error within a Try,Catch,Finally block -- <em>but when you're repeating yourself.</em></p> <p><strong>BTW - I'm not talking about User Input - but using that for an example because it is clear and short</strong></p> <p>Consider this bit of code...</p> <pre><code>try { if (success) { return someSuccessMessage; } else { logError("User input not correct format"); return someErrorMessage; // repeats itself } } catch (Exception ex) { logError(ex.Message); return someErrorMessage; // repeats itself } </code></pre> <p>Say we have a function, that if it fails we want to return an error message because the exception is irrelevant -- our function did not succeed and the user doesn't need any additional detail.</p> <p>I've always held the belief that if you can handle the error, avoid the exception -- since it isn't exceptional anymore, but I wondered the opinion about avoiding repeating yourself as well... You could do the following to avoid repeating yourself...</p> <pre><code>try { if (success) { return someSuccessMessage; } else { throw new Exception("User input not correct format"); } } catch (Exception ex) { logError(ex.Message); return someErrorMessage; } </code></pre> <p>This isn't the best example, but I was going for brevity to make the point of repeating code.</p> <p><strong>Exceptions are known to incur a performance penalty, but what are the thoughts about a situation like this?</strong></p> http://stackoverflow.com/questions/1098127/black-and-white-image-processing-in-c/1098161#1098161 0 Answer by HBoss for black and white Image processing in C# HBoss 2009-07-08T13:42:43Z 2009-07-08T13:42:43Z <p>Interesting problem - I'm assuming the 'white circle' in your example is actually another image - meaning you aren't drawing the circle yourself?</p> <p>If so, you might scan through all of the pixels to find a white pixel that has black on at least one side of it (either 4 directions or 8 including corners). If it is a match then swap it to red. If not then ignore it.</p> <p>I doubt that is the best way to do it, but if it is only black and white, this might get you started.</p> http://stackoverflow.com/questions/1092578/problem-calling-method-inside-another-method-in-javascript/1092662#1092662 0 Answer by HBoss for Problem calling method inside another method in javascript? HBoss 2009-07-07T14:28:22Z 2009-07-07T14:28:22Z <p>You have to be careful when you use <em>this</em> to identify anything in Javascript because each time you change scope "this" changes.</p> <p>Assigning the 'this' reference to it's own variable helps get around this.</p> <pre><code>var a = new function() { var self = this; self.method = function() { alert('hiya'); }; var b = function() { this.method(); // this isn't 'a' anymore? self.method(); // but 'self' is still referring to 'a' }; }; </code></pre> http://stackoverflow.com/questions/1088838/javascript-modal-on-top-of-flash-games-in-all-browsers/1089326#1089326 -1 Answer by HBoss for Javascript modal on top of Flash games, in all browsers... HBoss 2009-07-06T21:36:22Z 2009-07-06T21:36:22Z <p>A simple solution would to be to toggle the overflow style for the body/html element on your page to <em>hidden</em>. This disables the page from scrolling, but should maintain your position on the page.</p> <pre><code>//toggle this on and off when showing the window document.body.style.overflow = 'hidden'; </code></pre> http://stackoverflow.com/questions/1087962/multi-threaded-database-queries 2 Multi-Threaded Database Queries HBoss 2009-07-06T16:37:24Z 2009-07-06T20:04:06Z <p>So we have this <strong>ultimate fail</strong> vendor (it's a long story, but trust me here) that has created an application that has separate, but identical in design, databases that we need to query (10 of them actually). Each of these databases is for a different "location" - but it's all still information relevant to all locations.</p> <p>I've written some code to start 10 unique threads to issue queries to each of the separate databases, wait for the results to finish, and then combine them into a single set of records that can be used an manipulated.</p> <p>The question here is <strong>is there any risk for reading 10 separate databases, using the same credentials for each, all at once?</strong></p> <p>I anticipate it should be a non-issue since databases can have hundreds of connections at any given time, but I wanted to get some feedback before I committed to this design.</p> <p><em>MS-SQL if you're curious</em></p> http://stackoverflow.com/questions/1086618/comparing-enum-flags-in-c/1086638#1086638 -1 Answer by HBoss for Comparing enum flags in C# HBoss 2009-07-06T12:13:12Z 2009-07-06T12:13:12Z <p>Personally, I think that look fine because you've wrapped it into a single purpose function. If you had that code scattered through an entire program I think you would have some problems, but what you've created improves clarity everywhere it is used and the function itself is clear enough what it does.</p> <p>Just my opinion of course.</p> <p>You could though, use the is keyword, which might help a little</p> <pre><code>public static bool IsSet&lt;T&gt;(this T value, T flags) where T : Enum { if (value is int) { return ((int)(object)a &amp; (int)(object)b) == (int)(object)b); } //etc... </code></pre> http://stackoverflow.com/questions/1084626/when-are-objects-instances-created-in-javascript/1084637#1084637 1 Answer by HBoss for When are objects/instances created in JavaScript? HBoss 2009-07-05T18:59:57Z 2009-07-05T18:59:57Z <p>There are a couple ways to do that, I couldn't tell you if one is particularly better than the other, but here are a few ways.</p> <pre><code>//create a function function SomeObject() { var self = this; } //and create it using 'new' var a = new SomeObject(); //create an object of a function var SomeOtherObject = function() { var self = this; }; //and in similar fashion var b = new SomeOtherObject(); //or just create a function that creates new object var YetAnother = function() { var gen = {}; return gen; }; //and create by calling the function var c = YetAnother(); </code></pre> http://stackoverflow.com/questions/251814/jquery-and-organized-code 12 jQuery and "Organized Code" HBoss 2008-10-30T21:17:34Z 2009-07-04T19:18:23Z <p>I've been struggling lately with understanding the best way to organize jQuery code. I asked another question earlier and I don't think I was specific enough (<a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess">found in this question here</a>).</p> <p>My problem is that the richer you make an application, the quicker your client side gets out of control. Consider this situation...</p> <pre><code>//Let's start some jQuery $(function() { var container = $("#inputContainer"); //Okay let's list text fields that can be updated for(var i=0; i &lt; 5; i++) { //okay let's add an event for when a field changes $("&lt;input/&gt;").change(function() { //okay something changed, let's update the server $.ajax({ success:function(data) { //Okay - no problem from the server... let's update //the bindings on our input fields $.each(container.children(), function(j,w) { //YIKES!! We're deep in here now!! $(w).unbind().change(function() { //Then insanity starts... }); // end some function }); //end some loop } // what was this again? }); //ending something... not sure anymore }).appendTo(container); //input added to the page... logic WAY split apart }; //the first loop - whew! almost out! }); //The start of the code!! </code></pre> <p>Now this situation isn't too far from impossible. I'm not saying this is the right way to do it, but it's not uncommon to find yourself several levels down into a jQuery command and starting to wonder how much more logic can add before the screen begins to melt.</p> <p><strong>My question is how are people managing this or organizing to limit the complexity of their code?</strong></p> <p><em><a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess#247382">I listed how I'm doing it in my other post</a>...</em></p> http://stackoverflow.com/questions/1079950/embedding-webpage-in-flash/1079993#1079993 0 Answer by HBoss for Embedding webpage in Flash HBoss 2009-07-03T16:08:27Z 2009-07-03T16:08:27Z <p>If you're asking if it will fullscreen the <em>HTML</em> of the page, then no - I've never heard of anything like that before (not with Flash at least).</p> <p>You could use some jQuery to accomplish something like this by increasing the scale of the content and the elements inside of a parent element, but it sounds like it would be difficult to say the least.</p> http://stackoverflow.com/questions/1079945/returning-a-reference-to-an-object/1079961#1079961 5 Answer by HBoss for Returning a reference to an object HBoss 2009-07-03T16:00:53Z 2009-07-03T16:06:12Z <p>You're doing this a little backwards. If you want to change the value for that you need to actually change the property on the object.</p> <pre><code>car.NumberPlate = "old number plate"; Response.Write(car.GetNumberPlate()); </code></pre> <p>If you're wanting to work with references you can use the <em>ref</em> keyword. This may not be what you're looking for though.</p> http://stackoverflow.com/questions/1077442/access-top-window-document-from-iframe/1077447#1077447 0 Answer by HBoss for access top window document from iframe HBoss 2009-07-03T01:27:13Z 2009-07-03T01:27:13Z <p>Are both the top window document and the page with the script on the same domain? You can't access content in a frame unless they are on the same domain.</p> <p>This has actually been discussed in quite a bit of detail here. <a href="http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/" rel="nofollow" >http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/</a></p> http://stackoverflow.com/questions/1075698/writing-images-out/1075705#1075705 0 Answer by HBoss for Writing images out? HBoss 2009-07-02T17:35:43Z 2009-07-02T17:35:43Z <p>You're going to want to append that image you create to somewhere on the document</p> <pre><code>for(var j = 0; j &lt; portfolio_itemList[i-1].url.length; j++) { $('&lt;img&gt;').attr('src', portfolio_itemList[i-1].url[j]) .appendTo("#someTargetSelector"); } </code></pre> http://stackoverflow.com/questions/1075331/what-manner-of-regular-expression-might-i-use-to-add-line-breaks-near-html-tags/1075360#1075360 -2 Answer by HBoss for What manner of regular expression might I use to add line breaks near HTML tags? HBoss 2009-07-02T16:26:33Z 2009-07-02T16:26:33Z <p>Html Tags are some of the biggest pains for Regex. You have to be careful because simply matching first and last tag won't be enough if you have more than one tag on the same line, or depending on how you evaluate it, anywhere in the string you're evaluating.</p> <p>Here is a decent expression you can use...</p> <pre><code>@"&lt;(?&lt;tag&gt;\w*)&gt;(?&lt;text&gt;.*)&lt;/\k&lt;tag&gt;&gt;" </code></pre> <p>You will have named groups <em>tag</em> and <em>text</em> that you can use to access the values you have. With those values you can format your. Depending on your language, you may need to specify that you want to search the entire string as a single line.</p> http://stackoverflow.com/questions/987995/alternatives-to-using-buildproviders-with-web-applications/1590055#1590055 Comment by HBoss on Alternatives to Using BuildProviders with Web Applications HBoss 2009-10-20T15:46:24Z 2009-10-20T15:46:24Z Actually, I have -- was pretty interesting but didn't devote a whole lot of time to figuring it out. The MVC team actually ended up doing what I was trying to do in MVC2 so I didn't really work on it anymore :) http://stackoverflow.com/questions/820646/jquery-most-impressive-thing-you-do-in-a-single-chained-command/1437086#1437086 Comment by HBoss on jQuery: Most impressive thing you do in a single chained command? HBoss 2009-09-18T14:02:12Z 2009-09-18T14:02:12Z Thanks for digging this back up - I see people doing all sorts of &quot;Code Golf&quot; on this website, I thought this would be a fun post to see what people came up with. I honestly had no idea people would actually ASSUME this is how a person would really program - but apparently not. Just as a heads up, if you see a &quot;Code Golf&quot; post, they are just having fun and showing off ;) http://stackoverflow.com/questions/1292165/how-to-trap-the-keyboard-strokes-on-a-c-win-forms-application-ctrl-alt-del Comment by HBoss on How to trap the keyboard strokes on a c# win forms application (CTRl + alt +Del) HBoss 2009-08-26T15:00:09Z 2009-08-26T15:00:09Z That's just one of many key combinations... CTRL+Shift+Esc pulls up the Task manager and they can start a new program from there. http://stackoverflow.com/questions/1329963/using-ldap-ad-for-mysql-authenication Comment by HBoss on Using LDAP (AD) for MySQL authenication HBoss 2009-08-25T18:50:10Z 2009-08-25T18:50:10Z Are you looking for a strictly MySQL solution or can you approach this problem from the application side (as in program your way out of the problem) http://stackoverflow.com/questions/9033/hidden-features-of-c/407325#407325 Comment by HBoss on Hidden Features of C#? HBoss 2009-08-23T23:05:25Z 2009-08-23T23:05:25Z @devstuff - that is a good point, I didn't really ever think about it from that perspective. http://stackoverflow.com/questions/1246004/how-to-insert-javascript-in-asp-net-master-pages/1246037#1246037 Comment by HBoss on How to insert javascript in asp.net master pages HBoss 2009-08-07T19:34:57Z 2009-08-07T19:34:57Z Bah! I stand corrected!! -- I knew it worked for tags inside the head tag (like for stylesheets) -- Didn't realize it didn't work for scripts! http://stackoverflow.com/questions/1246004/how-to-insert-javascript-in-asp-net-master-pages/1246037#1246037 Comment by HBoss on How to insert javascript in asp.net master pages HBoss 2009-08-07T17:40:23Z 2009-08-07T17:40:23Z Not sure what the down vote was for since what I said is true... -- Hmmm... http://stackoverflow.com/questions/93744/most-common-c-bitwise-operations/417217#417217 Comment by HBoss on Most common C# bitwise operations HBoss 2009-07-28T18:59:43Z 2009-07-28T18:59:43Z Thanks man - appreciate it! http://stackoverflow.com/questions/1166231/any-famous-book-on-designing-website-user-interface-to-recommend/1166253#1166253 Comment by HBoss on any famous book on designing website user interface to recommend ? HBoss 2009-07-22T15:48:56Z 2009-07-22T15:48:56Z Beat me to it -- Absolutely excellent book. http://stackoverflow.com/questions/1159800/silverlight-support-for-dynamic-code Comment by HBoss on Silverlight - Support For Dynamic Code? HBoss 2009-07-21T15:28:42Z 2009-07-21T15:28:42Z Yes, you state it so much clearer than I did :) - Generate an assembly on the server side and then dynamically add it into a running Silverlight application. http://stackoverflow.com/questions/1159800/silverlight-support-for-dynamic-code Comment by HBoss on Silverlight - Support For Dynamic Code? HBoss 2009-07-21T15:14:54Z 2009-07-21T15:14:54Z And you can send them down to the server and load them into a Silverlight client side app? http://stackoverflow.com/questions/1143417/json-data-parsed-or-evaled/1143463#1143463 Comment by HBoss on JSON Data - Parsed Or 'Eval'ed HBoss 2009-07-17T14:03:12Z 2009-07-17T14:03:12Z that's one heck of a regular expression http://stackoverflow.com/questions/1118896/is-stackoverflows-reputation-system-hurting-the-site Comment by HBoss on Is Stackoverflow's reputation system hurting the site? HBoss 2009-07-14T11:38:32Z 2009-07-14T11:38:32Z Sometimes I wonder if rep gets away with upvoting - I imagine that it might be difficult for some people to upvote someone when it moves their own answer lower on the page -- thus making the best answers a little less obvious... http://stackoverflow.com/questions/97381/yield-in-vb-net/98339#98339 Comment by HBoss on Yield In VB.NET HBoss 2009-07-14T11:33:41Z 2009-07-14T11:33:41Z Yes, I did - I wrote a blog post explaining my screw up - I thought that it was funny that I escaped with no downvotes for all that time. :) http://stackoverflow.com/questions/97381/yield-in-vb-net/98339#98339 Comment by HBoss on Yield In VB.NET HBoss 2009-07-14T11:21:03Z 2009-07-14T11:21:03Z Linked my mistake to a blog post -- looks like I'll be paying for it here :)