User Lucas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:05:58Z http://stackoverflow.com/feeds/user/1157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823875/url-rewriter-works-on-localhost-but-not-on-production-server/1823980#1823980 0 Answer by Lucas for Url Rewriter works on localhost but not on production server Lucas 2009-12-01T04:23:44Z 2009-12-01T04:23:44Z <pre><code>&lt;rewrite url="~/Items/(\d+)$" to="~/Items/Details.aspx?ItemIdId=$1" /&gt; </code></pre> <p>Is that GET parameter meant to be ItemId? Cos at the moment it's ItemIdId.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1698854/jquery-each-question/1698910#1698910 0 Answer by Lucas for jquery .each question Lucas 2009-11-09T03:12:38Z 2009-11-09T03:12:38Z <p>Should it matter? If you're writing a .each function, you should be doing the same thing to every element. Otherwise you should use some other method. Hence, the order in which the elements appear probably shouldn't matter, and if it does, you may have discovered a code smell.</p> <p>If you're looking for a way to individually identify each of the elements in the list, you could try using its ID, e.g:</p> <pre><code>alert($(this).id + ": " + $(this).val); </code></pre> <p>This has the advantage that if an expected element doesn't appear in your list, it's a little easier to identify.</p> http://stackoverflow.com/questions/1698322/run-javascript-in-c/1698431#1698431 1 Answer by Lucas for run javascript in C# Lucas 2009-11-09T00:02:21Z 2009-11-09T00:02:21Z <p>First, you probably want to consider exactly why you're trying to do this. Is it that you want to use the algorithm from the JS in C#? If so, go ahead. If you want to use C# in client-side code (i.e. the browser), go investigate Silverlight instead.</p> <p>Second, I'm not sure that what you're trying to do is actually possible. Depending on what youre trying to achieve, you may be better off translating the Javascript from the Greasemonkey app into C# 3.5 (assuming that the script's licensing conditions allow this), for use in your app.</p> <p>The translation shouldn't be hugely difficult - C# has been getting more and more like JS in the last few versions. Just watch out for the "var" keyword; it means something slightly different in C# to what it means in JS (contrast "type inference" in C# with "dynamic typing" in JS).</p> <p>Of course, maintaining both versions of the code after you've done this will be tricky and painful. I recommend keeping 1 authoritative version of the code if you can.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1658931/why-browser-sometimes-render-site-bad-and-sometimes-good-without-change-browser/1659029#1659029 0 Answer by Lucas for Why browser sometimes render site bad and sometimes good? (without change browser, no dynamic data only refresh) Lucas 2009-11-02T01:28:03Z 2009-11-02T01:28:03Z <p>Did you change the width of the browser window between loads? The positioning of floated elements could have been affected if you did.</p> http://stackoverflow.com/questions/1658985/what-is-a-value-class-and-what-is-a-reference-class-in-c/1659020#1659020 0 Answer by Lucas for What is a Value Class and what is a reference Class in C#? Lucas 2009-11-02T01:21:52Z 2009-11-02T01:21:52Z <p>When you refer to a value type (that is, by using its name), you're talking about the place in memory where the data is. As such, value types can't be null because there's no way for the memory location to say "I don't represent anything." By default, you pass value types by value (that is, the object you pass in to methods doesn't change as a result of the method's execution).</p> <p>When you use a reference type object, you're actually using a pointer in disguise. The name refers to a memory location, which then references a place in memory where the object actually lives. Hence you can assign null to a reference type, because they have a way of saying "I point to nowhere." Reference types also allow the object to be changed as a result of methods executing, so you can change myReferenceObject's properties by passing it into a method call.</p> http://stackoverflow.com/questions/1402549/how-to-add-a-filetype-mapping-to-iis-5-programmatically 0 How to add a filetype mapping to IIS 5 programmatically Lucas 2009-09-09T22:49:59Z 2009-09-09T22:50:30Z <p>I want to add .doc to my mapped file extensions in IIS 5.1 as part of my build script. Is there a script or some example code somewhere that I could include that would do this?</p> http://stackoverflow.com/questions/1402549/how-to-add-a-filetype-mapping-to-iis-5-programmatically/1402550#1402550 0 Answer by Lucas for How to add a filetype mapping to IIS 5 programmatically Lucas 2009-09-09T22:50:30Z 2009-09-09T22:50:30Z <p>There's a script at <a href="http://www.iisfaq.com/Default.aspx?tabid=2792" rel="nofollow">http://www.iisfaq.com/Default.aspx?tabid=2792</a> that seems to work well.</p> http://stackoverflow.com/questions/914070/obj-is-null-javascript/914110#914110 1 Answer by Lucas for obj is null, javascript Lucas 2009-05-27T05:31:29Z 2009-05-27T05:31:29Z <p>The example you gave doesn't create the "Decline" button, as your question suggests it should. If it should, you might want to look at that.</p> <p>Of course, if the button already exists, please disregard this answer.</p> http://stackoverflow.com/questions/876980/automatically-create-event-handler-from-markup-view-c/877006#877006 1 Answer by Lucas for Automatically create event handler from markup view (c#) Lucas 2009-05-18T10:05:53Z 2009-05-18T10:05:53Z <p>You can automatically create a handler method by going to your page's OnLoad or Page_Load method, and adding a handler for the event. For example, for this Label:</p> <pre><code>&lt;asp:label ID="MyLabel" runat="server" /&gt; </code></pre> <p>You would do this:</p> <pre><code>protected void OnLoad(object sender, EventArgs e) { MyLabel.PreRender += } </code></pre> <p>At this point IntelliSense should kick in and offer to generate an event handler for you. If you hit TAB a couple of times, you should have a new MyLabel_PreRender method.</p> <p>Good luck!</p> http://stackoverflow.com/questions/861579/more-efficient-of-the-two-queries/861604#861604 1 Answer by Lucas for More efficient of the two queries? Lucas 2009-05-14T04:43:54Z 2009-05-14T04:43:54Z <p>There's not a clear-cut answer here. Your efficiency will be best in the first case if default = 'N' for most records. In the second, it will be best if default = 'Y' in most cases.</p> <p>So if most of your users only have 1 email address, use the 2nd query. If most users have at least 2, use the first.</p> http://stackoverflow.com/questions/861428/things-a-programmer-should-know-before-building-a-website/861440#861440 0 Answer by Lucas for Things a programmer should know before building a website Lucas 2009-05-14T03:37:29Z 2009-05-14T03:37:29Z <p>Apply the <a href="http://en.wikipedia.org/wiki/KISS%5Fprinciple" rel="nofollow">KISS principle</a>.</p> <p>Put your javascript references (&lt;script&gt; tags) at the bottom of the page. That way, your page will "appear" in the browser sooner.</p> http://stackoverflow.com/questions/855747/jquery-asp-net-button-click-event-via-ajax/855782#855782 1 Answer by Lucas for Jquery asp.net Button Click Event via ajax Lucas 2009-05-13T02:27:37Z 2009-05-13T06:20:03Z <p>I like Gromer's answer, but it leaves me with a question: What if I have multiple 'btnAwesome's in different controls?</p> <p>To cater for that possibility, I would do the following:</p> <pre><code>$(document).ready(function() { $('#&lt;%=myButton.ClientID %&gt;').click(function() { // Do client side button click stuff here. }); }); </code></pre> <p>It's not a regex match, but in my opinion, a regex match isn't what's needed here. If you're referencing a particular button, you want a precise text match such as this.</p> <p>If, however, you want to do the same action for every btnAwesome, then go with Gromer's answer.</p> http://stackoverflow.com/questions/856273/have-both-html-and-aspx-web-page-in-one-site/856332#856332 0 Answer by Lucas for Have both HTML and ASPX web page in one site Lucas 2009-05-13T06:13:19Z 2009-05-13T06:13:19Z <p>If you're running an ASP.NET in a Virtual Directory in IIS, you need to configure it as an application. To do this:</p> <ol> <li>Open up IIS Manager (if you have Administrative Tools in your Start menu, you can get to IIS from there).</li> <li>In the tree on the left, find your Virtual Directory</li> <li>Right click the directory, and select Properties</li> <li>Find the "Application Name" field.</li> <li>If there's a "Create" button beside the text box, click it. If it's a "Remove" button, then you should comment that this answer is wrong.</li> </ol> <p>Good luck!</p> http://stackoverflow.com/questions/833075/how-do-i-disable-rescue-handlers-in-ruby-on-rails-apps-when-im-running-functiona/856305#856305 0 Answer by Lucas for How do I disable rescue handlers in Ruby on Rails apps when I'm running functional tests? Lucas 2009-05-13T06:05:08Z 2009-05-13T06:05:08Z <p>You shouldn't need to disable your rescue block. Use the assert_raise method (as suggested by Scott), and in the block, call the method that you expect an exception from.</p> <p>For example:</p> <pre><code>def test_throws_exception assert_raise Exception do raise_if_true(true) end end </code></pre> http://stackoverflow.com/questions/855714/is-it-better-to-design-a-language-that-utilizes-white-space-instead-of-symbols-to/855812#855812 0 Answer by Lucas for Is it Better to Design a Language that Utilizes White Space Instead of Symbols to Group Code? Lucas 2009-05-13T02:39:15Z 2009-05-13T02:39:15Z <p>Neither consistent indentation nor demarcation symbols (e.g. braces) completely replace the other. My personal preference is to have both.</p> <p>That said, optional indentation does make one-liners easier (I think).</p> http://stackoverflow.com/questions/855335/problem-starting-development-server-ruby-on-rails/855713#855713 0 Answer by Lucas for Problem starting development server - ruby on rails Lucas 2009-05-13T01:53:51Z 2009-05-13T01:53:51Z <p>Make sure your app has permission to write to your log folder. If it doesn't, that could be why you're not getting any log entries.</p> <p>As a last-ditch solution, try making a new rails app, re-scaffolding your database, then moving your app folder over to the new app. This will mean that your Rails code is compatible with your installed versions of Rails and Ruby, which your older code might not be.</p> <p>You'll also need to copy over any other code that you've written that isn't in your app folder.</p> <p>Be warned: this is really a last resort. </p> http://stackoverflow.com/questions/124325/net-generic-method-question/124514#124514 2 Answer by Lucas for .NET Generic Method Question Lucas 2008-09-23T23:16:06Z 2008-09-23T23:16:06Z <p>Inheritance doesn't work the same when using generics. As Smashery points out, even if TypeA inherits from TypeB, myType&lt;TypeA> doesn't inherit from myType&lt;TypeB>. </p> <p>As such, you can't make a call to a method defined as MethodA(myType&lt;TypeB> b) expecting a myType&lt;TypeB> and give it a myType&lt;TypeA> instead. The types in question have to match exactly. Thus, the following won't compile:</p> <pre><code>myType&lt;TypeA&gt; a; // This should be a myType&lt;TypeB&gt;, even if it contains only TypeA's public void MethodB(myType&lt;TypeB&gt; b){ /* do stuff */ } public void Main() { MethodB(a); } </code></pre> <p>So in your case, you would need to pass in an IRepo&lt;ITypeEntity> to MethodB, even if it only contains DetailTypes. You'd need to do some conversion between the two. If you were using a generic IList, you might do the following:</p> <pre><code>public void MethodA&lt;T&gt;(IList&lt;T&gt; list) where T : ITypeEntity { IList&lt;T&gt; myIList = new List&lt;T&gt;(); foreach(T item in list) { myIList.Add(item); } b.MethodB(myIList); } </code></pre> <p>I hope this is helpful.</p> http://stackoverflow.com/questions/9372/how-do-i-stop-iis7-dropping-my-cookies 0 How do I stop IIS7 dropping my cookies? Lucas 2008-08-13T01:02:27Z 2008-09-17T08:00:19Z <p>I'm using Windows Vista x64 with SP1, and developing an ASP.NET app with IIS7 as the web server. I've got a problem where my cookies aren't "sticking" to the session, so I had a google and found that there was a known issue with duplicate response headers overwriting instead of being added to the session. This problem was, however, supposed to have been fixed in Service Pack 1 for Vista.</p> <p>Any ideas as to what my trouble might be?</p> <p>Many thanks in advance.</p> http://stackoverflow.com/questions/67794/what-skills-are-worth-learning-for-a-programming-career-and-or-resume/68047#68047 7 Answer by Lucas for What skills are worth learning for a programming career and/or resume? Lucas 2008-09-15T23:52:07Z 2008-09-15T23:52:07Z <p><strong>Learn to write well</strong> in the native language of your company (for me that's English). This will help with all the other skills you want (including resume writing!). That includes bug reporting, writing and reading specs and requirements, asking questions, commenting code and any report writing or paperwork you may need to do. In an indirect way, it may also help your coding.</p> <p>This is important: learn to be concise. Remove <strike>all</strike> unnecessary words in your writing.</p> <p>Also, <strong>learn to ask questions</strong> and seek help, especially in areas that are new to you. If you dither for an hour, that's an hour lost. And that's a shame when it can be prevented.</p> http://stackoverflow.com/questions/37486/filter-out-html-tags-and-resolve-entities-in-python/38646#38646 0 Answer by Lucas for Filter out HTML tags and resolve entities in python Lucas 2008-09-02T00:11:49Z 2008-09-02T00:11:49Z <p>Looking at the amount of sense people are demonstrating in other answers here, I'd say that using a regex probably isn't the best idea for your situation. Go for something tried and tested, and treat my previous answer as a demonstration that regexes need not be <em>that</em> scary.</p> http://stackoverflow.com/questions/37486/filter-out-html-tags-and-resolve-entities-in-python/37493#37493 0 Answer by Lucas for Filter out HTML tags and resolve entities in python Lucas 2008-09-01T05:30:50Z 2008-09-01T05:40:57Z <p>Regular expressions needn't scare you. Just start with easy stuff. Let's take removing tags for example. You'll want to look for the starts and ends of tags, thus:</p> <pre><code>mystring.sub('&lt;[^&gt;]*&gt;', '') </code></pre> <p>What this does is look for any &lt; characters in mystring, then "selects" up to the next &gt; it sees. It then replaces the whole lot with nothing (that's our two single quotes).</p> <p>Now, let me explain it bit by bit. The &lt; is obviously the start of any HTML tag, and the &gt; is the end. That's easy. What's not so obvious is the purpose of the "[^&gt;]" in the middle. This means "any character that isn't '&gt;'". So if we wanted any character that wasn't <em>a</em>, we'd make it "[^a]". The square brackets mean "choose a character from this selection". The circumflex (the ^ character you get by hitting Shift+6) negates that selection, effectively saying "any character BUT these".</p> <p>The * says "get as many of these as you want (including none at all)". So our call to mystring.sub will remove "&lt;&gt;", "&lt;a&gt;" or "&lt;My dog is 6 years old and we call him 'Scruffy'&gt;". What it won't remove is "&lt;em&gt;Lucas is great&lt;/em&gt;". If it comes across that string, it will replace it with "Lucas is great".</p> <p>I hope this all makes sense.</p> http://stackoverflow.com/questions/36551/mysql-shell-on-windows/37482#37482 0 Answer by Lucas for MySQL shell on Windows Lucas 2008-09-01T05:19:41Z 2008-09-01T05:19:41Z <p>It sounds like a GUI is not really what you were after, but maybe <a href="http://en.wikipedia.org/wiki/HeidiSQL" rel="nofollow">HeidiSQL</a> would be worth a look. It's a GUI frontend for MySQL which I wouldn't say I quite <em>enjoyed</em> using, but I've certainly come across worse ways to talk with a database.</p> http://stackoverflow.com/questions/30342/why-do-i-receive-a-qnum-error-when-aborting-a-jquery-queue-pipeline/33733#33733 1 Answer by Lucas for Why do I receive a q[num] error when aborting a jQuery queue pipeline? Lucas 2008-08-29T01:02:11Z 2008-08-29T01:02:11Z <p>Hi Sean, thanks for the tick. I'm curious as to what the actual problem was, because I suggested a few possibilities there. Did you narrow it down?</p> http://stackoverflow.com/questions/3553/one-piece-of-advice/33730#33730 1 Answer by Lucas for One piece of advice Lucas 2008-08-29T00:57:17Z 2008-08-29T00:57:17Z <p>Maintain an interest other than programming and IT. Make sure you stay (or get) "socially healthy".</p> <p>Also, find yourself a mentor or three to learn from - it's far easier and more interesting to learn from people than from books.</p> http://stackoverflow.com/questions/30342/why-do-i-receive-a-qnum-error-when-aborting-a-jquery-queue-pipeline/31734#31734 0 Answer by Lucas for Why do I receive a q[num] error when aborting a jQuery queue pipeline? Lucas 2008-08-28T06:46:26Z 2008-08-28T06:46:26Z <p>It looks like you've got fewer items in q than you were expecting when you started iterating. Your script may be trying to access q[q.length], i.e. the element after the last element.</p> <p>Could it be that your successful request has been popped from the queue, and you have a race condition? Are you trying to abort a request that has already completed its life cycle? Alternatively, have you made a silly mistake as people sometimes do, and got your loop termination condition wrong?</p> <p>Just a few thoughts, I hope they help.</p> http://stackoverflow.com/questions/27099/what-to-do-with-extra-screen-real-estate/27394#27394 0 Answer by Lucas for What to do with extra screen real estate? Lucas 2008-08-26T03:59:07Z 2008-08-26T03:59:07Z <blockquote> <p>Eclipse will let you tear off child windows into new frames. </p> </blockquote> <p>Visual Studio lets you do the something similar (if not with the same words).</p> <p>And honestly, anything that will let you see more code at a time is a winner (e.g. the tall, narrow screen)</p> http://stackoverflow.com/questions/27253/is-there-any-tool-for-reformatting-c-code/27272#27272 1 Answer by Lucas for Is there any tool for reformatting C# code? Lucas 2008-08-26T02:16:26Z 2008-08-26T02:16:26Z <p>This isn't command-line, mono or linux, but it's something: I've been using <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> (made by JetBrains) and it's rather good. It's a Visual Studio plugin, so I'm guessing it's not your cup of tea, but hopefully someone will come along with a better answer :)</p> http://stackoverflow.com/questions/27018/single-responsiblity-principle-granularity-of-the-reason-to-change/27269#27269 1 Answer by Lucas for Single responsiblity principle: granularity of the reason to change Lucas 2008-08-26T02:13:39Z 2008-08-26T02:13:39Z <p>I don't know that there's a good answer to this one other than "apply your judgement, based on your experience." Failing that, get help, which I guess is what you're doing here ;)</p> <p>Seriously, though, if you find that you're creating a gazillion classes to do what seems like a simple job, then you're probably being too granular. If your classes all seem collossal, then you're probably being too coarse. Please pardon me if that's a statement of the obvious.</p> <p>I think this is one of those fuzzy, no-hard-and-fast-rules cases that show us why we need human programmers. Just try something, seeking balance, and refactor if you find you're going too far in one direction or the other. And remember: <a href="http://ezinearticles.com/?Anything-Worth-Doing-Is-Worth-Doing-Badly!&amp;id=126488" rel="nofollow">if it's worth doing, it's worth doing badly</a>.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27248#27248 1 Answer by Lucas for Where can I learn JQuery? is it worth it? Lucas 2008-08-26T02:03:04Z 2008-08-26T02:03:04Z <p>I use <a href="http://prototypejs.org/" rel="nofollow">Prototype</a>, which I like. I'm afraid I don't know JQuery, so I can't compare them, but I think Prototype is worth checking out. Their API docs are generally pretty good, in my experience (which certainly helps with learnability).</p> http://stackoverflow.com/questions/27219/keeping-key-value-pairs-together-in-html-select-with-jquery/27231#27231 2 Answer by Lucas for Keeping key value pairs together in HTML <select/> with JQuery? Lucas 2008-08-26T01:53:42Z 2008-08-26T01:53:42Z <p>The HTML tag has an attribute called "value", where you can store your key.</p> <p>e.g.:</p> <blockquote> <p>&lt;option value=1&gt;Jason&lt;/option&gt;</p> </blockquote> <p>I don't know how this will play with jQuery (I don't use it), but I hope this is helpful nonetheless.</p> http://stackoverflow.com/questions/1878419/c-share-code-between-classes/1878432#1878432 Comment by Lucas on C# share code between classes Lucas 2009-12-10T03:27:04Z 2009-12-10T03:27:04Z @mson It sounds like you might want a Printer class, which has both methods, either of which you can call as needed. http://stackoverflow.com/questions/1878254/one-to-many-mysql-database-setup/1878271#1878271 Comment by Lucas on One to many mySQL database setup Lucas 2009-12-10T03:25:01Z 2009-12-10T03:25:01Z The two requirements do not in fact &quot;amount to the same thing&quot;. I read it the first time and thought they did, but: - 1 project can <i>belong to</i> many sections (where the project refers to the section), and - 1 section can have many projects <i>belonging to it</i> (where the section refers to the project). Hence, what you have is a many-to-many relationship, so a joining table is in order, like OMG Ponies suggests. http://stackoverflow.com/questions/9372/how-do-i-stop-iis7-dropping-my-cookies/9380#9380 Comment by Lucas on How do I stop IIS7 dropping my cookies? Lucas 2009-11-01T23:06:07Z 2009-11-01T23:06:07Z I tried changing the app pool's pipeline mode to Classic, which seemed to fix the problem. Thanks very much to Kevin Kenny for your help. http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27248#27248 Comment by Lucas on Where can I learn JQuery? is it worth it? Lucas 2009-07-29T00:47:41Z 2009-07-29T00:47:41Z He also asked about other JS libs. http://stackoverflow.com/questions/880524/why-is-it-not-good-to-have-a-primary-key-on-a-join-table/880617#880617 Comment by Lucas on Why is it not good to have a primary key on a join table? Lucas 2009-05-19T02:10:23Z 2009-05-19T02:10:23Z q-tip: There's no advantage to adding an index that is equal to the entire table, like would happen if your primary key was a composite key made up of every column in the table. When we do this, the table serves as the index. I hope that's useful. Sorry if it isn't. http://stackoverflow.com/questions/876980/automatically-create-event-handler-from-markup-view-c/877006#877006 Comment by Lucas on Automatically create event handler from markup view (c#) Lucas 2009-05-18T23:22:58Z 2009-05-18T23:22:58Z Not dumb at all. It's not possible to discover everything - that's why sites like this exist. http://stackoverflow.com/questions/877003/simple-query-with-brackets-how-to-build Comment by Lucas on simple query with brackets - how to build? Lucas 2009-05-18T10:10:58Z 2009-05-18T10:10:58Z It's probably worth tagging this question with the language you're using and what kind of search engine you want to query. It looks like you're using SQL. That might be a useful tag. http://stackoverflow.com/questions/861579/more-efficient-of-the-two-queries/861611#861611 Comment by Lucas on More efficient of the two queries? Lucas 2009-05-14T05:54:12Z 2009-05-14T05:54:12Z Yeah, OK. Should've read your answer before my previous comment. I bow to your superior understanding, sir. http://stackoverflow.com/questions/833075/how-do-i-disable-rescue-handlers-in-ruby-on-rails-apps-when-im-running-functiona/856305#856305 Comment by Lucas on How do I disable rescue handlers in Ruby on Rails apps when I'm running functional tests? Lucas 2009-05-14T00:01:02Z 2009-05-14T00:01:02Z Ah. Sorry. I misunderstood what you were trying to achieve. http://stackoverflow.com/questions/855747/jquery-asp-net-button-click-event-via-ajax/855782#855782 Comment by Lucas on Jquery asp.net Button Click Event via ajax Lucas 2009-05-13T06:18:02Z 2009-05-13T06:18:02Z Marwan: No particular reason. It would seem your JQuery-fu is better than mine. Edited. http://stackoverflow.com/questions/305223/jon-skeet-facts/400456#400456 Comment by Lucas on Jon Skeet Facts? Lucas 2009-04-28T06:29:40Z 2009-04-28T06:29:40Z StackOverflow has a JonSkeetAskedAQuestionException. It's never been thrown. http://stackoverflow.com/questions/314944/rails-background-task-overhead/315118#315118 Comment by Lucas on Rails Background task overhead Lucas 2008-12-29T00:04:57Z 2008-12-29T00:04:57Z This is the first I've heard about that. Thankyou for mentioning it. http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118076#118076 Comment by Lucas on What are Code Smells? What is the best way to correct them? Lucas 2008-09-23T23:38:00Z 2008-09-23T23:38:00Z I'd go a step further here, and call out unnecessary negatives. For example: if (myVar != null) { // do stuff } else { // do other stuff } I would refactor this by making the condition use an == operator, and switch the code blocks. In other words, using &quot;not&quot; operators unnecessarily smells. http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63692#63692 Comment by Lucas on Confessions of your worst WTF Moment. (What not to do.) Lucas 2008-09-15T23:59:09Z 2008-09-15T23:59:09Z you'd hate for rm to delete kill... http://stackoverflow.com/questions/50650/how-to-convince-a-project-sponsor-that-all-functions-in-your-code-should-have-uni/50679#50679 Comment by Lucas on How to convince a project sponsor that all functions in your code should have unit tests Lucas 2008-09-09T06:55:01Z 2008-09-09T06:55:01Z I disagree. Mocks help you figure out where the problem <i>is</i>, as distinct from where is <i>shows</i>. If you know all the code that uses a particular buggy function is OK (because it's been tested with mocks), you have eliminated so many possible places the bug could be hiding.