User Lucas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T18:05:58Zhttp://stackoverflow.com/feeds/user/1157http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823875/url-rewriter-works-on-localhost-but-not-on-production-server/1823980#18239800Answer by Lucas for Url Rewriter works on localhost but not on production serverLucas2009-12-01T04:23:44Z2009-12-01T04:23:44Z<pre><code><rewrite url="~/Items/(\d+)$" to="~/Items/Details.aspx?ItemIdId=$1" />
</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#16989100Answer by Lucas for jquery .each questionLucas2009-11-09T03:12:38Z2009-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#16984311Answer by Lucas for run javascript in C#Lucas2009-11-09T00:02:21Z2009-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#16590290Answer by Lucas for Why browser sometimes render site bad and sometimes good? (without change browser, no dynamic data only refresh) Lucas2009-11-02T01:28:03Z2009-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#16590200Answer by Lucas for What is a Value Class and what is a reference Class in C#?Lucas2009-11-02T01:21:52Z2009-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-programmatically0How to add a filetype mapping to IIS 5 programmaticallyLucas2009-09-09T22:49:59Z2009-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#14025500Answer by Lucas for How to add a filetype mapping to IIS 5 programmaticallyLucas2009-09-09T22:50:30Z2009-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#9141101Answer by Lucas for obj is null, javascriptLucas2009-05-27T05:31:29Z2009-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#8770061Answer by Lucas for Automatically create event handler from markup view (c#)Lucas2009-05-18T10:05:53Z2009-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><asp:label ID="MyLabel" runat="server" />
</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#8616041Answer by Lucas for More efficient of the two queries?Lucas2009-05-14T04:43:54Z2009-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#8614400Answer by Lucas for Things a programmer should know before building a websiteLucas2009-05-14T03:37:29Z2009-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 (<script> 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#8557821Answer by Lucas for Jquery asp.net Button Click Event via ajaxLucas2009-05-13T02:27:37Z2009-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() {
$('#<%=myButton.ClientID %>').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#8563320Answer by Lucas for Have both HTML and ASPX web page in one siteLucas2009-05-13T06:13:19Z2009-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#8563050Answer by Lucas for How do I disable rescue handlers in Ruby on Rails apps when I'm running functional tests?Lucas2009-05-13T06:05:08Z2009-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#8558120Answer by Lucas for Is it Better to Design a Language that Utilizes White Space Instead of Symbols to Group Code?Lucas2009-05-13T02:39:15Z2009-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#8557130Answer by Lucas for Problem starting development server - ruby on railsLucas2009-05-13T01:53:51Z2009-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#1245142Answer by Lucas for .NET Generic Method QuestionLucas2008-09-23T23:16:06Z2008-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<TypeA> doesn't inherit from myType<TypeB>. </p>
<p>As such, you can't make a call to a method defined as MethodA(myType<TypeB> b) expecting a myType<TypeB> and give it a myType<TypeA> instead. The types in question have to match exactly. Thus, the following won't compile:</p>
<pre><code>myType<TypeA> a; // This should be a myType<TypeB>, even if it contains only TypeA's
public void MethodB(myType<TypeB> b){ /* do stuff */ }
public void Main()
{
MethodB(a);
}
</code></pre>
<p>So in your case, you would need to pass in an IRepo<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<T>(IList<T> list) where T : ITypeEntity
{
IList<T> myIList = new List<T>();
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-cookies0How do I stop IIS7 dropping my cookies?Lucas2008-08-13T01:02:27Z2008-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#680477Answer by Lucas for What skills are worth learning for a programming career and/or resume?Lucas2008-09-15T23:52:07Z2008-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#386460Answer by Lucas for Filter out HTML tags and resolve entities in pythonLucas2008-09-02T00:11:49Z2008-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#374930Answer by Lucas for Filter out HTML tags and resolve entities in pythonLucas2008-09-01T05:30:50Z2008-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('<[^>]*>', '')
</code></pre>
<p>What this does is look for any < characters in mystring, then "selects" up to the next > 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 < is obviously the start of any HTML tag, and the > is the end. That's easy. What's not so obvious is the purpose of the "[^>]" in the middle. This means "any character that isn't '>'". 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 "<>", "<a>" or "<My dog is 6 years old and we call him 'Scruffy'>". What it won't remove is "<em>Lucas is great</em>". 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#374820Answer by Lucas for MySQL shell on WindowsLucas2008-09-01T05:19:41Z2008-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#337331Answer by Lucas for Why do I receive a q[num] error when aborting a jQuery queue pipeline?Lucas2008-08-29T01:02:11Z2008-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#337301Answer by Lucas for One piece of adviceLucas2008-08-29T00:57:17Z2008-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#317340Answer by Lucas for Why do I receive a q[num] error when aborting a jQuery queue pipeline?Lucas2008-08-28T06:46:26Z2008-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#273940Answer by Lucas for What to do with extra screen real estate?Lucas2008-08-26T03:59:07Z2008-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#272721Answer by Lucas for Is there any tool for reformatting C# code?Lucas2008-08-26T02:16:26Z2008-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#272691Answer by Lucas for Single responsiblity principle: granularity of the reason to changeLucas2008-08-26T02:13:39Z2008-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!&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#272481Answer by Lucas for Where can I learn JQuery? is it worth it?Lucas2008-08-26T02:03:04Z2008-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#272312Answer by Lucas for Keeping key value pairs together in HTML <select/> with JQuery?Lucas2008-08-26T01:53:42Z2008-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><option value=1>Jason</option></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#1878432Comment by Lucas on C# share code between classesLucas2009-12-10T03:27:04Z2009-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#1878271Comment by Lucas on One to many mySQL database setupLucas2009-12-10T03:25:01Z2009-12-10T03:25:01ZThe two requirements do not in fact "amount to the same thing". 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#9380Comment by Lucas on How do I stop IIS7 dropping my cookies?Lucas2009-11-01T23:06:07Z2009-11-01T23:06:07ZI 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#27248Comment by Lucas on Where can I learn JQuery? is it worth it?Lucas2009-07-29T00:47:41Z2009-07-29T00:47:41ZHe 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#880617Comment by Lucas on Why is it not good to have a primary key on a join table?Lucas2009-05-19T02:10:23Z2009-05-19T02:10:23Zq-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#877006Comment by Lucas on Automatically create event handler from markup view (c#)Lucas2009-05-18T23:22:58Z2009-05-18T23:22:58ZNot 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-buildComment by Lucas on simple query with brackets - how to build?Lucas2009-05-18T10:10:58Z2009-05-18T10:10:58ZIt'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#861611Comment by Lucas on More efficient of the two queries?Lucas2009-05-14T05:54:12Z2009-05-14T05:54:12ZYeah, 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#856305Comment by Lucas on How do I disable rescue handlers in Ruby on Rails apps when I'm running functional tests?Lucas2009-05-14T00:01:02Z2009-05-14T00:01:02ZAh. Sorry. I misunderstood what you were trying to achieve.http://stackoverflow.com/questions/855747/jquery-asp-net-button-click-event-via-ajax/855782#855782Comment by Lucas on Jquery asp.net Button Click Event via ajaxLucas2009-05-13T06:18:02Z2009-05-13T06:18:02ZMarwan: No particular reason. It would seem your JQuery-fu is better than mine. Edited.http://stackoverflow.com/questions/305223/jon-skeet-facts/400456#400456Comment by Lucas on Jon Skeet Facts?Lucas2009-04-28T06:29:40Z2009-04-28T06:29:40ZStackOverflow has a JonSkeetAskedAQuestionException. It's never been thrown.http://stackoverflow.com/questions/314944/rails-background-task-overhead/315118#315118Comment by Lucas on Rails Background task overheadLucas2008-12-29T00:04:57Z2008-12-29T00:04:57ZThis 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#118076Comment by Lucas on What are Code Smells? What is the best way to correct them?Lucas2008-09-23T23:38:00Z2008-09-23T23:38:00ZI'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 "not" operators unnecessarily smells.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63692#63692Comment by Lucas on Confessions of your worst WTF Moment. (What not to do.)Lucas2008-09-15T23:59:09Z2008-09-15T23:59:09Zyou'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#50679Comment by Lucas on How to convince a project sponsor that all functions in your code should have unit testsLucas2008-09-09T06:55:01Z2008-09-09T06:55:01ZI 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.