User Joe The Software Developer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:12:48Zhttp://stackoverflow.com/feeds/user/26288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1039282/writing-a-topic-pub-sub-system/1039344#10393440Answer by Joe The Software Developer for Writing a topic pub/sub systemJoe The Software Developer2009-06-24T16:06:53Z2009-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#2887710Answer by Joe The Software Developer for Rich interaction in Java/JSP web appJoe The Software Developer2008-11-13T23:37:02Z2008-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#2887450Answer by Joe The Software Developer for Why should I use an IDE?Joe The Software Developer2008-11-13T23:30:14Z2008-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#2707390Answer 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 Developer2008-11-06T23:19:15Z2008-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#2542430Answer by Joe The Software Developer for MySQL JoinsJoe The Software Developer2008-10-31T17:10:27Z2008-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#2541960Answer 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 Developer2008-10-31T16:54:51Z2008-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#2517631Answer by Joe The Software Developer for Best way to get a comma delineated string into xml format?Joe The Software Developer2008-10-30T21:00:48Z2008-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#2516770Answer by Joe The Software Developer for Why use a web service with Linq to SQL?Joe The Software Developer2008-10-30T20:35:57Z2008-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#2510943Answer by Joe The Software Developer for Do I really need version control?Joe The Software Developer2008-10-30T17:45:31Z2008-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#2510460Answer 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 Developer2008-10-30T17:28:42Z2008-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#2472083Answer by Joe The Software Developer for What is wrong with this create table statementJoe The Software Developer2008-10-29T15:19:23Z2008-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>