User Rob Allen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:47:58Z http://stackoverflow.com/feeds/user/149 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1567310/report-with-sub-report-not-generating-in-reporting-serivces-2005 0 Report with sub-report not generating in Reporting Serivces 2005 Rob Allen 2009-10-14T16:02:26Z 2009-10-19T19:17:22Z <p>This is my first attempt at employing sub reports and my overall experience with reporting services is minimal (edits to existing reports, creation of some basic reports). </p> <p>I have added a sub report to a an existing report. The sub report returns in about 1 second when tested separately. The query that powers it returns in less than a second in Management Studio. </p> <p>The main report takes about 2 minutes to run without the sub report component. With the sub report however, it does not appear to return at all after more than 10 minutes. </p> <p>Is there something fundamental I am missing here?</p> <p>This is running on SQL Server 2005 and the project is in Visual Studio 2005. </p> http://stackoverflow.com/questions/1520884/how-to-calculate-computer-speed/1520906#1520906 2 Answer by Rob Allen for How to calculate computer speed Rob Allen 2009-10-05T15:55:04Z 2009-10-05T15:55:04Z <p>Rather than running a check at start-up, create an install for your application and run the check and requisite warnings then.</p> <p>I agree maintaining a table of suitable and unsuitable chips would be a pain. I would stick with which ever benchmark algorithm most closely tracks with the type of calculations your program will be performing and set a minimum score that will prevent installation. </p> http://stackoverflow.com/questions/1520510/running-software-built-for-net-3-5-on-a-system-with-only-net-2-0-installed/1520731#1520731 2 Answer by Rob Allen for Running software built for .NET 3.5 on a system with only .NET 2.0 installed Rob Allen 2009-10-05T15:19:50Z 2009-10-05T15:19:50Z <p>Have you considered using ClickOnce deployment? The agent will check for and install any prerequisite items you specify, including .Net. It also makes pushing upgrades of your application fairly painless.</p> http://stackoverflow.com/questions/1138836/are-users-who-include-captcha-blah-blah-blah-in-site-comments-devaluing-captch 3 Are users who include "Captcha: blah blah blah" in site comments devaluing captchas as a whole? Rob Allen 2009-07-16T16:42:31Z 2009-09-11T19:58:30Z <p>In the blog comments for SO and other blogs, I've noticed a trend in some users posting what the captcha was that they had to solve to get their post accepted. </p> <p>Are they doing this in order to aid captcha-breaking bots? </p> <p>If so, is there a way to programmatically (server-side) compare the users' input to the captcha to strip it out of the comment? Is that worth the effort? </p> http://stackoverflow.com/questions/1373414/ajax-post-and-plus-sign-how-to-encode/1373428#1373428 2 Answer by Rob Allen for AJAX POST and Plus Sign ( + ) -- How to Encode? Rob Allen 2009-09-03T13:31:19Z 2009-09-03T15:31:20Z <p>The hexadecimal value you are looking for is <code>%2B</code></p> <p>To get it automatically in PHP run your string through <code>urlencode($stringVal)</code>. And then run it rhough <code>urldecode($stringVal)</code> to get it back.</p> <p><strike>If you want the JavaScript to handle it, use <code>escape( str ) </code></strike></p> <p><strong>Edit</strong></p> <p>After @bobince's comment I did more reading and he is correct. Use <code>encodeURIComponent(str)</code> and <code>decodeURIComponent(str)</code>. Escape will not convert the characters, only escape them with <code>\</code>'s </p> http://stackoverflow.com/questions/1370543/fill-an-array-or-arraylist-from-sqldatareader/1370848#1370848 1 Answer by Rob Allen for Fill an array (or arraylist) from SqlDataReader Rob Allen 2009-09-03T00:25:01Z 2009-09-03T00:45:36Z <p>If you read your SqlDataAdapter into a DataTable:</p> <pre><code>DataTable dt as DataTable; dt.fill(data); </code></pre> <p>Then you can use some of the toys in <code>System.Data.DataSetExtensions</code> as referenced in Joel Muller's answer to this <a href="http://stackoverflow.com/questions/762000/filer-datatable-to-exclude-dbnull-value">question.</a></p> <p>In uses a bit of Linq, so you will net .Net 3.5 or higher.</p> http://stackoverflow.com/questions/1369691/strange-css-margin-problem/1369734#1369734 2 Answer by Rob Allen for Strange CSS margin problem. Rob Allen 2009-09-02T19:47:11Z 2009-09-02T19:54:10Z <p>One thing to take note of in your example code is that you are over-using DIVs. The same code could be written like this:</p> <pre><code>&lt;div class="formRow"&gt; &lt;label class="fieldName"&gt;Email&lt;/label&gt; &lt;input class="fieldInput" .../&gt; &lt;/div&gt; </code></pre> <p>Or, even better: </p> <pre><code>&lt;style type="text/css"&gt; UL, UL LI { margin: 0px; padding: 0px; } UL LI { list-style: none; } .fieldName{ font-size: 12px; margin-left: 10px; margin-right: 10px; width: 100px; } .fieldInput{ width: 200px; } &lt;/style&gt; &lt;ul&gt; &lt;li&gt;&lt;label class="fieldName"&gt;Email&lt;/label&gt; &lt;input class="fieldInput" .../&gt;&lt;/li&gt; ... &lt;/ul&gt; </code></pre> <p>By using DIV tags for both sections you are violating the semantic meaning of the tag, which is "this section of the page is distinct from this other section." What you really are trying to do is just style your Form <code>label</code> differently from your <code>Input</code> and we already have tags to describe those. </p> http://stackoverflow.com/questions/1369596/asp-net-editable-text-box-with-syntax-highlighting/1369638#1369638 0 Answer by Rob Allen for ASP.NET Editable Text Box with Syntax Highlighting Rob Allen 2009-09-02T19:25:48Z 2009-09-02T19:25:48Z <p>You may need to combine tools. For example, SO combines Markdown with <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">Google Prettify</a> which handles the actual syntax highlighting.</p> http://stackoverflow.com/questions/1369551/list-of-tables-without-indexes-in-sql-2008/1369630#1369630 3 Answer by Rob Allen for list of tables without indexes in sql 2008 Rob Allen 2009-09-02T19:23:27Z 2009-09-02T19:23:27Z <p>In addition to @Philip Fourie's suggestion you might want to think about which indexes to create.</p> <p>Once you have been accessing your data, SQL Server 2008 keeps track of places where it thinks indexes will be helpful (it refers to these as "missing indexes." There are a hand full of new Dynamic Managed Views which can show these missing indexes and some info about them.</p> <p>From <a href="http://www.mssqltips.com/tip.asp?tip=1634" rel="nofollow">MSSQlTips</a>: </p> <blockquote> <ul> <li>sys.dm_db_missing_index_details - Returns detailed information about a missing index</li> <li>sys.dm_db_missing_index_group_stats - Returns summary information about missing index groups</li> <li>sys.dm_db_missing_index_groups - Returns information about a specific group of missing indexes</li> <li>sys.dm_db_missing_index_columns(index_handle) - Returns information about the database table columns that are missing for an index. This is a function and requires the index_handle to be passed.</li> </ul> </blockquote> http://stackoverflow.com/questions/1369526/what-is-the-python-keyword-with-used-for/1369553#1369553 5 Answer by Rob Allen for What is the python keyword "with" used for? Rob Allen 2009-09-02T19:05:11Z 2009-09-02T19:05:11Z <p>In python (and C#) the <code>with</code> keyword is used when working with unmanaged resources (like file streams). It creates the resource, performs the code in the block, then it closes the resource. It's similar to the <code>Finally</code> statement in a <code>Try/Catch/Finally</code> block, but without the error handling. </p> <p>From <a href="http://docs.python.org/whatsnew/2.6.html#pep-343-the-with-statement" rel="nofollow">Python Docs</a>: </p> <blockquote> <p>The ‘with‘ statement clarifies code that previously would use try...finally blocks to ensure that clean-up code is executed. In this section, I’ll discuss the statement as it will commonly be used. In the next section, I’ll examine the implementation details and show how to write objects for use with this statement.</p> <p>The ‘with‘ statement is a control-flow structure whose basic structure is:</p> <p>with expression [as variable]: with-block</p> <p>The expression is evaluated, and it should result in an object that supports the context management protocol (that is, has <strong>enter</strong>() and <strong>exit</strong>() methods).</p> </blockquote> http://stackoverflow.com/questions/1368900/unit-testing-is-it-bad-form-to-have-unit-test-calling-other-unit-tests/1368916#1368916 4 Answer by Rob Allen for Unit Testing - Is it bad form to have unit test calling other unit tests Rob Allen 2009-09-02T16:54:36Z 2009-09-02T16:54:36Z <p>I think its a bad idea. You want your unit test to test one thing and one thing only. Instead of creating a call through your other test, mock out a call and pass it in as an argument. </p> http://stackoverflow.com/questions/1368839/what-is-the-earliest-age-to-teach-kid-programming/1368898#1368898 1 Answer by Rob Allen for What is the earliest age to teach kid programming? Rob Allen 2009-09-02T16:51:35Z 2009-09-02T16:51:35Z <p>I think its most likely too early to introduce programming, per se. Just think of all the people who pressured their kids to study the violin only to have the kid hate it (and them) by the time they can appreciate such a skill.</p> <p>It may work better if you start by encouraging him to ask lots of questions about how things work in the world around him. Get him used to trouble shooting and working out complex or abstract ideas on his own. Establish the basics of trial and error hypothesis testing.</p> <p>Then when he is a bit older you can see if he enjoys bringing those skills to programming.</p> http://stackoverflow.com/questions/1359047/very-huge-sql-database-how-should-the-schema-look-like/1359164#1359164 0 Answer by Rob Allen for VERY huge SQL Database: How should the schema look like? Rob Allen 2009-08-31T20:03:24Z 2009-08-31T20:11:58Z <p>Let me preface my response by saying that putting every possible combination in a database feels wrong. I'll get to why in a minute. </p> <p>I'd start with a table called Cards. There would be 1 record for every possible card and it would include fields for Suit, Face value, rank and yes, a CardID as a primary key. Also index the suit, and face value. </p> <p>If you want to table out every possible Hold'em hand, then I would make separate tables for the pocketCards(pocketID, pCardID1, pCardID2), flopCards(flopID, fCardID1, fCardID2, fCardID3) then a table for the TurnAndRiver(turnAndRiverID, turnCardID, riverCardID). Then a Hand table with (handID, pocketID, flopID, turnAndRiverID, handScore). </p> <p>HandScore would be a calculated field run off of a table or scalar value function.</p> <p>By separating out those bits, you avoid a great deal of the duplication, but you will still have to worry about card selection and overlap. </p> <p>Ideally, I would forgo the hand tables and calculate the hand and score in what ever application I was building to consume this data. </p> <p>Putting too much of your logic in the database may make it hard to adapt when the client asks you to model Omaha or five-card draw for example. </p> <p>In reguard to your index question, yes, I would use a primary key as that will allow you to quickly reference a specific hand in your code. </p> <p><strong>Update</strong> </p> <p>In response to the OP's Edit: It sounds like you are using the wrong tool for this task. What is the value of having the data in a Database if you are always going to select the exact same recordset? Examine other options (like a flat XML file, or a static DataSet in your code for example). It will save you the connection time and the overhead of running a server for what is essentially static data. </p> http://stackoverflow.com/questions/363320/bind-an-objectdatasource-to-an-existing-method-in-my-data-access-layer 1 Bind an ObjectDataSource to an existing method in my Data access layer Rob Allen 2008-12-12T16:40:59Z 2009-08-30T00:49:37Z <p>I've seen the designer code, and I have seen code which builds the ObjectDataSource in the code-behind, however both methods communicate directly with the database via either text commands or stored procs. This seems like unnecessary code duplication to me since my data access layer has a method already which returns a datatable with the data I need for this report. </p> <p>How can I programmatically build and link the ODS to my data access layer's method?</p> <p>EDIT: </p> <p>Thanks to everyone who answered. This was very poorly phrased on my part. There was too much that I did not understand when I wrote this question originally. What I should have asked is: </p> <p>How do I programmatically bind a .Net Reporting Services Report (*.rdlc) to a method in my Data Access Layer instead of an ADO.Net DataSet.</p> <p>See my answer below. </p> http://stackoverflow.com/questions/1352597/continue-education-or-put-myself-out-there/1352714#1352714 0 Answer by Rob Allen for Continue education or put myself out there? Rob Allen 2009-08-30T00:33:45Z 2009-08-30T00:33:45Z <p>I think you would be well served by <em>a</em> degree, although not necessarily a CS degree for the reasons mentioned above. The math and logic taught in some CS programs can be very useful when you are working on a seemingly novel problem or when the available libraries are insufficient to the task at hand.</p> <p>That said, get the hell out of the community/Vo-tech school. You sound like a smart guy and I think you'll see a difference in some of the better Comp sci programs. There is a great deal of variation between Universities and even programs within Universities. Seek out the school with the best program you are interested in and can afford. I would suggest a hard-science with plenty of math. Some folks have mentioned Electrical Engineering, which I think would work nicely, but anything which focuses on the scientific method and opens up higher level math will work</p> http://stackoverflow.com/questions/1342611/is-there-a-webservice-api-to-grab-a-screenshot-of-another-website/1342677#1342677 2 Answer by Rob Allen for Is there a webservice/API to grab a screenshot of another website? Rob Allen 2009-08-27T17:47:43Z 2009-08-27T17:47:43Z <p><a href="http://browsershots.org/" rel="nofollow">BrowserShots.Org</a> has links at the bottom of the page for an XML service, a download link and the source code for their capture engine. </p> http://stackoverflow.com/questions/16860/getting-started-with-unit-testing 11 Getting Started with Unit Testing Rob Allen 2008-08-19T20:18:09Z 2009-08-27T17:42:08Z <blockquote> <p>Unit testing is, roughly speaking, testing bits of your code in isolation with test code. The immediate advantages that come to mind are:</p> <ul> <li>Running the tests becomes automate-able and repeatable</li> <li>You can test at a much more granular level than point-and-click testing via a GUI</li> </ul> <p><a href="http://stackoverflow.com/questions/1383/what-is-unit-testing">Rytmis</a></p> </blockquote> <p>My question is, what are the current "best practices" in terms of tools as well as when and where to use unit testing as part of your daily coding?</p> <p>Lets try to be somewhat language agnostic and cover all the bases.</p> http://stackoverflow.com/questions/1331855/what-is-the-best-method-to-output-the-correct-html-from-my-php-loop/1331941#1331941 2 Answer by Rob Allen for What is the best method to output the correct HTML from my PHP loop Rob Allen 2009-08-26T01:41:20Z 2009-08-26T17:02:39Z <p>There are several issues to tackle. First, UL stands for Un-ordered List and is great if all you had was the first column of data there. I can only assume that you will need to fill out more columns of data (across the horizontal axis), so UL is the wrong parent tag. If <em>were</em> the correct tag, you would need to append opening and closing LI (for list item) tags. </p> <p>@Jonathan Sampson's comment is correct. You will see a lot of posts here and elsewhere online saying how evil tables are, and that is true when misused for layout purposes. <strike>Based on what you have shown us, you have tabular data and that <em>should</em> be using a Table tag as a parent.</strike></p> <p><strong>Update</strong></p> <p>It appears I misunderstood the nature of your data. After going back and forth, <em>this</em> is your solution: </p> <pre><code>&lt;style type="text/css"&gt; .column { float: left; display: inline; clear: none; margin: 0 5px; } .column UL LI { list-style: none; } .category { font-weight: bold; } &lt;/style&gt; &lt;div&gt; &lt;!-- this is an outer/wrapper/container --&gt; &lt;?php if($this-&gt;categories !== false): ?&gt; &lt;?php foreach($this-&gt;categories as $category):?&gt; &lt;div class="column"&gt; &lt;ul&gt; &lt;li class="category"&gt;&lt;?=$category['name']?&gt;&lt;/li&gt; &lt;!-- header data... --&gt; &lt;?php if($this-&gt;artistsHelper($category['id']) !== false): ?&gt; &lt;?php foreach($this-&gt;artistsHelper($category['id']) as $artist): ?&gt; &lt;li&gt;&lt;?=$artist['name']?&gt;&lt;/li&gt; &lt;!-- no class info here because its just text --&gt; &lt;?php endforeach; ?&gt; &lt;?php endif; ?&gt; &lt;/ul&gt; &lt;/div&gt; &lt;?php endforeach; ?&gt; &lt;/div&gt; </code></pre> <p></p> <p>There are a few differences in what I posted here and what you started with:</p> <ul> <li>Wrap each column in a floating DIV </li> <li>Wrap each "artist" in a pair of LIs </li> <li>Wrap the whole thing in a container DIV</li> <li>Set the appearance of your header row in the style sheet</li> </ul> http://stackoverflow.com/questions/191903/which-net-timer-to-use 3 Which .Net Timer() to use Rob Allen 2008-10-10T15:33:50Z 2009-08-18T15:26:18Z <p>I have a legacy WinForms Mdi App in VB.Net 2.0 which I am adding functionality to. One of the additions is a warning which needs to be raised when the current time nears a specified value (a deadline). My intention is to check the time once an hour until there is less than an hour until the deadline, then display warnings at specified intervals until the time's up.</p> <p>The user needs to be able to continue to use the app up to and even after the deadline, but they need to periodically be made aware of the deadline's proximity. </p> <p>The app does not use System.Threading yet and my knowledge of it is limited at this time. I do know that there are 3 different Timer() methods available: </p> <ul> <li>System.Threading.Timer(),</li> <li>Windows.Forms.Timer() and </li> <li>System.Timers.Timer()</li> </ul> <p>My question is, which is the best way to go with this? I attempted to use the threaded timer, but since WinForms are not thread safe I got a run time error trying to access another class. Is it worth making the class/form thread safe? Am I completely off track?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1260281/best-way-to-use-a-scalar-udf-that-needs-to-appear-in-the-select-and-where-clauses 0 Best way to use a Scalar UDF that needs to appear in the Select and Where clauses Rob Allen 2009-08-11T13:17:00Z 2009-08-11T13:55:48Z <p>I have an expensive scalar UDF that I need to include in a select statement and use that value to narrow the results in the where clause. The UDF takes parameters from the current row so I can't just store it in a var and select from that.</p> <p>Running the UDF twice per row just feels wrong:</p> <pre><code>Select someField, someOtherField, dbo.MyExpensiveScalarUDF(someField, someOtherField) from someTable where dbo.MyExpensiveScalarUDF(someField, someOtherField) in (aHandfulOfValues) </code></pre> <p>How do I clean this up so that the function only runs once per row? </p> http://stackoverflow.com/questions/1255090/i-need-a-guidance-for-designing-a-gaming-web-site/1255226#1255226 3 Answer by Rob Allen for I need a guidance for designing a gaming web site. Rob Allen 2009-08-10T14:28:53Z 2009-08-10T14:28:53Z <p>To be honest, I can't think of a way in which you can map your current skills to those required to build a good web site. If you want your product to succeed online, you will need a good web site, and, in my opinion, a single book or two will not bring you up to speed enough to accomplish your goal. </p> <p>That said, if your needs are simple (just a few pages of text and images without any Flash or highly interactive sections) than a professional designer/developer can do the work for a reasonable fee (likely under $1,000 USD, almost definitely under $5,000 USD). </p> <p>I would suggest you continue reading online about the development process in order to build a vocabulary and help prepare you for the questions and common issues which can arise in a web project. That will keep you from spending money in the wrong places (like search engine optimization) and prevent you from getting taken for a ride by an unscrupulous developer. </p> <p>If you blanch at the figure I've posted above please consider what it is worth to you to have the site built and designed well. Learning web design and good development practices are not weekend projects to be taken lightly and mistakes can be costly. Especially if you need sell your game through this site which opens up a whole host of issues including privacy, credit card processing and other concerns.</p> <p>In short - hire a good developer/designer. It'll be worth it in the end. If you still want to learn to build web sites, go ahead. Start <a href="http://headfirstlabs.com/books/hfwd/" rel="nofollow">here</a> and maybe build a blog or other trivial site first before attempting to build your business.</p> http://stackoverflow.com/questions/799119/using-ssis-to-build-a-database-from-a-vs2005-2008-database-project 0 Using SSIS to build a database from a VS2005/2008 database project Rob Allen 2009-04-28T17:52:12Z 2009-08-10T00:54:35Z <p>How do I allow an SSIS package to consume a Visual Studio 2005 or 2008 Database project which houses the creation scripts for the tables and other objects (note: this is not Visual Studio Database Edition - just Pro with Business Intelligence)? </p> <p>The idea is to use this to recreate my test instance by building the schema from source safe and the data from prod.</p> <p>I have access to both VS2005 and 2008 Pro and this is hitting Sql Server 2005 for both Prod and Test.</p> http://stackoverflow.com/questions/1213791/in-asp-net-3-5-what-is-the-namespace-for-the-reorderlist-control 1 In ASP.NET 3.5, what is the namespace for the ReorderList control? Rob Allen 2009-07-31T17:19:17Z 2009-08-01T02:31:43Z <p>I am trying to extend the <code>Reorderlist</code> contorl in ASP.Net 3.5, however I cannot find which namespace I need to import in order to inherit form the original control (System.Web.UI.WebControls does not appear to be it). </p> <p>In ASP 2, I know it came as part of the AjaxToolKit, but I am specifically looking for the version rolled into 3.5.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1201395/asp-net-range-validator-moving-to-next-page/1201432#1201432 0 Answer by Rob Allen for ASP.net range validator moving to next page Rob Allen 2009-07-29T16:21:58Z 2009-07-29T16:21:58Z <ul> <li><p>Make sure your submit button is in the same <code>ValidationGroup</code> as your range validator. This is particularly true if you have more than one <code>ValidationGroup</code> defined. </p></li> <li><p>Make sure the property <code>CausesValidation</code> is not set to false on the button. The default value is <code>True</code> so if the property is not declared in your ASPX or code behind, the button should fire your validation sequence.</p></li> <li><p>If you are not using the normal page flow, (i.e. your button has the property <code>UseSubmitBehvior</code> set to <code>False</code>, or in some cases, when using asych AJAX callbacks) then you will want to wrap your page changing code in an <code>If</code> block which checks for <code>Page.IsValid</code> before firing.</p></li> <li><p>Double check that the <code>ControlToValidate</code> is set to the correct control and that it does not have a default value which passes the validation.</p></li> </ul> http://stackoverflow.com/questions/1197576/how-can-i-overide-the-css-style-in-a-table/1197611#1197611 0 Answer by Rob Allen for How Can I overide the CSS style IN a table Rob Allen 2009-07-29T01:14:12Z 2009-07-29T01:14:12Z <p>Since your <code>width</code> is set inline with the <code>style</code> attribute you won't be able to override it. <a href="http://stackoverflow.com/questions/189621/when-does-csss-important-declaration-not-work">Sometimes not even !Important will override it.</a> If you can move the sizing information to a class, then you can reset the width to 100% in your print styles sheet.</p> <p>If you do not want to add the size info to the class <code>opbouw</code>, then you can create a second class, for example, <code>narrowTable</code> and apply both to the table like this: </p> <pre><code>&lt;table class="opbouw narrowTable" ...&gt; </code></pre> <p>In your print stylesheet you can reset the size properties: </p> <pre><code>&lt;style type="text/css"&gt; @media print { TABLE, .narrowTable { width: 100%; margin: 0; padding: 0; } } @media screen { .opbouw { } .narrowTable { width: 725px; height: 150px; border: none; } /* all your normal screen styles */ } &lt;/style&gt; </code></pre> <p>For more on CSS Selector Specificty (who wins when multiple styles are pointed at the same element), <a href="http://www.stuffandnonsense.co.uk/archives/css%5Fspecificity%5Fwars.html" rel="nofollow">see this here</a>, my most favorite CSS article on the web.</p> http://stackoverflow.com/questions/1159485/programmatically-set-print-page-orientation-to-landscape/1159555#1159555 2 Answer by Rob Allen for Programmatically set print page orientation to landscape Rob Allen 2009-07-21T14:28:14Z 2009-07-21T14:28:14Z <p>The short answer is "No." It is a deliberate limitation of browsers that the page itself cannot override the user's print settings. This is to prevent abuse I would imagine and causes all sorts of headaches. </p> <p>One possible work around would be to output your page as a PDF and present that. You <em>can</em> control the print settings for a PDF page. </p> http://stackoverflow.com/questions/1159055/use-temp-variable-or-inline-in-this-example/1159099#1159099 0 Answer by Rob Allen for Use temp variable or inline in this example? Rob Allen 2009-07-21T13:15:36Z 2009-07-21T13:15:36Z <p>I would originally write it and debug using method 1, then refactor to method 2 once I have it working well with my sample data.</p> http://stackoverflow.com/questions/1159036/sp-get-5-random-records-plus-1/1159094#1159094 0 Answer by Rob Allen for SP: Get 5 random records plus 1 Rob Allen 2009-07-21T13:13:28Z 2009-07-21T13:13:28Z <p>I would suggest pulling down a list of IDs to your .Net page and use your background code to randomly select N number of IDs and pass that as a parameter to your query. You can exclude the user's favorite by using <code>where id != BL_MEMBERS.members_Favourite</code> in the query which retrieves the existing IDs,. </p> <p>This allows you to increase/decrease the number of randomly selected items fairly easily and moves the random generation and checks for unique items to .Net where it is accomplished much more easily. </p> http://stackoverflow.com/questions/1146433/visual-sourcesafe-download/1146456#1146456 1 Answer by Rob Allen for Visual SourceSafe Download? Rob Allen 2009-07-18T01:50:22Z 2009-07-18T01:50:22Z <p>VSS is not worth your time. Typically, it is obtained via MSDN or other such Volume Licensing program through Microsoft. A few less reputable sites appear to sell it as well if you Google for it. Most free alternatives are more reliable, feature complete and well, safe for your code. Look around on SO there are many threads discussing Mercurial, Subversion, Git (not for the faint of heart) and others. </p> http://stackoverflow.com/questions/1135199/how-do-i-sync-my-development-with-the-users/1135228#1135228 1 Answer by Rob Allen for How do I sync my development with the users? Rob Allen 2009-07-16T03:13:36Z 2009-07-16T03:13:36Z <p>It comes down to CushyCMS's decision to edit files directly and not put the user-provided content in a database like WordPress, DotNetDuke, Drupal, etc. So the real answer is you can't get there from here and should look into migrating to a database backed CMS. Thats not what you want to hear though. </p> <p>Version control will get you part of the way to concurrency but there is always the possibility of a user updating a page between your pull down and publishing the revised copy since your users wouldn't be checking into the version control system directly. That would require them to learn the version control system and negate the ease that CushyCMS (or any CMS really) provides. You'll want to try and find a system that allows your live site to be the Master to which you compare and check-out files from. I do not know of any mainstream systems that currently work that way.</p> http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argument Comment by Rob Allen on How do I plant a seed rather than try to win an argument? Rob Allen 2009-11-04T20:25:17Z 2009-11-04T20:25:17Z @leeand00 - I own that site and do care, and its not the place for your question. I think you will fare better at <a href="http://www.stackexchangesites.com/dearvesta-com/" rel="nofollow">stackexchangesites.com/dearvesta-com</a> http://stackoverflow.com/questions/1520510/running-software-built-for-net-3-5-on-a-system-with-only-net-2-0-installed/1520731#1520731 Comment by Rob Allen on Running software built for .NET 3.5 on a system with only .NET 2.0 installed Rob Allen 2009-10-08T13:38:41Z 2009-10-08T13:38:41Z @emddudley - thats strange. I thought the whole point was that it would set up <i>any</i> prereqs on click. http://stackoverflow.com/questions/1520510/running-software-built-for-net-3-5-on-a-system-with-only-net-2-0-installed/1520731#1520731 Comment by Rob Allen on Running software built for .NET 3.5 on a system with only .NET 2.0 installed Rob Allen 2009-10-05T15:47:42Z 2009-10-05T15:47:42Z @emddudley, You can include the install files on an Install CD. See here for how: <a href="http://msdn.microsoft.com/en-us/library/ms172610.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1520510/running-software-built-for-net-3-5-on-a-system-with-only-net-2-0-installed/1520731#1520731 Comment by Rob Allen on Running software built for .NET 3.5 on a system with only .NET 2.0 installed Rob Allen 2009-10-05T15:31:34Z 2009-10-05T15:31:34Z If they lack the necessary rights to install, then any install method will fail. http://stackoverflow.com/questions/1492322/moving-from-windows-api-to-mac-os/1492393#1492393 Comment by Rob Allen on Moving from Windows API to Mac OS Rob Allen 2009-09-29T13:20:01Z 2009-09-29T13:20:01Z they're all pretty http://stackoverflow.com/questions/1492405/dropdown-list-with-checkboxes/1492414#1492414 Comment by Rob Allen on DropDown list with checkboxes Rob Allen 2009-09-29T13:07:10Z 2009-09-29T13:07:10Z +1 for refactoring the gui. http://stackoverflow.com/questions/1410788/what-is-required-for-a-career-in-web-development/1410836#1410836 Comment by Rob Allen on What is required for a career in web development? Rob Allen 2009-09-11T13:33:56Z 2009-09-11T13:33:56Z I went from ASP classic to PHP to .Net. Mapping your skills to WebForms requires some ridiculous mental gymnastics. Maybe jumping into MVC will alleviate that. http://stackoverflow.com/questions/1410788/what-is-required-for-a-career-in-web-development/1410810#1410810 Comment by Rob Allen on What is required for a career in web development? Rob Allen 2009-09-11T13:31:31Z 2009-09-11T13:31:31Z +1 for language independence. Yes, every language has its own quirks but, for the most part, the concepts of OO programming are universal to OO languages. Same goes for functional programming. Learning multiple languages can also reinforce those concepts. http://stackoverflow.com/questions/1388756/wordpress-alternatives Comment by Rob Allen on Wordpress Alternatives Rob Allen 2009-09-07T11:09:59Z 2009-09-07T11:09:59Z The way I read your question, it seems like you are asking for suggestions on which blogging software to use. Thats a better fit for SuperUser.com than StackOverflow. The question will likely be automatically moved there before long. http://stackoverflow.com/questions/1388792/i-want-to-create-a-mobile-content-for-mobile-users-any-help Comment by Rob Allen on I want to create a mobile content for mobile users, any help? Rob Allen 2009-09-07T11:04:18Z 2009-09-07T11:04:18Z you are going to need more information in your question before someone can give you a worthwhile answer. For example, which phone platform are you intending to work off of? Are you planning to have an application on the phone, or a web site that the phone has to access? The more specific you can be, the better the answers will be. http://stackoverflow.com/questions/1388764/i-want-to-use-a-song-as-my-game-background-music-is-it-agaist-the-law/1388774#1388774 Comment by Rob Allen on i want to use a song as my game background music, is it agaist the law? Rob Allen 2009-09-07T11:02:04Z 2009-09-07T11:02:04Z since it is an iPhone there will more likely than not be music available. This is a great work-around suggestion, although I do not know if the API allows for this. http://stackoverflow.com/questions/1382082/wordpress-categories-page Comment by Rob Allen on Wordpress categories page Rob Allen 2009-09-05T00:44:18Z 2009-09-05T00:44:18Z @codedude - this question will be auto-migrated to SuperUser.com. You're more likely to get a decent answer there. http://stackoverflow.com/questions/1369526/what-is-the-python-keyword-with-used-for/1369553#1369553 Comment by Rob Allen on What is the python keyword "with" used for? Rob Allen 2009-09-03T14:10:09Z 2009-09-03T14:10:09Z In Python it looks like the custom object would have to implement (or inherit from something which implements) the <code>&#95;&#95;enter&#95;&#95;</code> and <code>&#95;&#95;exit&#95;&#95;</code> methods. With IronPython (python on .Net) you can implement from IDisposable and that will cover it. Not sure what is the best way in pure Python or other frameworks. http://stackoverflow.com/questions/1372754/net-simple-app-update-mechanism/1372799#1372799 Comment by Rob Allen on .NET simple app update mechanism Rob Allen 2009-09-03T11:43:20Z 2009-09-03T11:43:20Z I was a bit cautious around ClickOnce but I have to say it works as advertised and is really straight forward to set up. http://stackoverflow.com/questions/1372864/mysql-in-clause-and-the-returned-record-set-order/1372880#1372880 Comment by Rob Allen on MySQL 'IN' clause and the returned record set order Rob Allen 2009-09-03T11:40:31Z 2009-09-03T11:40:31Z while I like the cleanliness of the solution Paul Dixon offered. This might be easier to understand and may even be faster.