User Paul Shannon - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:38:44Z http://stackoverflow.com/feeds/user/11503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/806753/how-can-i-stop-using-a-mouse-while-programming-in-my-ide/806767#806767 0 Answer by Paul Shannon for How can I stop using a mouse while programming in my IDE? Paul Shannon 2009-04-30T12:59:21Z 2009-04-30T12:59:21Z <p>Hide your mouse - at least one arm's length away - then you can always get it back in an emergency</p> http://stackoverflow.com/questions/781828/how-to-deal-with-requests-for-ridiculous-functionality-in-your-software/781865#781865 14 Answer by Paul Shannon for How to deal with requests for ridiculous functionality in your software? Paul Shannon 2009-04-23T14:02:41Z 2009-04-23T14:02:41Z <p>Always relate any request to money. The people that come up with these requests are usually more concerned about money so make sure they are aware that it will cost them more because:</p> <ul> <li>it is going to take longer</li> <li>it is likely to introduce more bugs</li> <li>it is likely to slow down maintenance</li> <li>it will slow down development of new features relating to it</li> </ul> http://stackoverflow.com/questions/581998/preventing-asp-net-mvc-from-replacing-period-with-underscore-in-html-helper-ids 4 Preventing ASP.NET MVC from Replacing period with underscore in Html Helper IDs Paul Shannon 2009-02-24T14:44:27Z 2009-02-24T14:49:38Z <p>Having just upgraded to the latest ASP.NET MVC Release Candidate I noticed that, when using Html Helpers, any name with a period "." in it will have this replaced by an underscore "_" when the element's ID is output.</p> <p>I believe this is <a href="http://stackoverflow.com/questions/350292/how-do-i-get-jquery-to-select-elements-with-a-period-in-their-id">to aid in using JQuery</a> and the use of the period is to aid in the use of ModelBinders. This has broken all of our javascript, which uses prototype, as the IDs have all changed.</p> <p>Is there a way to turn this feature off easily?</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114387#114387 47 Answer by Paul Shannon for What are Code Smells? What is the best way to correct them? Paul Shannon 2008-09-22T11:45:06Z 2009-02-14T18:01:13Z <p><strong>Primitive Obsession</strong></p> <p>Always using "int" and "double" where you should have a class such as "Money" or "OrderValue" so that you can apply different logic or rounding. It also ensure method parameters are better structured.</p> <p><code>string</code> is the most common object of such obsession.</p> http://stackoverflow.com/questions/102496/compatible-encryption-between-c-and-php-coldfusion-ruby-python 3 Compatible encryption between C# and PHP, ColdFusion, Ruby, Python Paul Shannon 2008-09-19T14:54:19Z 2008-11-29T03:21:18Z <p>We're developing a service that will accept a POST request, and some of the POST data will need to be encypted before the POST as it will be stored in hidden fields on a form.</p> <p>The application is written in C# but we want third party clients to be able to easily integrate with it. We find that most clients use PHP, Classic ASP or VB.Net.</p> <p>The third parties should only be doing the encryption and we'd do the decryption there is no two-way communication.</p> <p>What are the most compatible combinations of encryption algorithm, padding mode and other options?</p> http://stackoverflow.com/questions/96066/automated-unit-testing-with-javascript/139822#139822 0 Answer by Paul Shannon for Automated Unit Testing with JavaScript Paul Shannon 2008-09-26T14:20:31Z 2008-09-26T14:20:31Z <p>For .Net using NUnit or MbUnit you could use WatiN to run a JSUnit Runner and check the results... like this guy:</p> <p><a href="http://adamesterline.com/2007/05/15/integrating-jsunit-with-nunit-using-watin/" rel="nofollow">http://adamesterline.com/2007/05/15/integrating-jsunit-with-nunit-using-watin/</a></p> http://stackoverflow.com/questions/138227/getting-started-with-pair-programming/138985#138985 0 Answer by Paul Shannon for Getting Started with Pair Programming Paul Shannon 2008-09-26T11:58:11Z 2008-09-26T11:58:11Z <p>We pair program most of the time, but not for 6-8 hours a day, usually for stints of 3. If your team can be enlarged too "pair swapping" helps as you work with different people and everyone gets a view of every part of the project.</p> <p>We work on the TDD adage of red, green refactor and usually swap "drivers" (the person doing the keyboard work) at the end of each cycle, or to turn it into a version of the TDD game, at the end of each part of the cycle - one person writes a test, the other person satisfies it, the first person refactors it, then the second person writes a test etc etc</p> http://stackoverflow.com/questions/126369/in-scrum-where-does-the-detail-sit/126396#126396 0 Answer by Paul Shannon for In Scrum, where does the detail sit? Paul Shannon 2008-09-24T10:29:09Z 2008-09-24T10:29:09Z <p>My understanding is that specific requirements such as this are handled by the product owner. They will liase with the client during Sprint Planning 2 and update the tasks with specfic requirements as needed - hence why the Product Owner is a optional attendee of the Sprint Planning 2 meeting. This gives you a hybrid of Just-in-Time and Sprint Planning 2 population of the specifics. Anything that isn't satisfied by the time you come to work on the task will be an impediment and should be dealt with a the daily scrum, by the product owner.</p> <p>As the development is Agile when using Scrum you shouldn't find too much of an issues getting requirements just in time.</p> http://stackoverflow.com/questions/126158/what-is-your-favorite-anti-pattern/126203#126203 5 Answer by Paul Shannon for What is your "favorite" anti pattern? Paul Shannon 2008-09-24T09:28:22Z 2008-09-24T09:28:22Z <p><a href="http://en.wikipedia.org/wiki/Magic_pushbutton" rel="nofollow">Magic Pushbutton</a> is everywhere in web apps, especially since javascript has taken off yet programming ability has remained the same in some webshops ;) It's like the arch nemesis of MVC</p> http://stackoverflow.com/questions/70908/which-plaform-for-a-lightweight-windows-desktop-app-for-internal-use-to-run-basic 0 Which plaform for a lightweight windows desktop app for internal use to run basic console commands (WPF, AIR, something else)? Paul Shannon 2008-09-16T10:06:54Z 2008-09-24T03:55:45Z <p>We have a number of scripts that we use for various deployment and data import tasks. These are currently called through a number of command lines calls or batch files.</p> <p>We'd prefer a cool little interface to run them and collect feedback rather than a plethora of drop downs. This will probably be developed in our developer's "20% time" so quickness and fun-ness are considerations ;)</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/118474/action-naming-convention/120227#120227 2 Answer by Paul Shannon for Action Naming Convention Paul Shannon 2008-09-23T10:27:10Z 2008-09-23T10:27:10Z <p>Rob Conery at MS suggested some useful RESTful style naming for actions.</p> <blockquote> <pre><code>* Index - the main "landing" page. This is also the default endpoint. * List - a list of whatever "thing" you're showing them - like a list of Products. * Show - a particular item of whatever "thing" you're showing them (like a Product) * Edit - an edit page for the "thing" * New - a create page for the "thing" * Create - creates a new "thing" (and saves it if you're using a DB) * Update - updates the "thing" * Delete - deletes the "thing" </code></pre> </blockquote> <p>results in URLs along the lines of (for a forum)</p> <blockquote> <pre><code>* http://mysite/forum/group/list - shows all the groups in my forum * http://mysite/forum/forums/show/1 - shows all the topics in forum id=1 * http://mysite/forums/topic/show/20 - shows all the posts for topic id=20 </code></pre> </blockquote> <p><a href="http://blog.wekeroad.com/2007/12/06/aspnet-mvc-using-restful-architecture/" rel="nofollow">Rob Conery on RESTful Architecture for MVC</a></p> http://stackoverflow.com/questions/120014/how-do-you-deal-with-painful-shoulders-and-cold-fingers/120058#120058 1 Answer by Paul Shannon for How do you deal with painful shoulders and cold fingers Paul Shannon 2008-09-23T09:37:09Z 2008-09-23T09:37:09Z <p>You should get a DSE Risk Assessment from a qualified body - such as a registered Chiropractor. They will assess your posture and the ergonomics of your workstation.</p> <p><a href="http://www.google.co.uk/search?q=dse+assessment" rel="nofollow">Google Search for DSE Assessment</a></p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114708#114708 3 Answer by Paul Shannon for What are Code Smells? What is the best way to correct them? Paul Shannon 2008-09-22T12:56:54Z 2008-09-22T13:14:34Z <p><strong>Pattern Duplication</strong></p> <p>Not just copy/paste of lines but similarity in the methodology, for example, always setting up a transaction, calling arbitary methods on objects, returning a list of objects, tidying up etc - this could be refactored into a base class</p> http://stackoverflow.com/questions/108348/what-agile-methodology/108398#108398 5 Answer by Paul Shannon for What Agile methodology? Paul Shannon 2008-09-20T14:59:34Z 2008-09-22T11:25:31Z <p>We started with Scrum because its formal structure (estimation, user story planning, task planning, daily meetings, retrospective) helped us get from our old methods to be more agile. We've now found that the 3 planning and esitmation meetings can be done on a task/user story basis in the morning meetings.</p> <p>We have a large pin board and pin on index cards for each user story. The board is split into not started, in progress and done. We ensure that no task takes more than a day when we break it down, and we break down each user story in the daily morning meeting the day we are going to need it. This keeps us agile so that the list of "features" as user stories can then change without us spending time breaking it down into tasks. This ensure that two week projects can easily be handled in the same way that larger ones are too.</p> <p>To estimate velocity we count up the cards at the end of the week to see how many task we've done. The downside is that release planning and velocity estimation is not as accurate as with Scrum but this hybrid XP methodology helps developers focus on tasks when ready and not waste too much time in meetings.</p> <p>Having smaller tasks also promotes more regular commits to source control and combined with a build server and deployment scripts we can deliver a progression in the application once a day at least - great for getting feedback from the client. We also have weekly retrospectives too and have hired in an agile consultant for a week every 3 months or so to ensure we keep on the right track.</p> http://stackoverflow.com/questions/114296/can-i-use-my-watin-tests-to-stresstest/114310#114310 3 Answer by Paul Shannon for Can i use my WatiN tests to stresstest? Paul Shannon 2008-09-22T11:20:27Z 2008-09-22T11:20:27Z <p>We have issues on our build server when running WatiN tests as it often throws timeouts trying to access the Internet Explorer COM component. It seems to hang randomly while waiting for the total page to load.</p> <p>Given this, I would not recommend it for stress testing as the results will be inaccurate and the tests are likely to be slow.</p> <p>I would recommend <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">JMeter</a> for making threaded calls to the HTTP requests that your GUI is making</p> http://stackoverflow.com/questions/114272/are-there-any-utilites-that-will-help-me-refactor-css/114295#114295 7 Answer by Paul Shannon for Are there any utilites that will help me refactor CSS Paul Shannon 2008-09-22T11:15:19Z 2008-09-22T11:15:19Z <p><a href="http://www.newsgator.com/Individuals/TopStyle/Default.aspx" rel="nofollow">TopStyle</a> is popular and always the one I hear recommended. It has recommendations on styles etc.</p> <p>I use <a href="http://www.aptana.com/" rel="nofollow">Aptana</a> but this doesn't do an refactoring just flags up errors and allows you to target certain browsers. Using this a a decent CSS book may help.</p> http://stackoverflow.com/questions/113731/cruisecontrol-net-post-build-actions/114004#114004 1 Answer by Paul Shannon for CruiseControl.NET post-build actions Paul Shannon 2008-09-22T09:39:31Z 2008-09-22T09:39:31Z <p>Take a look at <a href="http://blogs.iis.net/msdeploy/archive/2008/01/22/welcome-to-the-web-deployment-team-blog.aspx" rel="nofollow">MSDEPLOY</a> or <a href="http://weblogs.asp.net/scottgu/archive/2008/01/28/vs-2008-web-deployment-project-support-released.aspx" rel="nofollow">Web Deployment Projects</a>. There is a question that will provide <a href="http://stackoverflow.com/questions/45783/automate-deployment-for-web-application">more detail here</a></p> http://stackoverflow.com/questions/108461/how-do-i-pop-up-an-image-in-a-separate-div-on-the-mouseover-of-a-div-using-only-c/108498#108498 1 Answer by Paul Shannon for How do I pop up an image in a separate div on the mouseover of a div using only CSS? Paul Shannon 2008-09-20T15:33:31Z 2008-09-20T15:33:31Z <p><a href="http://www.cssplay.co.uk" rel="nofollow">CSS Playground</a> uses pure CSS for this type of thing, one of the demos is surely to help you and as it's all CSS just view source to learn - you probably want to use the :hover pseudo class but there are limitations to it depending on your browser targeting.</p> http://stackoverflow.com/questions/108301/is-do-not-load-this-page-directly-really-necessary-in-php/108478#108478 0 Answer by Paul Shannon for Is "do not load this page directly" really necessary in PHP? Paul Shannon 2008-09-20T15:26:50Z 2008-09-20T15:26:50Z <p>I just found an approach in the .Net MVC system that you could replicate for PHP using Apache Rewrites, .htaccess files or if you are using IIS, a web.config file.</p> <p>As the MVC pattern doens't need the user to directly access aspx files these are not served and a 404 is sent instead. If you have a naming convention for included files "inc.php" for example you could redirect *.inc.php requests to a 404 for specific folders - in Apache Rewrite supply R=404 at the end of the rule will return that HTTP status to your client.</p> <p>Some of these examples may help: <a href="http://httpd.apache.org/docs/1.3/misc/rewriteguide.html" rel="nofollow">Apache Rewrite Examples</a></p> http://stackoverflow.com/questions/104158/what-is-best-practice-for-comparing-two-instances-of-a-reference-type/104178#104178 2 Answer by Paul Shannon for What is "Best Practice" For Comparing Two Instances of a Reference Type? Paul Shannon 2008-09-19T18:10:33Z 2008-09-19T18:10:33Z <p>For complex objects that will yield specific comparisons then implementing IComparable and defining the comparison in the Compare methods is a good implementation.</p> <p>For example we have "Vehicle" objects where the only difference may be the registration number and we use this to compare to ensure that the expected value returned in testing is the one we want.</p> http://stackoverflow.com/questions/104097/integration-testing-http-proxy-server/104149#104149 1 Answer by Paul Shannon for Integration Testing Http Proxy Server Paul Shannon 2008-09-19T18:05:15Z 2008-09-19T18:05:15Z <p>To test the integration by delivering a webpage you could try one of the following:</p> <ul> <li><a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a></li> <li><a href="http://watin.sourceforge.net/" rel="nofollow">WaTiN</a></li> <li><a href="http://wtr.rubyforge.org/" rel="nofollow">Watir</a></li> </ul> <p>You can run Watin tests directly from xUnit in C# too - we do this for our applications. I also believe it is possible to dynamically set the proxy settings in the browser for Watin (and probably the others too).</p> <p>Alternatively to make HTTP requests to a given address try <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">JMeter</a>.</p> http://stackoverflow.com/questions/70909/hibernate-mapping-a-composite-key-with-null-values/70934#70934 0 Answer by Paul Shannon for Hibernate mapping a composite key with null values Paul Shannon 2008-09-16T10:12:21Z 2008-09-16T10:12:21Z <p>This is not advisable. Could you use a view and map that instead? You could use COALESCE to supply a default if you are stuck with legacy data. We had lots of trouble with composite keys and I imagine null values will cause even more issues.</p> http://stackoverflow.com/questions/45783/automate-deployment-for-web-applications/70621#70621 1 Answer by Paul Shannon for Automate Deployment for Web Applications? Paul Shannon 2008-09-16T09:13:20Z 2008-09-16T09:13:20Z <p>Rather than using xcopy we managed to use the -source:dirpath command with UNC addresses to the servers with msdeploy. The key was the ignoreAcls=true and removing calls to username and password in the msdeploy string:</p> <pre><code>msdeploy -verb:sync -source:dirpath=\\build\e$\app -dest:dirpath=\\live\d$\app,ignoreAcls=true </code></pre> <p>The example deploys the site from our build server's E drive to the D drive on our live server. There are some security considerations with exposing shares or this level of disk access on a live server. We're currently looking into using a limited access shared folder.</p> <p>We then pipe this output to a log file which is then moved to the backup archive for reference. The log file records which files were moved and when.Continuing the example above with the output pipe command:</p> <pre><code>... &gt; E:\archive\msdeploy.log </code></pre> http://stackoverflow.com/questions/70405/does-c-have-a-string-tokenizer-like-javas/70463#70463 0 Answer by Paul Shannon for Does C# have a String Tokenizer like Java's? Paul Shannon 2008-09-16T08:50:17Z 2008-09-16T08:50:17Z <p>If you are using C# 3.5 you could write an extension method to System.String that does the splitting you need. You then can then use syntax:</p> <pre><code>string.SplitByMyTokens(); </code></pre> <p>More info and a useful example from MS here <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb383977.aspx</a></p> http://stackoverflow.com/questions/781828/how-to-deal-with-requests-for-ridiculous-functionality-in-your-software/781893#781893 Comment by Paul Shannon on How to deal with requests for ridiculous functionality in your software? Paul Shannon 2009-04-23T14:48:14Z 2009-04-23T14:48:14Z People are relying on you to be the expert in the field of software development - therefore if something is technically possible it does not follow that you should do it as you expert opinion may state that the feature compromises the rest of the application - your client/superior may not know this and you should not, therefore, always accept work just because someone is paying for it or telling you to do it. http://stackoverflow.com/questions/581998/preventing-asp-net-mvc-from-replacing-period-with-underscore-in-html-helper-ids/582022#582022 Comment by Paul Shannon on Preventing ASP.NET MVC from Replacing period with underscore in Html Helper IDs Paul Shannon 2009-02-24T14:59:04Z 2009-02-24T14:59:04Z Seems an odd way of doing it - suppose it is to help out the JQuery default. I added HtmlHelper.IdAttributeDotReplacement = &quot;.&quot;; to Global Application_Start and we were back online in 8 minutes ;) Thanks http://stackoverflow.com/questions/166174/how-can-i-convert-listobject-to-hashtable-in-c/166207#166207 Comment by Paul Shannon on How can I convert List<object> to Hashtable in C#? Paul Shannon 2008-10-03T10:23:56Z 2008-10-03T10:23:56Z That example is spot on. Linq keeps solving problems left, right and centre. http://stackoverflow.com/questions/67734/execute-javascript-from-within-a-c-assembly/67768#67768 Comment by Paul Shannon on Execute JavaScript from within a C# assembly Paul Shannon 2008-09-26T14:17:00Z 2008-09-26T14:17:00Z There is some example code regarding using WatiN to run unit tests here: <a href="http://adamesterline.com/2007/05/15/integrating-jsunit-with-nunit-using-watin/" rel="nofollow">adamesterline.com/2007/05/&hellip;</a> http://stackoverflow.com/questions/139228/what-do-you-do-with-a-developer-that-does-not-test-his-code/139326#139326 Comment by Paul Shannon on What do you do with a developer that does not test his code? Paul Shannon 2008-09-26T13:52:20Z 2008-09-26T13:52:20Z If all the other developers write quality tests with a high degree of coverage he'll find it hard slip features through the net. http://stackoverflow.com/questions/139228/what-do-you-do-with-a-developer-that-does-not-test-his-code/139326#139326 Comment by Paul Shannon on What do you do with a developer that does not test his code? Paul Shannon 2008-09-26T13:51:18Z 2008-09-26T13:51:18Z We use CCMenu, Growl and a MacMini to blurt out a very loud fail noise - then everyone downs tools to try and fix the build. When the noise does go off fingers are usually pointed too. http://stackoverflow.com/questions/138884/when-should-i-use-inline-vs-external-javascript/138918#138918 Comment by Paul Shannon on When should I use Inline vs. External Javascript? Paul Shannon 2008-09-26T11:59:58Z 2008-09-26T11:59:58Z I think Yahoo also recommend adding all the Javascript into one HTTP call too - this doesn't mean that the scripts should all be in the same file during development though http://stackoverflow.com/questions/138715/programming-with-add-adhd/138843#138843 Comment by Paul Shannon on Programming with ADD/ADHD Paul Shannon 2008-09-26T11:48:06Z 2008-09-26T11:48:06Z Pair programming will work wonders for this. http://stackoverflow.com/questions/135976/your-most-time-consuming-task-as-a-developer/136004#136004 Comment by Paul Shannon on Your most time-consuming task as a developer? Paul Shannon 2008-09-25T21:59:51Z 2008-09-25T21:59:51Z I'll second that TDD for the win http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114414#114414 Comment by Paul Shannon on What are Code Smells? What is the best way to correct them? Paul Shannon 2008-09-22T13:00:26Z 2008-09-22T13:00:26Z There is a school of thought that any comment is a bad thing as this just covers up the fact that your functionality is not clear enough, your variables are not named correctly and your tests are specified in enough detail http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114354#114354 Comment by Paul Shannon on What are Code Smells? What is the best way to correct them? Paul Shannon 2008-09-22T12:49:56Z 2008-09-22T12:49:56Z Simian, a code similarity detection tool works wonders for fixing this. <a href="http://www.redhillconsulting.com.au/products/simian/" rel="nofollow">redhillconsulting.com.au/products/simian/&hellip;</a>