active questions tagged best-practices - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:19:03Z http://stackoverflow.com/feeds/tag/best-practices http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871317/q-as3-loader-class-best-practice 0 Q: AS3 Loader Class best practice unknown (google) 2009-12-09T02:51:16Z 2009-12-09T02:51:16Z <p>Recently in a project I configured a custom Loader class as follows First I define my Loader as a private variabel</p> <p>private var _myLdr:Loader</p> <p>Then in the constructor _myLdr = new Loader(); _myLdr.contentLoaderInfo.addEventListener( Event.COMPLETE, doneImgLoad ); _myLdr.contentLoaderInfo.addEventListener( ProgressEvent.PROGRESS, loadProgress ); _myLdr.contentLoaderInfo.addEventListener( IOErrorEvent.IO_ERROR, ioError );</p> <p>And then finally when I need to load a new asset I call my Loader instance via a public method</p> <p>_myLdr.load(new URLRequest ('myswftoLoad.swf') );</p> <p>So far so good....UNLESS you happen to view your page using the debug version of FlashPlayer 9.024 in which case you get</p> <p>ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. at flash.display::Loader/_load()</p> <p>WTF???!!</p> <p>So to correct I need to instantiate a new loader EVERY time I load a new asset.</p> <p>Can someone tell me which method would be considered a 'best practice'?</p> http://stackoverflow.com/questions/136880/sell-me-on-using-const-correctness 12 Sell me on using const correctness Jason Baker 2008-09-25T23:34:21Z 2009-12-09T02:40:20Z <p>So why exactly is it that it's always recommended to use const as often as possible? It seems to me that using const can be more of a pain than a help in C++. But then again, I'm coming at this from the python perspective: if you don't want something to be changed, don't change it. So with that said, here are a few questions:</p> <ol> <li><p>It seems like every time I mark something as const, I get an error and have to change some other function somewhere to be const too. Then this causes me to have to change <em>another</em> function somewhere else. Is this something that just gets easier with experience?</p></li> <li><p>Are benefits of using const <em>really</em> enough to compensate for the trouble? If you don't intend on changing an object, why not just not write code that changes it?</p></li> </ol> <p>I should note that at this point in time, I'm most focused on the benefits of using const for correctness and maintainability purposes, although it is also nice to have an idea of the performance implications.</p> <p><strong>EDIT</strong>: I'm told that the correct term is const correctness, so that's what the title is now.</p> http://stackoverflow.com/questions/1850133/best-practices-how-to-check-for-a-constant-in-an-array-using-php 0 Best Practices: How to check for a constant in an array using PHP? Andrew 2009-12-04T22:41:01Z 2009-12-09T00:48:50Z <p>I'm not really sure how to do this. I have an object and I want to set a 'type' property on it, but before doing that I want to check to make sure it's a valid type.</p> <p>I was thinking this is a good time to use constants since the type names won't change (nor do I want them to be).</p> <pre><code>// this is just a sample of what I was thinking: class Foobar { const TYPE_1 = 'type 1'; protected $_types = array( self::TYPE_1 ); public function setType($value) { // check to make sure value is a valid type // I'm thinking it should be able to accept // Foobar::TYPE_1, 'TYPE_1', or 'type 1' // for flexibility sake. But I don't know } } $foobar = new Foobar(); $foobar-&gt;setType('TYPE_1'); //what should go here? (best practice) </code></pre> <p><strong>Update:</strong> I decided I didn't really need to use constants in the first place, but I've accepted an answer that I think could have gotten the job done.</p> http://stackoverflow.com/questions/1870708/what-do-you-do-in-your-source-control-repository-when-you-start-a-rewrite-of-a-pr 1 What do you do in your source control repository when you start a rewrite of a program? Max Schmeling 2009-12-08T23:53:08Z 2009-12-09T00:17:57Z <p>I wrote an application a while back and have been maintaining it for a while now, but it's gotten to the point where there's several major new features to be added, a ton of changes that need made, and I know quite a few things I could do better, so I'm starting a rewrite of the entire program (using bits and pieces from original).</p> <p>My question is, what do you do with SVN at this point? Should I put the new version somewhere else, or should I delete the files I no longer need, add the new files, and just treat it like normal development in SVN?</p> <p>How have you handled this in the past?</p> http://stackoverflow.com/questions/1870746/perlbal-reproxy-with-remote-host 0 Perlbal Reproxy with Remote Host matt 2009-12-09T00:00:28Z 2009-12-09T00:00:28Z <p>why would perlbal's reproxying give me a <code>503</code> for any remote url?</p> <pre><code>X-REPROXY-URL: /path/to/a/local/file.jpg = working X-REPROXy-URL: http://a-public-file-in-an-s3-bucket.jpg = HTTP 503 </code></pre> <p>my perlbal conf looks like:</p> <pre><code>CREATE POOL test_pool POOL test_pool ADD 127.0.0.1:8888 POOL test_pool ADD 127.0.0.1:8889 CREATE SERVICE balancer SET listen = 0.0.0.0:80 SET role = reverse_proxy SET pool = test_pool SET persist_client = on SET persist_backend = on SET verify_backend = on SET enable_reproxy = true ENABLE balancer </code></pre> <p>and i know im setting the header properly, because, as i said, it works for local files and urls.</p> http://stackoverflow.com/questions/1863784/uniform-initialization-in-c0x-when-to-use-instead-of 4 Uniform initialization in C++0x, when to use () instead of {}? AraK 2009-12-08T00:18:21Z 2009-12-08T21:45:09Z <p>Hi,</p> <p>Is there a rule of thumb to decide when to use the old syntax <strong><code>()</code></strong> instead of the new syntax <strong><code>{}</code></strong>?</p> <p>To initialize a struct:</p> <pre><code>struct myclass { myclass(int px, int py) : x(px), y(py) {} private: int x, y; }; ... myclass object{0, 0}; </code></pre> <p>Now in the case of a <code>vector</code> for example, it has many constructors. Whenever I do the following:</p> <pre><code>vector&lt;double&gt; numbers{10}; </code></pre> <p>I get a vector of <strong>1</strong> element instead of one with <strong>10</strong> elements as one of the constructors is:</p> <pre><code>explicit vector ( size_type n, const T&amp; value= T(), const Allocator&amp; = Allocator() ); </code></pre> <p>My suspicion is that whenever a class defines an <code>initializer list</code> constructor as in the case of a vector, it gets called with the <strong><code>{}</code></strong> syntax.</p> <p>So, is what I am thinking correct. i.e. <strong>Should I revert to the old syntax only whenever a class defines an initializer list constructor to call a different constructor?</strong> e.g. to correct the above code:</p> <pre><code>vector&lt;double&gt; numbers(10); // 10 elements instead of just one element with value=10 </code></pre> http://stackoverflow.com/questions/1869902/whats-your-favourite-design-pattern 0 What's your Favourite Design Pattern? [closed] Lanceomagnifico 2009-12-08T21:16:33Z 2009-12-08T21:16:33Z <p>I've read quite a few books on design patterns, but I find one or two Patterns that I tend to use over and over. I don't know if I use them because they are correct for the circumstance, or if I use them because I know them well! i.e. 'If all you have is a hammer, everything starts to look like a nail!'</p> <p>In my case, the first pattern I ever realized I used quickly became my favourite, the <a href="http://en.wikipedia.org/wiki/Singleton%5Fpattern" rel="nofollow">Singleton</a>. At first I ended up creating a quasi-Singleton to solve a problem, but after it didn't work properly, I did some some searching online for something that someone else may have done and found the Name for the Pattern. After latching onto <a href="http://www.yoda.arachsys.com/csharp/singleton.html" rel="nofollow">Yoda's Singleton Pattern page in C#</a> and seeing proper and improper ways to do the pattern, I soon got it to work as I needed it to.</p> <p>I think part of the charm of the Singleton, is that it's quite a small pattern to implement, and small == easy-to-understand in my easy-to-understand mind! ;)</p> <p>Cheers, Lance</p> http://stackoverflow.com/questions/403590/what-are-the-current-best-practices-for-load-testing-and-profiling-asp-net-web-ap 1 What are the current best practices for load testing and profiling ASP.NET web applications? Jeff Martin 2008-12-31T17:39:49Z 2009-12-08T21:14:34Z <p>I am tasked with improving the performance of a particular page of the website that has an extremely high response time as reported by google analytics.</p> <p>Doing a few google searches reveals a product that came with VS2003 called ACT (Application Center Test) that did load testing. This doesn't seem to be distributed any longer</p> <p>I'd like to be able to get a baseline test of this page before I try to optimize it, so I can see what my changes are doing.</p> <p>Profiling applications such as dotTrace from Jetbrains may play into it and I have already isolated some operations that are taking a while within the page using trace. </p> <p>What are the best practices and tools surrounding performance and load testing? I'm mainly looking to be able to see results not how to accomplish them.</p> http://stackoverflow.com/questions/1632036/stress-and-performance-test-on-asp-net-app 1 Stress and performance test on ASP.NET app phreeskier 2009-10-27T16:27:53Z 2009-12-08T20:59:16Z <p>I want to conduct a stress and performance test on the front-end of my ASP.NET app. My goal is to:</p> <ul> <li>Identify bottlenecks</li> <li>Learn the number and the load of HTTP requests</li> <li>Easily determine the components that are using an Expires header and/or being gzipped</li> <li>Figure out where to increase download parllelization</li> <li>Locate duplicate scripts and unncessary redirects</li> <li>Determine the load that will bring down the servers</li> <li>Pinpoint key areas of server optimization</li> </ul> <p>Besides YSlow and Fiddler, are there any other tools that I should use to complete this test? Also, please share any best pratices for conducing this kind of test with me.</p> <p>Thanks for your help,<br/> John</p> http://stackoverflow.com/questions/1868908/should-i-document-my-unit-test-methods 7 Should I document my unit test methods? Jader Dias 2009-12-08T18:26:04Z 2009-12-08T20:21:08Z <p>As <a href="http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods">it happens with private methods</a>, unit test methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?</p> <p>By documentation I mean something like (but more descriptive):</p> <pre><code>/// &lt;summary&gt; ///A test for SomeClass.SomeMethod ///&lt;/summary&gt; [TestMethod()] public void SomeMethodTest() { } </code></pre> http://stackoverflow.com/questions/1869271/best-practice-for-ssrs-data-source-in-asp-net-mvc-project 2 Best-Practice for SSRS Data Source in ASP.Net MVC Project jcm 2009-12-08T19:28:56Z 2009-12-08T19:28:56Z <p>I have an existing ASP.Net MVC project that is using Linq2Sql for data access with entities / repositories in a seperate project. I need to add reporting functionality to this project via SSRS and I'm wondering what the best way is to handle data access for it.</p> <p>As I have migrator.net and linq2sql implemented I feel that using the database directly and creating db-dependant sql is out of the question. My first thought was to create a web service inside of my web project and use that, but this requires me to write new code and maintain a web service that I currently do not need for anything else.</p> <p>My next thought was to use my data assembly and leverage my existing repositories in code to populate the reports. Is this possible? I am new to this whole stack and am not very familiar with any of the tools.</p> <p>How is this commonly achieved? In previous JEE projects we always used CXF and created a web service for our reporting tools, but I never felt that was the best solution. How is this commonly tackled in .Net/SSRS?</p> http://stackoverflow.com/questions/1793147/sql-best-practice-to-deal-with-default-sort-order 1 SQL best practice to deal with default sort order Yada 2009-11-24T21:47:26Z 2009-12-08T19:25:33Z <p>A lot of SQL code I've read, it seems like the developer assumes that the default sort order always hold. For example when building an HTML select list they would just <code>SELECT id, name FROM table</code> without issuing an <code>ORDER BY</code> clause.</p> <p>From my own experience it seems like dbms alway order data using FIFO if no <code>ORDER BY</code> clause is given and no index. However, the order it is not guarantee. But I have never seen a dbms reordering data if there no change to the table.</p> <p>Have you ever experience a dbms selecting data in a non deterministic order if there is no change to the table?</p> <p>Is it best practice to always put an ORDER BY clause? </p> http://stackoverflow.com/questions/1849294/what-steps-could-be-taken-to-avoid-cross-browser-compatability-issues 7 What steps could be taken to avoid cross-browser compatability issues? Andrew 2009-12-04T19:58:02Z 2009-12-08T19:18:46Z <p>Recently, I have been battling with, weird table borders/margins, div alignments, positioning problems, and am having a down right nightmare supporting Internet Explorer 6 due to its lack for standards. I know a lot of you like me are forced to support, IE6-IE8, Web-Kit, and Mozilla based browsers. </p> <p>My questions to you are: </p> <ol> <li>What are the important rules you use before hand, when developing across multiple browsers to save you time? </li> <li>How do you prevent yourself from writing incompatible tags?</li> <li>What is the best way to avoid hacking your code?</li> <li>Where do you find research on browser compatibility, do you use any tools?</li> <li>Finally, when do you cross the line/where do you draw it?</li> </ol> <p>This programming question is important to me because I want to cut my development time fixing code and spend it writing code.</p> <p>Thank You,<br/> Andrew</p> http://stackoverflow.com/questions/939386/javascript-immediate-function-invocation-syntax 10 JavaScript: immediate function invocation syntax Bobby Eickhoff 2009-06-02T13:05:24Z 2009-12-08T19:00:08Z <p>There is a <a href="http://www.jslint.com" rel="nofollow">JSLint</a> option, one of The Good Parts in fact, that "[requires] parens around immediate invocations," meaning that the construction</p> <pre><code>(function () { // ... })(); </code></pre> <p>would instead need to be written as</p> <pre><code>(function () { // ... }()); </code></pre> <p>My question is this -- can anyone explain why this second form might be considered better? Is it more resilient? Less error-prone? What advantage does it have over the first form?</p> <p><hr></p> <p>Since asking this question, I have come to understand the importance of having a clear visual distinction between function values and the values of functions. Consider the case where the result of immediate invocation is the right-hand side of an assignment expression:</p> <pre><code>var someVar = (function () { // ... }()); </code></pre> <p>Though the outermost parentheses are syntactically unnecessary, the opening parenthesis gives an up-front indication that the value being assigned is <em>not</em> the function itself but rather the result of the function being invoked.</p> <p>This is similar to Crockford's advice regarding capitalization of constructor functions -- it is meant to serve as a visual cue to anyone looking at the source code.</p> http://stackoverflow.com/questions/1863868/define-two-functions-or-branch-within-one 3 Define two functions, or branch within one? nickf 2009-12-08T00:51:18Z 2009-12-08T18:45:31Z <p>I was reading about how to detect the encoding of a file in PHP, and on some blog or somewhere, it was suggested to do this:</p> <pre><code>if (function_exists('mb_detect_encoding')) { function is_utf8($str) { // do stuff using the mb* libraries } } else { function is_utf8($str) { // do stuff manually } } </code></pre> <p>To me this feels very messy, and could be replaced with this:</p> <pre><code>function is_utf8($str) { if (...) { // mb stuff here } else { // manual stuff here } } </code></pre> <p>However, I can also see that it also has some benefits. Depending how complicated the <code>if</code> statement is, and how often the function is called, this might be much more efficient. My question is this: At what point would you consider splitting a function into two like in the first example? Are there any other pros/cons that I've missed?</p> <p><strong>Edit</strong>: Please don't get hung up on the example here, the question is about this practice in general.</p> http://stackoverflow.com/questions/1867911/tdd-does-it-get-in-the-way-of-good-api-design 18 TDD: Does it get in the way of good API design? dsimcha 2009-12-08T16:00:33Z 2009-12-08T18:29:01Z <p>I've never written TDD code, but I've seen a decent amount of discussion about it here on SO. My biggest concern with it is that it seems like general good API design (for flexibility, ease of use, simplicity of interface, and performance) takes a back seat sometimes to making code mockable, ultra-modular beyond what is necessary for any API use case, etc. For example, TDD proponents often suggest that things be passed in as parameters that, from an API abstraction perspective, the method being called should "just know", or that classes and methods be factored in a way that makes testing easy, which is not necessarily the way that relates best to the problem domain.</p> <p>To people more experienced with both TDD and API design: Do you find that TDD often gets in the way of good API design? If so, how do you counter this?</p> http://stackoverflow.com/questions/1868678/database-design-which-table-has-the-foreign-key 0 Database design, which table has the foreign key ArneRie 2009-12-08T17:51:44Z 2009-12-08T18:27:01Z <p>I have an Table <code>USER</code> (USER_ID, PASSWORD, NAME, ...) and an Table <code>ACCESS_ROLES</code> for the Users, every user can have one <code>ACCESS_ROLE</code> (ONE-TO-ONE).</p> <p>Wich table has the Foreign Key?<br> I would put the <code>USER_ID</code> into <code>ACCESS_ROLES</code> table. Is there any best practice approach?</p> http://stackoverflow.com/questions/1868154/mod-rewrite-or-php-router 0 Mod-Rewrite or PHP router? johnnietheblack 2009-12-08T16:34:11Z 2009-12-08T17:40:50Z <p>I am debating routing my requests with one of the two options:</p> <p>Option 1: simple capture route with Mod-Rewrite and funnel written <code>$_GET</code> route to index.php for loading...</p> <pre><code>#default routing RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^blog/([0-9]+)?$ index.php?rt=blog&amp;params=$1 [L,QSA] // ..more custom routes, and then a default route RewriteRule ^([A-Za-z]+)/([A-Za-z]+)/(.*)?$ index.php?rt=$1/$2&amp;params=$3 [L,QSA] </code></pre> <p>Option 2: simply route requests to Front Controller, and create a PHP routing class to handle the routing...</p> <pre><code>#default routing RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?rt=$1 [L,QSA] /* --- on front controller, process $_GET['rt'] --- */ </code></pre> <p>at the end of the day, which will run faster, be easier to secure, and be easier to maintain?</p> <p>any other ideas?</p> <p>NOTE: I am not running a known framework. I am building my own MVC pattern to learn it.</p> http://stackoverflow.com/questions/1288541/threadlocal-when-using-hibernate-session-jdo-persistencemanager 1 ThreadLocal when using hibernate session/JDO persistenceManager cometta 2009-08-17T15:15:34Z 2009-12-08T16:25:38Z <p>I trying to understand the best prastice of using ThreadLocal for the above questions. From my understanding the reason of using this is to ensure only one session/pm created for entire application. My question is</p> <ol> <li><p>is there any impact of using threadlocal like this on clustering application? (example google app engine) ?</p></li> <li><p>if u use "transactional" begin,commit on my application, i do not need to use threadlocal right? since "transaction" already ensure my session open and close properly? </p></li> <li><p>if i need to use "transactional", tx, it should be in threadlocal as well?</p></li> <li><p>why not just use "static" instead of "threadlocal" ?</p></li> </ol> <p>i interested to hear feedback from you all regarding advantages/disadvantages of using this techinque?</p> http://stackoverflow.com/questions/1281086/jdo-integration-with-hibernate 0 JDO integration with hibernate cometta 2009-08-15T03:38:05Z 2009-12-08T16:21:02Z <p>in JPA, to use hibernate, the only thing need to do is moodify persitence.xml and add in hibernate configuration. May i know with JDO, can just by modifying jdoconfig.xml, able to integrate with hibernate? any reference or example on this?</p> http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic 24 How do you make wrong code look wrong? What patterns do you use to avoid semantic errors? Sam Hasler 2008-08-25T14:17:10Z 2009-12-08T16:19:06Z <p>Ever since I first made the mistake of doing an assignment in an <code>if</code> I've always written my ifs like this:</p> <pre><code>if (CONST == variable) { </code></pre> <p>to avoid the common (at least for me) mistake of doing this:</p> <pre><code>if (variable = CONST) { //WRONG, assigning 0 to variable </code></pre> <p>And since I read Joel Spolsky's essay <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Making Wrong Code Look Wrong</a> I've been trying to put his advice into practice.</p> <p>So what other patterns do you use to make wrong code look wrong, or to force syntactic errors if you make a semantic mistake?</p> http://stackoverflow.com/questions/1249898/make-one-sticky-key-not-sticky-on-windows 0 Make one sticky key not sticky on Windows pythonuser 2009-08-08T21:05:15Z 2009-12-08T16:18:50Z <p>I don't use the right control key at all and I like to utilize it as a conveniently placed hotkey for some custom function which I can do easily with Autohotkey.</p> <p>The problem is I also use sticky keys for convenience and if I hit right control then the new function bound by Autohotkey is activated, but the control key also goes into sticky state (because it is done at the OS-level), so it unwantedly affects the next key pressed.</p> <p>Is there a way to tell Windows somehow (with an extra tool maybe) I do want all modifiers to be sticky, except the right control key?</p> http://stackoverflow.com/questions/1418221/best-practices-in-building-asp-net-application 0 Best practices in building ASP.NET application unknown (google) 2009-09-13T16:58:20Z 2009-12-08T16:13:28Z <p>We are building an ASP.NET application (with C#.net as language) and will be hosting on Windows Server 2003 Operating System with SQL Server 2008 as database.</p> <p>We are planning to implement the best practices in writing code, dividing the application into logical blocks, services etc.</p> <p>Would you please guide me on this, if you have an idea?</p> <p>If would be great if you could also provide a reference document or web references (If needed).</p> <p>Many Thanks,</p> <p>Regards, Venkat. </p> http://stackoverflow.com/questions/455132/best-practices-for-asp-net-web-app-localization 1 Best practices for ASP.Net Web App localization holiveira 2009-01-18T13:37:46Z 2009-12-08T16:11:21Z <p>I'm developing a web application that will need to be localized to English and Portuguese (and possible more languages later). I'm aware that .net framework offers full support for ui localization, however, I'm not so sure what's the best approach to implement it.</p> <p>What do you consider the best practices for a web app localization?</p> http://stackoverflow.com/questions/1861160/working-with-sequences-of-different-length 0 working with sequences of different length mariotomo 2009-12-07T16:35:56Z 2009-12-08T16:11:17Z <p>a function I wrote extracts timestamps from a XML document. Timestamps are coupled to events, which are repeated elements of the series element.</p> <p>series elements have a variable amount of events, so my function returns a data.frame (if the series have the same length). in general it returns a more generic list (thanks Eduardo for pointing out the set inclusion data.frames &lt; lists).</p> <p>what I need to do with the data at the moment is to see what is the most common distance between timestamps (I expect it to appear (much) more often than 50% of the times), I have written a function doing this, but I find it ugly (thanks Shane for the <code>diff</code> function):</p> <pre><code>mostCommonStep &lt;- function(T) { L &lt;- diff(unlist(sapply(as.list(L), as.numeric))) as.numeric(quantile(L[L&gt;0], 0.5)) } </code></pre> <p>it passes the unit tests:</p> <pre><code>test.mostCommonStep &lt;- function() { L &lt;- list(a=cumsum(c(1,3,3,2,3,3,4,3,2,3,3)), b=cumsum(c(2,3,2,3))) checkEquals(mostCommonStep(L), 3) L &lt;- data.frame(a=c(2,4,6,8,12,14,18), b=c(12,14,16,18,22,24,28)) checkEquals(mostCommonStep(L), 2) L &lt;- matrix(c(2,4,6,8,12,14,18, 12,14,16,18,22,24,28), 7, 2) checkEquals(mostCommonStep(L), 2) } </code></pre> <p>but, as said, I find it quite ugly...</p> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances 143 What are common UI misconceptions and annoyances? DR 2009-06-18T06:59:37Z 2009-12-08T16:07:54Z <p>I often use applications and electronic devices for which I think: "Why on earth did they engineer that thing as it is? They must have known that it is a pain in the neck to work with".</p> <p>On the other hand I often observed that I created a (G)UI that <em>I was convinced</em> about, that it'd delight my customers and was a breeze to work with. Although my customers thought that too, it became obvious that it wasn't at all easy to work with in day-to-day work.</p> <p>Because of that I believe that there are many developers and designers out there who are genuinely convinced that their product has the perfect user interface, but it hasn't!</p> <p>That's why I wrote this question: To collect some of the common misconceptions developers have about user interfaces and to prevent other developers (including me) from making the same mistakes.</p> <ul> <li>What annoys you most in user interfaces of applications, web sites, electronic devices, etc?</li> <li>What was it that you were convinced would be a great idea—but in the end only annoyed your customers?</li> </ul> <p><strong>EDIT:</strong> Please write only <strong>one thing per answer</strong> so that readers who agree with a certain misconceptions can upvote it separatly from things they don't agree with. As with all <em>soft</em> facts there tend to be controversial opinions. If you put two or more things in a single answer, one might agree with one but not with the others. So please use a separate answer for every separate aspect.</p> <p><strong>EDIT 2:</strong> Please don't write answers about a <em>single</em> application which annoyed you but about <strong>concepts and patterns</strong> which can be found in many applications and/or devices.</p> <p><strong>EDIT 3:</strong> Thank you for all the feedback. I'll frequently visit this question whenever I think about some new UI feature :)</p> http://stackoverflow.com/questions/1865122/how-do-i-link-to-downloadable-files-in-asp-net-mvc 0 How do I link to Downloadable files in ASP.NET MVC? goths 2009-12-08T06:58:29Z 2009-12-08T15:10:41Z <p>I am new to ASP.NET MVC, and am trying to link to downloadable files (.zip, .mp3, .doc, etc).</p> <p>I have the following view: <code>ProductName</code></p> <p>which maps to: <code>http://domain/ProductName</code></p> <p>I have a <code>.zip</code> file that must map to URL <strong><a href="http://domain/ProductName/Product.zip" rel="nofollow">http://domain/ProductName/Product.zip</a></strong></p> <h3>Questions</h3> <p>Where do I place this <code>.zip</code> file in the MVC folder structure?</p> <p>How do I add link to this <code>.zip</code> file in MVC? Is there a Url.* method that do this?</p> http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql 1 Django 1.1.1: How should I store an empty IP address using PostgreSQL? synack 2009-12-07T18:59:15Z 2009-12-08T14:37:49Z <p>I am writing a Django application that stores IP addresses with optional routing information. One of the fields for the IP model I have created is <code>nexthop</code> (for next-hop routes), which will usually be empty. Originally we intended to use MySQL, but now project requirements have changed to use PostgreSQL.</p> <p>Here is a stripped down version of my model:</p> <pre><code>class IP(models.Model): address = models.IPAddressField() netmask = models.IPAddressField(default='255.255.255.255') nexthop = models.IPAddressField(null=True, blank=True, default=None) active = models.BooleanField('is active?', default=1) </code></pre> <p>So, with MySQL I did not have a problem leaving the <code>nexthop</code> field empty. However, now that I switched the development environment to Postgres, we've run into a <a href="http://code.djangoproject.com/ticket/5622" rel="nofollow">known issue in Django 1.1.1</a> in which a blank IP address raises a <code>DataError</code></p> <pre><code>invalid input syntax for type inet: "" LINE 1: ...-14 13:07:29', 1, E'1.2.3.4', E'255.255.255.255', E'', true) ^ </code></pre> <p>As you can see, it bombs because it is trying to insert an empty string when the column will only accept a <code>NULL</code>.</p> <p>I have a very real need to be able to keep this field empty, because if an IP doesn't have a next-hop, then its behavior changes.</p> <p>Short of hacking the Django code manually, which is my ultimate last resort, I have also thought of defaulting next-hop to 255.255.255.255 and wrapping some business logic around that (i.e. If next-hop is 255.255.255.255, treat as normal route), but that just feels like a hack.</p> <p>I would like to know if there are any suggestions on a better way to do this that would not require hacking Django or writing hacky logic, or if there is a completely different approach altogether that can satisfy my requirement.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1835622/is-there-a-right-way-to-implement-a-continuous-improvement-aka-software-hardenin 3 Is there a right way to implement a continuous improvement (AKA software hardening) process? JoshBaltzell 2009-12-02T20:36:26Z 2009-12-08T13:52:16Z <p>Each release it seems that our customers find a few old issues with our software. It makes it look like every release has multiple bugs, when in reality our new code is generally solid.</p> <p>We have tried to implement some additional testing where we have testers do several hours of monthly regression testing on a single app each month in an effort to stay ahead of small issues. We refer to this process as our Software Hardening process, but it does not seem like we are catching enough of the bugs and it feels like a very backburner process since there is always new code to write.</p> <p>Is there a trick to this kind of testing? Do I need to target one specific feature at a time?</p> http://stackoverflow.com/questions/1866126/private-methods-or-static-functions-in-objective-c-which-one-should-i-use 2 "Private methods" or static functions in Objective-C. Which one should I use? GuidoMB 2009-12-08T10:38:18Z 2009-12-08T11:11:27Z <p>When reading <a href="http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c">Best way to define private methods for a class in Objective-C</a> I end up with a programming style doubt. Which is the better solution (in terms of style) to this problem? To use a category and declare it in the @interface directive in the .m file or go with the static function that receives an object.</p> <p>Thanks</p>