User Robert Paulson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:41:51Z http://stackoverflow.com/feeds/user/14033 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c/1806325#1806325 0 Answer by Robert Paulson for What is the proper object relationship? (C#) Robert Paulson 2009-11-27T00:56:00Z 2009-11-27T01:53:18Z <p><em>In reply to @Jason D, and for the sake of @Nitax: I'm really skimming the surface, because while it's basically easy, it also can get complicated. There's no way I'm going to re-write it better than Martin Fowler either (certainly not in 10 minutes).</em></p> <p>You first have to sort out the issue of only 1 object in memory that refers to a specific depot. We'll achieve that with something called a Repository. <code>CustomerRepository</code> has a <code>GetCustomer()</code> method, and the <code>DepotRepository</code> has a <code>GetDepot()</code> method. I'm going to wave my hands and pretend that just happens. </p> <p>Second you need to need to write some tests that indicate how you want the code to work. I can't know that, but bear with me anyways. </p> <pre><code>// sample code for how we access customers and depots Customer customer = Repositories.CustomerRepository.GetCustomer("Bob"); Depot depot = Repositories.DepotRepository.GetDepot("Texas SW 17"); </code></pre> <p>Now the hard part here is: How do <em>you</em> want to model the relationship? In OO systems you don't really have to do anything. In C# I <em>could</em> just do the following.</p> <p>Customers keep a list of the depots they are with</p> <pre><code>class Customer { public IList&lt;Depot&gt; Depots { get { return _depotList; } } } </code></pre> <p>alternatively, Depots keep a list of the customers they are with</p> <pre><code>class Depot { public IList&lt;Customer&gt; Customers { get { return _customerList; } } } // * code is very brief to illustrate. </code></pre> <p>In it's most basic form, any number of Customers can refer to any number of Depots. <em>m:n solved</em>. References are cheap in OO.</p> <p>Mind you, the problem we hit is that while the Customer can keep a list of references to all the depot's it cares about (first example), there's not an easy way for the Depot to enumerate all the Customers. </p> <p>To get a list of all Customers for a Depot (first example) we have to write code that iterates over all customers and checks the customer.Depots property:</p> <pre><code>List&lt;Customer&gt; CustomersForDepot(Depot depot) { List&lt;Customer&gt; allCustomers = Repositories.CustomerRepository.AllCustomers(); List&lt;Customer&gt; customersForDepot = new List&lt;Customer&gt;(); foreach( Customer customer in allCustomers ) { if( customer.Depots.Contains(depot) ) { customersForDepot.Add(customer); } } return customersForDepot; } </code></pre> <p>If we were using Linq, we could write it as</p> <pre><code>var depotQuery = from o in allCustomers where o.Depots.Contains(depot) select o; return query.ToList(); </code></pre> <p>Have 10,000,000 Customers stored in a database? <em>Ouch!</em> You really don't want to have to load all 10,000,000 customers each time a Depot needs to determine its' customers. On the other hand, if you only have 10 Depots, a query loading all Depots once and a while isn't a big deal. <em>You should always think about your data and your data access strategy.</em></p> <p>We <em>could</em> have the list in both <code>Customer</code> and <code>Depot</code>. When we do that we have to be careful about the implementation. When adding or removing an association, we need to make the change to both lists at once. Otherwise we have customers thinking they are associated with a depot, but the depot doesn't know anything about the customer.</p> <p>If we don't like that, and decide we don't really need to couple the objects so tightly. We can remove the explicit List's and introduce a third object that is just the relationship (and also include another repository).</p> <pre><code>class CustomerDepotAssociation { public Customer { get; } public Depot { get; } } class CustomerDepotAssociationRepository { IList&lt;Customer&gt; GetCustomersFor(Depot depot) ... IList&lt;Depot&gt; GetDepotsFor(Customer customer) ... void Associate(Depot depot, Customer customer) ... void DeAssociate(Depot depot, Customer customer) ... } </code></pre> <p>It's yet another alternative. The repository for the association doesn't need to expose how it associates Customers to Depots (and by the way, from what I can tell, this is what @Jason D's code is attempting to do)</p> <p>I might prefer the separate object in this instance because what we're saying is the association of Customer and Depot is an entity unto itself. </p> <p>So go ahead and read some Domain Driven Design books, and also buy Martin Fowlers PoEAA (Patterns of Enterprise Application Architecture)</p> http://stackoverflow.com/questions/1695155/how-to-timeout-a-user-in-asp-net-formsauthentication/1727057#1727057 0 Answer by Robert Paulson for How to timeout a user in asp.net formsAuthentication Robert Paulson 2009-11-13T04:00:04Z 2009-11-13T04:00:04Z <p>Another answer, just to show how you might want to create your cookie using the values from the web.config instead of hardcoding them in code.</p> <p>First off, consider if you need all the extra options. The simplest is to have everything setup in your web.config</p> <pre><code>FormsAuthentication.RedirectFromLoginPage("Bob", isPersistent) </code></pre> <p>However, if you need to add UserData to the ticket, you will have to create your own. Note how we use the values in the web.config instead of hard coding values.</p> <pre><code>/// &lt;summary&gt; /// Create a New Forms Authentication Ticket when User Impersonation is active, using the current ticket as a basis for the new ticket. /// &lt;/summary&gt; private static void NewTicket(MyUser currentUser, string userData, bool createPersistentCookie) { System.Web.Configuration.AuthenticationSection authSection = (System.Web.Configuration.AuthenticationSection) ConfigurationManager.GetSection("system.web/authentication"); System.Web.Configuration.FormsAuthenticationConfiguration formsAuthenticationSection = authSection.Forms; DateTime now = DateTime.Now; // see http://msdn.microsoft.com/en-us/library/kybcs83h.aspx // Create a new ticket used for authentication FormsAuthenticationTicket ticket = new FormsAuthenticationTicket( 2, // Ticket version currentUser.UserName, // Username to be associated with this ticket now, // Date/time issued now.Add(formsAuthenticationSection.Timeout),// Date/time to expire createPersistentCookie, userData, FormsAuthentication.FormsCookiePath); // Hash the cookie for transport over the wire string hash = FormsAuthentication.Encrypt(ticket); HttpCookie cookie = new HttpCookie( FormsAuthentication.FormsCookieName, // Name of auth cookie (specified in web.config) hash); // Hashed ticket // Add the cookie to the list for outbound response HttpContext.Current.Response.Cookies.Add(cookie); } </code></pre> <p>You can use the same technique for recreating the ticket while the user is already logged in. An example is if you needed to change the <code>Ticket.UserData</code>. When issuing a new ticket you would increment the version number.</p> http://stackoverflow.com/questions/1704940/when-is-the-earliest-i-can-access-session-in-the-asp-net-mvc-page-lifecycle/1705061#1705061 1 Answer by Robert Paulson for When is the earliest I can access SESSION in the ASP.NET MVC page lifecycle? Robert Paulson 2009-11-10T01:09:35Z 2009-11-10T01:09:35Z <p>In your global.asax.cs file, you can handle the following</p> <pre><code> protected void Application_OnAuthenticateRequest(Object sender, EventArgs e) { if (httpContext.User.Identity.IsAuthenticated) { // if using forms authentication, retrieve and set your own // custom IPrincipal. You need to check for nulls, etc. ... } } </code></pre> <p>Create your own user class (implements <code>IPrincipal</code>) and replace the <code>HttpContext.Current.User</code> and <code>System.Threading.Thread.CurrentPrincipal</code> with your own. If you need to, you can create your own <code>IIdentity</code> class as well.</p> <p>See <a href="http://stackoverflow.com/questions/1262806/c-so-if-a-static-class-is-bad-practice-for-storing-global-state-info-whats-a/1263220#1263220">my answer</a> to a similar SO question.</p> <p>I would advise against storing the user in the Session, and sometimes caching the User in Session is a performance win. It depends on how your site is used. With WebForms, I think the earliest that session is available is at PreInit.</p> http://stackoverflow.com/questions/1695155/how-to-timeout-a-user-in-asp-net-formsauthentication/1698510#1698510 0 Answer by Robert Paulson for How to timeout a user in asp.net formsAuthentication Robert Paulson 2009-11-09T00:38:19Z 2009-11-09T02:20:40Z <p>You can't have both sliding and absolute expiration of your forms authentication ticket.</p> <p>See my answer to <a href="http://stackoverflow.com/questions/165331/how-to-get-the-asp-net-login-control-to-auto-authenticate-a-previously-authentica/165349#165349">this SO question</a> for an overview and links to tutorials to understanding Forms Authentication in ASP.NET.</p> <p>Update:</p> <blockquote> <p>how do I set a timeout for a user if they don't do any requests after say 10mins there session is killed and they are logged out</p> </blockquote> <p>Logged Out = Forms Authentication and is orthogonal to Session (State) (e.g. the place to store data). </p> <p>The simple answer is don't store data in sessions. See <a href="http://stackoverflow.com/questions/885300/how-to-synchronize-lifetime-of-forms-authentication-cookie-and-asp-net-session/885325#885325">this SO question</a> which seems similar to what you want.</p> http://stackoverflow.com/questions/1435283/purpose-of-having-api-wrapped-around-interface/1441599#1441599 2 Answer by Robert Paulson for Purpose of having API wrapped around interface Robert Paulson 2009-09-17T22:15:02Z 2009-10-09T02:09:44Z <p>The MyApi class looks like it's shielding you from using reflection to create the object, null checks if the optional interface isn't in use, and probably the whole fact of using interfaces in general. Without all the code it's conjecture. As Dzmitry Huba points out, mixing a factory and a wrapper is a bad smell, and you should try to refactor that out.</p> <pre><code>static class GadgetFactory { public static IMainInterface GetGadget(string className) { (IMainInterface)Activator.CreateInstance(Type.GetType(className)) } } </code></pre> <p>A factory decouples the logic of creation, but it should only be responsible for creation.</p> <p>Q: Is there <em>any</em> logic in myAPI, or is it just creating and then dispatching if the gadget supports the interface?</p> <p>If MyApi doesn't have any logic, it's hard to see why it's necessary. Perhaps the writer of MyApi didn't realize at the time that you can cast to the other interface when needed. I have a hunch that they were trying to shield junior developers from interfaces.</p> <pre><code>// basic use of interfaces IMainInterface gadget = GadgetFactory.GetGadget("Gadgets.Calendar"); gadget.SomeMethod(); IOptionalInterface optional = gadget as IOptionalInterface; if( optional != null ) // if optional is null, the interface is not supported optional.SomeOptionalMethod(); </code></pre> <p><hr /></p> <p>A relevant SO question <a href="http://stackoverflow.com/questions/1295344/difference-between-activator-createinstance-and-typeoft-invokemember-with-b">Difference between Activator.CreateInstance() and typeof(T).InvokeMember() with BindingFlags.CreateInstance</a></p> http://stackoverflow.com/questions/1376572/c-how-to-handle-constant-tables/1376935#1376935 1 Answer by Robert Paulson for C#, how to handle constant tables Robert Paulson 2009-09-04T02:24:35Z 2009-09-04T02:24:35Z <p>Like <em>they</em> say, just add another layer of indirection. C# doesn't need to provide a specialized data structure as a language primitive, although one does, at times, wish there was a way to make any class immutable, but that's another discussion.</p> <p>Now you didn't mention if you need to store different things in there. In fact you didn't mention anything other than multi-dimensional and no ability to change the values or the arrays. I don't even know if the access pattern (a single int,int,int indexer) is appropriate.</p> <p>But in general, for a 3-dimensional jagged array, the following works (but it isn't pretty).</p> <p>One caveat is the type you construct it with also needs to be immutable, but that's your problem. You can just create your own read-only wrapper.</p> <pre><code>public static readonly ReadOnlyThreeDimensions&lt;int&gt; MyGlobalThree = new ReadOnlyThreeDimensions&lt;int&gt;(IntInitializer); public class ReadOnlyThreeDimensions&lt;T&gt; { private T[][][] _arrayOfT; public ReadOnlyThreeDimensions(Func&lt;T[][][]&gt; initializer) { _arrayOfT = initializer(); } public ReadOnlyThreeDimensions(T[][][] arrayOfT) { _arrayOfT = arrayOfT; } public T this [int x, int y, int z] { get { return _arrayOfT[x][y][z]; } } } </code></pre> <p>And then you just need to provide some initializer method, or assign it in a static constructor.</p> <pre><code>public static int[][][] IntInitializer() { return xyz // something that constructs a [][][] } </code></pre> http://stackoverflow.com/questions/1365755/what-is-a-surefire-way-to-get-a-string-word-count-in-c/1365916#1365916 4 Answer by Robert Paulson for What is a Surefire way to get a string Word Count in C# Robert Paulson 2009-09-02T05:05:13Z 2009-09-02T05:05:13Z <p>Alternate Version of @Martin v. Löwis, which uses a <code>foreach</code> and <code>char.IsWhiteSpace()</code> which should be more correct when dealing with other cultures.</p> <pre><code>int CountWithForeach(string para) { bool inWord = false; int words = 0; foreach (char c in para) { if (char.IsWhiteSpace(c)) { if( inWord ) words++; inWord = false; continue; } inWord = true; } if( inWord ) words++; return words; } </code></pre> http://stackoverflow.com/questions/1365467/variable-expansion-with-regex-net-style/1365584#1365584 3 Answer by Robert Paulson for Variable expansion with Regex .NET style Robert Paulson 2009-09-02T02:30:53Z 2009-09-02T02:36:16Z <p>If you're going to use Regex, and you have a known pattern, it doesn't get much simpler than using a match evaluator method instead of calling replace a bunch of times:</p> <pre><code>void Main() // run this in LinqPad { string text = "I was here on {D}/{MMM}/{YYYY}."; string result = Regex.Replace(text, "{[a-zA-Z]+}", ReplaceMatched); Console.WriteLine(result); } private string ReplaceMatched(Match match) { if( match.Success ) { switch( match.Value ) { case "{D}": return DateTime.Now.Day.ToString(); case "{YYYY}": return DateTime.Now.Year.ToString(); default: break; } } // note, early return for matched items. Console.WriteLine("Warning: Unrecognized token: '" + match.Value + "'"); return match.Value; } </code></pre> <p>gives the result</p> <pre> Warning: Unrecognized token: '{MMM}' I was here on 2/{MMM}/2009. </pre> <p>It's not entirely implemented obviously.</p> <p>Check out <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> and a Regex Tool like <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">Expresso</a></p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118330#118330 8 Answer by Robert Paulson for What are Code Smells? What is the best way to correct them? Robert Paulson 2008-09-23T00:03:30Z 2009-08-28T17:45:50Z <h3>Too Many [out] Parameters (.NET)</h3> <p>When a method contains out parameters, especially when there are more than one out parameter, consider returning a class instead.</p> <pre><code>// Uses a bool to signal success, and also returns width and height. bool GetCoordinates( MyObject element, out int width, out int height ) </code></pre> <p>Replace with a single return parameter, or perhaps a single out parameter.</p> <pre><code>bool GetCoordinates( MyObject element, out Rectangle coordinates ) </code></pre> <p>Alternatively you could return a null reference. Bonus points if the class implements the <a href="http://exciton.cs.rice.edu/javaresources/DesignPatterns/NullPattern.htm" rel="nofollow">Null Object pattern</a>. This allows you to get rid of the boolean as the class itself can signal a valid state.</p> <pre><code>Rectangle GetCoordinates( MyObject element ) </code></pre> <p>Further, if it makes sense, have a specialised class for the return value. While not always applicable, if the return value is not a simple true/false for success then it may be more appropriate to return a composite of the returned object plus state. It makes caller's code easier to read and maintain.</p> <pre><code>class ReturnedCoordinates { Rectangle Result { get; set; } CoordinateType CoordinateType { get; set; } GetCoordinateState SuccessState { get; set; } } ReturnedCoordinates GetCoordinates( MyObject element ) </code></pre> <p>Admittedly overuse of this can lead to further bad smells.</p> <h3>A Good [out] Pattern</h3> <p>Note that [out] parameters are still useful, especially in the following <a href="http://blogs.msdn.com/kcwalina/archive/2005/03/16/396787.aspx" rel="nofollow">Tester-</a><a href="http://dotnetperls.com/Content/Tester-Doer.aspx" rel="nofollow">Doer</a> pattern.</p> <pre><code>// In the Int32 class. bool TryParse(string toParse, out int result) </code></pre> <p>this is far more efficient than</p> <pre><code>// BAD CODE - don't do this. int value = 0; try { value = int.Parse(toParse); } catch {} </code></pre> <p>when you expect the input string <code>toParse</code> is probably not valid.</p> <h3>Summary</h3> <p>In many cases, the presence of any [out] parameters indicates a bad smell. Out parameters make the code harder to read, understand, and maintain. </p> http://stackoverflow.com/questions/1320447/can-this-api-be-improved/1325957#1325957 2 Answer by Robert Paulson for Can this API be improved? Robert Paulson 2009-08-25T03:50:22Z 2009-08-25T10:57:54Z <p><em>One</em> refactoring improvement I might make is:</p> <pre><code>public sealed class CompressOptions { public Format Format { get; set; } public Level Level { get; set; } } </code></pre> <p>You can then reduce to 2 methods per compression target. Using the Byte[] compressors as an example.</p> <pre><code>public static Byte[] Compress(Byte[] input) { Compress(input, new CompressOptions { Format=Zip, Level=Normal }); } public static Byte[] Compress(Byte[] input, CompressOptions options) { if( options == null ) throw new ArgumentNullException("options"); // compress-away } </code></pre> <p>Caller code can then use whatever options they want without you having to provide overrides for every conceivable scenario, which just seem to be duplicated once per scenario (Byte, strings, files).</p> <pre><code>Byte[] b = GetSomeData(); var result = Compress(b, new CompressOptions { Format=Gzip } ); var result2 = Compress(b, new CompressOptions { Level=Store } ); var result3 = Compress(b); </code></pre> <p>You might want to make CompressOptions immutable as well (i.e. once set, a value can't be changed)</p> <p>This design also allows the Compress Options to be passed into code that needs to compress something, without it needing to know what compression to use.</p> <p>For other compressors that may require more options, you could subclasses from CompressOptions (unseal it first though, and seal any leaf classes). There are a number of variations here.</p> http://stackoverflow.com/questions/1309804/jquery-click-event-on-blank-space/1309950#1309950 1 Answer by Robert Paulson for jQuery click event on blank space Robert Paulson 2009-08-21T03:23:06Z 2009-08-21T05:37:09Z <blockquote> <p>I'm making a little web app that is similar to Taskpaper (for the Mac) and I want it to mimic the application's behavior. More of a proof of concept than anything else</p> </blockquote> <p>In light of your comments, I wouldn't worry about the body specifically then. Instead wire up a div so that you can constrain the area you want to react to events. In the case where there's no other elements on the page, it's the same thing. </p> <p>For what it's worth, on any web page, your users would hate you if clicking any whitespace anywhere does something - it would be a poor UI experience.</p> http://stackoverflow.com/questions/1291095/one-million-records-in-log-file-for-a-online-shopping-website-find-distinct-ip-a/1291332#1291332 0 Answer by Robert Paulson for one million records in log file for a online shopping website. FInd distinct IP addresses Robert Paulson 2009-08-18T01:15:04Z 2009-08-18T01:15:04Z <p>Like other people write, there are just 2 hashtables. One for IP's and one for Products. You can count the occurrences for both, but you only care about them in the latter "Product Popularity"</p> <p>The key to hashing is having an efficient hash key, and hash efficiency means that the keys are evenly distributed. Poor key choice means that there will be many collisions, and performance of the hash table will suffer.</p> <p>Being lazy, I'd be tempted to create a <code>Dictionary&lt;IPAddress,int&gt;</code> and hope that the implementor of the IPAddress class created the hash key appropriately.</p> <pre><code>Dictionary&lt;IPAddress, int&gt; ipAddresses = new Dictionary&lt;IPAddress, int&gt;(); Dictionary&lt;string, int&gt; products = new Dictionary&lt;string,int&gt;(); </code></pre> <p>For the Products list, after you've setup the hash table, just use linq to select them out.</p> <pre><code>var sorted = from o in products orderby o.Value descending where o.Value &gt; 1 select new { ProductName = o.Key, Count = o.Value }; </code></pre> http://stackoverflow.com/questions/1277105/different-html-same-codebehind-same-controls/1283956#1283956 0 Answer by Robert Paulson for Different HTML, Same Codebehind & Same Controls Robert Paulson 2009-08-16T10:18:43Z 2009-08-16T10:18:43Z <p>I haven't found that the asp.net web forms page, master pages, or mvc is a very good fit for this sort of thing. It's like using a sledgehammer to crack open a peanut.</p> <p>It's very straightforward to create some custom xml tags and then merge them yourself. Save the template in the database and merge whenever you like, and without all the overhead of running asp.net. Use agile principles: create your tests first and work backwards and you'll have exactly what you need running in no time.</p> <p>The most basic is straight string replacement. If you need more, which it doesn't sound like you do, you could use xslt or just walk the DOM (ie store your templates as xhtml and have your own custom tag support).</p> <p>There's also an issue of deployment. It's a lot easier to update templates in a database than it is to upload files to a server. If you do go down the route of using web forms, make sure you understand the deployment scenario's before you .</p> <p><em>Warning</em>: html emails are tricky, and there's a lot of ugliness (from an html standpoint) to get them to render uniformly in email clients. Expect to code the html like it's 1999, and that's pretty much the state of html emails. Sad but true.</p> http://stackoverflow.com/questions/1262806/c-so-if-a-static-class-is-bad-practice-for-storing-global-state-info-whats-a/1263220#1263220 6 Answer by Robert Paulson for C# : So if a static class is bad practice for storing global state info, what's a good alternative that offers the same convenience? Robert Paulson 2009-08-11T22:03:20Z 2009-08-11T22:26:52Z <p>Forget Singletons and static data. That pattern of access is going to fail you at some time.</p> <p>Create your own custom IPrincipal and replace Thread.CurrentPrincipal with it at a point where login is appropriate. You typically keep the reference to the current IIdentity.</p> <p>In your routine where the user logs on, e.g. you have verified their credentials, attach your custom principal to the Thread.</p> <pre><code>IIdentity currentIdentity = System.Threading.Thread.CurrentPrincipal.Identity; System.Threading.Thread.CurrentPrincipal = new MyAppUser(1234,false,currentIdentity); </code></pre> <p>in ASP.Net you would also set the <code>HttpContext.Current.User</code> at the same time</p> <pre><code>public class MyAppUser : IPrincipal { private IIdentity _identity; private UserId { get; private set; } private IsAdmin { get; private set; } // perhaps use IsInRole MyAppUser(userId, isAdmin, iIdentity) { if( iIdentity == null ) throw new ArgumentNullException("iIdentity"); UserId = userId; IsAdmin = isAdmin; _identity = iIdentity; } #region IPrincipal Members public System.Security.Principal.IIdentity Identity { get { return _identity; } } // typically this stores a list of roles, // but this conforms with the OP question public bool IsInRole(string role) { if( "Admin".Equals(role) ) return IsAdmin; throw new ArgumentException("Role " + role + " is not supported"); } #endregion } </code></pre> <p>This is the preferred way to do it, and it's in the framework for a reason. This way you can get at the user in a standard way.</p> <p>We also do things like add properties if the user is anonymous (unknown) to support a scenario of mixed anonymous/logged-in authentication scenarios.</p> <p>Additionally:</p> <ul> <li>you can still use DI (Dependancy Injection) by injecting the Membership Service that retrieves / checks credentials. </li> <li>you can use the Repository pattern to also gain access to the current MyAppUser (although arguably it's just making the cast to MyAppUser for you, there can be benefits to this)</li> </ul> http://stackoverflow.com/questions/1252972/should-i-be-using-libraries-if-im-trying-to-learn-how-to-program/1253191#1253191 1 Answer by Robert Paulson for Should I be using libraries if I'm trying to learn how to program? Robert Paulson 2009-08-10T05:08:36Z 2009-08-10T05:08:36Z <blockquote> <p>If it's a core business function -- do it yourself, no matter what.</p> </blockquote> <p>ref: <a href="http://www.joelonsoftware.com/articles/fog0000000007.html" rel="nofollow">Joel Spolsky - In Defense of Not-Invented-Here Syndrome</a></p> <p><hr /></p> <p>Many answers here are good, but there's another aspect to consider with Libraries: Built-in <em>vs</em> 3rd Party</p> <p><em>Built-in</em>:<br /> By all means, use the built-in libraries until you come to a point they are not adding value. Then, add your own library (i.e. reusable code) that sits on top of them. The less code you write, the less code you maintain. </p> <p>If using a good library, you'll end up learning anyways. Only consider writing your own library when you've hit the wall of usefulness of the built-in libraries and you find yourself writing more awkward code to get around those deficiencies.</p> <p>Also, by using a built-in library, you're more likely to have code that's understood by your fellow developers. (They'll otherwise wonder why you needed to re-implement string splitting, sorting, searching, etc)</p> <p><em>3rd party</em>:<br /> The bar to using a 3rd party library should be much higher. Ideally you want to minimize the number of external dependencies in a project. Also, 3rd party libraries vary greatly in quality that's not immediately apparent, and you need to invest time to evaluate them. They usually have an added purchase cost (sometimes per-developer), deployment costs (i.e. per server), and cost more in terms of increased regression testing you must perform when they come out with a new version, or fix a bug, or just change things around. A built-in library has a large percentage of this regression testing done for you and breaking changes are less common with built-in libraries. </p> <p>Anecdotally, after evaluation, I've found that many 3rd party libraries don't appear to do much more than I can do myself, and they're useless unless their design focus matches my needs 100%. Sometimes all they do is lock you into their proprietary ways, especially if you only need the 1 or 2 bits of functionality.</p> <p>When using a 3rd party library, it's often a good approach to utilize an adapter pattern if possible to reduce the amount of coupling from 3rd party code to your own code.</p> <p><hr /></p> <p>On the one hand, Not-Invented-Here syndrome causes many bugs to be introduced (arrogant programmers figure they can do it better, only to realize later they've essentially reproduced the same that the library offers, but with fewer features, more bugs, and this isn't even taking into account the development cost of unnecessary code). </p> <p>On the other hand, using libraries can speed your delivery and time to market.</p> <p>The trick is to recognize what your core competencies are and choose accordingly.</p> <p>Don't forget to check the web for how well a particular library performs or what other people think. e.g. jQuery (3rd party, javascript, free) and Linq (built-in, .net) are libraries that are invaluable when one looks at the huge productivity gains made when utilizing them.</p> http://stackoverflow.com/questions/1252431/using-javascript-to-fade-a-thumbnail-image-from-grayscale-to-to-color/1252463#1252463 0 Answer by Robert Paulson for Using javascript to fade a thumbnail image from grayscale to to color Robert Paulson 2009-08-09T22:18:57Z 2009-08-09T22:18:57Z <p>Do you really want to fade, or just to swap? </p> <p>Typically the swap is done via CSS</p> <pre><code>&lt;a class="btn"&gt;&lt;/a&gt; </code></pre> <p>and the CSS </p> <pre><code>a.btn { background: url(../images/button-image.png) no-repeat 0 0; width: 110px; height: 16px; margin: 10px 0 0; } a.btn:hover { background-position: 0 -16px; } </code></pre> <p>In this case there's a little performance improvement going on where button-image contains both images vertically stacked, and the css is sliding the background image around, but it's the same idea. It's a performance enhancement because the browser only needs to download 1 image, not 2.</p> http://stackoverflow.com/questions/1252354/cvs-for-mac-osx/1252397#1252397 3 Answer by Robert Paulson for cvs for Mac OSX Robert Paulson 2009-08-09T21:50:33Z 2009-08-09T21:55:42Z <p>Not sure what happened to the other posts:</p> <ul> <li><a href="http://developer.apple.com/internet/opensource/cvsoverview.html" rel="nofollow">Version Control with CVS on Mac OSX</a></li> <li>Xcode is on the DVD that came with your mac. </li> </ul> <blockquote> <ol> <li>Boot into a partition with Mac OS X v10.5 (Leopard) installed.<br /></li> <li>Insert the Mac OS X v10.5 (Leopard) Install DVD.<br /></li> <li>Double-click the file XcodeTools.mpkg, located inside the directory Optional Installs/Xcode Tools. <br />...</li> </ol> </blockquote> <p>ref Apple <a href="http://developer.apple.com/documentation/Xcode/Conceptual/XcodeCoexistence/Contents/Resources/en.lproj/Basics/Basics.html#//apple%5Fref/doc/uid/TP40006599-CH4-SW2" rel="nofollow">Xcode Installation Guide</a></p> http://stackoverflow.com/questions/1250588/why-doesnt-the-union-function-in-linq-remove-duplicate-entries/1250645#1250645 5 Answer by Robert Paulson for Why doesn't the Union function in LINQ remove duplicate entries? Robert Paulson 2009-08-09T04:39:41Z 2009-08-09T21:39:46Z <p>Linq <code>Union</code> does perform as you want it to. Ensure your input files are correct (e.g. one of the lines may contain a space before the newline) or <code>Trim()</code> the strings after splitting?</p> <pre><code>var list1 = new[] { "a", "s", "d" }; var list2 = new[] { "d", "a", "f", "123" }; var union = list1.Union(list2); union.Dump(); // this is a LinqPad method </code></pre> <p>In <a href="http://www.linqpad.net/" rel="nofollow">linqpad</a>, the result is <code>{"a", "s", "d", "f", "123" }</code></p> http://stackoverflow.com/questions/1209965/why-all-the-functions-from-object-oriented-language-allows-to-return-only-one-val/1210023#1210023 0 Answer by Robert Paulson for Why all the functions from object oriented language allows to return only one value (General) Robert Paulson 2009-07-30T23:58:14Z 2009-07-30T23:58:14Z <p>To return multiple parameters, you return an single object that contains both of those parameters.</p> <pre><code>public MyResult GetResult(x) { return new MyResult { Squared = Math.Pow(x,2), Cubed = Math.Pow(x,3) }; } </code></pre> <p>For some languages you can create anonymous types on the fly. For others you have to specify a return object as a concrete class. One observation with OO is you do end up with a lot of little classes.</p> <p>The syntactic niceties of python (see @Cowan's answer) are up to the language designer. The compiler / runtime could creating an anonymous class to hold the result for you, even in a strongly typed environment like the .net CLR.</p> <p>Yes it can be easier to read in some circumstances, and yes it would be nice. However, if you read <a href="http://blogs.msdn.com/ericlippert/" rel="nofollow">Eric Lippert's blog</a>, you'll often read dialogue's and hear him go on about how there are many nice features that could be implemented, but there's a lot of effort that goes into every feature, and some things just don't make the cut because in the end they can't be justified.</p> http://stackoverflow.com/questions/1209054/how-does-the-nerddinner-examples-dinner-getruleviolations-function-return-a-list/1209121#1209121 2 Answer by Robert Paulson for How does the NerdDinner example's Dinner.GetRuleViolations function return a list? Robert Paulson 2009-07-30T20:24:14Z 2009-07-30T20:24:14Z <p>See <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx" rel="nofollow">yield (C# reference)</a></p> <blockquote> <p>The yield keyword uses what's known as lazy evaluation. What this means practically is that anything following a "yield return" will not be evaluated until it is requested from the enumerator.</p> </blockquote> <p>Also have a look at Eric Lippert's blog on Iterator Blocks.<br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/09/iterator-blocks-part-one.aspx" rel="nofollow">Part 1</a><br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/13/iterator-blocks-part-two-why-no-ref-or-out-parameters.aspx" rel="nofollow">Part 2 - Why No Ref or Out Parameters</a><br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/16/iterator-blocks-part-three-why-no-yield-in-finally.aspx" rel="nofollow">Part 3 - Why No yield in finally</a><br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/16/iterator-blocks-part-three-why-no-yield-in-finally.aspx" rel="nofollow">Part 4 - Why No yield in catch</a><br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/23/iterator-blocks-part-five-push-vs-pull.aspx" rel="nofollow">Part 5 - Push vs Pull</a><br/> <a href="http://blogs.msdn.com/ericlippert/archive/2009/07/27/iterator-blocks-part-six-why-no-unsafe-code.aspx" rel="nofollow">Part 6 - Why no unsafe code</a><br/></p> http://stackoverflow.com/questions/1204545/is-using-reflection-a-design-smell/1204713#1204713 6 Answer by Robert Paulson for Is using reflection a design smell? Robert Paulson 2009-07-30T06:02:40Z 2009-07-30T06:02:40Z <p>Once had a program that processed files (how generic is that description)</p> <p>By using reflection all you had to do was drop in a DLL into a folder, the app would pick that up and use reflection to look for classes that implemented a certain interface and check some attributes. There was no need for config files. Just drop and go, which was handy for a production system as we didn't require any downtime.</p> <p>As with most solutions. there are a number of other ways to achieve the same purpose, but reflection did make this quite easy.</p> http://stackoverflow.com/questions/1204164/string-format-consider-locale-or-not/1204218#1204218 0 Answer by Robert Paulson for String.Format consider locale or not? Robert Paulson 2009-07-30T02:59:25Z 2009-07-30T02:59:25Z <p>This works.</p> <pre><code>IFormatProvider iFormatProvider = new System.Globalization.CultureInfo("es-ES"); string s = value.ToString("#,##0.000", iFormatProvider); string s2 = string.Format(iFormatProvider, "{0:#,##0.000}", val) </code></pre> <p>Note that the <code>,</code> and <code>.</code> are using a 'standard' en-US style, but <code>.ToString()</code> and <code>string.Format()</code> with a format provider does the right thing.</p> http://stackoverflow.com/questions/295731/easy-way-to-catch-all-unhandled-exceptions-in-c-net/1197753#1197753 0 Answer by Robert Paulson for Easy way to catch all unhandled exceptions in C#.NET Robert Paulson 2009-07-29T02:14:06Z 2009-07-29T05:48:44Z <p>One short answer is to use (Anonymous) delegate methods with common handling code when the delegate is invoked.</p> <p><em>Background</em>: If you have targeted the weak points, or have some boilerplate error handling code you need to universally apply to a particular class of problem, and you don't want to write the same try..catch for every invocation location, (such as updating a specific control on every page, etc).</p> <p><em>Case study</em>: A pain point is web forms and saving data to the database. We have a control that displays the saved status to the user, and we wanted to have common error handling code as well as common display without copy-pasting-reuse in every page. Also, each page did it's own thing in it's own way, so the only really common part of the code was the error handling and display. </p> <p>Now, before being slammed, this is no replacement for a data-access layer and data access code. That's all still assumed to exist, good n-tier separation, etc. This code is UI-layer specific to allow us to write clean UI code and not repeat ourselves. We're big believers in not quashing exceptions, but certain exceptions shouldn't necessitate the user getting a generic error page and losing their work. There will be sql timeouts, servers go down, deadlocks, etc.</p> <p><em>A Solution</em>: The way we did it was to pass an anonymous delegate to a method on a custom control and essentially inject the try block using anonymous delegates.</p> <pre><code>// normal form code. private void Save() { // you can do stuff before and after. normal scoping rules apply saveControl.InvokeSave( delegate { // everywhere the save control is used, this code is different // but the class of errors and the stage we are catching them at // is the same DataContext.SomeStoredProcedure(); DataContext.SomeOtherStoredProcedure(); DataContext.SubmitChanges(); }); } </code></pre> <p>The SaveControl itself has the method like:</p> <pre><code>public delegate void SaveControlDelegate(); public void InvokeSave(SaveControlDelegate saveControlDelegate) { // I've changed the code from our code. // You'll have to make up your own logic. // this just gives an idea of common handling. retryButton.Visible = false; try { saveControlDelegate.Invoke(); } catch (SqlTimeoutException ex) { // perform other logic here. statusLabel.Text = "The server took too long to respond."; retryButton.Visible = true; LogSqlTimeoutOnSave(ex); } // catch other exceptions as necessary. i.e. // detect deadlocks catch (Exception ex) { statusLabel.Text = "An unknown Error occurred"; LogGenericExceptionOnSave(ex); } SetSavedStatus(); } </code></pre> <p><hr /></p> <ul> <li>There are other ways to achieve this (e.g. common base class, intefaces), but in our case this had the best fit. </li> <li>This isn't a replacement to a great tool such as <a href="http://code.google.com/p/elmah/" rel="nofollow">Elmah</a> for logging all unhandled exceptions. This is a targeted approach to handling certain exceptions in a standard manner.</li> </ul> http://stackoverflow.com/questions/847501/reconstituting-domain-objects-from-database-identity-problem/1186073#1186073 1 Answer by Robert Paulson for Reconstituting domain objects from database: identity problem Robert Paulson 2009-07-27T01:32:55Z 2009-07-27T01:32:55Z <p>The DataContext in Linq-To-Sql supports the <a href="http://martinfowler.com/eaaCatalog/identityMap.html" rel="nofollow">Identity Map</a> concept out of the box and should be caching the objects you retrieve. The objects will only be different if you are <em>not</em> using the same DataContext for each GetById() operation. </p> <p>Linq to Sql objects aren't really valid outside of the lifetime of the DataContext. You may find Rick Strahl's <a href="http://www.west-wind.com/weblog/posts/246222.aspx" rel="nofollow">Linq to SQL DataContext Lifetime Management</a> a good background read.</p> <p>Also, the ORM is not responsible for logic in the domain. It's not going to disallow your example <code>Move</code> operation. That's up for the domain to decide what that means. Does it ignore it? or is it an error? It's your domain logic, and that needs to be implemented at the service boundary you are creating.</p> <p>However, Linq-To-Sql does know when an object changes, and from what I've looked at, it won't record the change if you are re-assigning the same value. e.g. if Item.LocationID = 12, setting the locationID to 12 again won't trigger an update when <code>SubmitChanges()</code> is called. </p> <p>Based on the example given, I'd be tempted to return early without ever loading an object if the source and destination are the same.</p> <pre><code>public void Move(string sourceLocationId, destinationLocationId, itemId) { if( sourceLocationId == destinationLocationId ) return; using( DataContext ctx = new DataContext() ) { Item item = ctx.Items.First( o =&gt; o.ItemID == itemId ); Location destination = ctx.Locations.First( o =&gt; o.LocationID == destinationLocationID ); item.Location = destination; ctx.SubmitChanges(); } } </code></pre> <p><hr /></p> <p>Another small point, which may or may not be applicable, is you should make your interfaces as chunky as possible. e.g. If you're typically going to perform 10 move operations at once, it's better to call 1 service method to perform all 10 operations at once, rather than 1 operation at a time. ref: <a href="http://www.neovolve.com/page/WCF-service-contract-design.aspx" rel="nofollow">chunky vs chatty</a></p> http://stackoverflow.com/questions/1185626/why-does-many-to-many-data-structure-require-two-additional-tables/1185682#1185682 1 Answer by Robert Paulson for Why does many-to-many data structure require two additional tables? Robert Paulson 2009-07-26T22:03:29Z 2009-07-26T22:42:31Z <p>Just to add to what others say (I wont repeat their comments)</p> <p>In my experience, it's not typically called a help table but a join table. Normally you're dealing with something more complicated than a simple keyword. The 'extra' table models the relationship between the 2 other entities.</p> <p>Another example might be I have a marketing campaign that goes to many recipient contacts. Neither of these 2 entities is dependent on the other. Any particular campaign will have many contacts, and any contact may be sent more than one campaign. The join table in this case models the history of who was sent which campaign.</p> <pre><code>Campaign - CampaignID (PK) - other columns Contact - ContactID (PK) - other columns CampaignContact - CampaignContactID (PK) - CampaignID (FK) - ContactID (FK) </code></pre> <p>This is quite different from the 1-many relationship (sometimes called a master-detail relationship). Here a canonical example is Invoice -> InvoiceItems. The invoice items link specifically to one and only one parent invoice.</p> <pre><code>Invoice - InvoiceID (PK) - other columns InvoiceItem - InvoiceItemID (PK) - InvoiceID (FK) - other columns </code></pre> http://stackoverflow.com/questions/1156608/feedback-on-code-to-serialize-deserialize-and-save-image/1156774#1156774 0 Answer by Robert Paulson for Feedback on code to Serialize, Deserialize and Save Image Robert Paulson 2009-07-21T00:50:56Z 2009-07-21T00:50:56Z <p>As John Saunder says, serializing and deserializing are more than just reading the raw data from a file. See Wiki on <a href="http://en.wikipedia.org/wiki/Serialization" rel="nofollow">Serialization</a></p> <p>For images in .net, you don't need to use anything more than the provided framework methods (most of the time)</p> <p>So Loading an Image (De-Serialization) in .net is.</p> <pre><code>using System.Drawing.Image; Image test; test = Image.FromFile(@"C:\myfile.jpg") test = Image.FromStream(myStream); // or you can load from an existing stream </code></pre> <p>Likewise, Saving the image (Serialization) is:</p> <pre><code>test.Save(@"C:\anotherFile.jpg", System.Drawing.Imaging.ImageFormat.Jpeg); </code></pre> <p><hr /></p> <p>These are the basics of loading and saving an image in .net. If you have a more specific scenario, ask another question.</p> http://stackoverflow.com/questions/1140203/how-to-check-existence-of-a-sql-server-object-and-drop-it/1140442#1140442 1 Answer by Robert Paulson for How to check existence of a sql server object and drop it? Robert Paulson 2009-07-16T21:31:41Z 2009-07-16T21:37:32Z <p>The template, from Visual Studio 2008 <code>Add -&gt; Stored Procedure Script</code> is</p> <pre><code>IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'Stored_Procedure_Name') BEGIN DROP Procedure Stored_Procedure_Name END GO CREATE Procedure Stored_Procedure_Name /* ( @parameter1 int = 5, @parameter2 datatype OUTPUT ) */ AS GO /* GRANT EXEC ON Stored_Procedure_Name TO PUBLIC GO */ </code></pre> <p>For a Procedure, Sql Server Management Studio gives the following script to drop</p> <pre><code>IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[usp_DeleteXyz]') AND type in (N'P', N'PC')) DROP PROCEDURE [dbo].[usp_DeleteXyz] </code></pre> <p>likewise for a Function it's generated script is</p> <pre><code>IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[udf_GetXyz]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT')) DROP FUNCTION [dbo].[udf_GetXyz] </code></pre> <p>I've mostly seen the latter forms (2-line versions) in most codebases I've worked on, and there's no need to declare a variable.</p> http://stackoverflow.com/questions/321299/what-is-the-reason-not-to-use-select/322216#322216 38 Answer by Robert Paulson for What is the reason not to use select * ? Robert Paulson 2008-11-26T21:25:13Z 2009-07-13T21:24:17Z <p>The essence of the quote of not prematurely optimizing is to go for simple and straightforward code and <strong>then</strong> use a profiler to point out the hot spots, which you can then optimize to be efficient. </p> <p>When you use select * you're make it impossible to profile, therefore you're not writing clear &amp; straightforward code and you are going against the spirit of the quote. <code>select *</code> is an anti-pattern.</p> <p><hr /></p> <p>So selecting columns is not a premature optimization. A few things off the top of my head ....</p> <ol> <li>If you specify columns in a sql statement, the sql execution engine will error if that column is removed from the table and the query is executed.</li> <li>You can more easily scan code where that column is being used.</li> <li>You should always write queries to bring back the least amount of information.</li> <li>As others mention if you use ordinal column access you should never use select *</li> <li>If your sql joins tables, select * gives you all columns from all tables in the join</li> </ol> <p>The corollary is that using <code>select *</code> ...</p> <ol> <li>The columns used by the application is opaque</li> <li>DBA's and their query profilers are unable to help your app's poor performance</li> <li>The code is more brittle when changes occur</li> <li>Your database and network are suffering because they are bringing back too much data (I/O)</li> <li>Database engine optimizations are minimal as you're bringing back all data regardless (logical).</li> </ol> <p><hr /></p> <p>Writing correct Sql is just as easy as writing <code>Select *</code>. So the real lazy person writes proper sql because they don't want to revisit the code and try to remember what they were doing when they did it. They don't want to explain to the DBA's about every bit of code. They don't want to explain to their clients why the application runs like a dog.</p> http://stackoverflow.com/questions/1101294/can-a-method-be-overriden-with-a-lambda-function/1101355#1101355 0 Answer by Robert Paulson for Can a method be overriden with a lambda function Robert Paulson 2009-07-09T01:11:41Z 2009-07-09T01:11:41Z <p>Not directly, but with a little code it's doable.</p> <pre><code>public class MyBase { public virtual int Convert(string s) { return System.Convert.ToInt32(s); } } public class Derived : MyBase { public Func&lt;string, int&gt; ConvertFunc { get; set; } public override int Convert(string s) { if (ConvertFunc != null) return ConvertFunc(s); return base.Convert(s); } } </code></pre> <p>then you could have code </p> <pre><code>Derived d = new Derived(); int resultBase = d.Convert("1234"); d.ConvertFunc = (o) =&gt; { return -1 * Convert.ToInt32(o); }; int resultCustom = d.Convert("1234"); </code></pre> http://stackoverflow.com/questions/1087777/is-response-end-considered-harmful/1095158#1095158 0 Answer by Robert Paulson for Is Response.End() considered harmful ? Robert Paulson 2009-07-07T22:13:57Z 2009-07-08T21:14:49Z <p>I disagree with the statement "<em>Response.End is harmful</em>". It's definitely not harmful. Response.End does what it says; it ends execution of the page. Using reflector to see how it was implemented should only be viewed as instructive.</p> <p><hr /></p> <p>My 2cent Recommendation<br/> <strong>AVOID</strong> using <code>Response.End()</code> as control flow.<br /> <strong>DO</strong> use <code>Response.End()</code> if you need to stop request execution and be aware that (typically)* no code will execute past that point.</p> <p><hr /></p> <p>* <code>Response.End()</code> and <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx" rel="nofollow">ThreadAbortException</a>s.</p> <p><code>Response.End()</code> throws a ThreadAbortException as part of it's current implementation (as noted by OP). </p> <blockquote> <p>ThreadAbortException is a special exception that can be caught, but it will automatically be raised again at the end of the catch block.</p> </blockquote> <p>To see how to write code that must deal with ThreadAbortExceptions, see @Mehrdad's reply to SO <a href="http://stackoverflow.com/questions/353270/how-can-i-detect-a-threadabortexception-in-a-finally-block-net/353279#353279">How can I detect a threadabortexception in a finally block</a> where he references <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.runtimehelpers.executecodewithguaranteedcleanup.aspx" rel="nofollow">RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup Method</a> and <a href="http://msdn.microsoft.com/en-us/library/ms228973.aspx" rel="nofollow">Constrained Execution Regions</a></p> <p><hr /></p> <p>The <a href="http://west-wind.com/weblog/posts/368975.aspx" rel="nofollow">Rick Strahl article</a> mentioned is instructive, and make sure to read the comments as well. Note that Strahl's issue was specific. He wanted to get the data to the client (an image) and then process hit-tracking database update that didn't slow down the serving of the image, which made his the problem of doing something after Response.End had been called.</p> http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c/1806325#1806325 Comment by Robert Paulson on What is the proper object relationship? (C#) Robert Paulson 2009-11-27T01:47:16Z 2009-11-27T01:47:16Z Yes Linq (to Sql) can have performance issues, but I wouldn't dismiss it out of hand. We use it all the time, and yes you have to be careful because, just like sql, you can write some shockingly performance poor queries. Linq itself though is fantastic. http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c/1794472#1794472 Comment by Robert Paulson on What is the proper object relationship? (C#) Robert Paulson 2009-11-26T23:56:56Z 2009-11-26T23:56:56Z Your answer makes it seem m:n relationships are hard in OO. They're not. My point RE code was that the (premature) optimisations you have attempted are tangential to the discussion at hand. OP's question was not &quot;What are possible techniques to avoid circular references and prevent premature garbage collection&quot;. I realize SO is terrible for more than 5 lines of code, but: 1) the code quality isn't great 2) your code really detracted from your other comments and 3) what the code was doing didn't flow logically from the text you had already written. http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c Comment by Robert Paulson on What is the proper object relationship? (C#) Robert Paulson 2009-11-25T20:50:25Z 2009-11-25T20:50:25Z I would recommend looking at Patterns of Enterprise Architecture by Martin Fowler. It's a great book and cover a lot of what you're asking about. http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c/1794472#1794472 Comment by Robert Paulson on What is the proper object relationship? (C#) Robert Paulson 2009-11-25T20:49:18Z 2009-11-25T20:49:18Z OO systems have no trouble implementing many-many relationships. Your answer is good up until the code. http://stackoverflow.com/questions/151051/when-should-i-use-gc-suppressfinalize/151244#151244 Comment by Robert Paulson on When should I use GC.SuppressFinalize()? Robert Paulson 2009-11-13T04:03:45Z 2009-11-13T04:03:45Z @Eduardo, yes you can absolutely. The recommended Dispose method is <code>protected virtual</code> for this reason, and follows what is called the NVPI pattern (Non Virtual Public Interface). Just make sure you document how subclasses should implement IDisposable and you're set. http://stackoverflow.com/questions/1695155/how-to-timeout-a-user-in-asp-net-formsauthentication/1698510#1698510 Comment by Robert Paulson on How to timeout a user in asp.net formsAuthentication Robert Paulson 2009-11-13T03:33:36Z 2009-11-13T03:33:36Z @chobo2, you can't have sliding and say &quot;but only for 2 weeks max&quot;. Also, are you closing your browser? If you don't have the authentication cookie set to be persistent, the cookie itself will not be saved to disk, so you will not be logged in when you reopen your browser. See also msdn: <a href="http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication.slidingexpiration.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1717460/working-with-code-held-in-subversion-from-a-remote-computer/1717483#1717483 Comment by Robert Paulson on Working with code held in Subversion from a remote computer Robert Paulson 2009-11-11T23:19:28Z 2009-11-11T23:19:28Z If you're going to do it this way, I'd recommend using something like robocopy to ''mirror'' the directories work_pc -&gt; portable drive -&gt; home_pc and then home_pc -&gt; portable drive -&gt; work_pc. I do this all the time and haven't had any issues, but I did make some batch files to automate the process a little and reduce the chance of me mirroring in the wrong direction. http://stackoverflow.com/questions/1705198/example-sites-with-broken-security-certs Comment by Robert Paulson on Example sites with broken security certs Robert Paulson 2009-11-10T02:58:08Z 2009-11-10T02:58:08Z There are heaps of programs to test website security <a href="http://www.softwareqatest.com/qatweb1.html" rel="nofollow">softwareqatest.com/qatweb1.html</a> . Maybe this question should be on serverfault instead. http://stackoverflow.com/questions/1704195/help-me-to-parse-this-input-in-c Comment by Robert Paulson on Help me to parse this input in C Robert Paulson 2009-11-09T22:05:51Z 2009-11-09T22:05:51Z It's called string tokenizing, and you can find a tutorial <a href="http://computerprogramming.suite101.com/article.cfm/string_tokenizing_in_c_programming" rel="nofollow">computerprogramming.suite101.com/article.cfm/&hellip;</a> http://stackoverflow.com/questions/1698829/c-saving-a-small-file-as-a-string Comment by Robert Paulson on C - Saving a Small File As a String Robert Paulson 2009-11-09T02:58:31Z 2009-11-09T02:58:31Z google 'c file tutorial' first hit: <a href="http://www.cprogramming.com/tutorial/cfileio.html" rel="nofollow">cprogramming.com/tutorial/cfileio.html</a> http://stackoverflow.com/questions/1695155/how-to-timeout-a-user-in-asp-net-formsauthentication/1698510#1698510 Comment by Robert Paulson on How to timeout a user in asp.net formsAuthentication Robert Paulson 2009-11-09T02:22:52Z 2009-11-09T02:22:52Z I've updated my answer with another link to another answer about ASP.NET and sessions / authentication. Please read the referenced info, especially the links and tutorial video's. http://stackoverflow.com/questions/1698143/robust-string-reverse Comment by Robert Paulson on robust string reverse Robert Paulson 2009-11-08T23:19:23Z 2009-11-08T23:19:23Z A tip for writing interview code is to make code as readable as possible. Pretend they're going to hire you not on some l33t tricks you manage to stuff in there, but on sound engineering discipline like good naming, readable formatting, and the odd comment. Interview questions are meant to show you're not a complete liar and can write code that other people can maintain. You'll never be hired because you managed to save 1 char. http://stackoverflow.com/questions/1698143/robust-string-reverse Comment by Robert Paulson on robust string reverse Robert Paulson 2009-11-08T23:07:55Z 2009-11-08T23:07:55Z Should rename this question to be 'An implementation of a simple in-place Ascii string reversal in C'. Don't try this on a Unicode string btw. <a href="http://wiki.answers.com/Q/Reverse_a_string_in_C_language" rel="nofollow">wiki.answers.com/Q/Reverse_a_string_in_C_language/&hellip;</a> http://stackoverflow.com/questions/160776/how-would-you-compare-ip-address/160961#160961 Comment by Robert Paulson on How would you compare IP address? Robert Paulson 2009-10-28T21:51:01Z 2009-10-28T21:51:01Z It was anecdotal response of the KISS principle, and storing an IP address as a string was sufficient for the purpose at hand. http://stackoverflow.com/questions/1634833/insert-a-row-only-if-a-row-does-not-exist/1634928#1634928 Comment by Robert Paulson on Insert a Row Only if a Row does not Exist Robert Paulson 2009-10-28T03:03:00Z 2009-10-28T03:03:00Z it looks like sql server tag was added after this answer was posted.