User George Mauer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T17:23:15Z http://stackoverflow.com/feeds/user/5056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins 0 Regex for non ANSI-style joins? George Mauer 2009-12-10T21:55:46Z 2009-12-11T15:53:02Z <p>One of our rules is that all <a href="http://www.dba-oracle.com/oracle%5Fnews/2004%5F2%5F19%5Frittman.htm" rel="nofollow">database joins have to be ANSI-style</a>. As part of our build process I would like to scan all joins committed to source control for violations.</p> <p>I got a partial answer which I will post below but I'm sure its missing something and there must be a better one.</p> <p>Here is a non-comprehensive list of examples</p> <p>Should match:</p> <pre><code>SELECT * FROM cats, owners, dogs WHERE cats.owner = onwers.id and owners.id += dogs.owner; SELECT * FROM cats c, owners o WHERE c.owner = o.id; </code></pre> <p>Should not match:</p> <pre><code>SELECT * FROM owners left outer join cats on (owners.id = cats.owner); SELECT * FROM owners inner join cats on (cats.owners = GetOnersOfTabbies(param1, parm2)) </code></pre> http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins/1884361#1884361 0 Answer by George Mauer for Regex for non ANSI-style joins? George Mauer 2009-12-10T21:58:09Z 2009-12-10T21:58:09Z <p>Here is my attempt:</p> <pre><code>FROM (\s*\S+\s*(\w\s*)*,)+ </code></pre> <p>Should pick up the first comma in a from clause - these are necessary for old style joins.</p> http://stackoverflow.com/questions/61401/hidden-features-of-php 82 Hidden Features of PHP? George Mauer 2008-09-14T15:21:11Z 2009-12-10T11:15:50Z <p><strong>EDIT:</strong> This didn't really start as a hidden features of PHP topic, but thats what it ended up as, so go nuts.</p> <p><hr /></p> <p>I know this sounds like a point-whoring question but let me explain where I'm coming from.</p> <p>Out of college I got a job at a PHP shop. I worked there for a year and a half and thought that I had learned all there was to learn about programming.</p> <p>Then I got a job as a one-man internal development shop at a sizable corporation where all the work was in C#. In my commitment to the position I started reading a ton of blogs and books and quickly realized how wrong I was to think I knew everything. I learned about unit testing, dependency injection and decorator patterns, the design principle of loose coupling, the composition over inheritance debate, and so on and on and on - I am still very much absorbing it all. Needless to say my programming style has changed entirely in the last year.</p> <p>Now I find myself picking up a php project doing some coding for a friend's start-up and I feel completely constrained as opposed to programming in C#. It really bothers me that all variables at a class scope have to be referred to by appending '$this->' . It annoys me that none of the IDEs that I've tried have very good intellisense and that my SimpleTest unit tests methods have to start with the word 'test'. It drives me crazy that dynamic typing keeps me from specifying implicitly which parameter type a method expects, and that you have to write a switch statement to do method overloads. I can't stand that you can't have nested namespaces and have to use the :: operator to call the base class's constructor.</p> <p>Now I have no intention of starting a PHP vs C# debate, rather what I mean to say is that I'm sure there are some PHP features that I either don't know about or know about yet fail to use properly. I am set in my C# universe and having trouble seeing outside the glass bowl.</p> <p>So I'm asking, what are your favorite features of PHP? What are things you can do in it that you can't or are more difficult in the .Net languages?</p> http://stackoverflow.com/questions/1772367/powershell-is-it-possible-to-set-alias-on-a-piped-command 0 Powershell: Is it possible to set-alias on a piped command? George Mauer 2009-11-20T18:23:35Z 2009-12-04T23:17:26Z <p>I would like to set the following alias up in my powershell profile:</p> <pre><code>set-alias mem-users get-process | ? {($_.PM -gt 10000000) -or ($_.VM -gt 10000000)} | sort -property PM </code></pre> <p>But when I try this out and call mem-users I just get the results of get-process. How would I set this up? Do I have to write a custom function? The examples for set-alias show a piped command working with the -passThru parameter but I can't get it to work.</p> http://stackoverflow.com/questions/1138312/elmah-download-log-is-empty 0 Elmah - Download Log Is Empty George Mauer 2009-07-16T15:12:02Z 2009-12-03T03:00:03Z <p>I recently started using Elmah on our ASP.NET site and it's great however I've run into a problem. Although my log contains plenty of errors (220 to be exact) and I can view them with the web viewer and rss, when I click Donwload Log it simply downloads an empty csv. There is one row for the headers, but no rows!</p> <p>Has this happened to anyone else? Any ideas where to find the errors from within my error log?</p> http://stackoverflow.com/questions/1783646/php-net-web-services-for-data-access-bad-design-choice/1784690#1784690 0 Answer by George Mauer for PHP + .Net Web services for data access - Bad Design Choice? George Mauer 2009-11-23T17:28:13Z 2009-11-23T17:28:13Z <p>Not really much of a problem at all, just investigate your options.</p> <p>Web Services can output data in a wide variety of formats. SOAP/XML are the default but there is no reason why you can't do YML, Xml serialized objects, or my current favorite JSON (which makes calling into it from a browser really easy).</p> <p>Look also into WCF services, I believe they're supposed to supplant the Web Service format.</p> <p>Finally, if you're looking for best practices check out S<a href="http://www.manning.com/pulier/" rel="nofollow">ervice Oriented Architecture</a>. Its a large and varied field and this is exactly the sort of things they talk about.</p> http://stackoverflow.com/questions/859831/how-to-set-a-default-namespace-for-classes-when-there-are-two-simlar-classes-in-d 1 How to set a default namespace for classes when there are two simlar classes in different namespaces George Mauer 2009-05-13T19:12:10Z 2009-11-23T01:00:01Z <p>Ok, so since going to version 2.5 Nunit is causing me all sorts of problems because they introduced the static class <strong>Is</strong> into the nunit.framework namespace.</p> <p>It would be well and good if Rhino.Mocks and a few other frameworks did not also make use of an <strong>Is</strong> static class. So now if I upgrade to 2.5 most of my code that uses rhino mocks constraints will not compile.</p> <p>Is there a way to configure visual studio/the c# compiler on the project level to know that when I say <strong>Is</strong> I mean the Rhino Mocks namespace?</p> <p>PS. Open Source authors, I know you love da fluent interfaces but stop using such common words when they're going to clash with other frameworks! How about some closures with lambdas you can still do something like myVar.Should(be=>be.True())?</p> http://stackoverflow.com/questions/1694806/problems-redirecting-nunit-assembly-version-what-is-assemblyname-temp-config 0 Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?) George Mauer 2009-11-07T23:29:19Z 2009-11-19T19:17:07Z <p>I am using some of the testing libraries from Sharp Architecture which make use of NUnit 2.5.0 while the rest of my project uses NUnit 2.5.1 so I placed an assembly redirect in my test project app config file:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;runtime&gt; &lt;assemblyBinding&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" /&gt; &lt;bindingRedirect oldVersion="2.5.0.9122" newVersion="2.5.1.9189"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; &lt;/configuration&gt; </code></pre> <p>I am still getting an assembly redirect version:</p> <pre><code>TestCase '' failed: Could not load file or assembly 'nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) System.IO.FileLoadException: Could not load file or assembly 'nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) File name: 'nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' </code></pre> <p>Enabling my Fusion ErrorLog I see this:</p> <pre><code>=== Pre-bind state information === LOG: DisplayName = nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77 (Fully-specified) LOG: Appbase = file:///C:/code/Samples/PersistencePatterns/app/PersistencePatterns.Tests/bin/Debug LOG: Initial PrivatePath = NULL Calling assembly : SharpArch.Testing.NUnit, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b5f559ae0ac4e006. === LOG: This bind starts in default load context. LOG: Using application configuration file: C:\code\Samples\PersistencePatterns\app\PersistencePatterns.Tests\bin\Debug\PersistencePatterns.Tests.dll.temp.config LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config. LOG: Post-policy reference: nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77 LOG: Attempting download of new URL file:///C:/code/Samples/PersistencePatterns/app/PersistencePatterns.Tests/bin/Debug/nunit.framework.DLL. WRN: Comparing the assembly name resulted in the mismatch: Revision Number ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated. </code></pre> <p>What gives? What is this temp.config file that its looking for? Why isn't it looking in my actual config?</p> <p>Well no matter, I added the following to my post-build events:</p> <pre><code>copy $(ProjectDir)App.config $(TargetDir)\$(TargetFileName).temp.config </code></pre> <p>Everything gets copied fine, but as soon as I run tests with Testdriven.NET the file disappears.</p> <p>Can anyone give me a clue as to whats going on?</p> http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult 5 Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T19:47:38Z 2009-11-16T20:04:39Z <p>I come from the traditional web developer background where I can by no means claim to really know anything about Javascript, however I am trying.</p> <p>I currently have what I would describe as a fairly novice understanding of JQuery, a slightly better understanding of closures, and I've read through, and feel like I am fairly clear on Douglas Crockford's "Javascript: The Good Parts".</p> <p>I've been building up some fairly javascript intensive pages lately and I'm actually pretty satisfied with the results. One thing that stands to notice is that I managed to do the whole thing with almost no global functions and without using the new operator even once.</p> <p>As a matter of fact, from my reading of the above-mentioned book, the operator does nothing that you could not do another simpler way and forces you to hack the 'this' variable. </p> <p>So is there something I'm missing? Does the new operator actually serve a purpose or is it just a trick to make OO programmers comfortable in what is at heart a functional language? Would I be better off striking it entirely from my JS vocabulary?</p> http://stackoverflow.com/questions/122670/what-is-the-linq-way-to-implode-join-a-string-array 3 What is the LINQ way to implode/join a string array? George Mauer 2008-09-23T18:04:36Z 2009-11-15T11:50:30Z <p>I have the following string array:</p> <pre><code>var sa = new string[] {"yabba","dabba","doo"}; </code></pre> <p>I can convert it to "yabba, dabba, doo" it using string.Join() but what is the super-cool LINQ way of doing it? The Join extension method seems promising but for a novice like me very confusing.</p> http://stackoverflow.com/questions/1725836/where-is-the-prototype-property-on-strings-in-javascript 0 Where is the prototype property on strings in JavaScript? George Mauer 2009-11-12T22:23:43Z 2009-11-13T08:56:40Z <p>I just noticed that there is no prototype property on strings in <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a>.</p> <p>This is a pedagogical question while I try to wrap my head around the JavaScript type system but what gives?</p> <p>How come <code>"abc".toString()</code> works? And how would I go about extending strings? If I wanted to be able to do <code>"hey you!".alertDialog()</code> for example?</p> http://stackoverflow.com/questions/52797/c-how-do-i-get-the-path-of-the-assembly-the-code-is-in 7 C#: How do I get the path of the assembly the code is in? George Mauer 2008-09-09T20:12:28Z 2009-11-13T06:38:11Z <p>Is there a way to get the path for the assembly in which the current code resides? I do not want the path of the calling assembly, just the one containing the code. </p> <p>Basically my unit test needs to read some xml test files which are located relative to the dll. I want the path to always resolve correctly regardless of whether the testing dll is run from TestDriven.NET, the MbUnit GUI or something else.</p> <p><strong>Edit</strong>: People seem to be misunderstanding what I'm asking.</p> <p>My test library is located in say <strong>c:\projects\myapplication\daotests\bin\Debug\daotests.dll</strong> and I would like to get the "*<em>c:\projects\myapplication\daotests\bin\Debug*</em>" path.</p> <p>The three suggestions so far fail me when I run from the MbUnit Gui:</p> <ul> <li><p><strong>Console.Out.Write(Environment.CurrentDirectory)</strong> gives <em>c:\Program Files\MbUnit</em></p></li> <li><p><strong>Console.Out.Write(System.Reflection.Assembly.GetAssembly(typeof(DaoTests)).Location)</strong> gives <em>C:\Documents and Settings\george\Local Settings\Temp\ ....\DaoTests.dll</em></p></li> <li><p><strong>Console.Out.Write(System.Reflection.Assembly.GetExecutingAssembly().Location)</strong> gives the same as the previous</p></li> </ul> http://stackoverflow.com/questions/1719962/mvc-c-asp-net-tutorial-wanted/1723473#1723473 0 Answer by George Mauer for MVC - C#, ASP.net: Tutorial wanted George Mauer 2009-11-12T16:22:35Z 2009-11-12T16:22:35Z <p><a href="http://castleproject.org/" rel="nofollow">Castle Project</a> has the Mono MVC framework as well a full stack including ORM, view engine, and IoC. I would recommend getting at least somewhat familiar with all of these concepts separately.</p> <p>Also as far as I know, <a href="http://fubumvc.pbworks.com/" rel="nofollow">Fubu MVC</a> is still alive and kicking. It's a very early for of ASP.NET MVC and by some really smart guys. There is not a tremendous amount of documentation but there is a sample app available and Jermey, Mark, and Chad are usually pretty good about answering questions.</p> http://stackoverflow.com/questions/1703605/why-does-my-ajax-request-disappear-immediately-from-firebug-console 1 Why does my ajax request disappear immediately from firebug console? George Mauer 2009-11-09T20:35:49Z 2009-11-09T20:50:49Z <p>Something is going wrong with my jquery ajax-ing. When in a similar situation before I have been able to open the site in firebug and watch the ajax request in the in the console, seeing exactly what was sent and received.</p> <p>In my current project for some reason I see the request flash across firebug's console but it disappears almost immediately. <a href="http://screencast.com/t/mryhOpOEEf" rel="nofollow">Here is a video of what's happening</a>.</p> <p>What's going on here? How do I get that information to remain in the console so that I can explore it?</p> http://stackoverflow.com/questions/1703605/why-does-my-ajax-request-disappear-immediately-from-firebug-console/1703715#1703715 1 Answer by George Mauer for Why does my ajax request disappear immediately from firebug console? George Mauer 2009-11-09T20:50:49Z 2009-11-09T20:50:49Z <p>Wow I'm an idiot. This is an ASP.NET application and that's an ASP.NET button which triggers a postback! So of course the console refreshes. It's a new page.</p> <p>Duh. The solution is to make it a normal button.</p> <p>Still, the symptoms are confusing enough that someone else might run into this problem.</p> http://stackoverflow.com/questions/369790/how-to-create-a-form-on-its-own-thread-and-keep-it-open-throughout-application-li 1 How to create a form on its own thread and keep it open throughout application lifetime George Mauer 2008-12-15T21:35:48Z 2009-11-09T13:57:56Z <p>I am creating a little testing component and am running into a problem</p> <p>Basically the component is a decorator on a class that controls all access to the database, it creates a form with a two buttons on it: "Simulate Lost Connection" and "Reconnect". Press the button, and instead of letting function calls pass through the wrapper starts throwing NoConnectionException()s nice and simple, and real helpful for testing.</p> <p>The problem is that this particular application when it detects a lost connection raises a modal dialog box "connection lost!" that sits there until the connection is regained. Because it is modal I cannot press my nifty button to simulate regained connectivity.</p> <p>What I need to do therefore is to run my little testing form in a different thread. I'm not absolutely sure how to do that. I tried</p> <pre><code>new Thread( new ThreadStart( (Action)delegate {_form.Start();} ) ).Start(); </code></pre> <p>But the thread closes as soon as the method returns so the form never shows up except for an instant.</p> <p>Any idea how I go about achieving what I want?</p> http://stackoverflow.com/questions/1282465/why-cant-i-execute-a-commandlet-with-arguments-from-a-string-in-powershell 2 Why cant I execute a commandlet with arguments from a string in powershell? George Mauer 2009-08-15T18:04:50Z 2009-11-08T21:26:49Z <p>In windows powershell, I am trying to store a move command in a string and then execute it. Can someone tell me why this doesn't work?</p> <pre><code>PS C:\Temp\&gt; dir Directory: Microsoft.PowerShell.Core\FileSystem::C:\Temp Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 8/14/2009 8:05 PM 2596 sa.csproj -a--- 8/15/2009 10:42 AM 0 test.ps1 PS C:\Temp&gt; $str = "mv sa.csproj sb.csproj" PS C:\Temp&gt; &amp;$str The term 'mv sa.csproj sb.csproj' is not recognized as a cmdlet, function, operable program, or script file. Verify the term and try again. At line:1 char:2 + &amp;$ &lt;&lt;&lt;&lt; str PS C:\Temp&gt; </code></pre> <p>I get this error when storing any command with arguments. How do I overcome this limitation?</p> http://stackoverflow.com/questions/1644275/javascript-get-a-variable-from-inside-the-local-scope-of-a-function 0 Javascript - get a variable from inside the local scope of a function George Mauer 2009-10-29T14:50:57Z 2009-11-06T19:20:07Z <p>I am not great with anything beyond basic javascript so please forgive the simple question.</p> <p>I am using the <a href="http://jsdraw2d.jsfiction.com/" rel="nofollow">jsDraw2D</a> library. This library has a graphics object that looks something like the following:</p> <pre><code>function jsGraphics(canvasDivElement) { var canvasDiv; this.drawLine = drawLine; function drawLine(point1, point2) { // do things with canvasDiv } } </code></pre> <p>You use it like this:</p> <pre><code>var gr = new jsGraphics(document.getElementById('canvas')) gr.drawLine(new jsPoint(0,0), new jsPoint(10,10)) </code></pre> <p>I would like to add a function to jsGraphics so that I can call</p> <pre><code>gr.getCanvasElement() </code></pre> <p>Is there a way to do this without editing the library itself?</p> <p>I have tried </p> <pre><code>jsGraphics.prototype.getCanvasElement = function() { return canvasDiv } </code></pre> <p>but this doesn't seem to work. I have an intuitive feeling that its something with that new keyword but if you could explain why exactly it doesn't that would be helpful too.</p> http://stackoverflow.com/questions/1688589/let-the-user-design-a-form-and-the-fields-in-it/1689585#1689585 0 Answer by George Mauer for Let the user design a form and the fields in it George Mauer 2009-11-06T18:58:21Z 2009-11-06T19:07:33Z <p>As everyone said, this is very difficult so let's look to standards. The standard for composing forms is HTML. So you:</p> <p>Let users create forms/fields using html or any HTML designer.</p> <p>Embed IE in your application to render the html.</p> <p>Spin some sort of tiny webserver on their machine that accepts requests from this Form and this form only (I think some of the stuff in ASP MVC would be of help here)</p> <p>When they submit the form parse the Request Post to see the fields and values.</p> http://stackoverflow.com/questions/1668661/is-there-something-odd-with-powershell-and-forwards-slashes 4 Is there something odd with Powershell and forwards slashes? George Mauer 2009-11-03T16:55:06Z 2009-11-03T16:58:48Z <p>As far as I know, a forward slash is not a reserved keyword in powershell</p> <p>But running the following in cmd pops up an about dialog</p> <pre><code>"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:about </code></pre> <p>The same in powershell gives: </p> <pre><code>'C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe' /command:about You must provide a value expression on the right-hand side of the '/' operator. At line:1 char:54 + 'C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe' /c &lt;&lt;&lt;&lt; ommand:about </code></pre> <p>What gives?</p> http://stackoverflow.com/questions/1664934/should-null-null-be-true-when-comparing-objects 5 Should null == null be true when comparing objects? George Mauer 2009-11-03T02:47:43Z 2009-11-03T15:29:47Z <p>I'm curious what everyone thinks. In SQL (at least in oracle) NULL translates conceptually to "I don't know the value" so NULL = NULL is false. (Maybe it actually results in a NULL which then gets cast to false or something like that...)</p> <p>This makes sense to me, but in most OO languages null means "no reference" so null==null should probably be true. This is the usual way of doing things in C# for example when overriding Equals.</p> <p>On the other hand, null is still frequently used to mean "I don't know" in object-oriented languages and implementing null==null to false might result in code that is slightly more meaningful to certain domains.</p> <p>Tell me what you think.</p> http://stackoverflow.com/questions/1652344/how-to-use-css-to-position-divs 0 How to use CSS to position divs? George Mauer 2009-10-30T21:10:39Z 2009-10-31T04:00:55Z <p>I have html that looks roughly like this</p> <pre><code>&lt;div&gt; &lt;div id="header"&gt;&lt;/div&gt; &lt;div id="chart"&gt;&lt;/div&gt; &lt;div id="legend"&gt;&lt;/div&gt; &lt;div id="info1"&gt;&lt;/div&gt; &lt;div id="info2"&gt;&lt;/div&gt; &lt;div id="info3"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>I would like to position the elements like this: <img src="http://content.screencast.com/users/togakangaroo/folders/Jing/media/629c28a7-51a1-4479-8911-f9aad6202721/2009-10-30%5F1608.png" alt="positioning" /></p> <p>How in the world do I go about doing this?</p> <p><strong>Edit:</strong> This is a question about "the right way to do it" and it is certainly not easily Google-able. Essentially what I want to do, rather than define columns in html, is to define a height for the container div, and then have the other divs position themselves naturally within it.</p> http://stackoverflow.com/questions/1651634/tortoisesvn-works-but-command-line-svn-doesnt-work 1 TortoiseSVN works but command line svn doesn't work? George Mauer 2009-10-30T18:47:39Z 2009-10-30T19:02:54Z <p>I use TortoiseSVN normally and it works fine</p> <p>Whenever I try to use svn from the command line I get an </p> <pre><code>c:\code\MyProject&gt; svn status svn: '.' is not a working copy </code></pre> <p>error even though its the same directory that I usually work with using TortoiseSVN.</p> <p>Has anyone had this problem?</p> http://stackoverflow.com/questions/1640165/asp-net-ajax-simple-clientside-communication-example 0 ASP.NET Ajax - simple clientside communication example? George Mauer 2009-10-28T21:16:44Z 2009-10-28T21:41:58Z <p>I need to use javascript to request some data from the server in a.NET 3.5 Webforms demo app.</p> <p>It comes to mind that I have only ever done this with AJAX.NET, jquery, and updatepanels. I don't want to involve external technologies, nor do I want to do even a partial postback. Can anyone point me at an example of the simplest way to do this?</p> http://stackoverflow.com/questions/1633127/powershell-output-object-to-a-file 0 Powershell: Output object[] to a file George Mauer 2009-10-27T19:28:55Z 2009-10-28T20:51:30Z <p>I would like to retrieve the contents of a file, filter and modify them and write the result back to a file. I do this:</p> <pre><code>PS C:\code&gt; "test1" &gt;&gt; test.txt PS C:\code&gt; "test2" &gt;&gt; test.txt PS C:\code&gt; $testContents = Get-Content test.txt PS C:\code&gt; $newTestContents = $testContents | Select-Object {"abc -" + $_} PS C:\code&gt; $newTestContents &gt;&gt; output.txt </code></pre> <p>output.txt contains</p> <pre><code>"abc -" + $_ ------------ abc -test1 abc -test2 </code></pre> <p>What gives with that first line? It's almost like foreach gives back an IEnumerable - but $newTestContents.GetType() reveals it is an object array. So what gives? How can I get the array to output normally without the strange header.</p> <p>Also bonus points if you can tell me why $newTestContents[0].ToString() is a blank string</p> http://stackoverflow.com/questions/1627064/how-could-i-improve-this-c-randomising-method/1627091#1627091 0 Answer by George Mauer for How could I improve this C# randomising method? George Mauer 2009-10-26T20:16:31Z 2009-10-26T20:16:31Z <p>No stats to support this but it would seem better if your return value starts as an array of the same length as the list and then you insert values directly into a randomly generated index.</p> http://stackoverflow.com/questions/1604528/how-do-i-stub-a-funct-tresult-in-rhino-mocks/1618946#1618946 1 Answer by George Mauer for How do I stub a Func<T,TResult> in Rhino Mocks? George Mauer 2009-10-24T20:13:47Z 2009-10-24T20:13:47Z <p>Use a custom Do delegate that takes in the func and test that. You can do it by converting it to an expression and parsing the expression tree, or just run the delegate with a mock input and test the results.</p> <p>The following will throw an error if the lambda inside RemoteCall() does not contain x=>x.Execute("test") - you can work off of the idea to get it to do exactly what you want.</p> <pre><code>public inteface IExecute { void Execute(string input) } _connectionService .Stub(c =&gt; c.RemoteCall(null)).IgnoreArguments() .Do(new Func&lt;Action&lt;IExecute&gt;,bool&gt;( func =&gt; { var stub = MockRepository.GenerateStub&lt;IExecute&gt;(); func(stub); stub.AssertWasCalled(x =&gt; x.Execute("test")); return true; }));; </code></pre> http://stackoverflow.com/questions/409495/how-to-separate-data-validation-from-my-simple-domain-objects-pocos 4 How to separate data validation from my simple domain objects (POCOs)? George Mauer 2009-01-03T18:05:35Z 2009-10-14T19:22:05Z <p>This question is language agnostic but I am a C# guy so I use the term POCO to mean an object that only preforms data storage, usually using getter and setter fields.</p> <p>I just reworked my Domain Model to be super-duper POCO and am left with a couple of concerns regarding how to ensure that the property values make sense witin the domain. </p> <p>For example, the EndDate of a Service should not exceed the EndDate of the Contract that Service is under. However, it seems like a violation of SOLID to put the check into the Service.EndDate setter, not to mention that as the number of validations that need to be done grows my POCO classes will become cluttered.</p> <p>I have some solutions (will post in answers), but they have their disadvantages and am wondering what are some favorite approaches to solving this dilemma?</p> http://stackoverflow.com/questions/722678/how-reliable-is-windows-task-scheduler-for-scheduling-code-to-run-repeatedly 2 How reliable is windows task scheduler for scheduling code to run repeatedly? George Mauer 2009-04-06T18:47:54Z 2009-10-14T06:29:17Z <p>I have a bit of code that needs to sit on a windows server 2003 machine and run every minute.</p> <p>What is the recommended way of handling this? Is it ok to design it as a console service and just have the task scheduler hit it ever minute? (is that even possible?) Should I just suck it up and write it as a windows service?</p> http://stackoverflow.com/questions/1548661/total-newbie-instance-variables-in-ruby 3 Total newbie: Instance variables in ruby? George Mauer 2009-10-10T18:12:29Z 2009-10-10T23:34:20Z <p>Pardon the total newbiew question but why is @game_score always nil?</p> <pre><code>#bowling.rb class Bowling @game_score = 0 def hit(pins) @game_score = @game_score + pins end def score @game_score end end </code></pre> http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins/1885416#1885416 Comment by George Mauer on Regex for non ANSI-style joins? George Mauer 2009-12-11T14:28:57Z 2009-12-11T14:28:57Z Hmm, won't catch something like: SELECT * FROM (cats c, owners o) WHERE c.owner = o.id; http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins Comment by George Mauer on Regex for non ANSI-style joins? George Mauer 2009-12-10T23:13:11Z 2009-12-10T23:13:11Z That...would certainly be a problem...but given that its just a static analysis alert not a particularly big one. I am mildly surprised actually that nobody seems to be running something like this already. http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins/1884466#1884466 Comment by George Mauer on Regex for non ANSI-style joins? George Mauer 2009-12-10T22:28:11Z 2009-12-10T22:28:11Z hmm...whats *? mean? http://stackoverflow.com/questions/1884340/regex-for-non-ansi-style-joins/1884361#1884361 Comment by George Mauer on Regex for non ANSI-style joins? George Mauer 2009-12-10T22:06:46Z 2009-12-10T22:06:46Z If you view stack-overflow as programmer tech-support yes, if you view it as a 'repository of programming knowledge' then it belongs in answers. It is after all a valid answer, just not (I suspect) a particularly good one. I'm actually hoping a better one gets voted past it. http://stackoverflow.com/questions/1772367/powershell-is-it-possible-to-set-alias-on-a-piped-command/1772376#1772376 Comment by George Mauer on Powershell: Is it possible to set-alias on a piped command? George Mauer 2009-11-20T18:29:51Z 2009-11-20T18:29:51Z hehehe mem-hogs why didn't I think of that!? http://stackoverflow.com/questions/1694806/problems-redirecting-nunit-assembly-version-what-is-assemblyname-temp-config/1751799#1751799 Comment by George Mauer on Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?) George Mauer 2009-11-18T17:51:55Z 2009-11-18T17:51:55Z Please don't answer a bounty question with a complete guess. This is especially annoying because in the question I actually showed you the FusionLog which demonstrates all the config files checked for binding . http://stackoverflow.com/questions/1694806/problems-redirecting-nunit-assembly-version-what-is-assemblyname-temp-config/1751969#1751969 Comment by George Mauer on Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?) George Mauer 2009-11-18T17:49:21Z 2009-11-18T17:49:21Z That's what Visual studio does already. I have verified that this functionality isn't broken for some reason by checking that the file exists. I've never seen a temp extension like that before though. http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744526#1744526 Comment by George Mauer on Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T20:27:38Z 2009-11-16T20:27:38Z @Tim Here you go: <a href="http://pastebin.com/f1d6664e0" rel="nofollow">pastebin.com/f1d6664e0</a> each time you call NotificationsDisplay() you get back an object/function with its own private variables, methods and even a public method. http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744526#1744526 Comment by George Mauer on Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T20:11:29Z 2009-11-16T20:11:29Z That is not at all true Tim. Like I said, I've managed to do just fine without it. You use a closure instead. http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult Comment by George Mauer on Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T19:56:15Z 2009-11-16T19:56:15Z I'm not sure I get what you mean Kendrick, are you saying that I should have linked the term &quot;functional&quot;? http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744460#1744460 Comment by George Mauer on Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T19:55:05Z 2009-11-16T19:55:05Z Haha. Actually for a book with &quot;The Good Parts&quot; in the title there's an awful lot of discussion of all the bad parts (as in, most of the book). Thanks for the response. http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744449#1744449 Comment by George Mauer on Does Javascript's new operator do anything but make life difficult? George Mauer 2009-11-16T19:53:47Z 2009-11-16T19:53:47Z Thanks Bryan. Wouldn't you just have your function return the function you want to &quot;inherit&quot; from and add whatever new functionality you want directly? Isn't that the more natural way of achieving the same thing? http://stackoverflow.com/questions/1725836/where-is-the-prototype-property-on-strings-in-javascript/1725845#1725845 Comment by George Mauer on Where is the prototype property on strings in JavaScript? George Mauer 2009-11-12T22:30:51Z 2009-11-12T22:30:51Z Whats the convention there anyways? http://stackoverflow.com/questions/1725836/where-is-the-prototype-property-on-strings-in-javascript/1725845#1725845 Comment by George Mauer on Where is the prototype property on strings in JavaScript? George Mauer 2009-11-12T22:30:20Z 2009-11-12T22:30:20Z Ooooh, capital S ...got it http://stackoverflow.com/questions/1668661/is-there-something-odd-with-powershell-and-forwards-slashes/1668693#1668693 Comment by George Mauer on Is there something odd with Powershell and forwards slashes? George Mauer 2009-11-03T17:01:25Z 2009-11-03T17:01:25Z Ah thanks that makes sense