User mlarsen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:44:47Zhttp://stackoverflow.com/feeds/user/17700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1199973/invoke-google-maps-api-v3-javascript-api-from-windows-forms-app/1200034#12000341Answer by mlarsen for Invoke Google Maps API V3 Javascript API from Windows Forms app?mlarsen2009-07-29T12:52:44Z2009-07-29T12:52:44Z<p>You could host the WebBrowser control on your form and use that to interact with the Google Maps API.</p>
<p>But some more information about what you are really trying to do would be nice.</p>
http://stackoverflow.com/questions/1199903/how-can-i-optimise-this-mysql-query/1199961#11999611Answer by mlarsen for How can I optimise this MySQL query?mlarsen2009-07-29T12:38:37Z2009-07-29T12:38:37Z<p>You could precompute the MID(<code>game</code>,14,1) and MID(<code>game</code>,1,14) and store the first ten digits of the <code>game</code> in a separate gameid column which is indexed.</p>
<p>It might also be an idea to investigate if you could just store an aggregate table of the precomputed values so you increment the count and wins or losses column on insert instead. </p>
http://stackoverflow.com/questions/867114/why-no-reference-counting-garbage-collection-in-c/867150#8671501Answer by mlarsen for Why no Reference Counting + Garbage Collection in C#?mlarsen2009-05-15T05:55:31Z2009-05-15T05:55:31Z<p>The object implemeting IDisposable must also implement a finalizer called by the GC when the user doesn't explicit call Dispose - see <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.dispose.aspx" rel="nofollow">IDisposable.Dispose at MSDN</a>. </p>
<p>The whole point of IDisposable is that the GC is running at some non-deterministic time and you implement IDisposable because you hold a valuable resource and wants to free it at a deterministic time.</p>
<p>So your proposal would change nothing in terms of IDisposable.</p>
<p>Edit:</p>
<p>Sorry. Didn't read your proposal correctly. :-(</p>
<p>Wikipedia has a simple explanation of the <a href="http://en.wikipedia.org/wiki/Reference_counting#Advantages_and_disadvantages" rel="nofollow">shortcomings of References counted GC</a></p>
http://stackoverflow.com/questions/361943/why-does-rtp-use-udp-instead-of-tcp/420298#4202981Answer by mlarsen for Why Does RTP use UDP instead of TCP?mlarsen2009-01-07T13:27:30Z2009-01-07T13:27:30Z<p>Besides all the others nice and correct answers <a href="http://gafferongames.wordpress.com/networking-for-game-programmers/udp-vs-tcp/" rel="nofollow">this article</a> gives a good understanding about the differences between TCP and UDP.</p>
http://stackoverflow.com/questions/316649/csv-parsing/316722#3167220Answer by mlarsen for CSV Parsingmlarsen2008-11-25T08:47:38Z2008-11-25T08:47:38Z<p><a href="http://filehelpers.sourceforge.net/" rel="nofollow">FileHelpers</a> for .Net is your friend. </p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271421#27142112Answer by mlarsen for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)mlarsen2008-11-07T07:11:02Z2008-11-10T14:40:51Z<pre><code>public static class StringExtensions {
/// <summary>
/// Parses a string into an Enum
/// </summary>
/// <typeparam name="T">The type of the Enum</typeparam>
/// <param name="value">String value to parse</param>
/// <returns>The Enum corresponding to the stringExtensions</returns>
public static T EnumParse<T>(this string value) {
return StringExtensions.EnumParse<T>(value, false);
}
public static T EnumParse<T>(this string value, bool ignorecase) {
if (value == null) {
throw new ArgumentNullException("value");
}
value = value.Trim();
if (value.Length == 0) {
throw new ArgumentException("Must specify valid information for parsing in the string.", "value");
}
Type t = typeof(T);
if (!t.IsEnum) {
throw new ArgumentException("Type provided must be an Enum.", "T");
}
return (T)Enum.Parse(t, value, ignorecase);
}
}
</code></pre>
<p>Useful to parse a string into an Enum.</p>
<pre><code>public enum TestEnum
{
Bar,
Test
}
public class Test
{
public void Test()
{
TestEnum foo = "Test".EnumParse<TestEnum>();
}
}
</code></pre>
<p>Credit goes to <a href="http://geekswithblogs.net/sdorman/" rel="nofollow">Scott Dorman</a></p>
<p>--- Edit for Codeplex project ---</p>
<p>I have asked Scott Dorman if he would mind us publishing his code in the Codeplex project. This is the reply I got from him:</p>
<blockquote>
<p>Thanks for the heads-up on both the SO post and the CodePlex project. I have upvoted your answer on the question. Yes, the code is effectively in the public domain currently under the CodeProject Open License (<a href="http://www.codeproject.com/info/cpol10.aspx" rel="nofollow">http://www.codeproject.com/info/cpol10.aspx</a>).</p>
<p>I have no problems with this being included in the CodePlex project, and if you want to add me to the project (username is sdorman) I will add that method plus some additional enum helper methods.</p>
</blockquote>
http://stackoverflow.com/questions/267838/how-can-a-windows-service-execute-a-gui-application/267909#2679093Answer by mlarsen for How can a Windows service execute a GUI application?mlarsen2008-11-06T08:05:25Z2008-11-06T08:05:25Z<p>The short answer is "You don't", as opening a GUI program running under another user context is a security vulnerability commonly known as a <a href="http://en.wikipedia.org/wiki/Shatter_attack" rel="nofollow">Shatter Attack</a>.</p>
<p>Take a look at this MSDN article: <a href="http://msdn.microsoft.com/en-us/library/ms683502(VS.85).aspx" rel="nofollow">Interactive Services</a>. It gives some options for a service to interact with a user.</p>
<p>In short you have these options:</p>
<ul>
<li><p>Display a dialog box in the user's session using the WTSSendMessage function.</p></li>
<li><p>Create a separate hidden GUI application and use the CreateProcessAsUser function to run the application within the context of the interactive user. Design the GUI application to communicate with the service through some method of interprocess communication (IPC), for example, named pipes. The service communicates with the GUI application to tell it when to display the GUI. The application communicates the results of the user interaction back to the service so that the service can take the appropriate action. Note that IPC can expose your service interfaces over the network unless you use an appropriate access control list (ACL).</p>
<p>If this service runs on a multiuser system, add the application to the following key so that it is run in each session: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run. If the application uses named pipes for IPC, the server can distinguish between multiple user processes by giving each pipe a unique name based on the session ID.</p></li>
</ul>
http://stackoverflow.com/questions/228125/javascript-percentage-validation/228821#2288212Answer by mlarsen for Javascript percentage validationmlarsen2008-10-23T07:14:14Z2008-10-24T06:34:11Z<p>This reminds me of <a href="http://weblogs.asp.net/alex_papadimoulis/archive/2005/05/25/408925.aspx" rel="nofollow">an old blog Entry</a> By Alex Papadimoulis (of <a href="http://thedailywtf.com/" rel="nofollow">The Daily WTF</a> fame) where he tells the following story:</p>
<blockquote>
<p>"A client has asked me to build and install a custom shelving system. I'm at the point where I need to nail it, but I'm not sure what to use to pound the nails in. Should I use an old shoe or a glass bottle?"</p>
<p>How would you answer the question?</p>
<ol>
<li><p>It depends. If you are looking to pound a small (20lb) nail in something like drywall, you'll find it much easier to use the bottle, especially if the shoe is dirty. However, if you are trying to drive a heavy nail into some wood, go with the shoe: the bottle with shatter in your hand.</p></li>
<li><p>There is something fundamentally wrong with the way you are building; you need to use real tools. Yes, it may involve a trip to the toolbox (or even to the hardware store), but doing it the right way is going to save a lot of time, money, and aggravation through the lifecycle of your product. You need to stop building things for money until you understand the basics of construction.</p></li>
</ol>
</blockquote>
<p>This is such a question where most people sees it as a challenge to come up with the correct regular expression to solve the problem, but it would be much better to just say that using regular expressions are using the wrong tool for the job.</p>
<p>The problem when trying to use regex to validate numeric ranges is that it is hard to change if the requirements for the allowed range is changes. Today the requirement may be to validate numbers between 0 and 100 and it is possible to write a regex for that which doesn't make your eyes bleed. But next week the requirment maybe changes so values between 0 and 315 are allowed. Good luck altering your regex. </p>
<p>The solution given by Greg Hewgill is probably better - even though it would validate "99fxx" as "99". But given the circumstances that might actually be ok.</p>
http://stackoverflow.com/questions/228726/dynamically-set-the-height-of-two-floated-divs/229014#2290140Answer by mlarsen for Dynamically Set the Height of Two floated DIVSmlarsen2008-10-23T08:54:13Z2008-10-23T08:54:13Z<p>There is also a jQuery plugin which does the job for you: <a href="http://plugins.jquery.com/project/equalizeCols" rel="nofollow">Equalize</a></p>
<p>It handles both the scenario where rightcol is larger then leftcol or where leftcol is larger than rightcol. It also allows you to specify which element inside either leftcol or rightcol should get the space added. </p>
http://stackoverflow.com/questions/113392/dynamically-added-controls-in-asp-net3Dynamically added controls in Asp.Netmlarsen2008-09-22T06:07:53Z2008-10-14T10:29:29Z
<p>I'm trying to wrap my head around asp.net. I have a background as a long time php developer, but I'm now facing the task of learning asp.net and I'm having some trouble with it. It might very well be because I'm trying to force the framework into something it is not intended for - so I'd like to learn how to do it "the right way". :-)</p>
<p>My problem is how to add controls to a page programmatically at runtime. As far as I can figure out you need to create the controls at page_init as they otherwise disappears at the next PostBack. But many times I'm facing the problem that I don't know which controls to add in page_init as it is dependent on values from at previous PostBack.</p>
<p>A simple scenario could be a form with a dropdown control added in the designer. The dropdown is set to AutoPostBack. When the PostBack occur I need to render one or more controls denepending on the selected value from the dropdown control and preferably have those controls act as if they had been added by the design (as in "when posted back, behave "properly").</p>
<p>Am I going down the wrong path here?</p>
http://stackoverflow.com/questions/197381/optimizing-single-row-queries-from-large-tables-in-mysql/197408#1974082Answer by mlarsen for Optimizing single-row queries from large tables in MySQLmlarsen2008-10-13T12:30:37Z2008-10-13T12:30:37Z<p>The answer is most definately a yes. If you define a unique index on timestamp, opening and slatangle MySQL should be able to find your row with very few disc seeks.</p>
<p>You might experiment with creating an index on timestamp, opening, slateangle and result. MySQL may be able to fetch your data from the index without touching the datafile at all.</p>
<p>The MySQL Manual has a <a href="http://dev.mysql.com/doc/refman/5.0/en/query-speed.html" rel="nofollow">section about optimzing queries</a>. </p>
http://stackoverflow.com/questions/113392/dynamically-added-controls-in-asp-net/152179#1521790Answer by mlarsen for Dynamically added controls in Asp.Netmlarsen2008-09-30T08:07:14Z2008-09-30T08:07:14Z<p>After having wrestled with this problem for at while I have come up with these groundrules which seems to work, but YMMV.</p>
<ul>
<li>Use declarative controls whenever possible</li>
<li>Use databinding where possible</li>
<li>Understand how ViewState works</li>
<li>The Visibilty property can go a long way</li>
<li>If you must use add controls in an event handler use Aydsman's tip and recreate the controls in an overridden LoadViewState.</li>
</ul>
<p><a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/truly-understanding-viewstate.aspx" rel="nofollow">TRULY Understanding ViewState</a> is a must-read.</p>
<p><a href="http://weblogs.asp.net/infinitiesloop/archive/2008/04/23/truly-understanding-dynamic-controls-by-example.aspx" rel="nofollow">Understanding Dynamic Controls By Example</a> shows some techniques on how to use databinding instead of dynamic controls.</p>
<p><a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/25/TRULY-Understanding-Dynamic-Controls-_2800_Part-1_2900_.aspx" rel="nofollow">TRULY Understanding Dynamic Controls</a> also clarifies techniques which can be used to avoid dynamic controls.</p>
<p>Hope this helps others with same problems.</p>
http://stackoverflow.com/questions/138392/simple-toggle-function-with-ie6/138434#1384341Answer by mlarsen for Simple toggle function with IE6mlarsen2008-09-26T09:18:09Z2008-09-26T09:18:09Z<p>Are you trying to set the display-property to "table-row" by any change? That is not supported by IE6.</p>
<p>A tip is to set display to an empty string. It makes the browser use the default value for the element.</p>
http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun/129497#1294970Answer by mlarsen for Do you ever code just for fun?mlarsen2008-09-24T19:59:04Z2008-09-24T19:59:04Z<p>Not anymore. I used to, but after having programmed software professionally for a decade I realised that for a project to be interesting it usually also has a size where the time investment is substantial. And now I prefer spending time with my family instead. :-)</p>
http://stackoverflow.com/questions/126790/if-you-already-know-lisp-why-would-you-also-want-to-learn-f/129483#1294830Answer by mlarsen for If you already know LISP, why would you also want to learn F#?mlarsen2008-09-24T19:56:08Z2008-09-24T19:56:08Z<p>I'm not sure if you would? If you find F# interesting that would be a reason. If you work requires it, it would be a reason. If you think it would make you more productive or bring you added value over your current knowledge, that would be a reason.</p>
<p>But if you don't find F# interesting, your work doesn't require it and you don't think it would make you more productive or bring you added value, then why would you?</p>
<p>If the question on the other hand is what F# gives that lisp don't, then type inference, pattern matching and integration with the rest of the .NET framework should be considered.</p>
http://stackoverflow.com/questions/126409/ways-to-eliminate-switch-in-code/126455#12645556Answer by mlarsen for Ways to eliminate switch in codemlarsen2008-09-24T10:49:24Z2008-09-24T11:29:04Z<p>Switch-statements are not an antipattern per se, but if you're coding object oriented you should consider if the use of a switch is better solved with <a href="http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming" rel="nofollow">polymorphism</a> instead</p>
<p>With polymorphism</p>
<pre><code>foreach (var animal in zoo) {
switch (typeof(animal)) {
case "dog":
echo animal.bark();
break;
case "cat":
echo animal.meow();
break;
}
}
</code></pre>
<p>becomes</p>
<pre><code>foreach (var animal in zoo) {
echo animal.speak();
}
</code></pre>
http://stackoverflow.com/questions/119441/highlight-a-word-with-jquery/119473#11947312Answer by mlarsen for Highlight a word with jQuerymlarsen2008-09-23T06:58:58Z2008-09-23T06:58:58Z<p>Maybe you can use <a href="http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html" rel="nofollow">highlight: JavaScript text higlighting jQuery plugin</a></p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/114577#1145771Answer by mlarsen for What was your first home computer?mlarsen2008-09-22T12:32:47Z2008-09-22T12:32:47Z<p>A <a href="http://en.wikipedia.org/wiki/Lambda_8300" rel="nofollow">Lambda 8300</a></p>
<p><img src="http://www.pcworld.dk/fil/10359" alt="http://www.pcworld.dk/fil/10359" /></p>
http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/1088100#1088100Comment by mlarsen on ASP.Net MVC Add Items To Bound Dropdownlistmlarsen2009-08-31T07:54:30Z2009-08-31T07:54:30ZThis question is about MVC - Not WebFormshttp://stackoverflow.com/questions/1199903/how-can-i-optimise-this-mysql-query/1199953#1199953Comment by mlarsen on How can I optimise this MySQL query?mlarsen2009-07-29T12:41:38Z2009-07-29T12:41:38ZWhy drop the GROUP BY clause? He wants the COUNT and SUM split out by the 14th digit of the game-column.http://stackoverflow.com/questions/1096981/js-files-replaced-with-garbage-html-content-of-exactly-the-same-size-while-inComment by mlarsen on .js files replaced with garbage (html content ) of exactly the same size while installing with NSISmlarsen2009-07-08T09:12:40Z2009-07-08T09:12:40ZWow. This sounds like it is really crap to troubleshoot. Hope you post the solution, if you find it - just to satisfy my curiosity. ;-)http://stackoverflow.com/questions/1071857/how-do-i-svn-add-all-unversioned-files-to-svn/1073159#1073159Comment by mlarsen on How do I svn add all unversioned files to svn?mlarsen2009-07-02T08:47:13Z2009-07-02T08:47:13ZWow - very nice. Guess you'll learn something new every day. :-)http://stackoverflow.com/questions/377572/how-long-will-questions-and-answers-be-stored-at-stackoverflow/377673#377673Comment by mlarsen on How long will questions and answers be stored at stackoverflow?mlarsen2009-02-13T11:42:56Z2009-02-13T11:42:56ZHahaha.. Fantastic comment. :-)http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271421#271421Comment by mlarsen on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)mlarsen2008-11-26T06:44:37Z2008-11-26T06:44:37ZGreat idea about ToEnum<>(). It has a much clearer meaning.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282574#282574Comment by mlarsen on What are five things you hate about your favorite language?mlarsen2008-11-12T06:56:22Z2008-11-12T06:56:22Zwhat about list($first) = explode('|', $string); ?http://stackoverflow.com/questions/228125/javascript-percentage-validation/228885#228885Comment by mlarsen on Javascript percentage validationmlarsen2008-10-24T06:27:29Z2008-10-24T06:27:29ZAnd now you have a regex which matches this requirement. A week later the requirements changes so now your regex should match values between 0 and 255 instead. Good luck changing your regex and have it readable afterwards.http://stackoverflow.com/questions/228726/dynamically-set-the-height-of-two-floated-divs/229046#229046Comment by mlarsen on Dynamically Set the Height of Two floated DIVSmlarsen2008-10-23T18:34:46Z2008-10-23T18:34:46ZI cannot see why it wouldn't. You just call jQuery.Equalise("#col1", "#col2") again after the content has changed.http://stackoverflow.com/questions/97987/switch-vs-if-else/129515#129515Comment by mlarsen on Switch vs if-elsemlarsen2008-09-24T20:09:20Z2008-09-24T20:09:20ZThis is so true. The readability is so much better than both the switch and the if-statements. I was actually going to answer something like this myself, but you beat me to it. :-)http://stackoverflow.com/questions/113392/dynamically-added-controls-in-asp-net/113515#113515Comment by mlarsen on Dynamically added controls in Asp.Netmlarsen2008-09-22T08:46:30Z2008-09-22T08:46:30ZThis seems like a good idea. I'll ponder it for a while and see if I can fit it into my mindset or maybe the other way round. :-)http://stackoverflow.com/questions/113392/dynamically-added-controls-in-asp-net/113415#113415Comment by mlarsen on Dynamically added controls in Asp.Netmlarsen2008-09-22T08:43:31Z2008-09-22T08:43:31ZYes, ASP.NET MVC looks very promising and much closer to the way I am used to work. Unfortunately my colleagues has a background in WinForms development and I'm not sure I can convince them the ASP.NET MVC is the way to go.