User David Robbins - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:34:51Zhttp://stackoverflow.com/feeds/user/19799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1534364/looking-for-a-good-tool-for-online-help/1815515#18155150Answer by David Robbins for Looking for a good tool for online helpDavid Robbins2009-11-29T13:16:20Z2009-11-29T13:16:20Z<p>Take a look at <a href="http://www.mindtouch.com/Solutions/Collaborative%5FKB" rel="nofollow">MindTouch</a>. It supports video and PDF creation as well as standard CMS activities. The backend is C# and is very well written as it provides an embedded scripting capability for quick customization. It has DB connectors for Oracle, SQL and MySQL. It's pretty impressive.</p>
http://stackoverflow.com/questions/1770266/moving-client-data-from-one-database-to-a-new-one/1770285#17702850Answer by David Robbins for Moving client data from one database to a new one.David Robbins2009-11-20T12:58:42Z2009-11-29T13:10:33Z<p>Not the answer you may be looking for, but you should consider using a GUID as a key. This will ensure that you have some type of unique identifier for your all records and that you can avoid collisions with identity keys / integer based indexes. It would add another degree of traceability should something go wrong when you migrate between databases.</p>
<p>SplendidCRM uses this technique when importing data from other DB systems. </p>
<p><hr></p>
<p>Update:</p>
<p>My assumption was that the operation of transferring data between databases was not that frequent and that you needed database architecture for that task. I would use the GUID as lookup key specifically validation for the transfer of data, but I would NOT use that as a primary key for joins for standard operations like URL's. Although unique across databases, the trade-off is that GUIDs are slow.</p>
<p>In other words, the GUIDS would in addition to your existing primary keys now, and act as a means of validation for you should something go wrong. If you need ClientID in Database A to retain the same value in Database B then an identity column as that identifier will be an issue. You may have to create another identifier that is not "auto-generated". This could something other than the GUID, but my instinct is that integers alone will not be enough. Maybe you can create a columns that is a hash of the identity key, customer name and database name, or more simply, just concatenate those columns into a varchar column.</p>
http://stackoverflow.com/questions/639545/is-there-a-business-proven-cloud-store-keyvalue-database-open-source/1812378#18123780Answer by David Robbins for Is there a business proven cloud store / Key=>Value Database? (Open Source)David Robbins2009-11-28T12:05:53Z2009-11-28T12:05:53Z<p><a href="http://1978th.net/tokyocabinet/" rel="nofollow">Tokyo Cabinet</a> has also received some attention as it supports table schemas, key value pairs and hash tables. It uses Lua as an embedded scripting platform and uses HTTP as it's communication protocol Here is an <a href="http://www.infoq.com/presentations/grigorik-tokyo-cabinet-recipes" rel="nofollow">great demonstration</a>.</p>
http://stackoverflow.com/questions/914530/jquery-chaning-events-code-correction/1810440#18104400Answer by David Robbins for jQuery: Chaning Events- code correctionDavid Robbins2009-11-27T19:56:07Z2009-11-27T19:56:07Z<p><a href="http://www.selectorgadget.com/" rel="nofollow">SelectorGadget</a> works really. It allows you to evolve your selection choice with each mouse click on the page sections. You load via a shortcut like so:</p>
<pre><code>javascript:(function(){var%20s=document.createElement('div');s.innerHTML='Loading...';s.style.color='black';s.style.padding='20px';s.style.position='fixed';s.style.zIndex='9999';s.style.fontSize='3.0em';s.style.border='2px%20solid%20black';s.style.right='40px';s.style.top='40px';s.setAttribute('class','selector_gadget_loading');s.style.background='white';document.body.appendChild(s);s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('src','http://www.selectorgadget.com/unstable/lib/selectorgadget_edge.js?raw=true');document.body.appendChild(s);})();
</code></pre>
<p>The site has a great demo.</p>
http://stackoverflow.com/questions/1747910/integrate-cms-application-with-custom-asp-net-solution/1805108#18051080Answer by David Robbins for Integrate CMS Application with Custom ASP .Net SolutionDavid Robbins2009-11-26T18:32:30Z2009-11-26T18:40:52Z<p><a href="http://www.mindtouch.com" rel="nofollow">MindTouch</a> is an open source Wiki / CMS system with C# core, PHP to serve up content, and a scripting language called DekiScript. The back end code is very solid and you can integrate it with other ASP.net solutions, as you can get at the content via the C# API. </p>
<p>It also has database connectors for SQL, MySQL and Oracle, as well as a very nicely XML based document storage system which again is exposed via the C# API. Currently they are working on a schema-less data store for CouchDB style functionality.</p>
http://stackoverflow.com/questions/1567399/convert-wordpress-com-hosted-blog-to-blogengine-net/1804985#18049850Answer by David Robbins for Convert Wordpress.com Hosted Blog to BlogEngine.NETDavid Robbins2009-11-26T17:58:04Z2009-11-26T17:58:04Z<p>I don't know of any tool but you may be able to parse the content. Sort of a fun experiment ;) </p>
<p>The url for the Archives is: yourblog.wordpress.com/year/month; e.g. yourblog.wordpress.com/2009/11. The content for the page is wrapped in a div with the id="content". Each post is wrapped in a child div that contains a class called "post", and the target href is contained in a child H2 tag. </p>
<p>It looks roughly like this:</p>
<pre><code><div id="content">
<div class="post-597 post hentry category-activeengine category-coaching tag-philosophy">
<h2>
<a title="Permalink for : More than .Net, jQuery, S3 and Corporate-Speak" href="http://activeengine.wordpress.com/2009/11/24/more-than-net-jquery-s3-and-corporate-speak/">More than .Net, jQuery, S3 and Corporate-Speak</a>
<em>November 24, 2009</em>
</h2>
<em class="info"></em>
<div class="snap_preview">
</div>
</div>
<div class="post-562 post hentry category-net category-activeengine category-linux category-mono category-new-techniques category-open-source tag-c tag-mono tag-monodevelop">
</code></pre>
<p>Potentially you could do a get for each monthly archive page and use jQuery to parse out the href to each post. Once you have all the hrefs you could run another process that would pull down each html file. You would also need a process for the images. To keep things easy you could create folder structure that mirrors the archives.</p>
http://stackoverflow.com/questions/1804855/javascript-custom-pop-up-window/1804890#18048901Answer by David Robbins for JavaScript: Custom Pop-Up WindowDavid Robbins2009-11-26T17:27:50Z2009-11-26T17:27:50Z<p>If you are willing to use jQuery then you have some options:</p>
<p>For a dialog box / pop-up scenario, <a href="http://www.ericmmartin.com/projects/simplemodal/" rel="nofollow">simple-modal dialog</a> is quite nice. You can integrate it via div elements on your main page and this way you can avoid having to manage additional windows in javascript.</p>
<p>If you wish to add paging, filtering and search to your large table <a href="http://www.datatables.net" rel="nofollow">DataTables</a> is top notch. It can be applied to a standard html table and is very versatile. It will allow you to hide columns as well, so I would think you could store your identity keys in those columns and use the dialog box easily.</p>
http://stackoverflow.com/questions/1724709/ubuntu-9-10-monodevelop-debug-nunit/1787431#17874310Answer by David Robbins for Ubuntu 9.10 + MonoDevelop + Debug + NUnitDavid Robbins2009-11-24T02:35:04Z2009-11-24T02:35:04Z<p>For simplicity you should go with the openSUSE vmware client. I selected openSUSE as I wanted to just focus on Mono and not take on the additional challenge of installing and configuring the entire environment. I have had any issues thus far.</p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1785377#17853772Answer by David Robbins for Worst UI You've Ever UsedDavid Robbins2009-11-23T19:22:50Z2009-11-23T19:22:50Z<p>SharePoint. Hands down awful for the user community. What were they thinking? You have constantly scroll and click way too much when configuring web parts. And don't even think you'll be able to train users to update content - it's way too complicated, and people who have other CMS systems revolt when they have to click Site Actions, find the web part, click Edit, scroll to right, scroll down, then type a URL - oh wait, I forgot to copy the URL so I have to start over. </p>
http://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739615#17396150Answer by David Robbins for What is a good Javascript debugging tool?David Robbins2009-11-16T01:34:05Z2009-11-16T01:34:05Z<p><a href="http://aptana.org/" rel="nofollow">Aptana</a> is a great dev platform that allows you to debug both FireFox and IE. </p>
http://stackoverflow.com/questions/1739459/can-i-interact-with-net-libraries-through-javascript/1739485#17394850Answer by David Robbins for Can I interact with .NET libraries through Javascript?David Robbins2009-11-16T00:35:20Z2009-11-16T00:35:20Z<p>You can pass data via AJAX calls where you communicate to and from the client via JSON. For client side data set manipulation <a href="http://hugoware.net/Projects/jLinq" rel="nofollow">jLinq</a> is a great library for performing Linq queries on JSON objects. </p>
<p>If you are looking for a good place to start with web services, JSON and ASP.Net webforms Dave Ward's <a href="http://encosia.com/2009/07/21/simplify-calling-asp-net-ajax-services-from-jquery/" rel="nofollow">posts on Encosia</a> are really top notch. </p>
http://stackoverflow.com/questions/169928/where-can-i-find-some-good-information-about-how-the-new-canvas-html-element-work/1735931#17359310Answer by David Robbins for Where can I find some good information about how the new canvas HTML element works?David Robbins2009-11-14T23:07:36Z2009-11-14T23:07:36Z<p><a href="http://ajaxian.com/by/topic/canvas" rel="nofollow">Ajaxian</a> has a great collection of articles / posts regarding new Canvas innovations and developments. This can show you what others are already doing. </p>
http://stackoverflow.com/questions/1414631/best-load-testing-tool-for-asp-net-3-5-iis6-0-with-vs-2008-professional-edition/1414979#14149791Answer by David Robbins for Best Load testing tool for asp.net 3.5 IIS6.0 WITH vs 2008 Professional EditionDavid Robbins2009-09-12T12:17:08Z2009-11-14T13:11:57Z<p>I have not used this but there is <a href="http://www.artoftest.com/products/webaii.aspx" rel="nofollow">WebAII</a>, a free UI test engine for .Net. Telerik supports this testing framework as well.</p>
http://stackoverflow.com/questions/1725399/how-to-prime-html-for-use-with-js-accordion-effect/1725560#17255600Answer by David Robbins for How to prime HTML for use with JS accordion effect?David Robbins2009-11-12T21:30:56Z2009-11-12T21:30:56Z<p>Dave Ward of Encosia has great 10 minute <a href="http://encosia.com/2009/09/21/updated-see-how-i-used-firebug-to-learn-jquery/" rel="nofollow">tutorial on jQuery, Firebug and selectors</a> that builds exactly what you looking for. </p>
http://stackoverflow.com/questions/1687635/pdf-conversion-service/1725526#17255260Answer by David Robbins for PDF conversion serviceDavid Robbins2009-11-12T21:26:01Z2009-11-12T21:26:01Z<p>I believe the commentable features are part of the PDF software, and not the file. Adobe Professional will allow to add comments, while the reader has less capabilities.</p>
http://stackoverflow.com/questions/1725327/how-to-compare-two-distinctly-different-objects-with-similar-properties/1725509#17255090Answer by David Robbins for How to compare two distinctly different objects with similar propertiesDavid Robbins2009-11-12T21:23:21Z2009-11-12T21:23:21Z<p>I haven't had a chance to use AutoMapper yet, but from what you describe you wish to <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2009/01/22/automapper-the-object-object-mapper.aspx" rel="nofollow">check it out</a>. From Jimmy Bogard's post:</p>
<blockquote>
<p>AutoMapper conventions</p>
<p>Since AutoMapper flattens, it will
look for:</p>
<p>Matching property names</p>
<p>Nested property names (Product.Name
maps to ProductName, by assuming a
PascalCase naming convention)</p>
<p>Methods starting with the word “Get”,
so GetTotal() maps to Total</p>
<p>Any existing type map already
configured</p>
<p>Basically, if you removed all the
“dots” and “Gets”, AutoMapper will
match property names. Right now,
AutoMapper does not fail on mismatched
types, but for some other reasons.</p>
</blockquote>
http://stackoverflow.com/questions/1724869/what-is-subsonic/1724974#17249741Answer by David Robbins for what is subsonic?David Robbins2009-11-12T20:01:48Z2009-11-12T20:01:48Z<p>As it's creator Rob Conery says, it's the Swiss Army Knife of ORMS. </p>
<p>Here are some other questions where you can find out about SubSonic:</p>
<p><a href="http://stackoverflow.com/questions/687762/which-orm-is-the-best-when-using-stored-procedures/687899#687899">What ORM is the best when using stored procedures</a></p>
<p><a href="http://stackoverflow.com/questions/206197/best-free-orm-tools-to-use-with-net-2-0-3-5/206284#206284">Best free ORM to use with .Net 3.5</a></p>
<p>If you haven't go to <a href="http://www.subsonicproject.com" rel="nofollow">SubSonic's site</a> and watch some of the tutorials. You find that it is easy to become in under 30 minutes.</p>
http://stackoverflow.com/questions/1704416/can-you-recommend-a-good-resource-for-configuring-db40-on-mono-open-suse0Can you recommend a good resource for configuring db40 on Mono / Open SUSE?David Robbins2009-11-09T22:35:28Z2009-11-09T22:35:28Z
<p>The db40 forums seem to have sparse activity. I am seeking a blog post, article, or your input on how you installed and configured db40 for Mono on the Open SUSE / Ubuntu platform. I am a Linux n00b and anything you can provide would help greatly.</p>
http://stackoverflow.com/questions/1700259/asp-net-rich-ui-what-do-you-use/1700406#17004062Answer by David Robbins for ASP.NET Rich UI - What do you use?David Robbins2009-11-09T11:14:10Z2009-11-09T12:00:42Z<p>For a grid you could use <a href="http://www.datatables.net" rel="nofollow">DataTables</a>. It has multi column filtering and sorting, row based events, paging, and can work with the DOM or accept data via Ajax call.</p>
<p>If you are looking for a good resource for jQuery and the postback cycle you should read Dave Ward's <a href="http://encosia.com/2009/07/21/simplify-calling-asp-net-ajax-services-from-jquery/" rel="nofollow">blog</a>. He covers different techniques regarding PageMethods and web services.</p>
<p>You also be interested in mirco-templates, where you can use a template language such as <a href="http://jtemplates.tpython.com/" rel="nofollow">jTemplates</a> to process client side updates to the DOM. Using this type of technique can reduce your reliance on ViewState and postbacks.</p>
<p>Finally, there is a nice plugin called SimplyModal that will allow you to create modal dialog boxes. Here's a <a href="http://beckelman.net/post/2008/10/28/Modal-Delete-Confirmation-Version-Two-Using-jQuery-SimpleModal-Plugin-Demo.aspx" rel="nofollow">good</a> example.</p>
http://stackoverflow.com/questions/1693673/jquery-how-to-filter-rows-onclick/1693750#16937500Answer by David Robbins for jQuery - How to filter rows onclick?David Robbins2009-11-07T17:17:14Z2009-11-07T17:17:14Z<p><a href="http://www.datatables.net" rel="nofollow">DataTables</a> does exactly what you need:</p>
<ul>
<li>Column or row filtering</li>
<li>Event Handling for on row creation</li>
<li>Filtering for all columns from a single Search textbox</li>
<li>Multicolumn sorting</li>
<li>Editable Rows</li>
</ul>
<p>I've used this on production projects and some cases I've elected to use DataTables over Telerik RadGrad. It's very flexible and great for RIA.</p>
http://stackoverflow.com/questions/1687517/are-there-monodevelop-add-ins-that-assist-with-refactoring1Are there Monodevelop add-ins that assist with refactoring?David Robbins2009-11-06T13:12:41Z2009-11-06T16:42:44Z
<p>What refactoring tools similar to Visual Studio / DevExpress / Resharper are available for the Linux environment? Specifically I'm interested in the global renaming and method generation.</p>
http://stackoverflow.com/questions/683383/ajax-on-mono/1687581#16875810Answer by David Robbins for Ajax on MonoDavid Robbins2009-11-06T13:24:23Z2009-11-06T13:24:23Z<p>I agree with Brian, but want to add that you should read Dave Ward's series on jQuery and ASP.net. He really distills the essence of what you can do with jQuery, PageMethods, and WebForms without MS Ajax. These ideas are directly applicable to the Mono / Linux environment.</p>
<p>Here's a list of essential posts:</p>
<p><a href="http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/" rel="nofollow">Using jQuery to directly call ASP.Net Ajax PageMethods</a></p>
<p><a href="http://encosia.com/2009/09/21/updated-see-how-i-used-firebug-to-learn-jquery/" rel="nofollow">Use FireBug To Learn jQuery</a></p>
<p><a href="http://encosia.com/2009/07/21/simplify-calling-asp-net-ajax-services-from-jquery/" rel="nofollow">Simplify calling ASP.NET Services with jQuery</a></p>
http://stackoverflow.com/questions/1657866/what-alt-net-solutions-have-you-ported-to-mono-linux0What Alt.Net Solutions have you ported to Mono / Linux?David Robbins2009-11-01T18:14:47Z2009-11-02T12:09:17Z
<p>I hope to gain insight on what has already been accomplished, and what pitfalls you experienced along the way.</p>
<p><hr /></p>
<p>UPDATE:</p>
<p>From <a href="http://www.mono-project.com/Software" rel="nofollow">Mono Project</a>, there are numerous applications listed such as Unity 3d, SWFDotNet, VistaDB, and even <a href="http://code.google.com/p/paint-mono/" rel="nofollow">paint-mono(Paint.Net)</a> but there are no OR/M's or IoC listed. </p>
http://stackoverflow.com/questions/1651482/does-subsonic-run-under-mono2Does SubSonic run under Mono?David Robbins2009-10-30T18:17:33Z2009-11-02T09:04:55Z
<p>Has anyone deployed SubSonic on Mono? </p>
http://stackoverflow.com/questions/788933/what-advantages-can-scriptsharp-bring-to-my-tool-kit3What advantages can ScriptSharp bring to my tool kit?David Robbins2009-04-25T13:34:22Z2009-10-28T18:34:03Z
<p>Currently we use jQuery to add RIA goodness to our apps, but recently we have been implementing the Coveo Search engine into our Sharepoint portal and found that ScriptSharp was used in their product. What can ScriptSharp bring to the table?</p>
http://stackoverflow.com/questions/732355/jquery-gridview-control/1636546#16365460Answer by David Robbins for JQuery GridView controlDavid Robbins2009-10-28T10:58:48Z2009-10-28T10:58:48Z<p>I currently use <a href="http://www.datatables.net" rel="nofollow">DataTables</a>. This allows you to create an html table and apply filters for multiple columns, multi-column sorts, paging, etc. You have the option for client side maipulation of a html table or receiving the data from an AJAX source. </p>
<p>It also has an API for dynamically adding rows, displaying columns dynamically, and grouping.</p>
http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie8/1620822#16208220Answer by David Robbins for Is there a better developer toolbar for IE8?David Robbins2009-10-25T12:47:36Z2009-10-25T12:47:36Z<p>Tools may not help in this case as readily as you may wish. Here is <a href="http://www.positioniseverything.net/explorer.html" rel="nofollow">Position Is Everything</a>, a site that addresses some of the hacks required Internet Explorer. I have used <a href="http://www.my-debugbar.com/ietester/index%5Fall.php" rel="nofollow">IETester</a> for IE 6 issues, but not for IE 8. </p>
<p>Good luck. IE issues really suck. If you're dealing with Sharepoint and it's mess of html and css I feel for you dude! If not, be thankful.</p>
http://stackoverflow.com/questions/1091735/is-there-a-hosted-couchdb-service-provider6Is there a hosted CouchDB service provider?David Robbins2009-07-07T11:09:53Z2009-10-15T07:51:03Z
<p>I'd like to learn CouchDB and wondered if there was a host provider that offered CouchDB services. If you have used one please detail your experiences.</p>
<p>Update:</p>
<p>I discovered thta CouchDB is available in Ubuntu on a VM slice. I am interested in anyone's experience with running the VM solution and accessing the data with .Net. Is a hybrid solution feasible with .Net web server and REST calls to CouchDB on Linux? What extra security measures did you have to take. Was cross site scripting a concern?</p>
http://stackoverflow.com/questions/1559887/is-there-a-resharper-like-addin-for-monodevelop1Is there a "Resharper-like" addin for MonoDevelop?David Robbins2009-10-13T12:25:07Z2009-10-13T17:51:10Z
<p>I've googled and not come up with much. Has anyone run across something like Resharper for Mono?</p>
http://stackoverflow.com/questions/1454180/caching-large-datasets/1454212#14542122Answer by David Robbins for Caching Large DatasetsDavid Robbins2009-09-21T12:11:52Z2009-09-21T12:11:52Z<p>Steve Smith won a competition at a Microsoft event with one of his caching solutions. Here is a <a href="http://weblogs.asp.net/ssmith/archive/2003/06/20/9062.aspx" rel="nofollow">post</a> from his blog. Here is the <a href="http://www.dnrtv.com/default.aspx?showNum=85" rel="nofollow">DNR TV</a> episode where he reviews his techniques.</p>
http://stackoverflow.com/questions/1815439/append-to-a-div-using-jquery/1815493#1815493Comment by David Robbins on Append to a div using jqueryDavid Robbins2009-11-29T14:21:48Z2009-11-29T14:21:48Z+1 preventDefault() does a good job at expressing intent.http://stackoverflow.com/questions/488922/automatically-tracking-development-time/489363#489363Comment by David Robbins on Automatically tracking development timeDavid Robbins2009-11-29T12:29:45Z2009-11-29T12:29:45Z+1 That is excellent advice. http://stackoverflow.com/questions/1775532/css-grid-system-for-forms-multi-column/1793832#1793832Comment by David Robbins on CSS Grid System for Forms (Multi-Column)David Robbins2009-11-26T18:49:52Z2009-11-26T18:49:52ZSure it will. Create your forms with <div class="grid_6"> and then subdivide the columns with "grid_2" classes. I've done it in the past and it was quite easy.http://stackoverflow.com/questions/1567399/convert-wordpress-com-hosted-blog-to-blogengine-net/1804985#1804985Comment by David Robbins on Convert Wordpress.com Hosted Blog to BlogEngine.NETDavid Robbins2009-11-26T18:43:17Z2009-11-26T18:43:17Z+1 - didn't think of that. Basically I opened Firebug and started looking at the tags. I like your idea as it eliminates the first screen scraping run.http://stackoverflow.com/questions/1567399/convert-wordpress-com-hosted-blog-to-blogengine-net/1805077#1805077Comment by David Robbins on Convert Wordpress.com Hosted Blog to BlogEngine.NETDavid Robbins2009-11-26T18:26:14Z2009-11-26T18:26:14ZHadn't thought about the XML. That may make it easier to convert to the BlogEngine format.http://stackoverflow.com/questions/1804855/javascript-custom-pop-up-window/1804903#1804903Comment by David Robbins on JavaScript: Custom Pop-Up WindowDavid Robbins2009-11-26T18:01:28Z2009-11-26T18:01:28Z+1 for the approach. I like the simplicity.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/851515#851515Comment by David Robbins on Worst UI You've Ever UsedDavid Robbins2009-11-23T19:36:25Z2009-11-23T19:36:25ZThe philosophy behind the ribbon is that the things that are the most important / or that you use the most are the largest icon. Yet this is violated by HOW SMALL THE HELP ICON IS!!!! I have to it all the time because MS FREAKIN' RUINED EXCEL WITH THIS NEW DUMB INTERFACE!! There are times I can't find the stupid help button!http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/613701#613701Comment by David Robbins on Worst UI You've Ever UsedDavid Robbins2009-11-23T19:31:42Z2009-11-23T19:31:42ZWTF does this do? I feel like Tom Curious - er, I mean Cruise - in one of those Mission Impossible movies when Tom looks at schematic and figures out he can squeeze down a chimney or something.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343696#343696Comment by David Robbins on Worst UI You've Ever UsedDavid Robbins2009-11-23T19:27:37Z2009-11-23T19:27:37ZThat was like road-kill, but online!!http://stackoverflow.com/questions/1735639/subsonic-calling-sprocs-w-o-parameters/1735892#1735892Comment by David Robbins on SubSonic - calling sproc's w/o parameters?David Robbins2009-11-14T22:57:05Z2009-11-14T22:57:05Z+1 - SubSonic is just a great tool!http://stackoverflow.com/questions/1724869/what-is-subsonic/1724894#1724894Comment by David Robbins on what is subsonic?David Robbins2009-11-12T19:55:48Z2009-11-12T19:55:48ZHoly +1's Batman!http://stackoverflow.com/questions/1620355/a-few-questions-about-working-with-db4oComment by David Robbins on A few questions about working with db4oDavid Robbins2009-11-09T21:34:19Z2009-11-09T21:34:19Z+1 This is a good question - I wish I could help you out.http://stackoverflow.com/questions/1687517/are-there-monodevelop-add-ins-that-assist-with-refactoring/1687652#1687652Comment by David Robbins on Are there Monodevelop add-ins that assist with refactoring?David Robbins2009-11-06T14:04:12Z2009-11-06T14:04:12ZThanks - was hoping to find something from somebody smarter than me :)http://stackoverflow.com/questions/166744/best-linux-distribution-for-running-mono/172760#172760Comment by David Robbins on Best Linux distribution for running MonoDavid Robbins2009-11-06T13:14:43Z2009-11-06T13:14:43ZMiguel, I'm a using the latest beta on Open SUSE now and am really impressed.http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1662728#1662728Comment by David Robbins on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?David Robbins2009-11-02T18:07:25Z2009-11-02T18:07:25Z+1 for explanation and the use of the word "mantissa"!