User Metro Smurf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:18:00Z http://stackoverflow.com/feeds/user/9664 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1764867/wpf-how-to-fire-an-eventtrigger-or-animation-when-binding-changes 0 WPF: how to fire an EventTrigger (or Animation) when binding changes? Metro Smurf 2009-11-19T17:00:57Z 2009-11-19T23:46:08Z <p>We have a simple animation that runs when a ToggleButton is checked and unchecked (expands a ListView's height and then collapses a ListView's height). How do you fire the EventTrigger (or Animation) for the <code>&lt;Storyboard x:Key="CommentsCollapse"&gt;</code> when the DataContext Binding changes in the <code>x:Name="DetailsGrid"</code> Grid in the following XAML?</p> <p>In other words, whenever the Binding changes for the "DetailsGrid", we want the "CommentsCollapse" StoryBoard to be triggered to ensure the ListView is returned to its collapsed state.</p> <pre><code>&lt;Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="400"&gt; &lt;Page.Resources&gt; &lt;Storyboard x:Key="CommentsExpand"&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="CommentsListView" Storyboard.TargetProperty="(FrameworkElement.Height)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00.200" Value="300"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="CommentsCollapse"&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="CommentsListView" Storyboard.TargetProperty="(FrameworkElement.Height)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00.200" Value="75"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/Page.Resources&gt; &lt;Page.Triggers&gt; &lt;EventTrigger RoutedEvent="ToggleButton.Checked" SourceName="CommentsToggleButton"&gt; &lt;BeginStoryboard Storyboard="{StaticResource CommentsExpand}"/&gt; &lt;/EventTrigger&gt; &lt;EventTrigger RoutedEvent="ToggleButton.Unchecked" SourceName="CommentsToggleButton"&gt; &lt;BeginStoryboard Storyboard="{StaticResource CommentsCollapse}"/&gt; &lt;/EventTrigger&gt; &lt;/Page.Triggers&gt; &lt;Grid DataContext="{Binding Path=CurrentTask.Workflow.Invoice}" x:Name="DetailsGrid"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Canvas Width="428"&gt; &lt;GroupBox Width="422" Margin="5,0,0,0"&gt; &lt;GroupBox.Header&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;ToggleButton x:Name="CommentsToggleButton" Width="20" Height="10" Margin="5,0,0,0"&gt; &lt;ToggleButton.Content&gt; &lt;Rectangle Width="5" Height="5" Fill="Red"/&gt; &lt;/ToggleButton.Content&gt; &lt;/ToggleButton&gt; &lt;TextBlock Foreground="Blue" Text="Comments"/&gt; &lt;/StackPanel&gt; &lt;/GroupBox.Header&gt; &lt;ListView x:Name="CommentsListView" Height="75" ItemsSource="{Binding Path=Comments}"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn DisplayMemberBinding="{Binding Path=Date}" Header="Date"/&gt; &lt;GridViewColumn DisplayMemberBinding="{Binding Path=Name}" Header="User"/&gt; &lt;GridViewColumn DisplayMemberBinding="{Binding Path=Description}" Header="Comment"/&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListView&gt; &lt;/GroupBox&gt; &lt;/Canvas&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/Page&gt; </code></pre> http://stackoverflow.com/questions/1701471/dreamweaver-changing-path-to-sites-reference-instead-of-local/1701617#1701617 1 Answer by Metro Smurf for Dreamweaver changing path to site's reference instead of local Metro Smurf 2009-11-09T15:08:25Z 2009-11-09T15:08:25Z <p>The behavior you're describing occurs when you have a new file open in Dreamweaver that has never been saved and a template applied. In other words:</p> <ol> <li>A new file is created in DW </li> <li>The template is applied before the file has ever been saved.</li> <li>DW will create file paths that point to your hard drive.</li> </ol> <p>The resolution is to save the file before applying the template.</p> http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties 16 Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T19:42:09Z 2009-11-04T05:03:55Z <p>What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties?</p> <p><strong>Background</strong></p> <ul> <li>The class describes an invoice. An invoice can have upwards of 100 attributes describing it, i.e. date, amount, code, etc...</li> <li>The system we are submitting the invoice to uses each of the 100 attributes and is submitted as a single entity (as opposed to various parts being submitted at different times).</li> <li>The attributes describing the invoice are required as part of the business process. The business process can not be changed.</li> </ul> <p><strong>Suggestions?</strong></p> <ul> <li>What have others done when faced with designing a class that has 100 attributes? i.e., create the class with each of the 100 properties? </li> <li>Somehow break it up (if so, how)? </li> <li>Or is this a fairly normal occurrence in your experience?</li> </ul> <p><strong>EDIT</strong> After reading through some great responses and thinking about this further, I don't think there really is any single answer for this question. However, since we ended up modeling our design along the lines of <a href="http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633256#1633256">LBrushkin's Answer</a> I have given him credit. Albeit not the most popular answer, LBrushkin's answer helped push us into defining several interfaces which we aggregate and reuse throughout the application as well as a nudged us into investigating some patterns that may be helpful down the road.</p> http://stackoverflow.com/questions/1637540/quick-and-easy-shopping-carts/1637786#1637786 0 Answer by Metro Smurf for Quick and Easy Shopping Carts Metro Smurf 2009-10-28T14:53:45Z 2009-10-28T14:53:45Z <p>From your description of only selling one gift card of varying amounts, I'd steer clear of any full-fledged cart. A great 3rd party to use is <a href="http://www.e-junkie.com" rel="nofollow">e-junkie.com</a> The user never leaves your site and the payments are processed with PayPal and/or Google Checkout (as long as you have an account with them).</p> <p>I've used e-junkie for several years and the best thing about them is they keep up with PayPal's and Google's API's so you don't have to. Just add their script to your site, set your variables and you're off and running in a couple of hours.</p> http://stackoverflow.com/questions/1582869/wpf-how-to-right-align-a-textblock-inside-a-horizontally-oriented-stackpanel/1582898#1582898 1 Answer by Metro Smurf for WPF - How to right align a textblock inside a horizontally oriented stackpanel? Metro Smurf 2009-10-17T18:34:51Z 2009-10-21T00:35:58Z <p>In light of your comments, here is another example showing a couple of ways of accomplishing what you want, Grid layout and DockPanel layout. From the sounds of it, the DockPanel layout is probably what you're looking for. If this doesn't work, you may need to provide a clearer description of your desired layout and properties.</p> <pre><code>&lt;Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="0.45*" /&gt; &lt;RowDefinition Height="0.05*" /&gt; &lt;RowDefinition Height="0.45*" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid Grid.Row="0"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;!-- note: you don't need to declare ColumnDefintion widths here; added for clarity. --&gt; &lt;ColumnDefinition Width="0.5*" /&gt; &lt;ColumnDefinition Width="0.5*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;TextBlock Grid.Column="0" Background="Tomato" TextWrapping="Wrap"&gt;I'm on the left&lt;/TextBlock&gt; &lt;TextBlock Grid.Column="1" Background="Yellow" TextAlignment="Right" TextWrapping="Wrap"&gt;I'm on the right&lt;/TextBlock&gt; &lt;/Grid&gt; &lt;Grid Grid.Row="1" Background="Gray" /&gt; &lt;DockPanel Grid.Row="2"&gt; &lt;TextBlock DockPanel.Dock="Left" Background="Tomato" TextWrapping="Wrap"&gt;I'm on the left&lt;/TextBlock&gt; &lt;TextBlock DockPanel.Dock="Right" Background="Yellow" TextAlignment="Right" TextWrapping="Wrap"&gt;I'm on the right&lt;/TextBlock&gt; &lt;/DockPanel&gt; &lt;/Grid&gt; &lt;/Page&gt; </code></pre> http://stackoverflow.com/questions/1557845/what-the-ugliest-api-for-a-relatively-well-known-library-that-you-have-seen-and/1563748#1563748 1 Answer by Metro Smurf for What the ugliest API for a relatively well known library that you have seen, and why and how could it be improved ? Metro Smurf 2009-10-14T00:54:59Z 2009-10-14T00:54:59Z <p><strong>Livelink (OpenText) API</strong></p> <ul> <li>Everything comes back as some bizarre form of a jagged array</li> <li>The documentation provides absolutely no examples</li> <li>[your favorite search engine] typically returns no results for a given API method</li> <li>The support forums feel near abandoned</li> <li>The only reliable way of understanding the resultant data is to run the data in the Livelink debugger</li> <li>And finally... the system costs tens (hundreds) of thousands of dollars</li> </ul> <p>The wall next to my desk has an imprint of my head...</p> <p>A very simple example of getting a value out of an API method:</p> <pre><code>var workflow = new LAPI_Workflow(CurrentSession); // every Livelink method uses an out variable LLValue outValue; // every method returns an integer that says if the call was // a success or not, where 0 = success and any other integer // is a failure... oh yeah, there is no reference to what any // of the failure values mean, you have to create your own // error dictionary. int result = workflow.ListWorkTasks(workId, subWorkId, taskId, outValue); if (result = 0) { // and now let's traverse through at least 3 different arrays! string taskName = outValue.toValue(0).toValue("TASKS").toValue(0).toString("TaskName"); } </code></pre> <p>Aaack!!! :D</p> http://stackoverflow.com/questions/1556706/random-background-image-on-div/1556794#1556794 1 Answer by Metro Smurf for Random background image on DIV Metro Smurf 2009-10-12T20:40:25Z 2009-10-12T21:30:05Z <p>Sometimes, Random isn't really Random...</p> <p>Jon Skeet has a good article on the topic: <a href="http://www.yoda.arachsys.com/csharp/miscutil/usage/staticrandom.html" rel="nofollow">Why am I getting the same numbers out of Random time and time again?</a></p> <p>To quote directly what Jon had told me one time:</p> <blockquote> <p>A pseudo-random number generator (like System.Random) isn't actually random - it will always produce the same sequence of results when initialised with the same data. The data that's used for initialisation is a number called the seed.</p> <p>The basic problem is that when you create a new instance of Random using the parameterless constructor (as we're doing here) it uses a seed taken from "the current time". The computer's idea of "the current time" may only change once every 15ms (which is an eternity in computing) - so if you create several new instances of Random in quick succession, they will all have the same seed.</p> <p>What you usually want (assuming you don't care about being able to reproduce exact results, and you don't need a cryptographically secure random number generator) is to have a single Random used throughout your program, initialised the first time it's used. That sounds like you could just use a static field somewhere (exposed as a property) - basically a singleton. Unfortunately System.Random isn't thread-safe - if you call it from two different threads, you could get problems (including getting the same sequence of numbers in both threads).</p> <p>This is why I created StaticRandom in my little utilities toolbox - it's basically a thread-safe way of getting random numbers, using a single instance of Random and a lock. See <a href="http://www.yoda.arachsys.com/csharp/miscutil/usage/staticrandom.html" rel="nofollow">http://www.yoda.arachsys.com/csharp/miscutil/usage/staticrandom.html</a> for a quick example, and <a href="http://pobox.com/~skeet/csharp/miscutil" rel="nofollow">http://pobox.com/~skeet/csharp/miscutil</a> for the library itself.</p> </blockquote> <p><strong>Jon Skeet's Misc Utility Random Generator</strong></p> <pre><code>using System; namespace MiscUtil { /// &lt;summary&gt; /// Thread-safe equivalent of System.Random, using just static methods. /// If all you want is a source of random numbers, this is an easy class to /// use. If you need to specify your own seeds (eg for reproducible sequences /// of numbers), use System.Random. /// &lt;/summary&gt; public static class StaticRandom { static Random random = new Random(); static object myLock = new object(); /// &lt;summary&gt; /// Returns a nonnegative random number. /// &lt;/summary&gt; /// &lt;returns&gt;A 32-bit signed integer greater than or equal to zero and less than Int32.MaxValue.&lt;/returns&gt; public static int Next() { lock (myLock) { return random.Next(); } } /// &lt;summary&gt; /// Returns a nonnegative random number less than the specified maximum. /// &lt;/summary&gt; /// &lt;returns&gt; /// A 32-bit signed integer greater than or equal to zero, and less than maxValue; /// that is, the range of return values includes zero but not maxValue. /// &lt;/returns&gt; /// &lt;exception cref="ArgumentOutOfRangeException"&gt;maxValue is less than zero.&lt;/exception&gt; public static int Next(int max) { lock (myLock) { return random.Next(max); } } /// &lt;summary&gt; /// Returns a random number within a specified range. /// &lt;/summary&gt; /// &lt;param name="min"&gt;The inclusive lower bound of the random number returned. &lt;/param&gt; /// &lt;param name="max"&gt; /// The exclusive upper bound of the random number returned. /// maxValue must be greater than or equal to minValue. /// &lt;/param&gt; /// &lt;returns&gt; /// A 32-bit signed integer greater than or equal to minValue and less than maxValue; /// that is, the range of return values includes minValue but not maxValue. /// If minValue equals maxValue, minValue is returned. /// &lt;/returns&gt; /// &lt;exception cref="ArgumentOutOfRangeException"&gt;minValue is greater than maxValue.&lt;/exception&gt; public static int Next(int min, int max) { lock (myLock) { return random.Next(min, max); } } /// &lt;summary&gt; /// Returns a random number between 0.0 and 1.0. /// &lt;/summary&gt; /// &lt;returns&gt;A double-precision floating point number greater than or equal to 0.0, and less than 1.0.&lt;/returns&gt; public static double NextDouble() { lock (myLock) { return random.NextDouble(); } } /// &lt;summary&gt; /// Fills the elements of a specified array of bytes with random numbers. /// &lt;/summary&gt; /// &lt;param name="buffer"&gt;An array of bytes to contain random numbers.&lt;/param&gt; /// &lt;exception cref="ArgumentNullException"&gt;buffer is a null reference (Nothing in Visual Basic).&lt;/exception&gt; public static void NextBytes(byte[] buffer) { lock (myLock) { random.NextBytes(buffer); } } } } </code></pre> http://stackoverflow.com/questions/1550740/what-other-alternatives-to-log4net-logging-exist/1550874#1550874 1 Answer by Metro Smurf for What other alternatives to log4net logging exist? Metro Smurf 2009-10-11T14:52:48Z 2009-10-11T14:52:48Z <p>We use the <a href="http://entlib.codeplex.com" rel="nofollow">Enterprise Library</a> exclusively in our corporate environment (<a href="http://msdn.microsoft.com/en-us/library/dd139916.aspx" rel="nofollow">Logging Block</a>). And I've recently started to use <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">Log4Net</a> on personal projects.</p> <p>From experience, the Enterprise Library, albeit powerful, is a mighty pain to get up and running. Not only from just trying to figure out which dll's to use, but the configuration can become unwieldy.</p> <p>On the flip side, I've found Log4Net to be extremely easy and you can be up and running in no time; quite literally in less than an hour.</p> <p>Granted I'm a MS fanboy (ok, not really, but they are the reason I can make a living) and typically go with MS. However, I've made the recommendation to migrate to Log4Net at work. The simplicity of it really is refreshing.</p> http://stackoverflow.com/questions/1547891/which-wysiwym-editor-to-use/1547964#1547964 1 Answer by Metro Smurf for Which WYSIWYM Editor to use? Metro Smurf 2009-10-10T13:32:27Z 2009-10-10T13:32:27Z <p>I haven't used <a href="http://www.wymeditor.org" rel="nofollow">WYMeditor</a> myself, but their <a href="http://www.wymeditor.org/features/" rel="nofollow">supported browsers</a> are:</p> <ul> <li>Gecko-based browsers (Firefox 2.0+, SeaMonkey, Galeon, Epiphany, ...)</li> <li>Microsoft Internet Explorer 6, 7 and 8</li> <li>Opera 9.5+</li> <li>Safari 3.1+</li> <li>Google Chrome</li> </ul> http://stackoverflow.com/questions/1517541/how-to-disallow-search-pages-from-robots-txt/1517599#1517599 2 Answer by Metro Smurf for How to disallow search pages from robots.txt Metro Smurf 2009-10-04T22:42:55Z 2009-10-04T22:49:18Z <ol> <li>Create a text file and name it: <strong>robots.txt</strong></li> <li>Add user agents and disallow sections (see sample below)</li> <li>Place the file in the root of your site</li> </ol> <p>Sample:</p> <pre><code>############################### #My robots.txt file # User-agent: * # #list directories robots are not allowed to index # Disallow: /testing/ Disallow: /staging/ Disallow: /admin/ Disallow: /assets/ Disallow: /images/ # # #list specific files robots are not allowed to index # Disallow: /startup?page=2 Disallow: /startup?page=3 Disallow: /startup?page=3 # # #End of robots.txt file # ############################### </code></pre> <p>Here's a link to Google's actual <a href="http://www.google.com/robots.txt" rel="nofollow">robots.txt file</a></p> <p>You can get some good information on the Google webmaster's help topic on <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=156449" rel="nofollow">blocking or removing pages using a robots.txt file</a></p> http://stackoverflow.com/questions/1507168/snippet-designer-for-visual-studios-2008/1507688#1507688 0 Answer by Metro Smurf for Snippet Designer for Visual studios 2008? Metro Smurf 2009-10-02T04:03:10Z 2009-10-02T04:26:26Z <p>There is a <a href="http://www.codeplex.com/SnippetDesigner" rel="nofollow">Snippet Designer</a> on CodePlex. I'm not sure if its compatible with VS Express, though. Charlie Calvert has a quick and dirty <a href="http://blogs.msdn.com/charlie/archive/2008/09/30/new-snippet-editor.aspx" rel="nofollow">write up on the Snippet Designer</a> as well.</p> <p>With regards to snippet import/export, <a href="http://blogs.msdn.com/saraford/archive/2007/12/14/did-you-know-how-to-share-code-snippets-with-your-team.aspx" rel="nofollow">Sara Ford has a blog post</a> that quickly walks you through how to export/import your snippets as a .vssettings file.</p> <p>Jeff Atwood has an old, but still relevant <a href="http://www.codinghorror.com/blog/archives/000419.html" rel="nofollow">blog post about Snippets</a>.</p> <p>Finally, code snippets you create are typically stored here:</p> <pre><code>%USERPROFILE%\Documents\Visual Studio 2008\Code Snippets\Visual C#\My Code Snippets </code></pre> <p>And the built in snippets for VS2008 are stored here (for C#): <code>%USERPROFILE%\Documents\Visual Studio 2008\Code Snippets\Visual C#\My Code Snippet</code>s</p> http://stackoverflow.com/questions/1047157/preferred-method-to-set-the-value-of-a-get-only-property-constructor-vs-backing 2 Preferred method to set the value of a get only Property: constructor vs backing field Metro Smurf 2009-06-26T03:21:30Z 2009-10-01T15:46:49Z <p><strong>Edit</strong>: Though I've accepted <a href="http://stackoverflow.com/questions/1047157/preferred-method-to-set-the-value-of-a-get-only-property-constructor-vs-backing/1047165#1047165">David's</a> answer, <a href="http://stackoverflow.com/questions/1047157/preferred-method-to-set-the-value-of-a-get-only-property-constructor-vs-backing/1047607#1047607">Jon's</a> answer should be considered as well.</p> <p>Which method is preferred for setting the value of a read only (get only?) Property: using a backing field or using the constructor? Assume the design is for a Property and not a Field (in the future, there may be an update that requires the Property to have a setter which would preclude using a Field).</p> <p>Given the following simple example, which method is preferred? If one is preferred over the other, why?</p> <p><strong>Option 1 (backing field)</strong>:</p> <pre><code>class SomeObject { // logic } class Foo { private SomeObject _myObject; public SomeObject MyObject { get { if( _myObject == null ) { _myObject = new SomeObject(); } return _myObject; } } public Foo() { // logic } } </code></pre> <p><strong>Option 2 (constructor)</strong>:</p> <pre><code>class SomeObject { // logic } class Foo { public SomeObject MyObject { get; private set; } public Foo() { MyObject = new SomeObject(); // logic } } </code></pre> http://stackoverflow.com/questions/1503682/free-xamlpad-alternatives/1504041#1504041 2 Answer by Metro Smurf for Free XamlPad Alternatives Metro Smurf 2009-10-01T13:39:53Z 2009-10-01T13:39:53Z <p>As others have said, <a href="http://www.kaxaml.com" rel="nofollow" title="Kaxaml">Kaxaml</a> is a great alternative to XamlPad. Kaxaml is great for quickly testing out layouts. And has some great snippets that show how to style basic UIElements and Brushes. </p> <p>However, Kaxaml looses the ability to render the layout as soon as you start getting into !OOB namespaces.</p> <p>IIRC, VS2010 has much better support for XAML. Can't wait :)</p> http://stackoverflow.com/questions/1489559/how-can-i-speed-up-adding-controls-to-a-wpf-grid/1489812#1489812 1 Answer by Metro Smurf for How can I speed up adding controls to a WPF grid? Metro Smurf 2009-09-28T23:12:01Z 2009-09-28T23:12:01Z <p>Admittedly I'm still getting my chops wet with WPF, but I'm going to go out on a limb here and say that trying to add 40,000 controls is your real bottleneck; not so much as to how you're adding the controls. </p> <p>Even if you had all 40,000 controls hard coded in your XAML, you'd still end up with a 20+ second load time.</p> <p>Either this is the world's largest data entry form or a massive Mine Sweeper board ;-)</p> http://stackoverflow.com/questions/1480023/code-golf-lasers/1480709#1480709 1 Answer by Metro Smurf for Code Golf: Lasers Metro Smurf 2009-09-26T07:48:27Z 2009-09-28T17:53:10Z <p><strong>C#</strong> </p> <p><s>1020 characters.</s><br> <s>1088 characters (added input from console).</s><br/> <s>925 characters (refactored variables).</s><br/> 875 characters (removed redundant Dictionary initializer; changed to Binary &amp; operators)</p> <p>Made a Point not to look at anyone else's before posting. I'm sure it could be LINQ'd up a bit. And the whole FindLaser method in the readable version seems awfully fishy to me. But, it works and it's late :)</p> <p>Note the readable class includes an additional method that prints out the current Arena as the laser moves around.</p> <pre><code>class L{static void Main(){ A=new Dictionary&lt;Point,string&gt;(); var l=Console.ReadLine();int y=0; while(l!=""){var a=l.ToCharArray(); for(int x=0;x&lt;a.Count();x++) A.Add(new Point(x,y),l[x].ToString()); y++;l=Console.ReadLine();}new L();} static Dictionary&lt;Point,string&gt;A;Point P,O,N,S,W,E; public L(){N=S=W=E=new Point(0,-1);S.Offset(0,2); W.Offset(-1,1);E.Offset(1,1);D(); Console.WriteLine(F());}bool F(){ var l=A[P];int m=O.X,n=O.Y,o=P.X,p=P.Y; bool x=o==m,y=p==n,a=x&amp;p&lt;n,b=x&amp;p&gt;n,c=y&amp;o&gt;m,d=y&amp;o&lt;m; if(l=="\\"){if(a)T(W);if(b)T(E);if(c)T(S); if(d)T(N);if(F())return true;} if(l=="/"){if(a)T(E);if(b)T(W);if(c)T(N); if(d)T(S);if(F())return true;}return l=="x";} void T(Point p){O=P;do P.Offset(p); while(!("\\,/,#,x".Split(',')).Contains(A[P]));} void D(){P=A.Where(x=&gt;("^,v,&gt;,&lt;".Split(',')). Contains(x.Value)).First().Key;var c=A[P]; if(c=="^")T(N);if(c=="v")T(S);if(c=="&lt;")T(W); if(c=="&gt;")T(E);}} </code></pre> <p>Readable Version (not quite the final golf version, but same premise):</p> <pre><code>class Laser { private Dictionary&lt;Point, string&gt; Arena; private readonly List&lt;string&gt; LaserChars; private readonly List&lt;string&gt; OtherChars; private Point Position; private Point OldPosition; private readonly Point North; private readonly Point South; private readonly Point West; private readonly Point East; public Laser( List&lt;string&gt; arena ) { SplitArena( arena ); LaserChars = new List&lt;string&gt; { "^", "v", "&gt;", "&lt;" }; OtherChars = new List&lt;string&gt; { "\\", "/", "#", "x" }; North = new Point( 0, -1 ); South = new Point( 0, 1 ); West = new Point( -1, 0 ); East = new Point( 1, 0 ); FindLaser(); Console.WriteLine( FindTarget() ); } private void SplitArena( List&lt;string&gt; arena ) { Arena = new Dictionary&lt;Point, string&gt;(); int y = 0; foreach( string str in arena ) { var line = str.ToCharArray(); for( int x = 0; x &lt; line.Count(); x++ ) { Arena.Add( new Point( x, y ), line[x].ToString() ); } y++; } } private void DrawArena() { Console.Clear(); var d = new Dictionary&lt;Point, string&gt;( Arena ); d[Position] = "*"; foreach( KeyValuePair&lt;Point, string&gt; p in d ) { if( p.Key.X == 0 ) Console.WriteLine(); Console.Write( p.Value ); } System.Threading.Thread.Sleep( 400 ); } private bool FindTarget() { DrawArena(); string chr = Arena[Position]; switch( chr ) { case "\\": if( ( Position.X == Position.X ) &amp;&amp; ( Position.Y &lt; OldPosition.Y ) ) { OffSet( West ); } else if( ( Position.X == Position.X ) &amp;&amp; ( Position.Y &gt; OldPosition.Y ) ) { OffSet( East ); } else if( ( Position.Y == Position.Y ) &amp;&amp; ( Position.X &gt; OldPosition.X ) ) { OffSet( South ); } else { OffSet( North ); } if( FindTarget() ) { return true; } break; case "/": if( ( Position.X == Position.X ) &amp;&amp; ( Position.Y &lt; OldPosition.Y ) ) { OffSet( East ); } else if( ( Position.X == Position.X ) &amp;&amp; ( Position.Y &gt; OldPosition.Y ) ) { OffSet( West ); } else if( ( Position.Y == Position.Y ) &amp;&amp; ( Position.X &gt; OldPosition.X ) ) { OffSet( North ); } else { OffSet( South ); } if( FindTarget() ) { return true; } break; case "x": return true; case "#": return false; } return false; } private void OffSet( Point p ) { OldPosition = Position; do { Position.Offset( p ); } while( !OtherChars.Contains( Arena[Position] ) ); } private void FindLaser() { Position = Arena.Where( x =&gt; LaserChars.Contains( x.Value ) ).First().Key; switch( Arena[Position] ) { case "^": OffSet( North ); break; case "v": OffSet( South ); break; case "&lt;": OffSet( West ); break; case "&gt;": OffSet( East ); break; } } } </code></pre> http://stackoverflow.com/questions/1467793/how-to-add-folders-in-source-safe/1467852#1467852 0 Answer by Metro Smurf for How to add folders in Source Safe? Metro Smurf 2009-09-23T18:34:34Z 2009-09-23T18:34:34Z <p>Its been a bit since I've used Source Safe, but IIRC, you should be able to just drag and drop a directory into your Source Safe project and the entire tree will be added.</p> http://stackoverflow.com/questions/1421984/in-composite-wpf-prism-what-is-the-difference-between-iregion-add-and-iregionm 2 In Composite WPF (Prism), what is the difference between IRegion.Add and IRegionManager.RegisterViewWithRegion? Metro Smurf 2009-09-14T14:39:45Z 2009-09-15T14:21:33Z <p>In <a href="http://compositewpf.codeplex.com" rel="nofollow">Composite WPF (Prism)</a>, when adding modules to the IRegionManger collection, what is the difference between using IRegion.Add and IRegionManager.RegisterViewWithRegion?</p> <p><strong>IRegion.Add</strong></p> <pre><code>public void Initialize() { _regionManager.Regions["MainRegion"].Add( new ModuleAView() ); } </code></pre> <p><strong>IRegionManager.RegisterViewWithRegion</strong></p> <pre><code>public void Initialize() { _regionManager.RegisterViewWithRegion( "MainRegion", typeof( ModuleAView ) ); } </code></pre> http://stackoverflow.com/questions/1421505/adding-linefeed-to-memo-field-type/1421611#1421611 1 Answer by Metro Smurf for adding linefeed to memo field type Metro Smurf 2009-09-14T13:41:52Z 2009-09-14T13:41:52Z <p>I'm not entirely sure, ,but I believe you need to use a combination of chr 13 &amp; 10:</p> <pre><code>.Fields("memofield") = "123" + chr(13) + chr(10) + "line2" </code></pre> http://stackoverflow.com/questions/1411737/textbox-properties/1411790#1411790 3 Answer by Metro Smurf for textbox properties Metro Smurf 2009-09-11T15:55:53Z 2009-09-11T16:02:07Z <p>From the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.maxlength.aspx" rel="nofollow">TextBoxBase.MaxLengthProperty</a> specs:</p> <blockquote> <p>In code, you can set the value of the Text property to a value that has a length greater than the value specified by the MaxLength property. This property only affects text entered into the control at run time.</p> </blockquote> <p>In other words, you must limit the amount of text in code when pulling from a data source. </p> <p>For Example:</p> <pre><code>string text = "The quick blue smurf jumped over the brown fox."; textBox1.Text = text.Substring( 0, textBox1.MaxLength ); </code></pre> http://stackoverflow.com/questions/1289558/how-much-ram-is-sql-server-actually-using/1289723#1289723 1 Answer by Metro Smurf for How much RAM is SQL Server actually using? Metro Smurf 2009-08-17T18:50:31Z 2009-08-17T18:50:31Z <p>Related to your question, you may want to consider limiting the amount of RAM SQL Server has access to if you are using it in a shared environment, i.e., on a server that hosts more than just SQL Server:</p> <ol> <li>Start > All Programs > Microsoft SQL Server 2005: SQL Server Management Studio.</li> <li>Connect using whatever account has admin rights.</li> <li>Right click on the database > Properties.</li> <li>Select "Memory" from the left pane and then change the "Server memory options" to whatever you feel should be allocated to SQL Server.</li> </ol> <p>This will help alleviate SQL Server from consuming all the server's RAM.</p> http://stackoverflow.com/questions/1150070/deleting-a-content-type-in-sharepoint/1279270#1279270 0 Answer by Metro Smurf for Deleting a Content Type in SharePoint Metro Smurf 2009-08-14T17:58:58Z 2009-08-14T17:58:58Z <p>I just ran into the same issue and the problem appears to be that although the solution was retracted and deleted, the feature was never uninstalled.</p> <p>The resolution is to: 1. redeploy the offending solution. 2. activate and then deactivate the feature. 3. go through the steps uninstalling the feature and retracting and deleting the solution.</p> <p>In pseudo code:</p> <pre><code>stsadm.exe -o deactivatefeature stsadm.exe -o uninstallfeature -force stsadm.exe -o retractsolution -immediate (execute the jobs created from retracting the solution) stsadm.exe -o execadmsvcjobs stsadm.exe -o deletesolution </code></pre> http://stackoverflow.com/questions/1078770/array-searching-code-challenge/1081246#1081246 -1 Answer by Metro Smurf for Array Searching code challenge Metro Smurf 2009-07-04T00:57:58Z 2009-07-04T05:01:32Z <p><strong>C#</strong></p> <p>For Lists:</p> <pre><code>public static int IndexOf&lt;T&gt;( List&lt;T&gt; list1, List&lt;T&gt; list2 ) { return !list2.Except( list1 ).Any() ? list1.IndexOf( list2[0] ) : -1; } </code></pre> <p>For Arrays:</p> <pre><code>public static int IndexOf&lt;T&gt;( T[] arr1, T[] arr2 ) { return !arr2.Except( arr1 ).Any() ? Array.IndexOf( arr1, arr2[0] ) : -1; } </code></pre> http://stackoverflow.com/questions/1075603/how-do-i-sort-a-string-array-alphabetically-by-length/1075695#1075695 0 Answer by Metro Smurf for How do I sort a string array alphabetically by length? Metro Smurf 2009-07-02T17:33:43Z 2009-07-02T17:33:43Z <p>If you want to sort by Alpha then by length, use the OrderBy and ThenBy methods:</p> <pre><code>var strings = new List&lt;string&gt; { "=", "==&gt;&gt;", "=&gt;&gt;", "=&gt;", "!&gt;" }; strings = strings.OrderBy( x =&gt; x ).ThenBy( x =&gt; x.Length ).ToList(); strings.ForEach( Console.WriteLine ); </code></pre> http://stackoverflow.com/questions/1074447/xml-case-conventions-on-element-names/1074519#1074519 1 Answer by Metro Smurf for XML: Case conventions on element names? Metro Smurf 2009-07-02T13:59:07Z 2009-07-02T13:59:07Z <p>Not that it matters, but I've always been partial to PascalCase for Elements and camelCase for attributes:</p> <pre><code>&lt;Root&gt; &lt;ParentElement attributeId="1"&gt; &lt;ChildElement attributeName="foo" /&gt; &lt;/ParentElement&gt; &lt;/Root&gt; </code></pre> http://stackoverflow.com/questions/1041993/access-database-connection-string-jiggery-pokerery/1042061#1042061 1 Answer by Metro Smurf for Access Database, Connection string jiggery pokerery! Metro Smurf 2009-06-25T03:40:56Z 2009-06-25T03:40:56Z <p>Put down the SqlConnection and pick up the <a href="http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection.aspx" rel="nofollow">OleDbConnection</a>:</p> <pre><code>using System.Data; using System.Data.OleDb; using System.Configuration; public class DataAccess { string connectionString = ConfigurationManager.ConnectionStrings["KeyName"].ConnectionString; public DataSet GetData( string sql, string tableName ) { using( var conn = new OleDbConnection( connectionString ) ) { conn.Open(); var da = new OleDbDataAdapter( sql, conn ); var ds = new DataSet(); da.Fill( ds, tableName ); return ds; } } } </code></pre> http://stackoverflow.com/questions/1041426/parse-br-to-plain-text-new-paragraph/1041549#1041549 4 Answer by Metro Smurf for Parse <br> to plain text new paragraph Metro Smurf 2009-06-24T23:54:33Z 2009-06-24T23:54:33Z <p>Your method of using <strong>Environment.Newline</strong> is correct. I believe the issue is with how some queries are returned directly in SQL Server, assuming you're copy/pasting directly out of SQL Server Management Studio (or similar).</p> <p>I'm about 99% positive that if you pull the data out with a SqlConnection and then output it to a winform, text file, etc... then you'll get the line breaks you're looking for.</p> <p>Sorry, but I can't recall why this happens when you copy/paste directly out of the grid of results in SQL Server.</p> http://stackoverflow.com/questions/1024559/when-to-use-first-and-when-to-use-firstordefault-with-linq 6 When to use .First and when to use .FirstOrDefault with LINQ? Metro Smurf 2009-06-21T19:15:29Z 2009-06-21T22:25:08Z <p>I've searched around and haven't really found a clear answer as to when you'd want to use <code>.First</code> and when you'd want to use <code>.FirstOrDefault</code> with LINQ.</p> <ul> <li><p>When would you want to use <code>.First</code>? Only when you'd want to catch the exception if no results where returned?</p> <p><code>var result = List.Where(x =&gt; x == "foo").First();</code></p></li> <li><p>And when would you want to use <code>.FirstOrDefault</code>? When you'd always want the default type if no result?</p> <p><code>var result = List.Where(x =&gt; x == "foo").FirstOrDefault();</code></p></li> <li><p>And for that matter, what about Take?</p> <p><code>var result = List.Where(x =&gt; x == "foo").Take(1);</code></p></li> </ul> http://stackoverflow.com/questions/1010177/what-was-the-worst-3rd-party-api-you-had-to-work-with/1015850#1015850 0 Answer by Metro Smurf for What was the worst 3rd party API you had to work with? Metro Smurf 2009-06-19T00:15:38Z 2009-06-19T00:15:38Z <p><strong>Livelink (OpenText) API</strong></p> <ul> <li>Everything comes back as some bizarre form of a jagged array</li> <li>The documentation provides absolutely no examples</li> <li>[your favorite search engine] typically returns no results for a given API method</li> <li>The support forums feel near abandoned</li> <li>The only reliable way of understanding the resultant data is to run the data in the Livelink debugger</li> <li>And the finally... the system costs tens (hundreds) of thousands of dollars</li> </ul> <p>The wall next to my desk has an imprint of my head...</p> <p>A very simple example of getting a value out of an API method:</p> <pre><code>var workflow = new LAPI_Workflow(CurrentSession); // every Livelink method uses an out variable LLValue outValue; // every method returns an integer that says if the call was // a success or not, where 0 = success and any other integer // is a failure... oh yeah, there is no reference to what any // of the failure values mean, you have to create your own // error dictionary. int result = workflow.ListWorkTasks(workId, subWorkId, taskId, outValue); if (result = 0) { // and now let's traverse through at least 3 different arrays! string taskName = outValue.toValue(0).toValue("TASKS").toValue(0).toString("TaskName"); } </code></pre> <p>Aaack!!! :D</p> http://stackoverflow.com/questions/943725/which-tools-exists-for-byte-level-inspection-of-files/1014957#1014957 0 Answer by Metro Smurf for Which tools exists for byte-level inspection of files ? Metro Smurf 2009-06-18T20:16:42Z 2009-06-18T20:16:42Z <p>Take a gander at <a href="http://www.scootersoftware.com" rel="nofollow">BeyondCompare</a> for file comparisons; version 3 has comparisons for Word files as well. You'd be surprised at how often you'll use it once you have it.</p> http://stackoverflow.com/questions/972112/how-to-get-the-actual-client-url-from-a-classic-asp-request/988393#988393 1 Answer by Metro Smurf for How to get the *actual* client URL from a Classic ASP Request? Metro Smurf 2009-06-12T18:56:17Z 2009-06-12T18:56:17Z <p>You could create a session object when the page is first redirected and then check for that session before redirecting again (it's been a few years since I've worked in classic asp, but this should work):</p> <pre><code>&lt;% if Request.ServerVariables("PATH_INFO") = "/home.asp" AND NOT Session("HasBeenHere") then Session("HasBeenHere") = True Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.mysite.com/" end if %&gt; </code></pre> http://stackoverflow.com/questions/1764867/wpf-how-to-fire-an-eventtrigger-or-animation-when-binding-changes/1767403#1767403 Comment by Metro Smurf on WPF: how to fire an EventTrigger (or Animation) when binding changes? Metro Smurf 2009-11-20T16:04:40Z 2009-11-20T16:04:40Z @Dabblernl - we had tried this initially, but was hoping there was a pure XAML soltution. Thanks. http://stackoverflow.com/questions/1764867/wpf-how-to-fire-an-eventtrigger-or-animation-when-binding-changes/1767415#1767415 Comment by Metro Smurf on WPF: how to fire an EventTrigger (or Animation) when binding changes? Metro Smurf 2009-11-20T16:02:22Z 2009-11-20T16:02:22Z @Jobi - initially we did something similar, re: using the ViewModel to handle the trigger, but have ultimately gone the route of using the DataContextChanged event as suggested by Dabblernl as it keeps the UI logic in the UI and out of the model. http://stackoverflow.com/questions/1764867/wpf-how-to-fire-an-eventtrigger-or-animation-when-binding-changes/1764896#1764896 Comment by Metro Smurf on WPF: how to fire an EventTrigger (or Animation) when binding changes? Metro Smurf 2009-11-19T18:02:18Z 2009-11-19T18:02:18Z @Paul, do you have any resources (links) that you could point me to that would point me in the right direction? http://stackoverflow.com/questions/1718037/abuse-of-c-lambda-expressions-or-syntax-brilliance/1718097#1718097 Comment by Metro Smurf on Abuse of C# lambda expressions or Syntax brilliance? Metro Smurf 2009-11-12T00:41:24Z 2009-11-12T00:41:24Z @Elisha - your Pros and Cons are reversed. At least I hope you're not saying that a Pro is having code &quot;not intuitive&quot;. ;-) http://stackoverflow.com/questions/1715439/best-logging-library-for-net Comment by Metro Smurf on Best logging library for .NET? Metro Smurf 2009-11-11T14:36:48Z 2009-11-11T14:36:48Z duplicate in many forms throughout SO. Samples: <a href="http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice" rel="nofollow" title="what is your net logging framework of choice">stackoverflow.com/questions/126540/&hellip;</a> and <a href="http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-35-project" rel="nofollow" title="what is the best logging solution for a c net 35 project">stackoverflow.com/questions/98080/&hellip;</a> http://stackoverflow.com/questions/1701471/dreamweaver-changing-path-to-sites-reference-instead-of-local/1701617#1701617 Comment by Metro Smurf on Dreamweaver changing path to site's reference instead of local Metro Smurf 2009-11-09T16:04:16Z 2009-11-09T16:04:16Z Its been a few years since I've used DW, but IIRC, you'll just need to create the a blank HTML (or asp, cf, php, etc...) page first, save it and then apply the template. http://stackoverflow.com/questions/713438/explain-generics-in-layman-style-in-c/727626#727626 Comment by Metro Smurf on Explain Generics in layman style in C#? Metro Smurf 2009-10-30T13:59:43Z 2009-10-30T13:59:43Z In your last exmaple, T[] Triple... should be T[] Pair&lt;T&gt;( T a, T b ) { return new T[] { a, b }; } http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1634098#1634098 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-28T01:37:48Z 2009-10-28T01:37:48Z @Loadmaster - some of the properties are initially populated. They are then updated as needed and stored until ready to be sent off to the consuming system. I'm going to update the question with a bit more background (may be later tonight or tomorrow). http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1634627#1634627 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-28T01:33:18Z 2009-10-28T01:33:18Z @Frank - In our case we will be consuming most of the properties. The other properties are derived from what we consume. http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1634593#1634593 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-28T01:29:03Z 2009-10-28T01:29:03Z @alphazero - I'm not sure I follow. But, to answer: 1=true, 2=possibly, but not now, 3 is unlikely in the coming years. Can you expand on your answer? http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633224#1633224 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T21:02:17Z 2009-10-27T21:02:17Z @Kendall, I should have mentioned that we are using WPF and the Composite Application Library (Prism); several of the attributes will need to be dependency properties. Would using a definition file still be an option? http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633256#1633256 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T20:11:41Z 2009-10-27T20:11:41Z @LBushkin - thank you, re: Bridge Pattern. This is the type of answers I was looking for and will spend some time reading up on it. http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633224#1633224 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T20:09:44Z 2009-10-27T20:09:44Z @zvolkov - yes, they are directly referenced by the code. I'm not convinced a dictionary is the direction we want to go here; specifically, we would like to have everything strongly typed. http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T20:03:50Z 2009-10-27T20:03:50Z @Pavel - we are directly editing around 90% of the attributes. http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633283#1633283 Comment by Metro Smurf on Design pattern for class with upwards of 100 properties Metro Smurf 2009-10-27T20:02:04Z 2009-10-27T20:02:04Z @Daniel - yes! you've nailed it, re: the internal system we submit to is the bottleneck.