User Josh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T02:09:28Zhttp://stackoverflow.com/feeds/user/3521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31913/a-more-generic-visitor-pattern/33688#336883Answer by Josh for A more generic visitor patternJosh2008-08-29T00:02:18Z2008-08-29T00:02:18Z<p>For a generic implementation of <a href="http://en.wikipedia.org/wiki/Visitor_pattern" rel="nofollow">Vistor</a>, I'd suggest the <a href="http://loki-lib.sourceforge.net/index.php?n=Pattern.Visitor" rel="nofollow">Loki Visitor</a>, part of the <a href="http://loki-lib.sourceforge.net/index.php?n=Main.HomePage" rel="nofollow">Loki library</a>.</p>
http://stackoverflow.com/questions/12745/how-do-you-handle-poor-quality-code-from-team-members/33672#336725Answer by Josh for How do you handle poor quality code from team members?Josh2008-08-28T23:49:51Z2008-08-28T23:49:51Z<p>Apathy works for me.</p>
http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33656#336563Answer by Josh for Testing and Managing database versions against code versionsJosh2008-08-28T23:38:10Z2008-08-28T23:46:10Z<p>Version numbers embedded in the database are helpful. You have two choices, embedding values into a table (allows versioning multiple items) that can be queried, or having an explictly named object (such as a table or somesuch) you can test for.</p>
<p>When you release to production, do you have a rollback plan in the event of unexpected catastrophe? If you do, is it the application of a schema rollback script? Use your rollback script to rollback the database to a previous code version.</p>
http://stackoverflow.com/questions/33643/diagramming-software-for-a-developer-designer/33662#336621Answer by Josh for Diagramming Software for a Developer/DesignerJosh2008-08-28T23:40:50Z2008-08-28T23:40:50Z<p>I concur on paper. You never mentioned any need to store, transmit, validate, version control or code-generate, so I assume you're just designing stuff prior to coding it up. Paper does really well on that front.</p>
http://stackoverflow.com/questions/33619/concurrent-logins-in-a-web-farm/33623#336235Answer by Josh for Concurrent logins in a web farmJosh2008-08-28T23:20:57Z2008-08-28T23:20:57Z<p>It's just a cost of doing business.</p>
<p>Yes, caching to a database is slower than caching on your webserver. But you've got to store that state information in a centralized location, otherwise one webserver isn't going to know what users are logged into another.</p>
<p>Assumption: You're trying to prevent multiple concurrent log-ins by a single user.</p>