User bcwood - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:03:03Z http://stackoverflow.com/feeds/user/423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2588/appropriate-pagefile-size-for-sql-server 0 Appropriate pagefile size for SQL Server bcwood 2008-08-05T17:07:16Z 2009-11-22T22:11:18Z <p>Does any know a good rule of thumb for the appropriate pagefile size for a Windows 2003 server running SQL Server?</p> http://stackoverflow.com/questions/1672849/database-design-question-bit-column-for-deletions/1688605#1688605 0 Answer by bcwood for Database design question. BIT column for deletions bcwood 2009-11-06T16:15:19Z 2009-11-06T16:15:19Z <p>I've used soft deletes before on a number of applications I've worked on, and overall it's worked out quite well. Yes, there is the issue of always having to remember to add <code>AND IsActive = 1</code> to all of your SELECT queries, but really that's not so bad. You can create views if you don't want to have to remember to always do that.</p> <p>The reason we've done this is because we had very specific business needs to be able to report on records that have been deleted. The reporting needs varied widely - sometimes they'd need to see just the active records, or just the inactive records, or sometimes a mix of both - so pushing all the deleted records into an audit table wasn't a very good option.</p> <p>So, depending on your particular business needs, I think this approach is certainly a viable option.</p> http://stackoverflow.com/questions/4219/experience-with-svn-vs-team-foundation-server 18 Experience with SVN vs. Team Foundation Server? bcwood 2008-08-07T00:43:33Z 2009-11-05T01:52:16Z <p>A few months back my team switched our source control over to <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> from <a href="http://msdn.microsoft.com/en-us/vs2005/aa718670.aspx" rel="nofollow">Visual SourceSafe</a>, and we haven't been happier. Recently I've been looking at <a href="http://msdn.microsoft.com/en-us/tfs2008/default.aspx" rel="nofollow">Team Foundation Server</a>, and at least on the surface, it seems very impressive. There is some great integration with Visual Studio, and lots of great tools for DBA's, testers, project managers, etc.</p> <p>The most obvious difference between these two products is price. It's hard to beat Subversion (free). Team Foundation Server is quite expensive, so the extra features would really have to kick Subversion in the pants.</p> <p>My question is: does anyone have practical experience with both? How do they compare, and is Team Foundation Server actually worth all the money?</p> http://stackoverflow.com/questions/1644268/subversion-ignore-pattern-not-working-too-well/1644291#1644291 2 Answer by bcwood for Subversion Ignore Pattern not working too well bcwood 2009-10-29T14:53:53Z 2009-10-29T14:53:53Z <p>Try using <code>*ReSharper*</code> in your ignore settings for ignoring all ReSharper files. Also, for ignoring the bin and obj folders, I always use <code>[Bb]in</code> and <code>[Oo]bj</code>.</p> http://stackoverflow.com/questions/2588/appropriate-pagefile-size-for-sql-server/1403462#1403462 0 Answer by bcwood for Appropriate pagefile size for SQL Server bcwood 2009-09-10T05:05:52Z 2009-09-10T05:05:52Z <p>We were recently having some performance issues with one of our SQL Server that we weren't able to completely narrow down, and actually used one of our Microsoft support tickets to have them help troubleshoot. The optimal pagefile size to use with SQL Server came up, and Microsoft's recommendation is that it be <strong>1 1/2 times the amount of RAM</strong>.</p> http://stackoverflow.com/questions/1379879/iphone-for-intranet/1379898#1379898 2 Answer by bcwood for iPhone for Intranet bcwood 2009-09-04T15:17:02Z 2009-09-04T15:17:02Z <p>We've talked about it some at my office, but that's as far as it's gone. The Enterprise developer license allows you to control the distribution of your app within your organization, not Apple. The AppStore isn't involved at all.</p> http://stackoverflow.com/questions/1347452/cannot-get-css-elements-centered/1347509#1347509 0 Answer by bcwood for Cannot get CSS Elements centered bcwood 2009-08-28T14:51:52Z 2009-08-28T14:51:52Z <p>The primary issue is the absolute positioning of your <code>#topHeader</code> element. Because you have it absolutely positioned with <code>top: 0px; left: 0px;</code>, that's exactly where it's going to be positioned - at the top left of the page.</p> <p>Start off by removing the absolute positioning from the <code>#topHeader</code> element.</p> http://stackoverflow.com/questions/1347461/saving-images-files-or-blobs/1347469#1347469 8 Answer by bcwood for Saving images: files or blobs? bcwood 2009-08-28T14:45:20Z 2009-08-28T14:45:20Z <p>I usually go with storing them as files, and store the path in the database. To me, it's a much easier and more natural approach than pushing them into the database as blobs.</p> <p>One argument for storing them in the database: much easier to do full backups, but that depends on your needs. If you need to be able to easily take full snapshots of your database (including the images), then storing them as blobs in the database is probably the way to go. Otherwise you have to pair your database backup with a file backup, and somehow try to associate the two, so that if you have to do a restore, you know which pair to restore.</p> http://stackoverflow.com/questions/1332092/how-to-make-the-keyboard-disappear-while-using-a-uitextview-in-iphone/1332105#1332105 1 Answer by bcwood for How to Make the KeyBoard Disappear while using a UITextView in iPhone bcwood 2009-08-26T02:46:55Z 2009-08-26T02:46:55Z <p>It's not very intuitive, but all you have to do is implement the <code>doneButtonOnKeyboardPressed</code> event in your view controller. You don't actually have to do anything inside of the event handler, just handling it will cause the keyboard to disappear after the user taps "Done". </p> <p>An empty handler will look something like this:</p> <pre><code>- (IBAction) doneButtonOnKeyboardPressed:(id)sender { } </code></pre> http://stackoverflow.com/questions/1316258/how-to-notify-webserver-when-user-closes-the-browser-in-asp-net/1316264#1316264 1 Answer by bcwood for how to notify webserver when user closes the browser (in asp.net) ? bcwood 2009-08-22T15:54:41Z 2009-08-22T15:54:41Z <p>You can <a href="http://www.webdeveloper.com/forum/showthread.php?t=93810" rel="nofollow">use Javascript to detect when the browser has been closed</a>, and then kick-off an AJAX request back to the server notifying that the user left.</p> http://stackoverflow.com/questions/1280578/version-control-with-private-branches/1280583#1280583 2 Answer by bcwood for version control with private branches? bcwood 2009-08-14T22:57:21Z 2009-08-14T22:57:21Z <p><a href="http://en.wikipedia.org/wiki/Git%5F%28software%29" rel="nofollow">Git</a> does a great job of handling private branches natively. Each developer gets their own branch that they can do with as the please, then when they are ready to share their changes with the other developers, they just merge their changes back into the main branch. </p> <p>It's certainly not perfect for everyone or for every project, but in many cases this approach has some great benefits.</p> http://stackoverflow.com/questions/333163/how-to-bind-a-gridview-to-a-list-of-multiple-types/1272759#1272759 0 Answer by bcwood for How to bind a GridView to a list of multiple types? bcwood 2009-08-13T15:36:44Z 2009-08-13T15:36:44Z <p>It's a little bit of a pain to have to do it this way, but it is possible to bind a list of multiple types to a GridView - you just have to implement a <code>TypeDescriptionProvider</code> for your base type.</p> <p>More details in this article: <a href="http://ayende.com/Blog/archive/2006/07/25/PolymorphicDatabindingSolutions.aspx" rel="nofollow">Polymorphic Databinding Solutions</a></p> http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261857#1261857 8 Answer by bcwood for Subversion - should anyone be developing off the trunk? bcwood 2009-08-11T17:31:34Z 2009-08-11T17:31:34Z <p>When using Subversion, it's common practice for everyone to work out of the trunk. If a particular developer is working on a large or "experimental" feature, it can be wise to create a separate branch for that work, which can be merged back into the trunk later.</p> <p>Although, the method you are describing, with each developer having their own branch, is closer to <a href="http://en.wikipedia.org/wiki/Git%5F%28software%29" rel="nofollow">Git</a> than Subversion. If this is the way that you prefer to work, I would highly recommend using Git instead. </p> <p>With Git, it's not necessary to use some sort of continuous integration server to watch the separate branches. Instead, each developer has their own branch, which they can just merge back into the main branch whenever they want.</p> http://stackoverflow.com/questions/1172460/how-can-i-insert-a-post-into-wordpress-and-associate-it-with-a-category/1172674#1172674 0 Answer by bcwood for How can I insert a post into wordpress and associate it with a category? bcwood 2009-07-23T15:41:07Z 2009-07-23T15:41:07Z <p>Categories are stored in the <code>wp_terms</code> tables, with a cross-reference between <code>wp_posts</code> and <code>wp_terms</code> stored in the <code>wp_term_relationships table</code>.</p> <p>So, you would first need to insert your post into the <code>wp_posts</code> table, and then for each of the existing categories that you want to associate it with, insert a record into the <code>wp_term_relationships</code> table.</p> <p>More info here: <a href="http://codex.wordpress.org/Database%5FDescription" rel="nofollow">WordPress Database Description</a></p> http://stackoverflow.com/questions/1166008/c-check-datatype-of-a-value-via-if-condtion/1166062#1166062 0 Answer by bcwood for C# - Check datatype of a value via if condtion bcwood 2009-07-22T15:20:30Z 2009-07-22T15:20:30Z <p>To handle the case where value is null:</p> <pre><code>if (typeof(value) == typeof(string)) { ... } </code></pre> http://stackoverflow.com/questions/1110269/useful-values-to-add-to-error-messages-net/1110281#1110281 1 Answer by bcwood for Useful values to add to error messages .NET bcwood 2009-07-10T15:36:02Z 2009-07-10T15:36:02Z <p>If you use something like <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4net</a>, you can get thread information, which has proved to be useful on more than one occasion for tracking down an elusive bug.</p> http://stackoverflow.com/questions/1106083/big-o-question/1106109#1106109 4 Answer by bcwood for Big O question bcwood 2009-07-09T19:54:00Z 2009-07-09T19:54:00Z <p>For each of your m objects, if the performance of DoSomething() is O(log n), then the total performance across all of your m objects would be O(m log n).</p> http://stackoverflow.com/questions/200850/are-there-any-open-source-iphone-applications-around/1099078#1099078 3 Answer by bcwood for Are there any Open-source iPhone applications around? bcwood 2009-07-08T16:14:40Z 2009-07-08T16:14:40Z <p>Freshbooks <a href="http://www.freshbooks.com/blog/2009/01/05/were-open-sourcing-our-iphone-time-tracking-app-for-macworld/" rel="nofollow">open sourced their iPhone time tracking app</a> a while back.</p> http://stackoverflow.com/questions/1020941/how-to-disable-autopostback-for-a-html-button/1020960#1020960 3 Answer by bcwood for How to disable autopostback for a html button? bcwood 2009-06-20T04:43:27Z 2009-06-20T04:43:27Z <p>I assume you're doing something like this in Javascript to open the popup:</p> <pre><code>&lt;input type="submit" onclick="window.open('...');" ... /&gt; </code></pre> <p>All you need to do is add "return false;" to the end of your Javascript call to prevent the postback from occurring, leaving you with something like:</p> <pre><code>&lt;input type="submit" onclick="window.open('...'); return false;" ... /&gt; </code></pre> http://stackoverflow.com/questions/1009836/ssrs-2005-pdf-export-issue/1009842#1009842 0 Answer by bcwood for SSRS 2005 PDF Export Issue bcwood 2009-06-17T22:32:42Z 2009-06-17T22:32:42Z <p>When in layout mode, what is the width of your report? If your page size is 8.5" with .5" margins all the way around, the maximum width of your report is 7.5".</p> <p>I've run into the same type of issue before, and it turned out that the width of my report was just a smidge over 7.5".</p> http://stackoverflow.com/questions/996863/in-sql-what-is-the-letter-after-a-table-name-in-a-select-statement/996876#996876 1 Answer by bcwood for In SQL, what is the letter after a table name in a select statement? bcwood 2009-06-15T15:51:37Z 2009-06-15T16:00:02Z <p>a is what is called a table alias. In the part of the query that says:</p> <pre><code>FROM ADMIN a </code></pre> <p>By placing "a" after the table name, you have created an alias that can now be used in place of the table name. Without the alias, you would need to use the table's full name in order to fully-qualify the column name(s) that you are referring to in the query.</p> <p>Without the table alias, your query would look like this:</p> <pre><code>SELECT ADMIN.NAME, ADMIN.NUMBER, ADMIN.STRING, ADMIN.RDB$DB_KEY FROM ADMIN </code></pre> <p>Although since you are only selecting columns from a single table, the table name (or alias) actually isn't needed at all in this example.</p> http://stackoverflow.com/questions/919674/programming-job-names/921472#921472 2 Answer by bcwood for Programming job names bcwood 2009-05-28T15:26:30Z 2009-05-28T15:26:30Z <p>During my career, I've had 3 different titles, in order:</p> <ul> <li>Programmer/Analyst </li> <li>Analyst/Programmer</li> <li>Systems Programmer</li> </ul> <p>While the scope of my responsibilities has certainly grown over time, the heart of the jobs have been largely the same. It just seems that each organization has its' own slightly different take on how to put a title on what we do.</p> http://stackoverflow.com/questions/921419/how-often-do-asp-net-developers-not-use-visual-studio-design-mode/921452#921452 4 Answer by bcwood for How often do ASP.NET developers NOT use Visual Studio design mode? bcwood 2009-05-28T15:21:57Z 2009-05-28T15:21:57Z <p>I almost never use design mode. It typically creates ugly HTML, and call me anal, but I really like to have clean HTML. If that means hand-coding it, so be it.</p> http://stackoverflow.com/questions/799469/do-consulting-companies-focus-on-code-quality/799756#799756 2 Answer by bcwood for Do consulting companies focus on code quality? bcwood 2009-04-28T20:47:15Z 2009-04-28T20:47:15Z <p>Having previously worked as a software consultant for several years, I can say that while they do typically care about quality, it's certainly not their highest priority. At the end of the day, they are there to make money, so they are going to optimize their development process for cost. And what that typically means is lower quality. Typically, consultants will not be involved in the ongoing maintenance of the application, only the initial development, so they have little concern about how difficult their code will be to maintain.</p> <p>This is a large part of the reason why I am no longer in the software consulting business. It was supremely frustrating to see us throwing best practices out the window in the interest of completing the project.</p> <p>Several people have mentioned having a strict contract that specifies exactly what is meant by "quality" code, but unfortunately it is very difficult to quantify quality code in any meaningful way. This means that the consultants can usually talk their way out of most any of such "quality" stipulations in the contract. We use software consultants on a somewhat regular basis where I work now, and I've only seen once instance where we were able to successfully withhold payment due to poor code quality. And this was <strong>bad</strong> code, I'm talking <em>epically</em> bad.</p> http://stackoverflow.com/questions/783321/whats-the-best-way-of-learning-iphone-programming-when-coming-from-java/783343#783343 2 Answer by bcwood for What's the best way of learning iPhone programming when coming from Java? bcwood 2009-04-23T20:12:27Z 2009-04-23T20:12:27Z <p>Once you have signed up with Apple to use the iPhone SDK (it's free to download and play around with, you only have to pay if you want to sell your apps on the App Store), you get access to some really great developer resources - forum, documentation, sample code, etc. I would highly recommend using those resources as a good starting point. </p> <p>Download a few of the basic sample apps from Apple to get an idea of how things fit together. Developing on the iPhone is definitely a lot different from other kinds of development, so it's great to have examples to work from and use for reference.</p> http://stackoverflow.com/questions/782915/mysql-or-vs-in-performance/782971#782971 0 Answer by bcwood for MYSQL OR vs IN performance bcwood 2009-04-23T18:33:57Z 2009-04-23T18:33:57Z <p>From what I understand about the way that the compiler optimizes these types of queries, using the IN clause is more efficient than multiple OR clauses. If you have values where the BETWEEN clause can be used, that is more efficient still.</p> http://stackoverflow.com/questions/774933/in-a-hypothetical-ajaxed-blog-engine-which-blog-features-could-use-asynchronous/774959#774959 2 Answer by bcwood for In a hypothetical ajaxed blog engine, which blog features could use asynchronous requests? bcwood 2009-04-21T22:34:01Z 2009-04-21T22:34:01Z <p>Comments are a good place for making an AJAX call. When a user is adding a comment, they likely don't want to have to wait for the entire page to reload to see their comment added. A much better method would be do use an AJAX call to insert the comment into the database, and dynamically add their comment's content to the page.</p> http://stackoverflow.com/questions/757199/how-much-to-comment-code-sample-when-writing-an-article/757209#757209 1 Answer by bcwood for How much to comment code sample when writing an article? bcwood 2009-04-16T17:33:18Z 2009-04-16T17:33:18Z <p>I would use the same guidelines for commenting code for an article as I would for any other comments I write in code - ideally the code is written such that it is self-commenting. If there is a specific section that needs more explanation, then by all means comment it. For an article, it would also probably be helpful to give an overall explanation of the code either immediately before or after.</p> http://stackoverflow.com/questions/748092/iphone-persistent-storage/748116#748116 2 Answer by bcwood for iPhone Persistent Storage bcwood 2009-04-14T15:23:18Z 2009-04-14T15:23:18Z <p>You can use a sqlite database to store persistent data on the iPhone. Here is a blog post that should get you pointed in the right direction:</p> <p><a href="http://dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/" rel="nofollow">http://dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/</a></p> http://stackoverflow.com/questions/658761/removing-literal-strings-in-net-code/658838#658838 1 Answer by bcwood for Removing literal strings in .net code. bcwood 2009-03-18T15:42:07Z 2009-03-18T15:42:07Z <p>I'll usually declare them as constants, or, if I have groups of related strings, I'll create an enum instead.</p> <p>Either way, at least they have a descriptive name attached to them (instead of using "magic strings"), and their use will always be consistent.</p> http://stackoverflow.com/questions/1644268/subversion-ignore-pattern-not-working-too-well/1644295#1644295 Comment by bcwood on Subversion Ignore Pattern not working too well bcwood 2009-10-29T15:16:32Z 2009-10-29T15:16:32Z @manitra that is only correct for the per-project ignore settings. for the global ignore settings, they all just go on one line. http://stackoverflow.com/questions/1644268/subversion-ignore-pattern-not-working-too-well/1644295#1644295 Comment by bcwood on Subversion Ignore Pattern not working too well bcwood 2009-10-29T15:09:00Z 2009-10-29T15:09:00Z @manitra is confused. In the ignore settings for each project, you get a different type of dialog and you specify each item on its' own line. You are correct that in the global ignore settings, every just goes on one line space-delimited. http://stackoverflow.com/questions/1332092/how-to-make-the-keyboard-disappear-while-using-a-uitextview-in-iphone/1332105#1332105 Comment by bcwood on How to Make the KeyBoard Disappear while using a UITextView in iPhone bcwood 2009-08-27T14:42:05Z 2009-08-27T14:42:05Z Nope, this is pretty much what we're stuck with. There's a lot about the iPhone SDK that isn't exactly intuitive. http://stackoverflow.com/questions/1316258/how-to-notify-webserver-when-user-closes-the-browser-in-asp-net/1316264#1316264 Comment by bcwood on how to notify webserver when user closes the browser (in asp.net) ? bcwood 2009-08-23T05:36:23Z 2009-08-23T05:36:23Z @klabranche but if they navigate away from the current page, the have left the chat application, which might as well be the same as closing their browser. http://stackoverflow.com/questions/1316258/how-to-notify-webserver-when-user-closes-the-browser-in-asp-net/1316272#1316272 Comment by bcwood on how to notify webserver when user closes the browser (in asp.net) ? bcwood 2009-08-22T16:01:05Z 2009-08-22T16:01:05Z @klabranche, that is incorrect, Session_End does NOT fire when the browser is closed. http://stackoverflow.com/questions/1316258/how-to-notify-webserver-when-user-closes-the-browser-in-asp-net/1316272#1316272 Comment by bcwood on how to notify webserver when user closes the browser (in asp.net) ? bcwood 2009-08-22T15:57:49Z 2009-08-22T15:57:49Z The problem with this is that your session timeout is typically fairly long (default is 20 minutes in ASP.NET), so it would take up to 20 minutes for the server to be notified that a user had left. Not acceptable for a &quot;real time&quot; chat application. http://stackoverflow.com/questions/1280578/version-control-with-private-branches/1280583#1280583 Comment by bcwood on version control with private branches? bcwood 2009-08-15T15:15:28Z 2009-08-15T15:15:28Z Yes, Git can be difficult to get working on Windows, but overall the tools have been getting much better lately. I still love the tools that SVN has, and actually use that more than Git. But in many cases, Git can be a great choice. http://stackoverflow.com/questions/966789/adding-empty-string-to-radcombobox/967259#967259 Comment by bcwood on Adding empty string to RadComboBox bcwood 2009-08-06T15:27:42Z 2009-08-06T15:27:42Z This isn't a good solution in many cases, because it also allows a user to enter their own custom text, instead of forcing them to select one of the existing items. I would guess that in most cases, this type of behavior is not wanted. http://stackoverflow.com/questions/1166231/any-famous-book-on-designing-website-user-interface-to-recommend/1166335#1166335 Comment by bcwood on any famous book on designing website user interface to recommend ? bcwood 2009-07-23T15:33:06Z 2009-07-23T15:33:06Z I disagree. The basic principles of good UI design never/rarely change. For example, &quot;The Design of Everyday Things&quot; was written in 1988, and while the book is more about usability in general than UI design specifically, the topics that are discussed in the book are every bit as relevant today as they were when the book was written 21 years ago. http://stackoverflow.com/questions/1166008/c-check-datatype-of-a-value-via-if-condtion/1166062#1166062 Comment by bcwood on C# - Check datatype of a value via if condtion bcwood 2009-07-22T17:59:08Z 2009-07-22T17:59:08Z oops, you're right - what do I mean, of course you're right, you're Jon Skeet! :) http://stackoverflow.com/questions/626797/sql-to-return-list-of-years-since-a-specific-year/626844#626844 Comment by bcwood on SQL to return list of years since a specific year bcwood 2009-07-22T17:18:15Z 2009-07-22T17:18:15Z How do you propose keeping this dates table up-to-date? Is your application going to crash on January 1 several years down the road because someone forgot to populate it with next year's dates? http://stackoverflow.com/questions/1055130/c-set-the-visibility-of-a-label-using-the-result-of-string-isnullorempty Comment by bcwood on C# Set the visibility of a label using the result of String.IsNullOrEmpty bcwood 2009-06-28T15:58:27Z 2009-06-28T15:58:27Z Where does this code reside? Is it in Page_Load(), or somewhere else? http://stackoverflow.com/questions/1049402/i-have-just-installed-vs-net-2003-which-left-my-newer-versions-2005-2008-crippl Comment by bcwood on I have just installed VS.NET 2003 which left my newer versions (2005/2008) crippled bcwood 2009-06-26T14:44:01Z 2009-06-26T14:44:01Z The same thing has happened to me before, and I was able to do a repair as JaredPar suggests below. http://stackoverflow.com/questions/1009836/ssrs-2005-pdf-export-issue/1009842#1009842 Comment by bcwood on SSRS 2005 PDF Export Issue bcwood 2009-06-17T22:42:50Z 2009-06-17T22:42:50Z I'm talking about the size of the layout on the grid in the designer. There should be a ruler across the top of the designer, and you want to make sure that the grid doesn't extend past 7.5&quot;. http://stackoverflow.com/questions/774933/in-a-hypothetical-ajaxed-blog-engine-which-blog-features-could-use-asynchronous/774959#774959 Comment by bcwood on In a hypothetical ajaxed blog engine, which blog features could use asynchronous requests? bcwood 2009-04-21T23:15:33Z 2009-04-21T23:15:33Z Yes, I've seen something similar done in a couple of places, and it looked pretty slick. But like many things, overuse of AJAX can be quite annoying and/or confusing to the user.