User Corbin March - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:34:08Zhttp://stackoverflow.com/feeds/user/7625http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1917430/roll-your-own-xml-parser-xml-parsing-algorithm/1917492#19174922Answer by Corbin March for Roll your own XML parser / XML parsing algorithm?Corbin March2009-12-16T20:35:16Z2009-12-16T20:35:16Z<p><a href="http://www.antlr.org/" rel="nofollow">Antlr</a> offers a <a href="http://www.antlr.org/wiki/display/ANTLR3/Parsing+XML" rel="nofollow">tutorial</a> on parsing XML. It breaks the process down into phases: lexing, parsing, tree parsing, etc. Looks pretty interesting.</p>
http://stackoverflow.com/questions/1897937/online-game-development/1898245#18982452Answer by Corbin March for Online Game DevelopmentCorbin March2009-12-13T23:50:57Z2009-12-13T23:50:57Z<p><a href="http://haxe.org/" rel="nofollow">haXe</a> is worth mentioning. It's an interesting language designed to target many runtimes, including Flash. The game company <a href="http://www.motion-twin.com/english" rel="nofollow">Motion-Twin</a> developed it to give them faster compilation, missing features for some platforms, and the ability to write some (though not all) code once and use it across many platforms.</p>
<p>If you're just starting, <a href="http://haxe.org/com/ide" rel="nofollow">haXe with an open source IDE</a> may be easier to swallow than dropping $700 for Adobe's Flash IDE.</p>
<p>If you're interested, start here:</p>
<ul>
<li><a href="http://haxe.org/doc/start/flash" rel="nofollow">Getting started at haxe.org</a></li>
<li><a href="http://www.cactusflower.org/learning-flash-with-haxe" rel="nofollow">Another getting started guide</a></li>
<li><a href="http://gamehaxe.com/" rel="nofollow">gamehaxe.com</a> - there are a few interesting bits here if you nose around.</li>
<li><a href="http://www.remixtechnology.com/view/gravity-haxe" rel="nofollow">A gravity experiment in haXe</a></li>
</ul>
<p>Keep in mind, you still need to learn <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/" rel="nofollow">ActionScript</a> (Adobe's Flash language) since the haXe Flash API is modeled after it.</p>
<p>If you tire of Flash, you can always use haXe to compile to JavaScript, PHP, C++, or run it on its own VM. Kinda fun.</p>
http://stackoverflow.com/questions/1882576/does-three-tier-architecture-ever-work/1882716#18827162Answer by Corbin March for Does three-tier architecture ever work?Corbin March2009-12-10T17:44:15Z2009-12-10T17:44:15Z<p>If you haven't seen it working, you may just have bad luck. I've worked on projects that serve several UIs (presentation) from one web service (logic). In addition, we swapped data providers via configuration (data) so we could use a low-cost database while developing and Oracle in higher environments. </p>
<p>Sure, there's always some duplication - maybe you add validation in the UI for responsiveness and then validate again in the logic layer - but overall, a clean separation is possible and nice to work with.</p>
http://stackoverflow.com/questions/1881851/how-to-unpickle-from-c-code/1882086#18820861Answer by Corbin March for How to unpickle from C codeCorbin March2009-12-10T16:12:01Z2009-12-10T16:20:29Z<p>If you absolutely must use pickling, you can embed Python in your C program and unpickle in C via Python.</p>
<ul>
<li><a href="http://www.linuxjournal.com/article/8497" rel="nofollow">A quick example from Linux Journal</a></li>
<li><a href="http://docs.python.org/extending/extending.html#calling-python-functions-from-c" rel="nofollow">Python Docs</a></li>
<li><a href="http://stackoverflow.com/questions/1056051/how-do-you-call-python-code-from-c-code">http://stackoverflow.com/questions/1056051/how-do-you-call-python-code-from-c-code</a></li>
</ul>
http://stackoverflow.com/questions/1875849/write-a-method-public-boolean-isprime-int-n/1875875#18758752Answer by Corbin March for Write a method, public boolean isPrime (int n)Corbin March2009-12-09T18:34:30Z2009-12-09T18:34:30Z<p>Check the <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FEratosthenes" rel="nofollow">Sieve of Eratosthenes</a>. There are other prime sieves as well, but that's a good place to start.</p>
http://stackoverflow.com/questions/1805369/asp-net-jquery-issue/1805494#18054940Answer by Corbin March for ASP.NET jQuery issueCorbin March2009-11-26T20:21:23Z2009-11-26T20:21:23Z<p>jQuery animations are asynchronous (so your browser doesn't lock up). If you manually add postback code after your animation call, the postback will likely occur before the animation has a chance. </p>
<p>Consider adding your postback code to an animation callback. The callback is called after an animation is complete - which sounds like what you want.</p>
<pre><code>function prePostBackAnimation() {
$('something').animate({ width: 70 }, function() {
//jQuery will call this method after the animation finishes.
//Add postback code here
__doPostBack(theTarget,theArgument);
});
}
</code></pre>
<p>Code modified from <a href="http://stackoverflow.com/questions/1594077/jquery-synchronous-animation">here</a>.</p>
http://stackoverflow.com/questions/1797328/programming-languages-that-compile-to-native-code-and-have-the-batteries-included/1797514#17975141Answer by Corbin March for Programming languages that compile to native code and have the batteries includedCorbin March2009-11-25T15:02:29Z2009-11-25T15:02:29Z<p>You can compile Java to native code using <a href="http://gcc.gnu.org/java/" rel="nofollow">GCJ</a>.</p>
<p>Any language targeting the .NET CLR (VB.NET, C#, F#...) can be pre-compiled to native code using <a href="http://msdn.microsoft.com/en-us/library/6t9t5wcf.aspx" rel="nofollow">NGen.exe</a> - more <a href="http://msdn.microsoft.com/en-us/library/ht8ecch6.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1639394/web-server-performance-test-tool/1639510#16395102Answer by Corbin March for Web server performance/test toolCorbin March2009-10-28T19:22:55Z2009-10-28T19:30:04Z<p>You need two things:</p>
<ol>
<li><p>A load tester. See these questions/answsers:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/351938/load-test-stress-test-web-services">http://stackoverflow.com/questions/351938/load-test-stress-test-web-services</a></li>
<li><a href="http://stackoverflow.com/questions/340564/best-way-to-stress-test-a-website">http://stackoverflow.com/questions/340564/best-way-to-stress-test-a-website</a></li>
<li><a href="http://stackoverflow.com/questions/507683/open-source-tool-for-stress-testing-load-testing-and-performance-testing">http://stackoverflow.com/questions/507683/open-source-tool-for-stress-testing-load-testing-and-performance-testing</a></li>
</ul></li>
<li><p>On your server, use <a href="http://technet.microsoft.com/en-us/library/cc749154.aspx" rel="nofollow">performance monitor</a> to measure the things you're interested in (memory use, processor use, paging...) while it's under load. Performance monitor also has <a href="http://msdn.microsoft.com/en-us/library/fxk122b4.aspx" rel="nofollow">ASP.NET-specific counters</a>.</p></li>
</ol>
http://stackoverflow.com/questions/1633926/web-app-testing/1633974#16339749Answer by Corbin March for web app testingCorbin March2009-10-27T22:13:31Z2009-10-27T22:13:31Z<p>Try <a href="http://seleniumhq.org/" rel="nofollow">Selenium</a>. You can record tests right in Firefox, tweak them in the language of your choice, and then run them from the browser or a dedicated test machine. Cool stuff.</p>
http://stackoverflow.com/questions/1552139/how-should-i-handle-authorization-authentication-in-my-asp-net-mvc-app/1552273#15522734Answer by Corbin March for How should I handle Authorization/Authentication in my Asp.net MVC app?Corbin March2009-10-12T01:08:03Z2009-10-19T16:33:10Z<p>It's helpful to think of credentials and the records that associate a person to application data as two very different things. Depending on the application, your Customer may not have credentials to log in or you may have an administrative User that logs in but isn't related to your application data.</p>
<p>Separate credentials are also useful if Users access more than one application with different rights for each.</p>
<p>For these reasons, I'd keep Customer and User separate and look one up from the other where appropriate.</p>
http://stackoverflow.com/questions/1574458/python-object-that-monitors-changes-in-objects/1574556#15745562Answer by Corbin March for Python object that monitors changes in objectsCorbin March2009-10-15T19:33:28Z2009-10-15T19:40:33Z<p>It sounds like you're describing the <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">observer pattern</a>. Check here:</p>
<ul>
<li><a href="http://rudd-o.com/projects/python-observable/" rel="nofollow">http://rudd-o.com/projects/python-observable/</a> </li>
<li><a href="http://twistedmatrix.com/trac/browser/trunk/twisted/python/observable.py?rev=1" rel="nofollow">Twisted observable</a> </li>
<li><a href="http://radio.weblogs.com/0124960/2004/06/15.html#a30" rel="nofollow">http://radio.weblogs.com/0124960/2004/06/15.html#a30</a> - includes explanation</li>
</ul>
http://stackoverflow.com/questions/1471924/small-tables-in-python/1472038#14720380Answer by Corbin March for Small Tables in Python?Corbin March2009-09-24T14:23:17Z2009-09-24T14:23:17Z<p>How about a list of objects and comprehensions?:</p>
<pre><code>class Row():
def __init__(self,uid,name,value,color,type,location):
self.uid = uid
self.name = name
#etc...
#snip...
table = [
Row(0,'Name0','Value0','Color0','Primary','Boston'),
Row(1,'Name1','Value1','Color1','Primary','Walla Walla'),
Row(2,'Name2','Value2','Color2','Secondary','Boston'),
Row(3,'Name3','Value3','Color3','Secondary','Walla Walla'),
#etc...
]
primary_entries = [row for row in table if row.type == 'Primary']
boston_entries = [row for row in table if row.location == 'Boston']
</code></pre>
<p>This won't be bad for a dozen objects. If they change a lot, load the data from a file. </p>
http://stackoverflow.com/questions/1439424/will-ruby-ever-be-fast/1439573#14395735Answer by Corbin March for Will Ruby ever be *fast* ?Corbin March2009-09-17T15:25:35Z2009-09-17T15:25:35Z<p><a href="http://stackoverflow.com/users/2988/jorg-w-mittag">Jörg W Mittag</a> pointed me in the direction of <a href="http://rubini.us/" rel="nofollow">Rubinius</a> when I <a href="http://stackoverflow.com/questions/140241/will-the-javascript-performance-improvements-from-trace-trees-find-their-way-into">asked about Trace Trees</a> finding their way to other scripting languages. Check them out for a faster Ruby.</p>
<p>As an interesting aside, <a href="http://code.google.com/p/unladen-swallow/wiki/ProjectPlan" rel="nofollow">unladen-swallow</a> is trying to speed up Python by using <a href="http://llvm.org/" rel="nofollow">LLVM</a>.</p>
<p>Interesting stuff. There are plenty of unexplored tricks to speed up scripting but I wonder if language developers consider it a priority versus language features and libraries.</p>
http://stackoverflow.com/questions/1427255/is-there-a-python-caching-library/1427303#14273035Answer by Corbin March for Is there a Python caching library?Corbin March2009-09-15T13:52:00Z2009-09-15T13:52:00Z<p>Take a look at Beaker:</p>
<ul>
<li><a href="http://beaker.groovie.org/" rel="nofollow">Home Page</a></li>
<li><a href="http://beaker.groovie.org/caching.html#about" rel="nofollow">Caching Documentation</a></li>
</ul>
http://stackoverflow.com/questions/1235167/making-a-browser-toolbar/1235317#12353171Answer by Corbin March for Making a browser toolbar?Corbin March2009-08-05T19:41:39Z2009-08-05T20:01:46Z<p>For Firefox, start here: <a href="https://developer.mozilla.org/en/Extensions" rel="nofollow">https://developer.mozilla.org/en/Extensions</a></p>
<p>Internet Explorer, here: <a href="http://msdn.microsoft.com/en-us/library/bb250489%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb250489%28VS.85%29.aspx</a></p>
<p>You can use Javascript and Xml (<a href="https://developer.mozilla.org/en/XUL" rel="nofollow">XUL</a>) to write Firefox extensions and any language that can generate a COM component implementing the IObjectWithSite interface (VB, C++, C#...) for IE.</p>
<p>IE Examples:</p>
<ul>
<li><a href="http://articles.techrepublic.com.com/5100-22%5F11-5078098.html" rel="nofollow">http://articles.techrepublic.com.com/5100-22_11-5078098.html</a> (VB)</li>
<li><a href="http://www.codeproject.com/kb/cs/attach%5Fbho%5Fwith%5Fc%5F.aspx" rel="nofollow">http://www.codeproject.com/kb/cs/attach_bho_with_c_.aspx</a> (C#)</li>
</ul>
<p>Firefox:</p>
<ul>
<li><a href="http://www.rietta.com/firefox/Tutorial/overview.html" rel="nofollow">http://www.rietta.com/firefox/Tutorial/overview.html</a></li>
<li><a href="http://kb.mozillazine.org/Getting%5Fstarted%5Fwith%5Fextension%5Fdevelopment" rel="nofollow">http://kb.mozillazine.org/Getting_started_with_extension_development</a></li>
</ul>
http://stackoverflow.com/questions/1017512/why-is-the-netflix-prize-so-challenging/1208590#12085903Answer by Corbin March for Why is the Netflix Prize so challenging?Corbin March2009-07-30T18:52:37Z2009-07-30T18:52:37Z<p>Recommender systems suffer from problems that are hard to fix:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Cold%5Fstart" rel="nofollow">Cold start</a> - In a new system or with a new user, there isn't enough data to create an accurate statistical model for a recommendation.</li>
<li><a href="http://en.wikipedia.org/wiki/Collaborative%5Ffiltering#Disadvantages" rel="nofollow">Rating bias</a> - If you base recommendations on user ratings, users that rate often sway the results toward their taste. If you're the type of person that doesn't like the extra step of rating, it's possible people with similar taste don't like rating either so their opinions are excluded from recommendations.</li>
<li>Items that are not rated are less likely to be rated - if you select, and therefore rate, items based on their ratings, items that aren't rated are less visible and will have a hard time getting the ratings they need to effect recommendations. In the other direction, popular items have more visibility, are rated more often, and therefore play a larger part in recommendations.</li>
<li><a href="http://research.yahoo.com/files/kdd-fp074-koren.pdf" rel="nofollow">Temporal bias</a> - Users' ratings change with time. With long-term changes, you can compensate by adding a time element to your recommendations. Short-term changes are harder to fix. After a <a href="http://www.chucknorrisfacts.com/" rel="nofollow">Chuck Norris</a> marathon, you may be more likely to give action movies high marks. The next day, after crying your eyes out to <a href="http://www.imdb.com/title/tt0098384/" rel="nofollow">Steel Magnolias</a>, you may be temporarily biased against action movies.</li>
<li>Varying motives - in <a href="http://www.grouplens.org/papers/pdf/www10%5Fsarwar.pdf" rel="nofollow">item-based recommender systems</a>, the knitting book you purchased for your aunt's birthday will skew your recommendations (if you don't take the time to tell the system not to use it). You may give a bad kids' movie a high rating because your kids loved it.</li>
</ul>
<p>All together, this makes recommender systems hard to improve past just-okay. A system with 80% accuracy seems great but is wrong 1 out of 5 times. This makes them more trouble than they're worth for some users.</p>
http://stackoverflow.com/questions/1207648/how-do-i-include-files-in-drscheme/1207689#12076890Answer by Corbin March for How do I include files in DrScheme?Corbin March2009-07-30T16:19:13Z2009-07-30T16:19:13Z<p>I believe you're looking for include:</p>
<pre><code>(include path-spec)
</code></pre>
<p>Documentation here: <a href="http://docs.plt-scheme.org/reference/include.html" rel="nofollow">http://docs.plt-scheme.org/reference/include.html</a></p>
http://stackoverflow.com/questions/237307/prototypes-versus-classes/237433#2374336Answer by Corbin March for prototypes versus classesCorbin March2008-10-26T02:50:32Z2009-07-12T04:47:52Z<p>One interesting bit is that it's easy to make a prototype-based language act OO but it's difficult to make an OO language act prototype-based. </p>
<ul>
<li>Alex Arnell's <a href="http://code.google.com/p/inheritance/" rel="nofollow">inheritance.js</a> is a short and sweet chunk of code that makes JavaScript act OO, complete with access to the parent 'Class'. </li>
<li>Here's one of John Resig's solutions to the same problem: <a href="http://ejohn.org/blog/simple-javascript-inheritance/" rel="nofollow">http://ejohn.org/blog/simple-javascript-inheritance/</a>. </li>
<li><a href="http://www.lua.org/pil/16.html" rel="nofollow">Chapter 16 of Programming in Lua</a> describes object orientation in Lua. Specifically, <a href="http://www.lua.org/pil/16.2.html" rel="nofollow">section 16.2</a> gives a nice example of inheritance.</li>
</ul>
<p>It's not entirely clear what OO as prototype would look like, aside from composition versus inheritance as you mention.</p>
<p>A prototype language makes complex inheritance behavior easy. You can implement <a href="http://www.lua.org/pil/16.3.html" rel="nofollow">multiple inheritance</a>, <a href="http://en.wikipedia.org/wiki/Mixin" rel="nofollow">mixin</a>-like behavior, or just pick and choose what you want from one object to add to another.</p>
<p><a href="http://en.wikipedia.org/wiki/Prototype-based%5Fprogramming" rel="nofollow">Wikipedia's article</a> mentions: "Advocates of prototype-based programming often argue that class-based languages encourage a model of development that focuses first on the taxonomy and relationships between classes. In contrast, prototype-based programming is seen as encouraging the programmer to focus on the behavior of some set of examples and only later worry about classifying these objects into archetypal objects that are later used in a fashion similar to classes."</p>
<p>That's not to say the prototype paradigm is all pros and no cons. If OO is more restrictive, it's because it chooses to be. I can see where all that flexibility might get you into trouble if you aren't careful.</p>
http://stackoverflow.com/questions/326514/is-mef-microsofts-version-of-lua/328539#3285396Answer by Corbin March for Is MEF Microsoft's version of Lua?Corbin March2008-11-30T06:41:44Z2009-07-06T22:56:07Z<p>I'll assume you're aware of the huge differences between these technologies and focus on the question:</p>
<blockquote>
<p>"Are both MEF and Lua forms of IoC /
Dependency Injection?"</p>
</blockquote>
<p>Also, I'll assume you're talking about embedded Lua versus Lua as a language.</p>
<p>First, let's separate Dependency Injection from Inversion of Control. <a href="http://martinfowler.com/articles/injection.html" rel="nofollow">Fowler defined Dependency Injection as a specific form of IoC</a> because the idea of IoC had become so common that it was no longer a distinguishing characteristic of a system. His definition includes three main types of Dependency Injection: Constructor injection, Setter injection, and Interface injection. In all three types, the idea is to inject a specific implementation of a class or interface into a class or method that needs it. This is pretty slick because it allows you to decouple the dependency and the class that uses it. As long as they follow a contract, you can edit and swap implementations of the dependency without its consumers caring or being effected.</p>
<p>Using this definition, I'd say MEF passes and embedded Lua fails. MEF is largely a dependency injection framework. It allows you to dynamically load and compose external classes that implement specific contracts. Lua, on the other hand, allows extension through scripting but there is very little in the way of a contract. Sure, you could provide a Lua API for your app and that's a contract of sorts, but it does nothing to ensure a true contract is honored.</p>
<p>IoC is broader.(<a href="http://martinfowler.com/bliki/InversionOfControl.html" rel="nofollow">Fowler</a>,<a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">Wikipedia</a>) The common theme is that main program flow gives up control temporarily but receives flow status updates from components that are doing the work. Common ways to accomplish this include: events, closures, and continuations.</p>
<p>Using this definition, MEF easily passes (control is passed to unknown components at runtime) and you can make an argument for embedded Lua as well. The main program cruises along until it needs a function defined in external script. At that point, control is delivered to the script until it's done or is interrupted.</p>
<p>One thing to note is that Lua isn't particularly special in this regard. You can embed Perl, Python, Tcl, and Ruby. In fact, the general definition of IoC isn't particularly useful in a modern programming environment. It's too common. Fowler says that's why he introduced Dependency Injection as a special case. In a world of GUIs, events, threads, daemons, closures, continuations, and monads, everything uses IoC. Today, when people say 'IoC', they often mean some sort of Dependency Injection.</p>
http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1056662#10566622Answer by Corbin March for LinqToSql - mapping exception when using abstract base classesCorbin March2009-06-29T05:14:15Z2009-07-05T23:38:31Z<p>I've had luck defining data classes in a shared assembly and consuming them in many assemblies versus mapping many assemblies' data classes to a shared contract. Using your example namespaces, put a custom DataContext and your shared data classes in TestLinq2Sql.Shared:</p>
<pre><code>namespace TestLinq2Sql.Shared
{
public class SharedContext : DataContext
{
public Table<User> Users;
public SharedContext (string connectionString) : base(connectionString) { }
}
[Table(Name = "Users")]
public class User
{
[Column(DbType = "Int NOT NULL IDENTITY", IsPrimaryKey=true, CanBeNull = false)]
public int Id { get; set; }
[Column(DbType = "nvarchar(40)", CanBeNull = false)]
public string Name { get; set; }
[Column(DbType = "nvarchar(100)", CanBeNull = false)]
public string Email { get; set; }
}
}
</code></pre>
<p>Then consume the DataContext from any other assembly:</p>
<pre><code>using (TestLinq2Sql.Shared.SharedContext shared =
new TestLinq2Sql.Shared.SharedContext(
ConfigurationManager.ConnectionStrings["myConnString"].ConnectionString))
{
var user = shared.Users.FirstOrDefault(u => u.Name == "test");
}
</code></pre>
http://stackoverflow.com/questions/1049927/unable-to-understand-compilers-main-optimizations/1050040#10500401Answer by Corbin March for Unable to understand compilers' main optimizationsCorbin March2009-06-26T16:25:57Z2009-06-26T16:25:57Z<p>How about loop unrolling?:</p>
<pre><code>for (i = 0; i < 100; i++)
g ();
</code></pre>
<p>To:</p>
<pre><code>for (i = 0; i < 100; i += 2)
{
g ();
g ();
}
</code></pre>
<p>From <a href="http://www.compileroptimizations.com/" rel="nofollow">http://www.compileroptimizations.com/</a>. They have many more - too many for an answer per technique.</p>
<p>Check out <a href="http://www.ics.uci.edu/~franz/Site/pubs-pdf/ICS-TR-06-16.pdf" rel="nofollow">Trace Trees</a> for a cool interpreter/just-in-time optimization.</p>
http://stackoverflow.com/questions/1025468/where-can-i-find-a-good-robocode-tutorial/1025510#10255104Answer by Corbin March for Where can I find a good Robocode tutorial?Corbin March2009-06-22T04:57:24Z2009-06-22T04:57:24Z<p>Have you tried <a href="http://robowiki.net/w/index.php?title=Main%5FPage" rel="nofollow">robowiki.net</a>? They have a ton of resources including advanced topics like:</p>
<ul>
<li><a href="http://robowiki.net/w/index.php?title=Pattern%5FMatching" rel="nofollow">Pattern Matching</a></li>
<li><a href="http://robowiki.net/w/index.php?title=Dynamic%5FClustering" rel="nofollow">Clustering</a></li>
<li><a href="http://robowiki.net/w/index.php?title=GuessFactor%5FTargeting%5FTutorial" rel="nofollow">Statistical partitioning</a></li>
</ul>
<p>A number of the top bots in the <a href="http://darkcanuck.net/rumble/Rankings?version=1&game=roborumble" rel="nofollow">Roborumble</a> are also <a href="http://robowiki.net/w/index.php?title=Category:Open%5FSource%5FBots" rel="nofollow">open source</a>.</p>
<p>When you're ready, be sure to <a href="http://robowiki.net/w/index.php?title=RoboRumble/Starting%5FWith%5FRoboRumble" rel="nofollow">enter your robot in the rumble</a>.</p>
http://stackoverflow.com/questions/1017970/why-do-people-use-linq-to-sql/1018201#10182017Answer by Corbin March for Why do people use linq to sql?Corbin March2009-06-19T14:20:42Z2009-06-19T14:26:39Z<p>Existing question/answers in the same vein/spirit:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti">http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti</a></li>
<li><a href="http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures">http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures</a></li>
<li><a href="http://stackoverflow.com/questions/165102/whats-wrong-with-linq-to-sql">http://stackoverflow.com/questions/165102/whats-wrong-with-linq-to-sql</a></li>
<li><a href="http://stackoverflow.com/questions/417898/why-do-i-need-stored-procedures-when-i-have-linq-to-sql">http://stackoverflow.com/questions/417898/why-do-i-need-stored-procedures-when-i-have-linq-to-sql</a></li>
<li><a href="http://stackoverflow.com/questions/806763/if-using-linq-to-sql-is-there-any-good-reason-to-learn-sql-queries-syntax-anymore">http://stackoverflow.com/questions/806763/if-using-linq-to-sql-is-there-any-good-reason-to-learn-sql-queries-syntax-anymore</a></li>
<li><a href="http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered">http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered</a></li>
</ul>
<p>I personally believe there's no right or wrong answer. It depends on what you're developing and how you're developing it. If you need razor-sharp performance, have an overly-complex data model, etc... skip the abstraction. If you feel the abstraction speeds up your development time, like the idea of capturing all application logic in a single codebase, etc... use it.</p>
http://stackoverflow.com/questions/1008957/interprocess-communication-on-windows/1008979#10089791Answer by Corbin March for Interprocess communication on windowsCorbin March2009-06-17T19:07:53Z2009-06-17T19:07:53Z<p>A list of options from MSDN : <a href="http://msdn.microsoft.com/en-us/library/aa365574%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa365574(VS.85).aspx</a></p>
<p>If you want something more 'enterprisy', there's also <a href="http://msdn.microsoft.com/en-us/library/ms711472.aspx" rel="nofollow">Windows Message Queue</a>.</p>
http://stackoverflow.com/questions/302459/what-is-a-programming-idiom1What is a programming idiom?Corbin March2008-11-19T16:21:33Z2009-06-15T12:12:17Z
<p>I see the phrase "programming idiom" thrown around as if it is commonly understood. Yet, in search results and stackoverflow I see everything...</p>
<p>From micro:</p>
<ul>
<li>Incrementing a variable</li>
<li>Representing an infinite loop</li>
<li>Swapping variable values</li>
</ul>
<p>To medium:</p>
<ul>
<li><a href="http://aszt.inf.elte.hu/~gsd/halado%5Fcpp/ch09s03.html" rel="nofollow">PIMPL</a></li>
<li><a href="http://www.hackcraft.net/raii/" rel="nofollow">RAII</a></li>
<li><a href="http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html" rel="nofollow">Format, comments, style...</a></li>
</ul>
<p>To macro:</p>
<ul>
<li><a href="http://pschombe.wordpress.com/2006/05/06/the-next-big-programming-idiom/" rel="nofollow">Programming paradigm or common library features as idiom</a></li>
<li><a href="http://blogs.msdn.com/g/archive/2008/06/07/a-finding-from-an-architecture-review-of-a-product-with-components-that-originated-on-unix.aspx" rel="nofollow">Process model as idiom</a></li>
<li><a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.7793" rel="nofollow">A collection of idioms equals a new paradigm</a></li>
</ul>
<p>Is there a single, common definition for "programming idiom" and if so, does anyone know the phrase's etymology?</p>
<p><hr /></p>
<p>EDIT: To clarify, I'm comfortable with the definition of "<a href="http://dictionary.reference.com/browse/idiom" rel="nofollow">idiom</a>" and understand the spirit of programming idioms. Since "programming idiom" is used in many scopes:</p>
<ul>
<li>Micro: syntactic nuance or common syntax</li>
<li>Medium: common style and patterns</li>
<li>Macro: programming paradigms as idiom</li>
</ul>
<p>Is it valid to use the phrase in any of these scopes? The answers so far focus on syntactic idioms. Are the others valid as well? Better yet, where does the phrase come from? </p>
http://stackoverflow.com/questions/987509/offline-web-application/987609#9876092Answer by Corbin March for Offline web applicationCorbin March2009-06-12T16:21:20Z2009-06-12T16:21:20Z<p>Horror stories from a CRM product:</p>
<ul>
<li>If your application is heavily used, storing a complete copy of its data on a user's machine is unfeasible.</li>
<li>If your application features data that can be updated by many users, replication is not simple. If three users with local changes synch, who wins?</li>
<li>In reality, this isn't really what users want. They want real-time access to the most current data from anywhere. We had better luck offering a mobile interface to a single source of truth.</li>
</ul>
http://stackoverflow.com/questions/976011/encrypting-web-config-in-web-farm/976637#9766370Answer by Corbin March for encrypting web.config in web farmCorbin March2009-06-10T16:13:51Z2009-06-10T16:13:51Z<p>You may have considered this, but if not: the RSAProtectedConfigurationProvider can use either machine-level or user-level keys to encrypt. The default is machine-level. This means you can't encrypt your web.config once and deploy it to every machine in your web farm. You must encrypt it on each machine since the key to encrypt and decrypt only exists on that machine.</p>
<p>You can get around this problem by using a user-level key or sharing a key across all web farm machines:</p>
<ul>
<li>Import/Export keys - <a href="http://msdn.microsoft.com/en-us/library/yxw286t2%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/yxw286t2(VS.80).aspx</a></li>
<li>Machine-level verus user-level key containers - <a href="http://msdn.microsoft.com/en-us/library/f5cs0acs%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/f5cs0acs(VS.80).aspx</a></li>
</ul>
http://stackoverflow.com/questions/973586/why-does-net-array-class-copy-so-slow/973683#9736831Answer by Corbin March for Why does .NET Array class copy so slow?Corbin March2009-06-10T04:27:53Z2009-06-10T04:27:53Z<p>Your test may have a wrinkle. A quick look with <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> shows Array.Copy uses an externed implementation (Array.CopyTo ultimately uses the same call):</p>
<pre><code>[MethodImpl(MethodImplOptions.InternalCall),
ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)]
internal static extern void Copy(
Array sourceArray,
int sourceIndex,
Array destinationArray,
int destinationIndex,
int length,
bool reliable);
</code></pre>
<p>This opens up the possibility of memory copying versus item-by-item copying. My own test in Release mode, with an int[1000000] - randomly populated, clocks the loop at 468750 ticks and Array.Copy at 312500 ticks. Not a huge difference, but still faster as <a href="http://stackoverflow.com/users/67011/weiqure">weiqure</a> noted.</p>
<p>You may want to tweak your test to make sure there aren't other factors effecting the result.</p>
<p><a href="http://waldev.blogspot.com/2008/05/efficiently-copying-items-from-one.html" rel="nofollow">This post</a> makes a similar observation with Object arrays.</p>
http://stackoverflow.com/questions/960239/jquery-air-passenger-seat-layout-example/960248#9602481Answer by Corbin March for jQuery Air Passenger Seat Layout ExampleCorbin March2009-06-06T18:24:18Z2009-06-06T18:24:18Z<p>This: <a href="http://www.digital-web.com/extras/jquery%5Fcrash%5Fcourse/" rel="nofollow">http://www.digital-web.com/extras/jquery_crash_course/</a>?</p>
http://stackoverflow.com/questions/958258/anyone-not-using-a-web-framework-why/958333#9583335Answer by Corbin March for Anyone NOT using a Web Framework? Why?Corbin March2009-06-05T21:58:13Z2009-06-05T21:58:13Z<p>Skip the framework as a learning exercise. It's one thing to know why frameworks are good or bad by reading about them. It's another to learn why they're good by solving the same problems they solve and bad by making the same mistakes they make.</p>
<p>Skip the framework to shave another millisecond off your app's response time.</p>
<p>Skip the framework to see if you can do better.</p>
http://stackoverflow.com/questions/1922356/which-editor-ide-should-i-use-for-pythonComment by Corbin March on Which editor/IDE should I use for Python?Corbin March2009-12-17T15:20:06Z2009-12-17T15:20:06ZDuplicate: <a href="http://stackoverflow.com/questions/81584/what-ide-to-use-for-python" rel="nofollow" title="what ide to use for python">stackoverflow.com/questions/81584/…</a>http://stackoverflow.com/questions/1641389/what-is-the-most-efficient-method-for-looping-through-a-sortedlist-in-vb-2008Comment by Corbin March on What is the most efficient method for looping through a SortedList in VB 2008?Corbin March2009-10-29T03:21:36Z2009-10-29T03:21:36ZPossible duplicate: <a href="http://stackoverflow.com/questions/472191/c-for-vs-foreach" rel="nofollow" title="c for vs foreach">stackoverflow.com/questions/472191/…</a>http://stackoverflow.com/questions/1552456/icollection-vs-icollectiont-ambiguity-between-icollectiont-count-and-icollec/1552496#1552496Comment by Corbin March on ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.CountCorbin March2009-10-12T03:09:12Z2009-10-12T03:09:12ZI still get the ambiguity err.http://stackoverflow.com/questions/1471924/small-tables-in-python/1472038#1472038Comment by Corbin March on Small Tables in Python?Corbin March2009-09-24T19:39:46Z2009-09-24T19:39:46ZNice. Thanks Paul.http://stackoverflow.com/questions/1391447/what-does-the-postfix-t-stand-for-in-cComment by Corbin March on What does the postfix "_t" stand for in C?Corbin March2009-09-08T00:47:26Z2009-09-08T00:47:26ZDuplicate: <a href="http://stackoverflow.com/questions/231760/what-does-a-type-followed-by-t-underscore-t-represent" rel="nofollow" title="what does a type followed by t underscore t represent">stackoverflow.com/questions/231760/…</a>http://stackoverflow.com/questions/1349004/contribute-to-opensourceComment by Corbin March on Contribute to OpenSourceCorbin March2009-08-28T19:54:52Z2009-08-28T19:54:52ZClosed duplicate: <a href="http://stackoverflow.com/questions/1316780/how-should-i-contribute-to-an-open-source-project-closed" rel="nofollow" title="how should i contribute to an open source project closed">stackoverflow.com/questions/1316780/…</a>http://stackoverflow.com/questions/1262616/would-it-be-a-good-idea-to-learn-cobol-if-so-howComment by Corbin March on Would it be a good idea to learn COBOL? If so, how?Corbin March2009-08-11T20:27:06Z2009-08-11T20:27:06ZLarry O'Brien's take: <a href="http://www.knowing.net/index.php/2009/08/10/220-billion-lines-of-cobol-bs/" rel="nofollow">knowing.net/index.php/2009/…</a>http://stackoverflow.com/questions/1203960/how-asp-net-page-worksComment by Corbin March on How ASP.NET page works?Corbin March2009-07-30T01:49:27Z2009-07-30T01:49:27ZPossible duplicate: <a href="http://stackoverflow.com/questions/820342/where-can-i-find-a-good-detailed-tutorial-on-the-lifecycle-of-a-page-request" rel="nofollow" title="where can i find a good detailed tutorial on the lifecycle of a page request">stackoverflow.com/questions/820342/…</a>http://stackoverflow.com/questions/359877/are-there-famous-developers-using-stackoverflow/359999#359999Comment by Corbin March on Are there famous developers using StackOverflow?Corbin March2009-06-25T05:40:27Z2009-06-25T05:40:27ZUpdated the link to an Allison Randal answer. Looks like her user account is closed.http://stackoverflow.com/questions/1004295/asp-net-mvc-and-orm-selectionComment by Corbin March on ASP.NET MVC and ORM SelectionCorbin March2009-06-16T22:48:51Z2009-06-16T22:48:51ZNo offense, but it does seem this has been asked before: <a href="http://stackoverflow.com/search?q=.net+orm" rel="nofollow">stackoverflow.com/search?q=.net+orm</a> . <a href="http://stackoverflow.com/questions/380620/what-object-mapper-solution-would-you-recommend-for-net-closed" rel="nofollow" title="what object mapper solution would you recommend for net closed">stackoverflow.com/questions/380620/…</a> was closed as a duplicate.http://stackoverflow.com/questions/976649/python-web-frameworks-an-honest-opinion-requiredComment by Corbin March on Python web frameworks, an honest opinion required.Corbin March2009-06-10T16:26:42Z2009-06-10T16:26:42ZSee also: <a href="http://stackoverflow.com/questions/702179/django-vs-other-python-web-frameworks" rel="nofollow" title="django vs other python web frameworks">stackoverflow.com/questions/702179/…</a> and <a href="http://stackoverflow.com/questions/191062/python-webframework-confusion" rel="nofollow" title="python webframework confusion">stackoverflow.com/questions/191062/…</a>.http://stackoverflow.com/questions/976649/python-web-frameworks-an-honest-opinion-requiredComment by Corbin March on Python web frameworks, an honest opinion required.Corbin March2009-06-10T16:22:30Z2009-06-10T16:22:30ZDuplicate, I believe: <a href="http://stackoverflow.com/questions/7170/recommendation-for-straight-forward-python-frameworks" rel="nofollow" title="recommendation for straight forward python frameworks">stackoverflow.com/questions/7170/…</a>http://stackoverflow.com/questions/971717/recommendations-for-evaluating-potential-employees/971864#971864Comment by Corbin March on Recommendations for evaluating potential employees?Corbin March2009-06-09T21:36:16Z2009-06-09T21:36:16ZA legitimate concern, for sure. Still, if both parties are flexible, I believe you can find a compromise. A bad fit is hard on everyone and fit is difficult to predict with interviews. I'm busy, old, and married and would make time for the right opportunity. You're right, though. The candidate should determine the terms. Only extend the opportunity to "the one" on the outside chance they're not...or you're not.http://stackoverflow.com/questions/960239/jquery-air-passenger-seat-layout-example/960248#960248Comment by Corbin March on jQuery Air Passenger Seat Layout ExampleCorbin March2009-06-06T18:34:36Z2009-06-06T18:34:36ZI would ask a new question. This is a bit out-of-scope from what you originally asked (and probably out-of-scope for stackoverflow).http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/947501#947501Comment by Corbin March on Hook a javascript event to page loadCorbin March2009-06-04T21:28:32Z2009-06-04T21:28:32ZSome would say browser feature detection is required to get the most out of your runtime versus a bad programming practice. I appreciate the purity of your opinion but wouldn't suggest a differing opinion makes someone un-pragmatic.