User Even Mien - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:12:07Zhttp://stackoverflow.com/feeds/user/73794http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1842821/ssis-strip-characters-from-flat-file0SSIS: Strip Characters from Flat FileEven Mien2009-12-03T20:47:52Z2009-12-03T22:27:57Z
<p>What's the best way to strip out characters from flat files in SSIS? In my case, I need to remove all quotes from the file before processing.</p>
http://stackoverflow.com/questions/1840537/populate-a-list-of-objects-with-linq/1840828#18408280Answer by Even Mien for Populate a list of Objects (With Linq?)Even Mien2009-12-03T15:52:52Z2009-12-03T15:59:53Z<p>Another option is to use <a href="http://automapper.codeplex.com/wikipage?title=Lists%20and%20Arrays" rel="nofollow">AutoMapper</a> handle your conversions.</p>
<pre><code>Mapper.CreateMap<Role, RoleModel>();
IList<RoleViewModel> returnViewModel =
Mapper.Map<IList<Role>, IList<RoleViewModel>>(PermServ.GetAllRoles());
</code></pre>
http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written16What is the worst code you've ever written?Even Mien2008-09-25T01:22:55Z2009-12-03T15:49:34Z
<p>Step into the confessional. Now's your time to come clean. </p>
<ul>
<li>What's the worst code you personally have
ever written? </li>
<li>Why was it so bad?</li>
<li>What did you learn from it?</li>
</ul>
<p>Don't tell us about code you inherited or from some co-worker. This is about your personal growth as a programmer and as a person.</p>
http://stackoverflow.com/questions/424705/how-do-i-get-the-asp-net-datapager-control-to-work-in-an-updatepanel/1833441#18334410Answer by Even Mien for How do I get the ASP.NET DataPager control to work in an UpdatePanel?Even Mien2009-12-02T15:01:00Z2009-12-02T15:01:00Z<p>I had a similar problem when using a <code>DataPager</code> on a data control where <code>EnableViewState=false</code>.</p>
http://stackoverflow.com/questions/926779/net-resource-leak-gotchas/927117#9271176Answer by Even Mien for .NET Resource Leak GotchasEven Mien2009-05-29T17:10:55Z2009-11-26T04:12:19Z<p>Not using <code>Using</code>.</p>
http://stackoverflow.com/questions/47752/remove-duplicates-from-a-listt-in-c/1792582#17925820Answer by Even Mien for Remove duplicates from a List<T> in C#Even Mien2009-11-24T20:05:03Z2009-11-24T20:05:03Z<p><strong>Simply initialize a HashSet with a List of the same type:</strong></p>
<pre><code>var noDupes = new HashSet<T>(withDupes);
</code></pre>
http://stackoverflow.com/questions/779146/what-are-some-clever-uses-of-linq7What are some clever uses of LINQ?Even Mien2009-04-22T20:44:54Z2009-11-19T23:55:20Z
<p>What are some clever uses for LINQ outside of LINQ to SQL? </p>
<p>Have you found any problems that LINQ made a whole lot easier to solve? Please post examples.</p>
http://stackoverflow.com/questions/972345/programmatically-add-trusted-sites-to-internet-explorer2Programmatically add trusted sites to Internet ExplorerEven Mien2009-06-09T20:33:30Z2009-11-12T21:28:39Z
<p>I'm doing an IE automation project using WatiN. </p>
<p>When a file to be downloaded is clicked, I get the following in the Internet Explorer Information bar:</p>
<blockquote>
<p>To help protect your security,
Internet Explorer has blocked this
site from downloading files to you
computer.</p>
</blockquote>
<p>In order to download the report, I can manually add the site to Internet Explorer's list of trusted sites, but I would prefer to check programmatically in .NET to see if the site is trusted and add it to the list if it is not. </p>
<p>FYI, I'm currently using IE7.</p>
http://stackoverflow.com/questions/1687466/asp-net-individual-session-variables-vs-object-saved-in-session/1687594#16875942Answer by Even Mien for asp.net: Individual Session Variables vs Object Saved in SessionEven Mien2009-11-06T13:28:05Z2009-11-06T13:28:05Z<p>If performance is a major concern, then you may want to look at optimizing the serialization of the session content. Serialization/deserialization becomes a bigger bottleneck when you scale out to a Session Server or use SQL Server to manage session state.</p>
<p>From <a href="http://msdn.microsoft.com/en-us/magazine/cc163730.aspx" rel="nofollow">MSDN Magazine</a>:</p>
<blockquote>
<p>Session state uses a custom
serialization mechanism to convert the
session dictionary and its contents to
a binary blob before storing the data
in an out-of-process store. The
serialization mechanism has direct
support for .NET Framework primitive
types, including String, Boolean,
DateTime, TimeSpan, Int16, Int32,
Int64, Byte, Char, Single, Double,
Decimal, SByte, UInt16, UInt32,
UInt64, Guid, and IntPtr. These types
are written directly to the blob,
while object types are serialized with
BinaryFormatter, which is slower.
Deserialization follows the same
rules. By optimizing the session
contents, you can significantly reduce
the overhead of serialization and
deserialization of the state data.</p>
<p>When designing your session object
model, avoid storing object types in
the session. Instead, only store
primitive types in the session
dictionary and rebuild your business
layer session objects on every request
based on the session data. This avoids
the overhead of using BinaryFormatter.</p>
</blockquote>
<p>As always, measure your performance first before making any optimizations.</p>
http://stackoverflow.com/questions/159567/how-can-i-parse-the-first-middle-and-last-name-from-a-full-name-field-in-sql6How can I parse the first, middle and last name from a full name field in SQL?Even Mien2008-10-01T20:32:30Z2009-11-01T02:32:31Z
<p>I'm having to do some data conversion, and I need to try to match up on names that are not a direct match on full name. I'd like to be able to take the full name field and break it up into first, middle and last name. </p>
<p>The data does not include any prefixes or suffixes. The middle name is optional. The data is formatted 'First Middle Last'.</p>
<p>I'm interested in some practical solutions to get me 90% of the way there. As it has been stated, this is a complex problem, so I'll handle special cases specially :) </p>
http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelation2What has been your greatest programming revelation? [closed]Even Mien2009-10-25T11:56:33Z2009-10-25T23:06:42Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/343390/what-was-your-biggest-cs-eye-opener">What was your biggest CS eye-opener?</a> </p>
</blockquote>
<p>What has been your greatest Shakubuku (a swift, spiritual kick to the head that alters your reality forever) towards how you approach programming?</p>
<p>I ask, because I just had a good one reading Jon Skeet's metaphor on explaining the difference between reference types and value types: <a href="http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts">http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts</a></p>
http://stackoverflow.com/questions/1620263/linq2sql-why-doesnt-datacontext-update-database/1621111#16211110Answer by Even Mien for Linq2SQL: Why doesn't datacontext update database Even Mien2009-10-25T15:00:31Z2009-10-25T15:00:31Z<p>You should directly change the records from the database through LinqToSql. Changing the results that you retrieved from the stored procedure will not update the database.</p>
<p>Try something like this, instead of calling the stored procedure: </p>
<pre><code>var result = data.TEST_TABLES();
</code></pre>
http://stackoverflow.com/questions/1620485/which-metaphor-would-you-use-to-describe-programming/1620556#16205562Answer by Even Mien for Which metaphor would you use to describe programming?Even Mien2009-10-25T10:28:02Z2009-10-25T10:28:02Z<p><strong>Writing</strong></p>
<p>Here are the steps to the writing process (seem familiar?):</p>
<ul>
<li>Pre-writing / Drafting</li>
<li>Writing</li>
<li>Sharing / Responding</li>
<li>Revising</li>
<li>Editing</li>
<li>Evaluating</li>
</ul>
http://stackoverflow.com/questions/1601780/regular-expression-to-find-unescaped-double-quotes-in-csv-file0Regular expression to find unescaped double quotes in CSV fileEven Mien2009-10-21T15:51:28Z2009-10-21T17:12:24Z
<p>What would a regular expression be to find sets of 2 unescaped double quotes that are contained in columns set off by double quotes in a CSV file?</p>
<p><strong>Not a match:</strong></p>
<pre><code>"asdf","asdf"
"", "asdf"
"asdf", ""
"adsf", "", "asdf"
</code></pre>
<p><strong>Match:</strong></p>
<pre><code>"asdf""asdf", "asdf"
"asdf", """asdf"""
"asdf", """"
</code></pre>
http://stackoverflow.com/questions/167576/sql-server-check-if-table-exists/1601406#16014060Answer by Even Mien for SQL Server: Check if table existsEven Mien2009-10-21T14:58:15Z2009-10-21T14:58:15Z<p>If you need to work on different databases:</p>
<pre><code>DECLARE @Catalog VARCHAR(255)
SET @Catalog = 'MyDatabase'
DECLARE @Schema VARCHAR(255)
SET @Schema = 'dbo'
DECLARE @Table VARCHAR(255)
SET @Table = 'MyTable'
IF (EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_CATALOG = @Catalog
AND TABLE_SCHEMA = @Schema
AND TABLE_NAME = @Table))
BEGIN
--do stuff
END
</code></pre>
http://stackoverflow.com/questions/1299575/import-package-error-cannot-convert-between-unicode-and-non-unicode-string-data/1596876#15968760Answer by Even Mien for Import Package Error - Cannot Convert between Unicode and Non Unicode String Data TypeEven Mien2009-10-20T19:45:36Z2009-10-20T19:45:36Z<p><strong>Non-Unicode string data types:</strong><br />
Use STR for text file and VARCHAR for SQL Server columns. </p>
<p><strong>Unicode string data types:</strong><br />
Use W_STR for text file and NVARCHAR for SQL Server columns.</p>
<p>The problem is that your data types do not match, so there could be a loss of data during the conversion.</p>
http://stackoverflow.com/questions/47204/best-free-online-computer-science-college-courses/1527187#15271873Answer by Even Mien for Best free online Computer Science college coursesEven Mien2009-10-06T18:09:57Z2009-10-06T18:09:57Z<p><a href="http://academicearth.org/" rel="nofollow">Academic Earth</a> has free academic video courses from leading universities. Courses include:</p>
<p>The Structure and Interpretation of Computer Programs<br />
Berkeley / Computer Science<br />
Brian Harvey </p>
<p>Data Structures<br />
Berkeley / Computer Science<br />
Paul Hilfinger </p>
<p>Operating Systems and System Programming<br />
Berkeley / Computer Science<br />
John Kubiatowicz </p>
<p>Computer Science I: Programming Methodology<br />
Stanford / Advanced Placement (AP) Test Prep<br />
Mehran Sahami </p>
<p>Computer Science II: Programming Abstractions<br />
Stanford / Advanced Placement (AP) Test Prep<br />
Julie Zelenski </p>
<p>Computer Science III: Programming Paradigms<br />
Stanford / Computer Science<br />
Jerry Cain </p>
<p>Machine Learning<br />
Stanford / Computer Science<br />
Andrew Ng </p>
<p>Introduction to Computer Science I<br />
Harvard / Computer Science<br />
David J. Malan </p>
<p>Understanding Computers and the Internet<br />
Harvard / Computer Science<br />
David J. Malan </p>
<p>Introduction to Algorithms<br />
MIT / Computer Science<br />
Charles E. Leiserson </p>
http://stackoverflow.com/questions/432161/c-switch-with-string-isnullorempty/1509646#15096461Answer by Even Mien for C# Switch with String.IsNullOrEmptyEven Mien2009-10-02T13:54:26Z2009-10-05T13:31:07Z<p>Something that I just noticed is that you can <strong>combine if/else and switch statements!</strong> Very useful when needing to check preconditions.</p>
<pre><code>if (string.IsNullOrEmpty(text))
{
//blah
}
else switch (text)
{
case "hi":
Console.WriteLine("How about a nice game of chess?");
break;
default:
break;
}
</code></pre>
http://stackoverflow.com/questions/1509842/what-is-the-most-terse-syntax-check-for-checking-preconditions-and-then-calling-a0What is the most terse syntax check for checking preconditions and then calling a switch statement?Even Mien2009-10-02T14:24:48Z2009-10-02T14:52:54Z
<p>What is the most terse syntax to combine a check for some preconditions with a switch statement? Can I combine an if/else and switch statement?</p>
<pre><code>if (!IsValid(text))
{
DoSomeLogging();
}
else
{
switch (text)
{
case "1":
DoSomething();
break;
case "2"
DoSomethingElse();
break;
default:
break;
}
}
</code></pre>
<p><strong>Edit:</strong> Removed skip comment. I wasn't looking to invert the statement.</p>
http://stackoverflow.com/questions/1509842/what-is-the-most-terse-syntax-check-for-checking-preconditions-and-then-calling-a/1509909#15099090Answer by Even Mien for What is the most terse syntax check for checking preconditions and then calling a switch statement?Even Mien2009-10-02T14:36:18Z2009-10-02T14:36:18Z<p>I just noticed that you can combine an if/else and switch statement. Is this new to 3.5?</p>
<pre><code>if (!IsValid(text))
DoSomeLogging();
else switch (text)
{
case "1":
DoSomething();
break;
case "2"
DoSomethingElse();
break;
default:
break;
}
</code></pre>
http://stackoverflow.com/questions/395618/if-else-vs-switch/1509609#15096090Answer by Even Mien for If/Else vs. SwitchEven Mien2009-10-02T13:48:25Z2009-10-02T13:48:25Z<p>Something that I just noticed is that you can combine if/else and switch statements! Very useful when needing to check preconditions.</p>
<pre><code>if (string.IsNullOrEmpty(line))
{
//skip empty lines
}
else switch (line.Substring(0,1))
{
case "1":
Console.WriteLine(line);
break;
case "9":
Console.WriteLine(line);
break;
default:
break;
}
</code></pre>
http://stackoverflow.com/questions/1441297/event-log-written-as-warning-instead-of-error0Event Log written as Warning instead of Error Even Mien2009-09-17T20:54:31Z2009-09-17T21:19:50Z
<p>I'm using EntLib 4.1 for logging. When I have an exception handled in the Application_Error of Global.asax.cs, I log the error with a category of 'Error'. I assumed that the event log type would be 'Error', but instead the event log entry is written with a type of 'Warning' and category of 'Web Event'.</p>
<pre><code>public static void Write(Exception ex)
{
var log = new LogEntry
{
Message = ex.Message
};
Logger.Write(log, "Error");
}
</code></pre>
<p>Is there some disconnect between an event log type and log category?</p>
<p>How can I get my web application to log with a type of 'Error' from Enterprise Library?</p>
http://stackoverflow.com/questions/1405153/mercurial-performing-binary-comparison-for-certain-file-types1Mercurial performing binary comparison for certain file typesEven Mien2009-09-10T13:00:53Z2009-09-11T20:07:10Z
<p>I've recently started using Mercurial and when I reverted one of my .SQL files, Mercurial performed a binary comparison. This obviously limits the visibility of the changes that were made, as there is no diff.</p>
<p>Is there an option to set file types to do a string compare?</p>
<p>I'm using Tortioise Hg 0.8.1 with Mercurial 1.3.1.</p>
http://stackoverflow.com/questions/863872/id-or-tablenameid-as-primary-key-entity-identifier1Id or [TableName]Id as primary key / entity identifierEven Mien2009-05-14T15:05:21Z2009-09-09T04:55:58Z
<p>Is it preferred to use "Id" as the column name for a primary key or "[TableName]Id" as a naming convention?</p>
<blockquote>
<p>Table: Account<br />
Primary Key: Id</p>
</blockquote>
<p>-- versus --</p>
<blockquote>
<p>Table: Account<br />
Primary Key: AccountId</p>
</blockquote>
<p>It seems to be split about 50% / 50% in the implementations that I've seen. What are the advantages and disadvantages in each approach? </p>
<p><strong>Follow-up:</strong></p>
<p>Does it make sense to use one convention in my database, and another on my entities in code? Or should I keep them consistent? How would does this work best in most ORMs?</p>
http://stackoverflow.com/questions/1358687/what-are-some-good-methods-to-find-the-relatedness-of-two-bodies-of-text/1359268#13592680Answer by Even Mien for What are some good methods to find the "relatedness" of two bodies of text?Even Mien2009-08-31T20:31:08Z2009-08-31T20:37:10Z<p><strong>Phonetic algorithms</strong></p>
<p>The article, <a href="http://anastasiosyal.com/archive/2009/01/11/18.aspx" rel="nofollow">Beyond SoundEx - Functions for Fuzzy Searching in MS SQL Server</a>, shows how to install and use the <a href="http://sourceforge.net/projects/simmetrics/" rel="nofollow">SimMetrics</a> library into SQL Server. This library lets you find relative similarity between strings and includes numerous algorithms. </p>
<p>I ended up mostly using <a href="http://www.dcs.shef.ac.uk/~sam/stringmetrics.html#jarowinkler" rel="nofollow">Jaro Winkler</a> to match on names. Here's more information where I asked about matching names on SO: <a href="http://stackoverflow.com/questions/988050/matching-records-based-on-person-name">http://stackoverflow.com/questions/988050/matching-records-based-on-person-name</a></p>
<p>A few algorithms based on <a href="http://www.dcs.shef.ac.uk/~sam/stringmetrics.html" rel="nofollow">Levenshtein Distance</a> are also available in the SimMetric library and would probably be useful in your application.</p>
http://stackoverflow.com/questions/630803/enum-with-strings/1343517#13435173Answer by Even Mien for Enum with stringsEven Mien2009-08-27T20:12:41Z2009-08-27T20:12:41Z<p>I like to use <strong>properties in a class</strong> instead of methods, since they look more enum-like.</p>
<p>Here's a example for a Logger:</p>
<pre><code>public class LogCategory
{
private LogCategory(string value) { Value = value; }
public string Value { get; set; }
public static LogCategory Trace { get { return new LogCategory("Trace"); } }
public static LogCategory Debug { get { return new LogCategory("Debug"); } }
public static LogCategory Info { get { return new LogCategory("Info"); } }
public static LogCategory Warning { get { return new LogCategory("Warning"); } }
public static LogCategory Error { get { return new LogCategory("Error"); } }
}
</code></pre>
<p>Pass in <strong>type-safe string values</strong> as a parameter:</p>
<pre><code>public static void Write(string message, LogCategory logCategory)
{
var log = new LogEntry { Message = message };
Logger.Write(log, logCategory.Value);
}
</code></pre>
<p>Usage:</p>
<pre><code>Logger.Write("This is almost like an enum.", LogCategory.Info);
</code></pre>
http://stackoverflow.com/questions/1308927/refactor-methods-invoking-delgates-with-different-parameter-signatures1Refactor methods invoking delgates with different parameter signaturesEven Mien2009-08-20T21:24:34Z2009-08-24T21:56:38Z
<p>Is there a pattern that I could apply to refactor this code? The only difference between the two methods is that that one method takes an extra parameter and passes it to the delegate?</p>
<p>I found out that delegates cannot take overloaded method signatures. How could I add one more level of indirection? :)</p>
<pre><code>public static void ProcessFolder(
ProcessFolderDelegate processFolderDelegate
)
{
using (var esb = ExchangeService.GetExchangeServiceBinding())
{
var contactFolder = FolderService.GetPublicFolder(esb,
Properties.Settings.Default.ExchangePublicFolderName);
processFolderDelegate(esb, contactFolder);
}
}
public static void ProcessContact(
ProcessContactDelegate processContactDelegate,
Contact contact //extra param
)
{
using (var esb = ExchangeService.GetExchangeServiceBinding())
{
var contactFolder = FolderService.GetPublicFolder(esb,
Properties.Settings.Default.ExchangePublicFolderName);
processContactDelegate(esb, contactFolder, contact); //extra param
}
}
</code></pre>
http://stackoverflow.com/questions/1254650/should-i-use-a-32-bit-or-64-bit-os-for-a-development-machine2Should I use a 32-bit or 64-bit OS for a development machine?Even Mien2009-08-10T12:41:42Z2009-08-11T02:03:11Z
<p>I remember hearing that for performance a development machine should be 32 bit, while servers should be 64 bit. I think it was Richard Campell on <em>Dot Net Rocks!</em> that mentioned this.</p>
<p>Why would 32-bit be faster than the 64-bit for a development box and vice versa for servers?</p>
http://stackoverflow.com/questions/1177872/strip-double-quotes-from-a-string-in-net0Strip double quotes from a string in .NETEven Mien2009-07-24T13:59:50Z2009-08-01T22:49:13Z
<p>I'm trying to match on some inconsistently formatted HTML and need to strip out some double quotes.</p>
<p>Current:</p>
<pre><code><input type="hidden">
</code></pre>
<p>The Goal:</p>
<pre><code><input type=hidden>
</code></pre>
<p>This is wrong because I'm not escaping it properly:</p>
<blockquote>
<p>s = s.Replace(""","");</p>
</blockquote>
<p>This is wrong because there is not blank character character (to my knowledge):</p>
<pre><code>s = s.Replace('"', '');
</code></pre>
<p>What is syntax / escape character combination for replacing double quotes with an empty string?</p>
http://stackoverflow.com/questions/1217371/what-is-the-best-architecture-for-content-oriented-website-portal/1217456#12174560Answer by Even Mien for What is the best architecture for content oriented website/portal?Even Mien2009-08-01T20:45:10Z2009-08-01T20:45:10Z<p><a href="http://couchdb.apache.org/docs/intro.html" rel="nofollow">CouchDB</a> would be interesting to look at for this project.</p>
<p><strong>What CouchDB is</strong><br />
•A document database server, accessible via a RESTful JSON API.<br />
•Ad-hoc and schema-free with a flat address space.<br />
•Distributed, featuring robust, incremental replication with bi-directional conflict detection and management.<br />
•Query-able and index-able, featuring a table oriented reporting engine that uses Javascript as a query language. </p>
<p><strong>What it is Not</strong><br />
•A relational database.<br />
•A replacement for relational databases.<br />
•An object-oriented database. Or more specifically, meant to function as a seamless persistence layer for an OO programming language. </p>
http://stackoverflow.com/questions/1206960/how-to-set-css-for-disabled-checkboxes/1207453#1207453Comment by Even Mien on How to set CSS for disabled checkboxes?Even Mien2009-11-20T14:46:33Z2009-11-20T14:46:33ZYeah, I definitely need IE as that's 100% of my user base.http://stackoverflow.com/questions/1687466/asp-net-individual-session-variables-vs-object-saved-in-session/1687594#1687594Comment by Even Mien on asp.net: Individual Session Variables vs Object Saved in SessionEven Mien2009-11-06T13:43:04Z2009-11-06T13:43:04ZI'd go with the struct then. But if your session serialization starts to become a bottleneck, you can always break the struct apart.http://stackoverflow.com/questions/551901/is-there-an-alternative-to-dictionary-sortedlist-that-allows-duplicatesComment by Even Mien on Is there an alternative to Dictionary/SortedList that allows duplicates?Even Mien2009-11-05T13:43:05Z2009-11-05T13:43:05ZDuplicate of <a href="http://stackoverflow.com/questions/146204/duplicate-keys-in-net-dictionaries" rel="nofollow" title="duplicate keys in net dictionaries">stackoverflow.com/questions/146204/…</a>http://stackoverflow.com/questions/119312/dash-vs-underscore/137434#137434Comment by Even Mien on Dash vs. UnderscoreEven Mien2009-11-03T12:07:46Z2009-11-03T12:07:46ZWelcome to the Wild Wild Web!http://stackoverflow.com/questions/152981/recommend-one-favorite-ssis-component-that-does-sftp-ftps/1511276#1511276Comment by Even Mien on Recommend ONE favorite SSIS component that does SFTP/FTPSEven Mien2009-10-26T17:05:21Z2009-10-26T17:05:21ZSFTP component is NOT free, though.http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelationComment by Even Mien on What has been your greatest programming revelation?Even Mien2009-10-25T23:23:26Z2009-10-25T23:23:26ZIt would be nice to to merge the answers into the other question. So much for using 'shakubuku' for earning my taxonomist badge.http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelationComment by Even Mien on What has been your greatest programming revelation?Even Mien2009-10-25T22:42:25Z2009-10-25T22:42:25Z@gnovice similar, but not an exact dup imo. I wanted to find out about how an epiphany can change how people look at their craft, not only about the epiphany itself.http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelationComment by Even Mien on What has been your greatest programming revelation?Even Mien2009-10-25T20:22:25Z2009-10-25T20:22:25Z@Casey It's a quote from Grosse Point Blank, the best high school reunion assassin movie of all time (<a href="http://www.imdb.com/title/tt0119229/quotes" rel="nofollow">imdb.com/title/tt0119229/quotes</a>), but for real it's a Buddhist idea (<a href="http://www.gakkaionline.net/Imagery/Shakubuku.html" rel="nofollow">gakkaionline.net/Imagery/Shakubuku.html/…</a>).http://stackoverflow.com/questions/1202540/how-to-find-what-numbers-in-a-set-add-up-to-another-given-number/1202588#1202588Comment by Even Mien on How to find what numbers in a set add up to another given number?Even Mien2009-10-25T11:34:48Z2009-10-25T11:34:48ZMy understanding is that Subset Sum is an exact match, while more generalized Knapsack is finding a maximum amount.http://stackoverflow.com/questions/328141/what-do-you-think-of-programming-is-gardening-not-engineering/328400#328400Comment by Even Mien on What do you think of "Programming is Gardening, not Engineering"?Even Mien2009-10-25T11:04:49Z2009-10-25T11:04:49Zmetaphor counter-examples: data grows every day and night, bugs sneak in through your keyboard and fingers, TDD spray helps keep the bugs away, you can eat because you code, lcd tans are sexier and more healthy, dumping crap data as tests makes code more robust, pruned code grows with reuse, bad code springs up through other developers and management whims http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts/274517#274517Comment by Even Mien on What are your favorite metaphors for technical concepts?Even Mien2009-10-25T10:44:38Z2009-10-25T10:44:38ZThat's definitely a Shakubuku (a swift, spiritual kick to the head that alters your reality forever).http://stackoverflow.com/questions/1601780/regular-expression-to-find-unescaped-double-quotes-in-csv-fileComment by Even Mien on Regular expression to find unescaped double quotes in CSV fileEven Mien2009-10-21T16:02:57Z2009-10-21T16:02:57ZMy line breaks were off in the post. Does it make sense now?http://stackoverflow.com/questions/432161/c-switch-with-string-isnullorempty/1509646#1509646Comment by Even Mien on C# Switch with String.IsNullOrEmptyEven Mien2009-10-05T13:30:19Z2009-10-05T13:30:19ZSomeone pointed out on a related post on SO that this is not really combining the statements, but the else-clause is just without the curly braces, so the switch is the only statement executed. This is syntactically the same as Josh's answer. I do think it looks nice though.http://stackoverflow.com/questions/1509842/what-is-the-most-terse-syntax-check-for-checking-preconditions-and-then-calling-a/1509909#1509909Comment by Even Mien on What is the most terse syntax check for checking preconditions and then calling a switch statement?Even Mien2009-10-02T14:58:42Z2009-10-02T14:58:42ZDo'h! Here I thought I had found out something new and interesting. Turns out it was something I just always avoided, since I tend to never leave out the curly braces, so I don't accidentally skip a statement if I need to add one.http://stackoverflow.com/questions/815782/what-is-a-more-unique-delimiter-than-comma-for-separating-strings/815818#815818Comment by Even Mien on What is a more unique delimiter than comma for separating strings?Even Mien2009-09-30T12:26:13Z2009-09-30T12:26:13ZI did exactly the same thing when parsing HL7.