User Joe The Software Developer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:12:48Z http://stackoverflow.com/feeds/user/26288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1039282/writing-a-topic-pub-sub-system/1039344#1039344 0 Answer by Joe The Software Developer for Writing a topic pub/sub system Joe The Software Developer 2009-06-24T16:06:53Z 2009-06-24T16:06:53Z <p>Have you checked out ActiveMQ? I believe it already does topics and C# has the ability to talk to it through their NMS API.</p> http://stackoverflow.com/questions/288761/rich-interaction-in-java-jsp-web-app/288771#288771 0 Answer by Joe The Software Developer for Rich interaction in Java/JSP web app Joe The Software Developer 2008-11-13T23:37:02Z 2008-11-13T23:37:02Z <p>You can always use things like Adobe Flex for your UI pieces and have a java-based backend for it...</p> <p>How about that new JavaFX tech? IceFaces or RichFaces (JSF)?</p> http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/288745#288745 0 Answer by Joe The Software Developer for Why should I use an IDE? Joe The Software Developer 2008-11-13T23:30:14Z 2008-11-13T23:30:14Z <p>Because ReSharper for vim and ReSharper for emacs don't exist.</p> http://stackoverflow.com/questions/263647/how-do-i-edit-a-text-field-or-ntext-in-sql-server-2000-or-2005-using-the-gui/270739#270739 0 Answer by Joe The Software Developer for How do I edit a text field (or ntext) in SQL Server 2000 or 2005 using the GUI? Joe The Software Developer 2008-11-06T23:19:15Z 2008-11-06T23:19:15Z <p>In the Management Console, isn't it possible to do an "Open Table" context-menu action and then edit the data from there?</p> http://stackoverflow.com/questions/254216/mysql-joins/254243#254243 0 Answer by Joe The Software Developer for MySQL Joins Joe The Software Developer 2008-10-31T17:10:27Z 2008-10-31T17:10:27Z <p>Does this work?</p> <p>SELECT i.issueid, i.assignedid, u1.real_name as assigned_name, i.creatorid, u2.real_name as creator_name FROM users u1 INNER JOIN issues i ON u1.userid = i.assignedid INNER JOIN users u2 ON u2.userid = i.creatorid ORDER BY i.issueid</p> http://stackoverflow.com/questions/254175/is-there-a-c-auto-formatter-that-i-can-use-to-define-custom-rules-for-formatting/254196#254196 0 Answer by Joe The Software Developer for Is there a C# auto formatter that I can use to define custom rules for formatting? Joe The Software Developer 2008-10-31T16:54:51Z 2008-10-31T16:54:51Z <p>Unless they bake it into VS2010, Resharper has the auto formatting capabilities you're probably looking for. CodeSmith probably has it too, I just haven't used it...</p> http://stackoverflow.com/questions/251753/best-way-to-get-a-comma-delineated-string-into-xml-format/251763#251763 1 Answer by Joe The Software Developer for Best way to get a comma delineated string into xml format? Joe The Software Developer 2008-10-30T21:00:48Z 2008-10-30T21:00:48Z <p>Instead of doing string concatenation, you could probably create an XmlDocument and stuff it with the appropriate XmlElement and XmlAttribute objects from your string... Then, write out the XmlDocument object...</p> http://stackoverflow.com/questions/251640/why-use-a-web-service-with-linq-to-sql/251677#251677 0 Answer by Joe The Software Developer for Why use a web service with Linq to SQL? Joe The Software Developer 2008-10-30T20:35:57Z 2008-10-30T20:35:57Z <p>Agreed with previous poster. You'd probably want to do this to apply the "Separation of Concerns" idea...</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251094#251094 3 Answer by Joe The Software Developer for Do I really need version control? Joe The Software Developer 2008-10-30T17:45:31Z 2008-10-30T17:45:31Z <p>Easy question. The answer is yes.</p> http://stackoverflow.com/questions/251033/how-can-i-convert-a-varchar-field-of-the-form-yyyymmdd-to-a-datetime-in-t-sql/251046#251046 0 Answer by Joe The Software Developer for How can I convert a varchar field of the form: YYYYMMDD to a datetime in T-SQL? Joe The Software Developer 2008-10-30T17:28:42Z 2008-10-30T17:28:42Z <p>Use the CONVERT() function?</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms187928.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms187928.aspx</a></p> http://stackoverflow.com/questions/246981/what-is-wrong-with-this-create-table-statement/247208#247208 3 Answer by Joe The Software Developer for What is wrong with this create table statement Joe The Software Developer 2008-10-29T15:19:23Z 2008-10-29T15:19:23Z <p>I believe the column names "START" and "CONDITION" are 'special' words in MySQL? All I did was simply paste the beautified code into Query Browser and noticed that some column names were 'blue'... :P</p>