User CAD bloke - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:25:24Z http://stackoverflow.com/feeds/user/492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/628840/what-is-the-best-way-to-cater-for-users-reporting-bugs 2 What is the best way to cater for users reporting bugs ? CAD bloke 2009-03-10T03:23:46Z 2009-11-19T22:05:13Z <p>ok, <a href="http://www.bugzilla.org/" rel="nofollow">Bugzilla</a> would scare the willies out of the average end-user. Even things like <a href="http://www.mantisbt.org/" rel="nofollow">Mantis</a> are a little spooky for the uninitiated.</p> <p>What method, web package (preferred), interface, whatever can I implement to make it easy, intuitive and not-at-all-intimidating for my end users &amp; customers to report bugs in an intelligible manner?</p> <p>I like the idea of something forms-based, or point-and-clicky, rather than the prior knowledge needed by something as comprehensive and intimidating as Bugzilla.</p> <p>Email, while approachable for the average punter, seems less than ideal since it doesn't prompt the user for the kinds of information I need to try &amp; figure out what is broken.</p> <p>So far <a href="http://www.thebuggenie.com/" rel="nofollow">Bugs - The Bug Genie</a> seems like the least scary option to confront the average user with. I searched but didn't find any questions like mine.</p> <p>Suggestions, ideas, insights please !</p> http://stackoverflow.com/questions/1613781/visual-studio-2010-beta-2-installation-prob/1664832#1664832 0 Answer by CAD bloke for Visual Studio 2010 Beta 2 Installation Prob CAD bloke 2009-11-03T02:13:27Z 2009-11-03T02:13:27Z <p>Reset your environment settings back to the default (tools -> options). Some settings in the text editors don't migrate well from earlier versions. Mine wouldn't open the C# editor which was kinda useless.</p> http://stackoverflow.com/questions/1641217/tfs-2010-basic-beta-2-versus-subversion-et-al 0 TFS 2010 Basic (beta 2) versus Subversion et al CAD bloke 2009-10-29T01:53:31Z 2009-10-29T02:15:31Z <p>For a solo developer using Visual Studio 2010 beta 2 is TFS Basic a better option than Subversion (with VisualSVN or Ankh) and (optionally) something like Cruisecontrol? </p> <p>I don't need distributed source or even remote access. I don't really care about drilldowns and all that reporting. I just want version control &amp; potentially automated testing &amp; building.</p> <p>EDIT: to respond to Bob Aman's questions (Thanks Bob)</p> <p>I was considering self-hosting but off-site is a good idea , as you say. I back-up regularly. It is really only me who will have access to the repository so access control would not be complicated. I do have an MSDN subscription so cost is not an issue. The repository won't get particularly large - I'm not that productive. :/</p> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/1469600#1469600 0 Answer by CAD bloke for Confessions of your worst WTF Moment. (What not to do.) CAD bloke 2009-09-24T03:11:56Z 2009-09-24T03:11:56Z <p>Not me, thank (Deity /) I used to work for a television company that covers a world-wide motor racing season (yeah, that one). The entire TV complex was powered by 4 generators. </p> <p>One day someone walked past a generator and accidentally bumped the emergency stop button. I was in the media centre and saw all the screens go blank. I looked outside at the generators, all with their exhaust raincaps resting in the down position. </p> <p>The ensuing debate was whether or not to disable the emergency stop button stopping all the generators or just the local one. Cover plate anyone?</p> http://stackoverflow.com/questions/1367040/path-for-an-autocad-file-that-contain-an-excel-file/1469536#1469536 0 Answer by CAD bloke for Path for an AutoCAD file that contain an Excel file CAD bloke 2009-09-24T02:46:10Z 2009-09-24T02:56:06Z <p>If the Excel is embedded in an AutoCAD file then you will need an AutoCAD-compatible API to read the host AutoCAD DWG file. Search here for AutoCAD APIs but basically there are AutoCAD (surprise!) and the <a href="http://www.opendwg.org/" rel="nofollow">Open Design Alliance</a>.</p> <p>If you are going straight to the embedded Excel file then it has no way of knowing that it has been embedded in anything so it won't know that path of the host AutoCAD DWG file.</p> http://stackoverflow.com/questions/630043/converting-autocad-dxf-to-microsoft-xaml/1469556#1469556 0 Answer by CAD bloke for Converting Autocad DXF to Microsoft XAML CAD bloke 2009-09-24T02:54:40Z 2009-09-24T02:54:40Z <p>The <a href="http://www.opendwg.org/the%5Foda%5Fplatform/dwgdirect.net" rel="nofollow">Open Design Alliance .Net API</a> has an AutoCAD - SVG export function too. Firefox renders SVG (apparently). I haven't tried it but it might be 1 way to get an AutoCAD drawing into the browser. Let us know how you go.</p> <p>DXF compatibility shifts with versioning. AutoDesk probably reversion DXF as often as they do DWG. </p> http://stackoverflow.com/questions/1271445/autocad-endplot-event-firing-too-soon-in-c-api/1469526#1469526 0 Answer by CAD bloke for AutoCad EndPlot event firing too soon in (C#, API) CAD bloke 2009-09-24T02:41:01Z 2009-09-24T02:41:01Z <p>You could try en-queuing a 2nd plot to a null device and wait for that to finish (or start, as it seems).</p> <p>Have you looked into simply waiting for the bool return value of object.PlotToDevice [plotConfig] ?</p> http://stackoverflow.com/questions/609697/how-to-convert-autocaddwg-to-pdf/1197073#1197073 0 Answer by CAD bloke for How to convert AutocadDWG To PDF? CAD bloke 2009-07-28T22:20:07Z 2009-07-28T22:20:07Z <p>You could use DWG Trueview (<a href="http://usa.autodesk.com/adsk/servlet/index?id=6703438&amp;siteID=123112" rel="nofollow">free from AutoDesk</a>) and print through a PDF print driver. <a href="http://www.docu-track.com/" rel="nofollow">PDF Xchange</a> is the best PDF printer I have found for AutoCAD. Most others, including AutoCAD's own implementation bloat the PDF to about 10x the size and render text as line objects. That's a total FAIL.</p> <p>You used to be able to hook into bits of Trueview programmatically but it never had a documented API as such and certaily wasn't officially sanctioned. Try Google for solutions along those lines.</p> http://stackoverflow.com/questions/35874/how-do-you-enforce-or-maintain-the-quality-of-the-bug-reports-in-your-bug-tracker/832642#832642 0 Answer by CAD bloke for How do you enforce or maintain the quality of the bug reports in your bug tracker? CAD bloke 2009-05-07T02:32:08Z 2009-05-07T02:32:08Z <p>Use something like <a href="http://stackoverflow.uservoice.com/" rel="nofollow">UserVoice</a> for the end-users to report bugs and feature requests. Bug tracker entries really should be internal - they are too technical for end-users and also, IMHO, expose a little too much internal workings.</p> http://stackoverflow.com/questions/628840/what-is-the-best-way-to-cater-for-users-reporting-bugs/832632#832632 0 Answer by CAD bloke for What is the best way to cater for users reporting bugs ? CAD bloke 2009-05-07T02:29:08Z 2009-05-07T02:29:08Z <p>The answer was staring me in the face, right at the bottom of this page. Services like UserVoice are a great way for end users to nominate &amp; vote for bugs, changes etc.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/814454#814454 9 Answer by CAD bloke for What's your most controversial programming opinion? CAD bloke 2009-05-02T08:55:49Z 2009-05-02T08:55:49Z <p><strong>If you want to write good software then step away from your computer</strong></p> <p>Go and hang out with the end users and the people who want and need the software. Only from them will you understand what your software needs to accomplish and how it needs to do that. </p> <ul> <li>Ask them what the love &amp; hate about the existing processes. </li> <li>Ask them about the future of their processes, where it is headed.</li> <li>Hang out and see what they use now and figure out their usage patterns. You need to meet and match their usage expectations. See what else they use a lot, particularly if they like it and can use it efficiently. Match that.</li> </ul> <p>The end user doesn't give a rat's how elegant your code is or what language it's in. If it works for them and they like using it, you win. If it doesn't make their lives easier and better - they hate it, you lose.</p> <p>Walk a mile in their shoes - then go write your code.</p> http://stackoverflow.com/questions/282086/learning-c-asp-net-3-5-what-order-should-i-learn-in-what-to-skip 4 Learning C#, ASP.NET 3.5 - what order should I learn in / what to skip? CAD bloke 2008-11-11T20:46:27Z 2009-05-01T05:06:38Z <p>There's a lot to C# &amp; ASP.net. Where should I start? What should I not bother focusing on?</p> <p>Should I learn Winforms then WPF? Ditto for webforms / Silverlight? Should I learn ASP.MVC or classic ASP.NET? If both, which first?</p> <p>In the either/or cases - which will make more sense having known the other first?</p> <p>What major .NET feature(s) should I learn upfront that will open the doors of understanding to what lies ahead?</p> <p>I am deliberately not mentioning fundamentals like value / reference Types, Classes, object-oriented concepts, etc since they should come first, before specifics. Here, I am interested in specifics.</p> <p>[edit - added detail of what my goals are] Good points raised - "what do I want to write"?</p> <p>Basically, an intranet application that monitors a set of documents and implements a workflow as a change control process. The app will also audit the documents and report problems, self-correcting common errors. A lot of the parameters will need to be end-user definable and pluggable. The document format needs to be adaptable to different proprietary formats although they are fundamentally the same. The app will be very modular.</p> <p>I'm leaning towards a web interface because the client specs &amp; admin rights will vary - a browser is really the only thing I can count on.</p> <p>As you can see, it's a bit of everything.</p> http://stackoverflow.com/questions/746507/a-reliable-australia-based-asp-net-web-hosting/746646#746646 3 Answer by CAD bloke for A reliable, Australia-based ASP.NET Web Hosting CAD bloke 2009-04-14T07:23:58Z 2009-04-14T07:23:58Z <p>Your geographical choice for hosting depends on how much of an issue latency is in your app. You could always use mirror servers with a geolocated load balancers whatchyamacallit if you're that picky.</p> <p>Being based in Australia, I'm used to the latency &amp; I suspect most Antipodean users are. As you probably already know, Australian hosting costs more.</p> <p>Good Australian hosts include <a href="http://www.netlogistics.com.au/shared/accelerate/accelerateone.php" rel="nofollow">Net Logistics</a> &amp; <a href="http://xhost.com.au/hosting%5Fplans.php" rel="nofollow">X-host</a>. </p> <p>Have a look at <a href="http://www.webhostingtalk.com.au/" rel="nofollow">http://www.webhostingtalk.com.au/</a> - the Australian version of Web Hosting talk.</p> http://stackoverflow.com/questions/114007/free-supportticket-software/114156#114156 0 Answer by CAD bloke for Free supportticket software CAD bloke 2008-09-22T10:31:03Z 2009-04-05T13:50:43Z <p>What don't you like about <a href="http://stackoverflow.uservoice.com/" rel="nofollow">http://stackoverflow.uservoice.com/</a>? How about <a href="http://getsatisfaction.com/" rel="nofollow">http://getsatisfaction.com/</a> <em>edit</em> See <a href="http://www.37signals.com/svn/posts/1650-get-satisfaction-or-else" rel="nofollow">http://www.37signals.com/svn/posts/1650-get-satisfaction-or-else</a> for details of the way they do business - not pretty. /edit</p> <p>For self-hosted, I'm a <a href="http://www.mantisbt.org/" rel="nofollow">Mantis Bug Tracker</a> fan. The Wikipedia page already mentioned is a good starting point.</p> http://stackoverflow.com/questions/451682/cad-cam-without-c/680088#680088 0 Answer by CAD bloke for CAD/CAM without C++ CAD bloke 2009-03-25T03:07:07Z 2009-03-25T03:07:07Z <p>The Open Design Alliance library is cross-platform. They have recently introduced a beta of the .NET version of their library. See my answer to <a href="http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c/206456#206456">http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c/206456#206456</a> for more details.</p> <p>Having said that I concur with the other answers here - if it ain't broken, don't fix it, both the code and the coders. MSFT still use C++, as does the ODA - their codebase originates in C++ &amp; is wrapped for .NET.</p> http://stackoverflow.com/questions/661346/moving-an-engineering-application-from-standalone-to-internal-to-cad/680077#680077 3 Answer by CAD bloke for Moving an engineering application from standalone to internal to CAD CAD bloke 2009-03-25T03:02:07Z 2009-03-25T03:02:07Z <p>Have a look at my answers to a couple of previous AutoCAD questions </p> <p><a href="http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c/206456#206456">http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c/206456#206456</a></p> <p><a href="http://stackoverflow.com/questions/298622/-net-cad-component-that-can-read-write-dxf-dwg-files/300824#300824">http://stackoverflow.com/questions/298622/-net-cad-component-that-can-read-write-dxf-dwg-files/300824#300824</a></p> <p>If you were looking for the same code base to work both inside and outside of AutoCAD then the RealDWG approach may work for you since the code is the same - RealDWG doesn't need AutoCAD as a host application. The open Design Alliance libraries are for making stand-alone applications. Both have supported C++ for years &amp; can be considered stable - well, as stable as CAD gets.</p> <p>This blog (<a href="http://through-the-interface.typepad.com/" rel="nofollow">http://through-the-interface.typepad.com/</a>) is a good one for RealDWG</p> http://stackoverflow.com/questions/248787/what-is-the-best-forum-software-to-integrate-with-a-wordpress-blog/647599#647599 1 Answer by CAD bloke for What is the best Forum software to Integrate with a Wordpress blog? CAD bloke 2009-03-15T10:17:44Z 2009-03-15T10:17:44Z <p><a href="http://simplepressforum.com/" rel="nofollow">http://simplepressforum.com/</a> has more features than bbPress and runs as a plugin. It uses the site memberlist and you can spec sub groups from there. Lots of options, all in the options menu. The developers seems pretty responsive and active too. They have a support forum. It's themeable, of course - has its own CSS file.</p> <p>Definitely worth checking out.</p> http://stackoverflow.com/questions/539375/whats-the-best-user-forum-software/647588#647588 0 Answer by CAD bloke for What's the best user forum software? CAD bloke 2009-03-15T10:04:24Z 2009-03-15T10:04:24Z <p>If your community site runs on Wordpress you should have a look at <a href="http://simplepressforum.com/" rel="nofollow">http://simplepressforum.com/</a>. It is easier to integrate in to a Wordpress site than bbPress (oh, the irony) and also seems to have more features. It integrates with the main site's membership sign-ons. The developers seem pretty active.</p> http://stackoverflow.com/questions/539375/whats-the-best-user-forum-software/647584#647584 3 Answer by CAD bloke for What's the best user forum software? CAD bloke 2009-03-15T10:02:09Z 2009-03-15T10:02:09Z <p>SMF - <a href="http://www.simplemachines.org/" rel="nofollow">Simple Machines Forum</a> has been around a while. It is stylable (ok, it's a word <em>now</em>), extensible and has quite a big community behind it. It runs on LAMP but is pretty easy to set up on shared hosts etc.</p> http://stackoverflow.com/questions/647390/how-to-stay-connected-to-the-programming-community/647563#647563 2 Answer by CAD bloke for How to stay connected to the programming community? CAD bloke 2009-03-15T09:39:28Z 2009-03-15T09:49:26Z <p>Nothing beats "IRL". Seek out <a href="http://www.google.com.au/search?hl=en&amp;q=user%2Bgroup%2Batlanta" rel="nofollow">local (Atlanta in your case) user groups</a>, code camps, <a href="http://barcamp.org/" rel="nofollow">bar camps</a>, meetups, Tech.Ed, Mix etc.. The last few are more Microsoft focussed - I'm not sure of your background and interests.</p> <p>Twitter is a great way to connect too. A lot of Twitter users have local meetups xTUBs (x Twitter Underground Brigades). For exampleinstance here's the web page for the Sydney Twitter meetup group - <a href="http://sydney.twitterusergroup.com/" rel="nofollow">http://sydney.twitterusergroup.com/</a>. You can search Twitter for local people in the <em>places</em> part of <a href="http://search.twitter.com/advanced" rel="nofollow">http://search.twitter.com/advanced</a>. Add some keywords and you've got yourself a list of people to follow.</p> <p>As an aside, an RSS reader (<a href="http://www.newsgator.com/individuals/feeddemon/default.aspx" rel="nofollow">NewsGator FeedDemon</a> - Windows only - is my fav) is a good way to keep track of blogs you find &amp; like.</p> <p>Perhaps involve yourself in an open-source project that you have an interest in?</p> <p>Aw, go on, don't be shy.</p> http://stackoverflow.com/questions/5562/do-you-prefer-to-code-on-a-laptop-or-a-desktop-or-both 6 Do you prefer to code on a Laptop or a Desktop, or both ? CAD bloke 2008-08-08T01:50:18Z 2009-03-10T05:14:34Z <p>What is your primary development machine - a Desktop or a laptop? Why? Do you use both - if so, do you use source control to keep them synched?</p> <p>This might seem like a dumb question but I'm on the steep part of the learning curve &amp; I'd be interested in your insights.</p> <p>[edit] - Using a laptop assumes hanging an Imax-sized screen off it when it is docked. Using a desktop assumes 2x Imax screens. [edit] - This is faster than Twitter! IDE is VS2008 - laptop is 17 (or 15) inch, 1920x1200</p> http://stackoverflow.com/questions/130575/whats-a-good-free-bug-tracker-for-a-small-shop/242037#242037 0 Answer by CAD bloke for What's a good free bug tracker for a small shop CAD bloke 2008-10-28T02:16:54Z 2009-03-10T02:54:00Z <p>If you have a WordPress site and run BBpress (a forum) you could take a look at the <a href="http://bbpress.org/plugins/topic/support-forum/" rel="nofollow">Support Forum plugin for BBpress</a>. It is very simple for the end-user and you/they may find it less intimidating than a ticketing system</p> <p>Yes, I've looked into the whole support ticket thing a bit in the last year or so, hence a few answers here.</p> <p>Edit: There's also a (potentially better) Wordpress forum package <a href="http://simplepressforum.com/" rel="nofollow">Simple:Press</a> which can also do support tickets via tags on the forum posts. Simple:Press works as a plugin insode Wordpress</p> http://stackoverflow.com/questions/618671/is-there-a-cms-that-you-dont-have-to-code/618684#618684 0 Answer by CAD bloke for Is there a CMS that you don't have to code? CAD bloke 2009-03-06T12:27:30Z 2009-03-06T12:27:30Z <p>Wordpress. There's a million themes and it's all point &amp; click. Wordpress.org for self hosted, wordpress.com for free hosting.</p> <p>Drupal is for web developers, basically. Google something like "drupal wordpress" to see comparisons</p> http://stackoverflow.com/questions/618608/is-it-possible-to-open-a-sln-file-created-using-microsoft-visual-studio-2008-in/618668#618668 0 Answer by CAD bloke for IS it possible to open a *.sln file created using Microsoft Visual Studio 2008 in MS VS 2005? CAD bloke 2009-03-06T12:22:17Z 2009-03-06T12:22:17Z <p>I think the money you save by not upgrading your VS2005 to VS2008 would easily pay for the time and potential errors in the reverse conversion process. Ask yourself - is it worth the risk and mucking around?</p> http://stackoverflow.com/questions/531634/local-sql-express-for-asp-net-sharepoint-development/531689#531689 1 Answer by CAD bloke for Local SQL Express for ASP.NET/Sharepoint Development? CAD bloke 2009-02-10T09:44:04Z 2009-02-10T09:44:04Z <p>I think it really depends on how busy you expect the app to be &amp; any cost restrictions (number of boxes, rack space etc.). If it's a low traffic inter / intranet server I'd be inclined put them on the same box. If the SQL was a small part of a busy web server, separate them. If you encapsualte them well enough then the deployment differences are a matter of configuration, rather than re-coding. ie. Code for both eventualities. </p> <p>SQL Express can only use 1GB of RAM &amp; a 4GB database - it will get only-so busy.</p> http://stackoverflow.com/questions/493887/joomla-drupal-or-dotnetnuke/525572#525572 0 Answer by CAD bloke for Joomla, drupal or dotnetnuke? CAD bloke 2009-02-08T11:37:46Z 2009-02-08T11:37:46Z <p>You are right to be wary of spreading yourself too thin. All sorts of CMS systems (Wordpress, even) will probably be fine for what you want. Base your choice moreso on your future direction than today's immediate need. It's all experience - which one do you want to be better at?</p> http://stackoverflow.com/questions/519976/any-recommendations-for-a-pdf-3d-sdk-with-c-interface/525374#525374 1 Answer by CAD bloke for Any recommendations for a PDF 3D SDK with C++ interface CAD bloke 2009-02-08T07:59:31Z 2009-02-08T07:59:31Z <p>I use PDF XChange a lot for 2D CAD plots to PDF and it works well. I don't know if (I don't think so) it does 3D. I could find no mention of it at first glance on their site.</p> <p>Your other option is a 3D DWF. Also consider that DWG TrueView is a free viewer and printer that handles 3D DWGs natively. You used to be able to automate TrueView through COM but I'm not sure if that is still so. Here is a blog post on some automation of Trueview - <a href="http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-t-1.html" rel="nofollow">http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-t-1.html</a></p> http://stackoverflow.com/questions/510293/how-can-i-get-thumbnails-of-autocaddwg-files-and-show-them-into-aspimage-con/525347#525347 0 Answer by CAD bloke for How can i get thumbnails of autocad(dwg) files and show them into "asp:image" control? CAD bloke 2009-02-08T07:43:00Z 2009-02-08T07:43:00Z <p>Try here for starters - <a href="http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-t-1.html" rel="nofollow">http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-t-1.html</a></p> <p>This is a good AutoCAD programming blog in general. FYI, DWG Trueview is free. I don't know if the COM interface is still accessible but it's worth a try.</p> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/486650#486650 1 Answer by CAD bloke for What's your favorite "programmer ignorance" pet peeve? CAD bloke 2009-01-28T06:23:04Z 2009-01-28T06:23:04Z <p>Cowboys who just want to write code before they have finished understanding and then debugging their business rules &amp; requirements. Once you have finished slashing your business requirements and rules with <a href="http://en.wikipedia.org/wiki/Occam%27s_Razor" rel="nofollow">Occam's' Razor</a> the code, modules, libraries, data structure etc. that you need will be bleedingly obvious.</p> <p>Horse first, then cart.</p> http://stackoverflow.com/questions/166121/net-design-course/319480#319480 1 Answer by CAD bloke for .NET design course? CAD bloke 2008-11-26T01:25:30Z 2008-11-26T01:25:30Z <p>Have a look at the <a href="http://www.codeplex.com/AppArchGuide" rel="nofollow">patterns &amp; practices Application Architecture Guide 2.0 (Beta 2 Release)</a> on Codeplex. The <a href="http://msdn.microsoft.com/en-us/practices/default.aspx" rel="nofollow">patterns &amp; practices division of Microsoft</a> also has guidelines for naming etc.</p> http://stackoverflow.com/questions/829497/agile-methods-specifically-taylored-to-working-solo/829891#829891 Comment by CAD bloke on Agile Methods Specifically taylored to working solo? CAD bloke 2009-11-23T08:43:26Z 2009-11-23T08:43:26Z The PDF and other resources are now at <a href="http://www.pomodorotechnique.com/resources.html" rel="nofollow">pomodorotechnique.com/resources.html</a> http://stackoverflow.com/questions/1641217/tfs-2010-basic-beta-2-versus-subversion-et-al/1641258#1641258 Comment by CAD bloke on TFS 2010 Basic (beta 2) versus Subversion et al CAD bloke 2009-11-08T04:30:02Z 2009-11-08T04:30:02Z We all remember VSS, even those of us (me) who never had to use it. Ya know what, I tried TFS 2010 beta 2 and to be hones, it was easy to install, set up and use. It works quite nicely with VSTS 2010 beta 2 - more smoothly than VisualSVN. I think I'm actually going to go with TFS - and Fogbugz cos TFS's work items are ugly. Who'd have thought? Disclaimer. I know a MSFT Regional Director who is an MVP in TFS &amp; was involved in its development. FYI - this TFS blog is interesting <a href="http://blogs.msdn.com/bharry/" rel="nofollow">blogs.msdn.com/bharry</a> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/316332#316332 Comment by CAD bloke on Confessions of your worst WTF Moment. (What not to do.) CAD bloke 2009-11-06T02:06:26Z 2009-11-06T02:06:26Z Nope. If it was fixed it would tell you to walk across the bridge. http://stackoverflow.com/questions/1641217/tfs-2010-basic-beta-2-versus-subversion-et-al/1641258#1641258 Comment by CAD bloke on TFS 2010 Basic (beta 2) versus Subversion et al CAD bloke 2009-10-29T02:16:03Z 2009-10-29T02:16:03Z Thanks Bob. I have added responses to your questions to my original question. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/814454#814454 Comment by CAD bloke on What's your most controversial programming opinion? CAD bloke 2009-10-18T10:40:47Z 2009-10-18T10:40:47Z @Jeanne: Ditto - my major project is based on what I do for a living. I do a lot of talking to myself. http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c/206456#206456 Comment by CAD bloke on Open source cad drawing (dwg) library in C# CAD bloke 2009-10-13T20:32:45Z 2009-10-13T20:32:45Z brace = brave. The ODA's .NET version is alive &amp; well and in production. http://stackoverflow.com/questions/609697/how-to-convert-autocaddwg-to-pdf/1197073#1197073 Comment by CAD bloke on How to convert AutocadDWG To PDF? CAD bloke 2009-09-24T02:48:49Z 2009-09-24T02:48:49Z The PDF driver in AutoCAD 2010 is much-improved over previous version and is quite usable. It is now my default for DWG - PDF. http://stackoverflow.com/questions/274211/cross-reference-distance-chart-in-sql-server-2008-or-excel/274268#274268 Comment by CAD bloke on Cross-reference Distance chart in SQL Server 2008 or Excel ? CAD bloke 2009-09-24T02:32:00Z 2009-09-24T02:32:00Z BTW Excel 2003 does 65536 rows x 256 columns. 2 bytes x 1 byte. http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/195322#195322 Comment by CAD bloke on What is your favorite "programmer" t-shirt? CAD bloke 2009-05-31T21:05:06Z 2009-05-31T21:05:06Z it depends .... actually, &quot;friendly&quot; never occurred to me. I do, however, tell some clients that WTF means Waiting To Finalize. http://stackoverflow.com/questions/779639/what-are-cad-apps-written-in-and-how-are-they-organized/822244#822244 Comment by CAD bloke on What are CAD apps written in, and how are they organized ? CAD bloke 2009-05-21T02:58:27Z 2009-05-21T02:58:27Z AutoCAD 2010 shippied <i>without</i> VBA (you can download it separately). VSTA is the future for CAD add-ins. They change the binary format every 3 years so you need to re-compile against your target version(s). http://stackoverflow.com/questions/832355/having-trouble-finding-the-right-bug-tracker-software/832370#832370 Comment by CAD bloke on Having Trouble Finding The Right Bug Tracker Software CAD bloke 2009-05-07T02:24:04Z 2009-05-07T02:24:04Z Bring on the SAAS revolution. It sounds like you just want something that just works and works painlessly. I was looking for the same thing. Hosted means zero server maintenance. Just ignore the features you don't need. http://stackoverflow.com/questions/404972/best-practices-for-the-design-web-app-to-cater-for-both-download-and-saas-version/405033#405033 Comment by CAD bloke on Best Practices for the Design Web App to Cater for both Download and SaaS version CAD bloke 2009-05-06T22:03:06Z 2009-05-06T22:03:06Z Upvoted - I thought this was a good question &amp; obviously prompted the edit. The downvote was poor form. http://stackoverflow.com/questions/130575/whats-a-good-free-bug-tracker-for-a-small-shop/130595#130595 Comment by CAD bloke on What's a good free bug tracker for a small shop CAD bloke 2009-05-06T22:00:41Z 2009-05-06T22:00:41Z I have changed my thinking on this. I'm now going for UserVoice as my public facing issue reporting tool and Fogbugz internally for me to track stuff. Fogbugz is free for up to 3 devs. SAAS FTW. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46460#46460 Comment by CAD bloke on What is the single most influential book every programmer should read? CAD bloke 2009-05-02T08:18:04Z 2009-05-02T08:18:04Z Yup. and the sequel &quot;Lila&quot;. This one is more relevant to programming though. http://stackoverflow.com/questions/182714/does-twitter-help-you-become-a-better-developer-or-distract-you Comment by CAD bloke on Does Twitter Help You Become a Better Developer or Distract You? CAD bloke 2009-04-14T08:08:19Z 2009-04-14T08:08:19Z Your options are not necessarily mutually exclusive.