User chris - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:11:37Zhttp://stackoverflow.com/feeds/user/18907http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784928/c-four-patterns-in-asynchronous-execution/1785014#17850141Answer by chris for C# -Four Patterns in Asynchronous executionchris2009-11-23T18:20:22Z2009-11-23T18:20:22Z<pre><code>while (!ar.IsCompleted)
{
Console.WriteLine("...Climbing yet to be completed.....");
Thread.Sleep(200);
}
</code></pre>
<p>That's classic polling. - Check, sleep, check again,</p>
http://stackoverflow.com/questions/1776256/net-strings-and-reference-type-parameters/1776278#17762782Answer by chris for .NET strings and reference type parameterschris2009-11-21T18:20:34Z2009-11-21T18:20:34Z<p>Strings are immutable - once created they cannot be changed.</p>
<p>What happens in appendBar is:</p>
<p>x= x+"Bar"</p>
<p>Creates a new string (with the new value) and sets the reference x to it. (Actual implementation is compiler dependent)</p>
<p>But the reference s in the calling code still points to the original string object.</p>
http://stackoverflow.com/questions/1767048/if-c-is-type-safe-why-is-this-possible-without-casting/1767075#17670751Answer by chris for If C# is type safe why is this possible without casting?chris2009-11-19T22:35:54Z2009-11-19T22:35:54Z<p>char is an integer type (16-bits) and holds the unicode of the character.</p>
<p>This implicitly casts to an int in the same way byte will implicitly cast to an int.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1758995#17589950Answer by chris for What's your most controversial programming opinion?chris2009-11-18T20:51:45Z2009-11-18T20:51:45Z<p><strong>Macros</strong>, <strong>Preprocessor</strong> instructions and <strong>Annotations</strong> are evil.</p>
<p>One syntax and language per file please!</p>
<p>// does not apply to Make files, or editor macros that insert real code.</p>
http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191738#19173823Answer by chris for Should C# include multiple inheritance?chris2008-10-10T15:00:16Z2009-11-16T14:20:55Z<p>Prefer aggregation over inheritance!</p>
<pre><code>class foo : bar, baz
</code></pre>
<p>is often better handled with</p>
<pre><code>class foo : Ibarrable, Ibazzable
{
...
public Bar TheBar{ set }
public Baz TheBaz{ set }
public void BarFunction()
{
TheBar.doSomething();
}
public Thing BazFunction( object param )
{
return TheBaz.doSomethingComplex(param);
}
}
</code></pre>
<p>This way you can swap in and out different implementations of IBarrable and IBazzable to create multiple versions of the App without having to write yet another class.</p>
<p>Dependency injection can help with this a lot.</p>
http://stackoverflow.com/questions/1731006/can-a-type-derive-from-itself/1731069#17310691Answer by chris for Can a Type Derive from Itself?chris2009-11-13T18:40:16Z2009-11-13T18:40:16Z<p>One way to look at it is "Can an object of type <strong>T</strong> be assigned to a <strong>Racer</strong> reference?"</p>
http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688656#16886567Answer by chris for Why the name main for function main()chris2009-11-06T16:21:41Z2009-11-06T16:21:41Z<p>Or, to be more obtuse, Why do we drive on the side of the road we do?</p>
<p>Answer: We had to choose something.</p>
http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688641#16886414Answer by chris for Why the name main for function main()chris2009-11-06T16:19:47Z2009-11-06T16:19:47Z<p>It's not always main().</p>
<p>Java Applets use init() and start() for the external caller to hook into.</p>
<p>Servlets are started via init() and service() methods.</p>
<p>(service will dispatch to the more familiar doGet and doPost methods)</p>
<p>Granted, these exceptions do rely on some container other than the OS to invoke the methods.</p>
http://stackoverflow.com/questions/1596835/c-interface-vs-class-access/1596940#15969402Answer by chris for C# interface vs class accesschris2009-10-20T19:58:40Z2009-10-20T20:12:27Z<p>I think this all depends upon what you know about the object you're acting on.
Assume</p>
<pre><code>public class Bar : ICommon
public class Baz : ICommon
</code></pre>
<p>If I've got Baz myBaz, then there is no need to cast it to ICommon before acting on it.</p>
<p>Work at the highest level of abstraction that you can. It makes refactoring easier, and it significantly improves reuse of code.</p>
<pre><code>Bar myBar = new Bar();
Baz myBaz = new Baz();
doSomething(myBar);
doSomething(myBaz);
public void doSomething(ICommon parameter)
{
parameter.DoICommonThing(); // working on object reference of type ICommon.
}
</code></pre>
<p>In other words, ASK for the most generic type (ie prototype parameters in method signature), allowing callers to GIVE whatever they have (actual passed parameters).</p>
http://stackoverflow.com/questions/481697/net-best-practices-guidelines-for-dividing-namespaces-between-files/1510904#15109040Answer by chris for NET: Best Practices/guidelines for dividing namespaces between files? chris2009-10-02T17:35:18Z2009-10-02T17:35:18Z<p>As far as classes go, I tend to follow the Java rule: "One Public class per file"
I may include a private class in with the public if that public class is the sole user. (Although, enums are making this less of a factor); However, if it's used by many public classes in the same namespace, then I'll put it in it's own file.</p>
<p>I'll tend to use namespaces along the lines of:</p>
<p>MyAwesomeApp.UI<br />
MyAwesomeApp.Business<br />
MyAwesomeApp.Data</p>
<p>to reflect the seperation of layers. </p>
http://stackoverflow.com/questions/1506402/what-is-the-coolest-most-fun-area-to-learn-as-a-c-programmer/1506411#15064110Answer by chris for What is the coolest/most fun area to learn as a c# programmer?chris2009-10-01T20:53:47Z2009-10-01T20:53:47Z<p>Well, it's not perfect, but I think the application of the winforms model to webforms is a really cool idea. It makes it pretty easy to switch back and forth, or even to port one to the other.</p>
http://stackoverflow.com/questions/1504301/binding-a-dropdown/1504393#15043930Answer by chris for Binding a dropdownchris2009-10-01T14:45:24Z2009-10-01T14:45:24Z<p>I'm exactly sure what you're getting at, but I think this is close:</p>
<p>There are essentially 3 components</p>
<p>asp:DropDownList id="ddl1"
asp:SqlDataSource
asp:GridViewControl </p>
<p>Configure the data source to use ddl1.SelectedValue in the WHERE clause. (Parameter Source: Control, Value = ddl1.SelectedValue)</p>
<p>Bind the Grid View to the DataSource</p>
<p>At this point, the simplest way to get what you want is to enable AutoPostBack on ddl1, and let the magic happen itself.</p>
http://stackoverflow.com/questions/1312454/string-format-question/1312499#13124992Answer by chris for String.Format Questionchris2009-08-21T15:02:01Z2009-08-21T15:02:01Z<p>Try: </p>
<pre><code>Console.WriteLine(String.Format("{0:#####.##}", 1234.5678));
</code></pre>
<p>Which will give 1234.57</p>
<p>You need to specify the decimal place. Also, the last two are strings, so number formats won't apply.</p>
http://stackoverflow.com/questions/1288291/how-can-i-correctly-prefix-a-word-with-a-and-an/1288545#1288545-2Answer by chris for How can I correctly prefix a word with "a" and "an"?chris2009-08-17T15:15:41Z2009-08-17T15:15:41Z<p>Work in Polish, then you need not worry about articles at all.</p>
http://stackoverflow.com/questions/1245553/whats-wrong-with-this-asp-connection-string/1245588#1245588-1Answer by chris for What's wrong with this ASP connection string?chris2009-08-07T15:55:59Z2009-08-07T15:55:59Z<p>Do you have visual studio?</p>
<p>Connect to the database server, and locate the database you want to connect to.</p>
<p>Right click, select properties. Your connection string to the db is right there.
Copy to wherever you want. -- Should be in web config, but you can paste it directly into code if you so desire.</p>
http://stackoverflow.com/questions/318095/strange-error-in-net-application-rijndaelmanaged0Strange Error in .net Application. - RijndaelManaged..chris2008-11-25T16:55:06Z2009-08-05T17:43:39Z
<p>During a recent load test, I've been getting some strange "Index Out of Range Exception" </p>
<p>Stack trace: </p>
<pre><code> at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast)
at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount)
at System.Security.Cryptography.CryptoStream.FlushFinalBlock()
at System.Web.Configuration.MachineKeySection.EncryptOrDecryptData(Boolean fEncrypt, Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Boolean useValidationSymAlgo)
at System.Web.UI.Page.DecryptString(String s)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
</code></pre>
<p>We are not using a farm or cluster, and I am not using any cryptography in the app.</p>
<p>It appears that this is happening in the behind the scenes .Net classes.</p>
<p>I figure this has something to do with viewstate, but I can't find out why this is being thrown.</p>
<p>Any Ideas?</p>
http://stackoverflow.com/questions/1202909/textboxes-reads-empty-string-when-i-press-submit-button/1202933#12029332Answer by chris for textboxes reads empty string ("") when i press submit button!chris2009-07-29T20:46:08Z2009-07-29T20:46:08Z<p>Assuming question is a textbox, you want question.Text </p>
http://stackoverflow.com/questions/108403/solutions-for-insert-or-update-on-sql-server11Solutions for INSERT OR UPDATE on SQL Serverchris2008-09-20T15:00:47Z2009-07-29T07:08:53Z
<p>Assume a table structure of MyTable(KEY, datafield1, datafield2...)</p>
<p>Often I want to either update an existing record, or insert a new record if it doesn't exist.</p>
<p>essentially
if (key exists)
Run Update command
ELSE
run insert command</p>
<p>What's the best performing way to write this?</p>
http://stackoverflow.com/questions/1190546/is-perfect-bug-free-software-an-impossible-ideal/1190647#11906474Answer by chris for Is perfect bug-free software an impossible ideal?chris2009-07-27T21:14:28Z2009-07-27T21:19:32Z<p>No, Bug free software is not impossible. It's just very difficult.</p>
<p>I'll also hedge the answer and say that the developer is not responsible for OS, Networking etc. (Unless that's the point of the application) That is, if the Network, Database and OS are all working, then the application will work.</p>
<p>However, you've got a fine balance to maintain:</p>
<p>Bugs (Quantity and Complexity - B)
Features (Quantity and Complexity - F)
Resources (Time and Money and Labour - R)</p>
<p>My assumption is that the relationship is going to be something like:</p>
<p>R = k F/B with k being an arbitrary constant based on whatever units the others are measured in.</p>
<p>Mathematically, this says that as bugs go to zero, resources go to infinity for any given feature set. However, I think we can dispense with the mathematical correctness and just say that bug free software will be very expensive. Of course, this assumes that you have perfect requirements, which is another issue altogether.</p>
<p>I'm sure all of us can write a perfect, bug free "Hello World" in multiple languages. I just doesn't do too much.</p>
http://stackoverflow.com/questions/1173256/sharepoint-designer-is-very-slow-what-are-the-alternatives/1173490#11734900Answer by chris for Sharepoint Designer is very slow; what are the alternatives?chris2009-07-23T18:06:04Z2009-07-23T18:06:04Z<p>This may or may not be related to the problem.</p>
<p>If Sharepoint Designer seems to be freezing from time to time try this:</p>
<p>Go to %USERPROFILE%\Application Data\Microsoft\SharePoint Designer\ProxyAssemblyCache\12.0.0.6219</p>
<p>[Actual numbers may vary] and delete everything in there. Don't worry, it will be rebuilt on next load.</p>
http://stackoverflow.com/questions/1155895/solutions-for-insertion-of-duplicate-keys0Solutions for insertion of duplicate keys.chris2009-07-20T20:50:13Z2009-07-23T12:51:54Z
<p>NO MySQL answers please!</p>
<p>The basic query is as follows (assume A is Key)</p>
<pre><code>INSERT INTO destination (A,B,C)
SELECT a1,b1,c1
FROM source
WHERE (selectconditions) ;
</code></pre>
<p>Source contains many records that may or may not already be in destination, which means that the insert will fail as soon as a duplicate record is encountered.</p>
<p>Desired Behaviour: INSERT or IGNORE</p>
<blockquote>
<p>This is the desired scenario for the given problem. Insert if you can, otherwise continue. </p>
</blockquote>
<p>Pseudo c#/java:</p>
<pre><code>foreach(record in selectQuery)
{
try { destination.insert(record) }
catch(insertionException){//squelch}
}
</code></pre>
<p>This can be handled in SQL by adding </p>
<pre><code>AND NOT EXISTS (SELECT A FROM destination INNER JOIN source on destination.A = source.a1)
</code></pre>
<p>to the end of the query -- In other words, check before you insert.</p>
<p>What are some other alternatives to handling this common situation? What are the pros and cons of these techniques?</p>
http://stackoverflow.com/questions/1155908/how-do-you-test-your-web-apps-for-ie-6/1155942#11559421Answer by chris for How do you test your web apps for IE 6?chris2009-07-20T21:03:12Z2009-07-20T21:03:12Z<p>I test it exactly the same way I test for Netscape 2.0 -- I don't.</p>
<p>There is no excuse for anyone to be running that outdate piece of crap.<br />
What these companies need is a few support calls that end with "We are no longer able to support IE 6" and provide a list of companies that are also phasing out IE 6 support. </p>
<p>If Youtube can no longer support IE 6, with all of Google's resources behind it, then why should I?</p>
<p>The best thing that could happen would be for Google to put up an error page saying </p>
<blockquote>
<p>"You appear to be using IE 6.
Unfortunately, we are unable to
provide search results to IE 6
clients"</p>
</blockquote>
http://stackoverflow.com/questions/1019388/adding-a-select-all-shortcut-ctrl-a-to-a-net-listview/1019439#10194390Answer by chris for Adding a select all shortcut (Ctrl + A) to a .net listview?chris2009-06-19T18:35:31Z2009-06-19T18:35:31Z<pre><code>foreach( ListViewItem lvi in ListView.Items) lvi.Selected = true;
</code></pre>
http://stackoverflow.com/questions/1007971/latitude-and-longitude-changing/1007988#10079884Answer by chris for Latitude and longitude changing?chris2009-06-17T15:58:05Z2009-06-17T15:58:05Z<p>Continental Drift?</p>
http://stackoverflow.com/questions/1001494/being-a-lone-developer/1001511#100151123Answer by chris for Being A Lone Developerchris2009-06-16T13:34:20Z2009-06-16T13:34:20Z<p>Best: No decyphering other people's code.
Worst: No one to decypher my code.</p>
<p>Actually, the real worst thing is that there is no one to bounce ideas off of and to learn from.</p>
http://stackoverflow.com/questions/935468/convert-user-controls-to-server-controls2Convert User Controls to Server Controls.chris2009-06-01T15:59:26Z2009-06-01T16:16:42Z
<p>I'm wondering if anyone has any experience converting User controls to Web controls?</p>
<p>Ideally, I'd like to offload some of the design work to others, who would give me nicely laid out User Controls. Then, I could go through the process of converting, compiling, testing and deploying. </p>
<p>Until MS comes up with the magic "Convert to Server Control" option, it looks like I'm pretty well stuck with re-writing from scratch. Any ideas?</p>
http://stackoverflow.com/questions/915205/javascript-validating-dynamically-created-radio-button-list-control-in-asp-net/915687#9156870Answer by chris for Javascript: Validating dynamically created radio button list control in ASP.NETchris2009-05-27T13:27:18Z2009-05-27T13:27:18Z<p>The following code doesn't specifically answer your question, but it might help. I'd modify it for you, but I just don't have the time right now.</p>
<p>I use this on exams, to warn the user that a particular question doesn't have a selected answer.</p>
<p>The questions are generated dynamically using a Server control which emits plain xhtml. I name all options with the same name, (Q1, Q2...), and ID them like (Q1a, Q1b ...) </p>
<p>To modify it for your purposes, perhaps you could build a list of selected options in the j loop, that is, adding name -value pairs where the "break" statement is.</p>
<pre><code>// Grabs all inputs - radio, checkbox, text, buttons and lists -sticks them in an array
allInputs = document.getElementsByTagName("input");
var last = "NameUnlikelyToBeUsedAsAnElementName";
// walk through the array
for (i = 0; i< allInputs.length; i++)
{
var input = allInputs[i];
if (input.name == last) continue; // if this object name is the same as the last checked radio, go to next iteration
// checks to see if any one of similarly named radiobuttons is checked
else if (input.type == "radio" )
{
last = input.name;
var radios = document.getElementsByName(input.name);
var radioSelected=false;
//iterate over question options
for (j=0; j < radios.length; j++)
{
if(radios[j].checked)
{
radioSelected=true;
break; // Found it, proceed to next question
}
}
if (!radioSelected) // no option selected
{ // warn user, focus question
alert("You did not answer question " + input.id.substring(0,input.id.length-1));
input.focus();
return false;
}
}
}
return true;
</code></pre>
http://stackoverflow.com/questions/888333/dropdownlist-listitems-and-selecteditem1DropDownList, ListItems and SelectedItemchris2009-05-20T14:37:42Z2009-05-22T21:51:59Z
<p>See also: <a href="http://stackoverflow.com/questions/428001/dropdowns-filled-with-same-list-item">http://stackoverflow.com/questions/428001/dropdowns-filled-with-same-list-item</a></p>
<p>After a day of tracing and debugging, I finally figured out that populating 3 DropDownLists with the same collection of items causes the last selected item to appear in all 3 lists. </p>
<p>This appears to be due to the 'selectedness' of an item being a property of the item, rather than a property of the list.</p>
<p>However, this appears to be the case <strong>only</strong> when an item is selected programmatically. </p>
<p><em>edit #2: As everyone seems to be answering the wrong question: The following is what is confusing me!</em></p>
<p>The application appears to work as intended when the user selects items via the control. -- Selecting 3 different items in the Web interface results in the correct 3 different items being entered in the DB.</p>
<p>Can anyone explain why this is the case?</p>
<p>EDIT: The question I am asking is why does it work at all in the browser?</p>
http://stackoverflow.com/questions/888838/regular-expression-for-validating-names-and-surnames/888868#8888685Answer by chris for Regular expression for validating names and surnames?chris2009-05-20T16:12:24Z2009-05-20T16:23:22Z<p>I actually wouldn't bother. </p>
<p>No matter what regex you come up with, I can find a name somewhere in the world that will break it.</p>
<p>That being said, you do need to sanitize input, to avoid the <a href="http://xkcd.com/327/" rel="nofollow" title="Little Bobby Tables">Little Bobby Tables</a> problem.</p>
http://stackoverflow.com/questions/888815/any-there-any-circumstances-where-java-reference-equality-could-be-different-to-e/888846#8888460Answer by chris for Any there any circumstances where Java reference equality could be different to equals() equality for a an object of a type which has not overridden equals()?chris2009-05-20T16:07:09Z2009-05-20T16:07:09Z<p>Here is the source code for Object.equals:</p>
<pre><code>public boolean equals(Object obj) {
151 return (this == obj);
152 }
153
</code></pre>
<p>So, No.</p>
http://stackoverflow.com/questions/1767048/if-c-is-type-safe-why-is-this-possible-without-casting/1767075#1767075Comment by chris on If C# is type safe why is this possible without casting?chris2009-11-19T22:37:37Z2009-11-19T22:37:37Zsorry, was thinking c, not c#, have corrected.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1200514#1200514Comment by chris on What's your most controversial programming opinion?chris2009-11-18T20:36:02Z2009-11-18T20:36:02ZAs someone who occasionally has to program for Sharepoint, I will state that you second opinion is not controversial at all.http://stackoverflow.com/questions/1758409/sql-join-on-null-valuesComment by chris on SQL "Join" on null valueschris2009-11-18T19:26:28Z2009-11-18T19:26:28ZAre the tables joined on the null values? You're going to get a pretty large result set if that is the case. For example, if there are 10 nulls in T1, and 10 nulls in T2 then you'll get 100 rows.
Surely you can join on another populated field, and just select
...
Where T1.SomeCol is null and T2.SomeCol is nullhttp://stackoverflow.com/questions/58640/great-programming-quotes/1082213#1082213Comment by chris on Great programming quoteschris2009-11-17T19:36:44Z2009-11-17T19:36:44ZThat's fantastic.http://stackoverflow.com/questions/1730298/users-asking-for-denormalized-database/1730320#1730320Comment by chris on Users asking for denormalized databasechris2009-11-13T18:36:53Z2009-11-13T18:36:53ZWhile this isn't the best answer here, I'm voting it up for expressing a potential solution clearly and concisely.
http://stackoverflow.com/questions/1506402/what-is-the-coolest-most-fun-area-to-learn-as-a-c-programmer/1506411#1506411Comment by chris on What is the coolest/most fun area to learn as a c# programmer?chris2009-10-02T01:39:08Z2009-10-02T01:39:08Zannakata: At the time, it was a nice abstraction. A button is a button and fires certain events. To a programmer, this means that buttons can be wired up exactly the same way, whether you're programming for a browser or for a window. Granted, the implementation leaves something to be desired, and it doesn't allow for the rich UI that came later. Nevertheless, it was a pretty cool idea at the time. http://stackoverflow.com/questions/1504301/binding-a-dropdown/1504393#1504393Comment by chris on Binding a dropdownchris2009-10-01T15:59:56Z2009-10-01T15:59:56ZThe Autopostback will cause a page refresh, and the databinding should automagically take control. You don't need to write any code, just configure the properties in the designer.http://stackoverflow.com/questions/1477433/how-to-create-custom-action-for-an-object/1477469#1477469Comment by chris on How to create custom action for an object ?chris2009-09-25T14:06:55Z2009-09-25T14:06:55ZYou need to extend EventListener as in interface PercentChangeListener extends EventListenerhttp://stackoverflow.com/questions/1472223/where-should-i-put-miscellaneous-functions-in-a-net-project/1472278#1472278Comment by chris on Where should I put miscellaneous functions in a .NET project? chris2009-09-24T17:40:52Z2009-09-24T17:40:52ZI generally hate extension methods. They break class and library encapsulation of functionality. Who am I to "fix" the .net library? Now someone runs across some method in my code myString.Whargarble(). Where do they find that method?
I think myString = MyCompany.StringUtils.Whargarble(myString) is a more clear statement of what's going on.http://stackoverflow.com/questions/105190/should-i-learn-assembly-programming/105214#105214Comment by chris on Should I learn Assembly programming?chris2009-08-31T15:15:26Z2009-08-31T15:15:26ZI'd say that you'd have to read a heck of a lot more than just Aristotle to understand Eco. That guy draws on the entire canon of western thought -- plus some.
http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/382118#382118Comment by chris on Common programming mistakes for .NET developers to avoid?chris2009-07-28T21:19:46Z2009-07-28T21:19:46ZI think everyone has made this mistake at least once.http://stackoverflow.com/questions/1190546/is-perfect-bug-free-software-an-impossible-ideal/1190605#1190605Comment by chris on Is perfect bug-free software an impossible ideal?chris2009-07-27T21:15:10Z2009-07-27T21:15:10ZIt's a very meaningful term. It means "No Place"http://stackoverflow.com/questions/1155895/solutions-for-insertion-of-duplicate-keys/1156438#1156438Comment by chris on Solutions for insertion of duplicate keys.chris2009-07-22T20:37:51Z2009-07-22T20:37:51ZMySQL has some nice features in it's non-standard SQL. It would be nice if other vendors copied them.http://stackoverflow.com/questions/939563/c-return-a-variable-as-read-only-from-get-setComment by chris on C# return a variable as read only from get; set;chris2009-06-02T13:41:13Z2009-06-02T13:41:13ZI am amazed at how many people misunderstood the question. Jon Skeet and Anton Gogolev got it right.http://stackoverflow.com/questions/911907/illustration-for-code-presentationComment by chris on Illustration for code presentationchris2009-05-26T18:01:11Z2009-05-26T18:01:11ZThe middle section is often called the "Trunk"