User Josh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:09:28Z http://stackoverflow.com/feeds/user/3521 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/31913/a-more-generic-visitor-pattern/33688#33688 3 Answer by Josh for A more generic visitor pattern Josh 2008-08-29T00:02:18Z 2008-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#33672 5 Answer by Josh for How do you handle poor quality code from team members? Josh 2008-08-28T23:49:51Z 2008-08-28T23:49:51Z <p>Apathy works for me.</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/33656#33656 3 Answer by Josh for Testing and Managing database versions against code versions Josh 2008-08-28T23:38:10Z 2008-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#33662 1 Answer by Josh for Diagramming Software for a Developer/Designer Josh 2008-08-28T23:40:50Z 2008-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#33623 5 Answer by Josh for Concurrent logins in a web farm Josh 2008-08-28T23:20:57Z 2008-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>