User snogfish - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:10:01Z http://stackoverflow.com/feeds/user/13863 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340623/programming-to-an-interface-how-to-decide-where-its-needed/345299#345299 1 Answer by snogfish for Programming to an interface. How to decide where its needed? snogfish 2008-12-05T21:53:23Z 2008-12-05T22:49:58Z <p>Take a browse through the book <strong>Head-First Design Patterns</strong>... you'll see good arguments for using interfaces that have nothing to do with TDD or polymorphism.</p> <p>Interfaces allow you to change an object's behavior at runtime... Think of places where you'd need a handler for a particular behavior, but might not know what behavior is needed until runtime. In the case of computing expenses for employees... Managers might have a higher allowance for 'entertainment' expenses than a regular employee. </p> <p>If your Employee object has a reference to an IExpenseCalculator interface, you can assign it a manager's calculator or an employee's calculator at runtime. Calling Employee.GetExpenses() will give you a differently calculated result for a manager than for a regular employee. Internally, the code would look like this:</p> <pre><code>public class Employee { private IExpenseCalculator expenses; public ExpenseSheet GetExpenses() { return expenses.CalcExpenses(); } } </code></pre> <p>This example assumes that 'expenses' is exposed as a property, and that IExpenseCalculator has a method for CalcExpenses().</p> <p>Interfaces are also closely tied to the concept of object factories... think database layer. When you've configured your data layer as a factory, you can create objects to connect to Sql Server, Oracle, or MySql dynamically, at runtime, based on configuration settings. But the client needs a concrete handle to the database layer object... enter Interfaces.</p> <p>Interfaces are a powerful tool, one that is often misused. Using them properly will take a shift in your way of thinking, but can help your application structure tremendously.</p> http://stackoverflow.com/questions/342946/managing-database-connectivity-with-ado-net/345093#345093 1 Answer by snogfish for Managing database connectivity with ADO.NET snogfish 2008-12-05T20:50:23Z 2008-12-05T20:50:23Z <p>From the MSDN (<a href="http://msdn.microsoft.com/en-us/library/8xx3tyca.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/8xx3tyca.aspx</a>):</p> <p><em>When a SqlConnection object is requested, it is obtained from the pool if a usable connection is available. To be usable, a connection must be unused, <strong>have a matching transaction context or be unassociated with any transaction context</strong>, and have a valid link to the server. <br><br> The connection pooler satisfies requests for connections by reallocating connections as they are released back into the pool. If the maximum pool size has been reached and no usable connection is available, the request is queued. The pooler then tries to reclaim any connections until the time-out is reached (the default is 15 seconds). If the pooler cannot satisfy the request before the connection times out, <strong>an exception is thrown</strong>.</em></p> <p><strong>Translation:</strong> Check your transaction contexts... if you have a pool size of 10 connections, and 10 connections have been created under different transactions, you're screwed.</p> <p><strong><em>Note that a severed connection can be detected only after attempting to communicate with the server</strong>. If a connection is found that is no longer connected to the server, it is marked as invalid. Invalid connections are removed from the connection pool only when they are closed or reclaimed.<br><br> If a connection exists to a server that has disappeared, <strong>this connection can be drawn from the pool even if the connection pooler has not detected the severed connection</strong> and marked it as invalid. This is the case because the overhead of checking that the connection is still valid would eliminate the benefits of having a pooler by causing another round trip to the server to occur. When this occurs, <strong>the first attempt to use the connection will detect that the connection has been severed, and an exception is thrown</strong>.</em></p> <p><strong>Translation:</strong> You can't really rely on a connection to be connected? The article doesn't really explain how to handle this...</p> <p>You could try manually clearing the pool occasionally using ClearAllPools and ClearPool, but this still sounds like a band-aid to me, makes me cringe.</p> <p>The article also discusses Security Contexts, saying: <br> *After a SQL Server application role has been activated by calling the sp_setapprole system stored procedure, the security context of that connection cannot be reset. However, if pooling is enabled, the connection is returned to the pool, and an error occurs when the pooled connection is reused.*</p> <p>I'm starting to wonder why I use connection pooling...</p> <p>And finally:<br> <strong><em>Pool Fragmentation Due to Integrated Security</strong><br> Connections are pooled according to the connection string plus the user identity. Therefore, if you use Basic authentication or Windows Authentication on the Web site and an integrated security login, you get one pool per user. Although this improves the performance of subsequent database requests for a single user, that user cannot take advantage of connections made by other users. It also results in at least one connection per user to the database server.</em></p> <p>So if you're using integrated security on a web app, you can fill up your connection pool if you have enough users.</p> <p>Without knowing more specifics on your application, it's hard to zoom in on what might be tripping you up, but hopefully this gives you some ideas where to look.</p> <p>HTH</p> http://stackoverflow.com/questions/344657/implementing-a-tree-from-scratch/344862#344862 1 Answer by snogfish for Implementing a tree from scratch snogfish 2008-12-05T19:26:50Z 2008-12-05T19:26:50Z <p>What you describe isn't <em>quite</em> a radix tree... in a radix tree, you can have more than one character in a node, and there is no upper bound on the number of child nodes. </p> <p>What you're describing sounds more limited by the alphabet... each node can be a-z, and can be followed by another letter, a-z, etc. The distinction is critical to the data structure you choose to hold your next-node pointers.</p> <p>In the tree you describe, the easiest structure to use might be a simple array of pointers... all you need to do is convert the character (e.g. 'A') to its ascii value ('65'), and subtract the starting offset (65) to determine which 'next node' you want. Takes up more space, but very fast insert and traversal.</p> <p>In a true radix tree, you could have 3, 4, 78, or 0 child nodes, and your 'next node' list will have the overhead of sorting, inserting, and deleting. Much slower.</p> <p>I can't speak to Java, but if I were implementing a custom radix tree in C#, I'd use one of the built-in .NET collections. Writing your own sorted list isn't really helping you learn the tree concepts, and the built-in optimizations of the .NET collections are tough to beat. Then, your code is simple: Look up your next node; if exists, grab it and go; if not, add it to the next-node collection.</p> <p>Which collection you use depends on what exactly you're implementing through the tree... every type of tree involves tradeoffs between insertion time, lookup time, etc. The choices you make depend on what is most important to the application, not the tree.</p> <p>Make sense?</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/77706#77706 39 Answer by snogfish for What is the single most effective thing you did to improve your programming skills? snogfish 2008-09-16T22:04:01Z 2008-09-16T22:04:01Z <p>Taught myself assembly. Did it on an old 6502 chip when I was 13? 14? Too long ago. But I can't think of anything that will improve your development more than getting down to the bit level. </p> <p>Learning assembly gives you insight into the way computers 'think' on a fundamentally lower level, and the elegance at this level is surprising... there are no wasted motions, no 'disposing' of data. Developing at this level will teach you efficiency and hone your critical thinking and logic skills. It will also cure you of any sloppy habits you have fairly quickly!</p> <p>The 65xx chip had three registers (the accumulator, X, and Y) and no machine level instructions for multiply or divide. I remember coding a routine to calculate battle damage, looking through the book, and suddenly realizing that I would have to write my own math library. Spent a couple of weeks scribbling 1's and 0's all over my notebook, trying to figure out what 'divide' and 'decimal places' really meant. </p> <p>I've studied C++, pascal, .NET, many others since then... but none of them have taught me as much, intrigued me as much, or left me with the sense of 'wow' that assembly on my old commodore did.</p>