User casademora - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:05:21Z http://stackoverflow.com/feeds/user/5619 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59880/are-stored-procedures-more-efficient-in-general-than-inline-statements-on-moder 26 Are Stored Procedures more efficient, in general, than inline statements on modern RDBMS's? casademora 2008-09-12T20:32:25Z 2009-11-25T14:55:48Z <p>Conventional wisdom states that stored procedures are always faster. So, since they're always faster, use them <strong>ALL THE TIME</strong>.</p> <p>I am pretty sure this is grounded in some historical context where this was once the case. Now, I'm not advocating that Stored Procs are not needed, but I want to know in what cases stored procs are necessary in modern databases such as MySql, SqlServer, Oracle, or . Is it overkill to have ALL access through stored procs?</p> http://stackoverflow.com/questions/1219999/how-to-tell-a-message-sent-to-the-mpmediaplayer-has-timed-out 0 How to tell a message sent to the MPMediaPlayer has timed out? casademora 2009-08-02T22:08:18Z 2009-11-01T16:00:03Z <p>I've been working with the MPMediaPlayer framework for the 3.0 SDK. Sometimes the Media Player is slow to respond, or doesn't respond at all. I get warning messages in the console, but the user will never see these messages (and thus blame my app for the timeouts). </p> <p>Is there a way to recover from these timeouts? Can I set things to NOT retry also?</p> http://stackoverflow.com/questions/1641376/do-i-need-to-release-an-returned-nserror-object 1 Do I need to release an returned NSError object? casademora 2009-10-29T02:57:44Z 2009-10-29T03:48:47Z <p>There are many Cocoa methods that require an NSError object as a parameter to a method, but are really a means of returning an error object to the calling method if errors exist. Is this returned object retained? That is, in the calling object code (the method to which the error is returned), does there need to be some code like:</p> <pre><code> NSError *error; [apiCall .... error:&amp;error]; if (error){ [*error release]; } </code></pre> <p>I haven't seen this anywhere, and if it does need to be released, is this the way to do it?</p> http://stackoverflow.com/questions/1435371/how-to-remove-a-white-bar-from-the-top-in-iphone/1435429#1435429 0 Answer by casademora for How to remove a white bar from the top in iPhone casademora 2009-09-16T20:59:03Z 2009-09-16T20:59:03Z <p>I had the same problem. I think this is a bug in the 3.1 OS. File a bug with Apple. My current workaround was to use the standard slide up modal transition. Not the best solution, but at least it doesn't look weird.</p> http://stackoverflow.com/questions/1429380/is-there-a-better-way-to-reference-an-outer-scope-to-this-in-javascript 0 Is there a better way to reference an outer scope to this in Javascript? casademora 2009-09-15T20:15:55Z 2009-09-15T20:26:19Z <p>I've seen and written many javascript methods like this lately:</p> <pre><code>var myObj = { dialogOptions: {...}, init: function() { var $this = this; var something = $("&lt;div/&gt;").load("...", null, function() { $(this).dialog($this.dialogOptions); }); } } </code></pre> <p>Now, this works due to the nature of closures, but the named variable reference to the particular level of scope seems awkward. My question is:</p> <p>Is there some javascript operator that performs <code>var $this = this;</code> on the inner scope? Or, perhaps is there a way to traverse the object hierarchy to get the property I'm looking for in the inner scope? </p> http://stackoverflow.com/questions/1397583/are-there-css-class-naming-standards-for-web-applications 6 Are there CSS class naming standards for web applications? casademora 2009-09-09T04:50:44Z 2009-09-09T04:56:16Z <p>There is quite a bit of information on the intertubes going over some fundamental css naming conventions. However, most of these conventions are from designer's point of view. </p> <p>I'm going after conventions from a web application developer's point of view. As a web application grows, and UJS (unobtrusive javascript) is used throughout the codebase, what naming standards have grown around your css classes. The reason this is a little awkward is that css classes are somewhat overloaded in their use. </p> <ul> <li>On one hand, css classes are used by stylesheets to help present your content well. </li> <li>On the other hand, css classes are used by UJS libraries (like jQuery) to help tie javascript code to certain elements on a given page.</li> </ul> <p>A covention that comes to mind from a rails application perspective is something like </p> <pre><code>.controller-action { /*styles */ } </code></pre> <p>Other thoughts are prefixing your classes with hungarian-notion:</p> <pre><code>.js-controller-action { /* styles */ } </code></pre> <p>the js, prefix, would delineate those elements with ujs code attached to them.</p> <p>Personally, I'm interested in this from a rails application perspective, however, I can see how this could apply to any web application framework and UJS javascript library.</p> http://stackoverflow.com/questions/1397366/frustrating-problem-with-javascripts-getelementbyid/1397417#1397417 2 Answer by casademora for Frustrating problem with JavaScript's getElementById() casademora 2009-09-09T03:34:26Z 2009-09-09T03:34:26Z <p>It looks like the slideshow function is called for initialization too early. This will be called before the DOM tree is ready:</p> <pre><code>var slideshow = function() { ... } (); </code></pre> <p>try removing that () at the end.</p> http://stackoverflow.com/questions/1397371/compiling-for-iphone-2-2-1-using-xcode/1397385#1397385 0 Answer by casademora for Compiling for iPhone 2.2.1 using Xcode casademora 2009-09-09T03:20:39Z 2009-09-09T03:20:39Z <p>First thing to check is that you aren't using libraries that are <em>only</em> available in the 3.0 SDK. If you are using the MPMediaPlayer Framework, for example, you will probably get some compile warnings since those libraries don't exist prior to the 3.0 SDK.</p> <p>My general advice for compile errors is to start with the first error and work your way one at a time. Generally, a single failure at the top will cascade and cause many more compile errors than actually exist in your code.</p> http://stackoverflow.com/questions/1373626/how-do-i-bind-a-click-event-to-created-dom-elements-in-a-jquery-each-loop-only/1373679#1373679 1 Answer by casademora for How do I bind a click event to created dom elements in a jQuery $.each loop? only seems to be binding to the last element! casademora 2009-09-03T14:20:18Z 2009-09-03T14:20:18Z <p>try:</p> <pre><code>var linkid = ...; var link = $("&lt;a&gt;&lt;/a&gt;").attr('id', linkid).attr('href', '#').text(aItem.Address).click(function(){ alert('ran'); return false; }); $('#SearchResults').append(link.wrap("&lt;p&gt;&lt;/p&gt;")); </code></pre> <p>The idea being that you want to bind your click event to each link that you are creating, so just chain it to the end of your creation code, and be explicit about it.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1359115/what-are-the-implications-to-redirecting-images-behind-the-image-tag 2 What are the implications to redirecting images behind the <image> tag? casademora 2009-08-31T19:52:01Z 2009-09-01T11:17:55Z <p>Some setup:</p> <p>We have some static images, publicly available. However, we want to be able to reference these images with alternative URLs in the image tag. So, for example, we have an image with a URL like:</p> <pre><code>http://server.com/images/2/1/account_number/public/assets/images/my_cool_image.jpg </code></pre> <p>And, we want to insert that into our front html as:</p> <pre><code>&lt;img src="http://server.com/image/2/my_cool_image.jpg"&gt; </code></pre> <p>instead of</p> <pre><code>&lt;img src="http://server.com/images/2/1/account_number/public/assets/images/my_cool_image.jpg"&gt; </code></pre> <p>One really neat solution we've come up with is to use 301 redirects. Now, our testing has rendered some pretty neat results (all current generation browsers work), but I am wondering if there are caveats to this approach that I may be missing.</p> <p>EDIT: To clarify, the reason we want to use this approach is that we are also planning on using an external host to serve up resources, and we want to be able to turn this off on occasion. So, perhaps the URL in the would be</p> <pre><code>http://client.com/image/3/cool_image.jpg </code></pre> <p>in addition to the "<em>default</em>" way of accessing</p> http://stackoverflow.com/questions/154059/what-is-the-best-way-to-check-for-an-empty-string-in-javascript 13 What is the best way to check for an empty string in Javascript? casademora 2008-09-30T17:17:45Z 2009-08-02T01:06:30Z <p>I saw this <a href="http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string">thread</a>, but I didn't see a Javascript specific example. Is there a simple string.Empty in Javascript, or is it just checking for "" ?</p> http://stackoverflow.com/questions/1146838/why-cant-i-write-files-to-my-apps-document-directory 1 Why can't I write files to my app's Document directory? casademora 2009-07-18T06:06:03Z 2009-07-31T06:48:12Z <p>I have found several snippets of code describing how to write data to a user's application Documents folder. However, when I try this out in the iPhone simulator, no files get created. I called </p> <p><code>[NSFileManager isWritbleAtPath:&lt;my document folder&gt;]</code> </p> <p>and it returned 0 (false). Do I need to make this folder explicitly writable, and if so, how do I do it?</p> http://stackoverflow.com/questions/1146838/why-cant-i-write-files-to-my-apps-document-directory/1211016#1211016 0 Answer by casademora for Why can't I write files to my app's Document directory? casademora 2009-07-31T06:48:12Z 2009-07-31T06:48:12Z <p>Thanks for the pointers. So after a toiling through a few documents, I found the thing I was doing wrong: trying to save an NSArray that wasn't composed of basic datatypes such as NSDictionary, NSArray, or NSString. I was trying to save an array of MPMediaItems (from the MediaKit Framework in SDK 3.0+).</p> http://stackoverflow.com/questions/178973/how-fast-is-a-log4net-logging-method-debug-info-etc 1 How fast is a log4net logging method (Debug, Info, etc)? casademora 2008-10-07T15:17:35Z 2009-07-10T13:14:56Z <p>I'm a big fan of <a href="http://logging.apache.org/log4net" rel="nofollow">log4net</a>, but recently, some (in my department) have questioned its inclusion in our projects because of the seemingly heaviness of each logging method. I would argue that there are better techniques than others, but that's another question.</p> <p>I'm curious to know, what is the typical impact of a log4net DebugFormat-type call on your applications. I'm going to leave out variables like number of log statements per lines of code, etc, because I'm just looking for anything that you've seen in the real world.</p> <p>And, I am aware of the simple technique of adding a guard clause to long evaluation statements eg:</p> <pre><code>if (log.IsDebug) { log.DebugFormat(...); } </code></pre> <p>So, let's exclude that from consideration for now.</p> http://stackoverflow.com/questions/1105095/how-to-deploy-debug-iphone-app-directly-to-iphone-device-without-idp-membership/1105464#1105464 0 Answer by casademora for How to deploy/debug iPhone App directly to iPhone device without IDP membership?? casademora 2009-07-09T17:45:48Z 2009-07-09T17:45:48Z <p>While not really a good thing, your best bet may be to jailbreak your phone. This will void your warranty and I'm pretty sure a kitten somewhere will die because another iPhone has been jailbroken.</p> http://stackoverflow.com/questions/1074557/in-cocoa-how-do-i-set-the-ttl-on-a-packet 1 In Cocoa, how do I set the TTL on a packet? casademora 2009-07-02T14:04:37Z 2009-07-07T03:32:16Z <p>I want to be able to explicitly set the TTL value for a socket connection using Cocoa. I've been unable to see anything useful in the CoreFoundation docs. Do I need to go even lower to the BSD Sockets to set the TTL value?</p> http://stackoverflow.com/questions/1080556/how-can-i-test-apple-push-notification-service-without-an-iphone/1082908#1082908 0 Answer by casademora for How can I test Apple Push Notification Service without an iPhone? casademora 2009-07-04T20:19:17Z 2009-07-04T20:19:17Z <p>Sorry to say, but you'll need to find some hardware to test this functionality.</p> <p>Push notifications are not available in the simulator. They require a provisioning profile from Itunes Connect, and thus are required to be installed on a device. That also means you'll probably have to be accepted into the apple iPhone developer program and pay your $99.</p> <p>On the bright side, with the iPhone 0S 3.0 update, you can test this functionality on any device, including the first gen iPhones. </p> http://stackoverflow.com/questions/1070917/css-image-sticking-to-the-bottom-right-hand-side-of-the-document/1070958#1070958 0 Answer by casademora for CSS: Image sticking to the bottom right hand side of the document casademora 2009-07-01T19:43:37Z 2009-07-01T19:43:37Z <p>To add to the answer by @stevedbrown:</p> <pre><code>.bottom { z-index: 2; } </code></pre> <p>where 2, is just a higher z-index than the other page elements</p> http://stackoverflow.com/questions/1070861/uiwebview-needs-to-load-url-with-id-from-device/1070941#1070941 0 Answer by casademora for UIWebView needs to load URL with ID from device casademora 2009-07-01T19:39:24Z 2009-07-01T19:39:24Z <p>As stated in the comment, couldn't you use </p> <p><code>[NSString stringWithFormat:@"....%@", uid]</code> </p> <p>Remember, the %@ will replace an NSString.</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1061083#1061083 0 Answer by casademora for iPod app stops responding after iPod returns from standby mode casademora 2009-06-29T23:32:33Z 2009-06-29T23:32:33Z <p>Actually, I've been running into this problem on the iPod application itself, in just general daily use. That is, if you are using the 3.0 firmware OS, then this is most likely a bug in the iPhone. I guess you can relax, and know that it's probably not your own code that is causing the problem. I'd file a radar ticket with Apple if you haven't already so that they can address it in the next bug fix release.</p> http://stackoverflow.com/questions/1055649/are-there-any-e-books-or-books-covering-the-iphone-sdk-3-0/1055874#1055874 1 Answer by casademora for Are there any e-Books (or books) covering the iPhone SDK 3.0? casademora 2009-06-28T21:54:50Z 2009-06-28T21:54:50Z <p><a href="http://rads.stackoverflow.com/amzn/click/0470481072" rel="nofollow">Cocoa Touch for iPhone OS 3.0</a> will be released soon. The author is a prominent member of the mac development community in the Phoenix area, and has been working hard on this book in addition to creating and updating apps for the AppStore.</p> http://stackoverflow.com/questions/1033486/passenger-not-passing-params-hash-to-rails-application-on-mac-os-x 0 Passenger not passing params hash to Rails application on Mac OS X casademora 2009-06-23T15:54:21Z 2009-06-23T15:54:21Z <p>I have an existing rails application that works well on Passenger for Linux. It works well on a local mongrel instance. The DB is postgresql in all cases. However, when I installed Phusion Passenger 2.2.4 on a spare Mac with OS X Leopard (running 10.5.7), the params hash does not get passed to the underlying rails application. Are there any settings that could help resolve this?</p> <p><strong>More details:</strong> Here is a sample form</p> <pre><code>&lt;form&gt; &lt;input type="hidden" name="authenticationkey" value="..." /&gt; &lt;input type="text" name="model[name]" /&gt; &lt;input type="text" name="not_a_param" /&gt; &lt;input type="submit" value="send to server"&gt; &lt;/form&gt; </code></pre> <p>So, when the values of this form are sent to the server, the value for '*not_a_param*' appears perfectly in the log, and any dumps of the input. However, when I look for the '<em>model</em>' hash, it always shows up as nil.</p> http://stackoverflow.com/questions/948139/what-is-the-definition-of-a-staging-envronment-when-developing-web-applications 4 What is the definition of a staging envronment when developing web applications? casademora 2009-06-04T01:19:22Z 2009-06-04T01:33:04Z <p>When developing a web application for others, multiple environments for testing are a good idea. However, different development teams have different definitions for the meaning of each environment.</p> <p>Currently, I like to keep it simple, and have a development environment (my local machine), a staging environment (someone before I deploy my app to the world), and then to production. Although there may be value in more environments, I'm going to be sticking with these three for now.</p> <p>My main question is: </p> <blockquote> <p>What properties would be appropriate when defining a staging environment?</p> </blockquote> <p>However, here are some related questions:</p> <ul> <li>Does the web server have to be on a separate physical machine than the database?</li> <li>Does the database have to be exactly identical to the production database?</li> <li>Can the staging environment go down for maintenance?</li> <li>Can the staging environment be used to test out new features (ie. a beta env)? </li> </ul> http://stackoverflow.com/questions/880776/best-practice-for-naming-the-id-attribute-of-dom-elements/880788#880788 0 Answer by casademora for Best Practice for Naming the Id Attribute of Dom Elements casademora 2009-05-19T03:07:04Z 2009-05-19T03:07:04Z <p>Here are some naming guidelines that have helped me out with my ids and classes in the DOM:</p> <ul> <li>don't include the type in the name (ie, no txt or chk). I can select that info using CSS or jQuery much more descriptivlely</li> <li>use underscores as separators in the name. Hyphens don't always work out in other languages, and camel casing is a little tough to read in markup</li> </ul> http://stackoverflow.com/questions/863519/is-assigning-a-ticket-number-to-a-checkin-with-version-control-worth-the-effort-f 3 Is assigning a ticket number to a checkin with version control worth the effort for developers? casademora 2009-05-14T14:07:34Z 2009-05-14T15:44:42Z <p>The practice I'm discussing is: Your project/product has a ticketing system for bugs, features, etc. There is also have source control. However, it always seems that there is a reason to try to tie these two together. Some places don't want a checkin without a ticket number. Some development shops are looser about the requirement that there exist a ticket for every checkin, and will let in a minor checkin or two slide without a ticket number attached.</p> <p><strong>Question</strong>: What makes this practice so useful?</p> <p>I've seen this practice in various places in my career. This is especially evident in products such as Microsoft's Team Foundation Server. I've seen in at IBM with CMVC, their home grown source code management system. I've seen in with Mingle and SVN, or SVN and Redmine, where you can associate tickets to checkins by simply putting the ticket number in the commit message. In all these places, I really haven't found it to be useful in my own work, so I realize that it should be useful somewhere down the line. </p> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser 12 Can JQuery read/write cookies to a browser? casademora 2008-09-18T18:17:54Z 2009-02-27T18:01:18Z <p>Simple example: I want to have some items on a page (like divs or table rows) and I want to let the user click on them to select them. That seems easy enough in jquery. To save which items a user clicks on with no server-side post backs, I was thinking a cookie would be a simple way to get this done.</p> <ol> <li>Is this assumption that a cookie is ok in this case, correct?</li> <li>If it is correct, does the jquery api have some way to read/write cookie info that is nicer than the default JS apis?</li> </ol> http://stackoverflow.com/questions/539259/what-is-the-best-free-text-editor-for-mac-ftp/539303#539303 3 Answer by casademora for what is the best free text editor for mac? FTP? casademora 2009-02-11T23:14:30Z 2009-02-11T23:14:30Z <p>I think if you want to try something like dreamweaver, only lighter, try <a href="http://www.panic.com/coda" rel="nofollow">Coda</a>. It's got lots of CSS stuff, a terminal, remote syncing via FTP. It's a very mac experience. I do enjoy using it when I get a chance these days.</p> http://stackoverflow.com/questions/159296/how-can-i-prevent-a-base-constructor-from-being-called-by-an-inheritor-in-c 3 How can I prevent a base constructor from being called by an inheritor in C#? casademora 2008-10-01T19:28:25Z 2008-12-17T17:06:37Z <p>I've got a (poorly written) base class that I want to wrap in a proxy object. The base class resembles the following:</p> <pre><code>public class BaseClass : SomeOtherBase { public BaseClass() {} public BaseClass(int someValue) {} //...more code, not important here } </code></pre> <p>and, my proxy resembles:</p> <pre><code>public BaseClassProxy : BaseClass { public BaseClassProxy(bool fakeOut){} } </code></pre> <p>Without the "fakeOut" constructor, the base constructor is expected to be called. However, with it, I expected it to not be called. Either way, I either need a way to not call any base class constructors, or some other way to effectively proxy this (evil) class.</p> http://stackoverflow.com/questions/335291/fixing-broken-macports/335313#335313 4 Answer by casademora for Fixing broken Macports casademora 2008-12-02T20:27:57Z 2008-12-03T11:57:08Z <p>Usually, when my macports installation starts going nutty (usually because I goofed it up), I delete the /opt folder and reinstall. I'm just lazy, i guess. From what it looks like though, you are trying to reinstall a new port over an old/existing folder.</p> <p>Have you tried <a href="http://porticus.alittledrop.com/" rel="nofollow">Porticus</a>? It will do a good job of telling you which ports are installed and active. Perhaps if you deactivated a current python port, and installing the new one, that can get you moving again.</p> http://stackoverflow.com/questions/159886/is-it-ok-to-put-a-database-initialization-call-in-a-c-constructor 5 Is it OK to put a database initialization call in a C# constructor? casademora 2008-10-01T21:42:17Z 2008-12-03T10:47:28Z <p>I've seen this is various codebases, and wanted to know if this generally frowned upon or not.</p> <p>For example:</p> <pre><code>public class MyClass { public int Id; public MyClass() { Id = new Database().GetIdFor(typeof(MyClass)); } } </code></pre> http://stackoverflow.com/questions/1641376/do-i-need-to-release-an-returned-nserror-object/1641407#1641407 Comment by casademora on Do I need to release an returned NSError object? casademora 2009-10-29T03:28:56Z 2009-10-29T03:28:56Z The reason I put the [*error code] is that you can also specify the NSError var as: NSError **error; Which is a point to a point to the object. Is this valid? http://stackoverflow.com/questions/1429380/is-there-a-better-way-to-reference-an-outer-scope-to-this-in-javascript/1429424#1429424 Comment by casademora on Is there a better way to reference an outer scope to this in Javascript? casademora 2009-09-15T20:29:32Z 2009-09-15T20:29:32Z <i>faceplam</i> duh...forgot about that part. Thanks! http://stackoverflow.com/questions/1397583/are-there-css-class-naming-standards-for-web-applications Comment by casademora on Are there CSS class naming standards for web applications? casademora 2009-09-09T04:57:33Z 2009-09-09T04:57:33Z The motivation for this question is the software development principle that your code should be as self documenting as possible. Does this apply to css classes in your markup in relation to UJS code? http://stackoverflow.com/questions/1219999/how-to-tell-a-message-sent-to-the-mpmediaplayer-has-timed-out/1220035#1220035 Comment by casademora on How to tell a message sent to the MPMediaPlayer has timed out? casademora 2009-08-03T02:22:12Z 2009-08-03T02:22:12Z My app does register itself for notifications, however, I'm using the MPMusicPlayer, not Movie Player. Still, seems like a worthwhile direction to look to. Thanks! http://stackoverflow.com/questions/1211014/jquery-drag-element Comment by casademora on jquery drag element casademora 2009-07-31T06:50:52Z 2009-07-31T06:50:52Z Do you have a code sample? It's kind of tough to answer this question without the context of the code. http://stackoverflow.com/questions/1074546/the-executable-was-signed-with-invalid-entitlements/1075213#1075213 Comment by casademora on The executable was signed with invalid entitlements. casademora 2009-07-24T13:52:56Z 2009-07-24T13:52:56Z Many thanks! Solved my problem exactly! http://stackoverflow.com/questions/1146838/why-cant-i-write-files-to-my-apps-document-directory/1146853#1146853 Comment by casademora on Why can't I write files to my app's Document directory? casademora 2009-07-18T11:47:53Z 2009-07-18T11:47:53Z I suspected as much. I'll give this a try. Thanks! http://stackoverflow.com/questions/1146838/why-cant-i-write-files-to-my-apps-document-directory/1146856#1146856 Comment by casademora on Why can't I write files to my app's Document directory? casademora 2009-07-18T11:46:32Z 2009-07-18T11:46:32Z I tried this, and it returns 0. This is has me wondering what I'm doing wrong http://stackoverflow.com/questions/282105/are-code-freezes-still-relevant-when-using-a-continuous-integration-build-setup/282133#282133 Comment by casademora on Are code freezes still relevant when using a continuous integration build setup? casademora 2008-11-11T21:12:46Z 2008-11-11T21:12:46Z This was my impression. Also, I think that since you have so many builds with a CI server, you don't NEED a code freeze because you have so many point in time builds to choose from to pick a &quot;good&quot; version. http://stackoverflow.com/questions/233707/is-agile-programming-too-ad-hoc-for-safety-critical-systems/233832#233832 Comment by casademora on Is Agile programming too... ad hoc for safety-critical systems? casademora 2008-10-24T14:53:58Z 2008-10-24T14:53:58Z that's a nice term for un-tested code: &quot;working by accident&quot;. I feel the same way about un-tested code http://stackoverflow.com/questions/230668/stored-procedures-vs-parameterized-queries/230686#230686 Comment by casademora on Stored Procedures vs Parameterized Queries casademora 2008-10-23T17:54:46Z 2008-10-23T17:54:46Z Search SO for more discussion on this topic. SPs aren't the magic bullet they used to be. http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/137999#137999 Comment by casademora on What is so bad about Singletons casademora 2008-10-17T22:36:51Z 2008-10-17T22:36:51Z Instance of Peformance benefit of singletons: You need to load a lot of data to init an object properly. Rather than go through the logic and IO on every creation, you can create a singleton in conjunction with the protoype pattern to clone this object (if true instances are needed). http://stackoverflow.com/questions/202470/does-windows-powershell-have-a-try-catch-or-other-error-handling-mechanism/202500#202500 Comment by casademora on Does Windows Powershell have a Try/Catch or other error handling mechanism? casademora 2008-10-14T19:31:05Z 2008-10-14T19:31:05Z wow, maybe I should stop looking at the technet docs... http://stackoverflow.com/questions/174672/should-i-create-a-jquery-server-control-for-asp-net-to-best-use-it-in-my-apps/176683#176683 Comment by casademora on Should I create a JQuery server control for ASP.net to best use it in my apps? casademora 2008-10-07T01:33:19Z 2008-10-07T01:33:19Z I can see this scenario, but is it worth writing more code to manage other code? I'm not a big fan of this idea, so I'm trying to find some merit in it somewhere. http://stackoverflow.com/questions/173145/conditional-logic-based-on-type/173167#173167 Comment by casademora on conditional logic based on type. casademora 2008-10-06T05:44:27Z 2008-10-06T05:44:27Z In those cases, why not use the new and virtual modifiers?