User GalacticCowboy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:46:54Z http://stackoverflow.com/feeds/user/29638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887471/is-there-any-other-tool-better-than-firebug-on-any-other-browsers/1887614#1887614 2 Answer by GalacticCowboy for Is there any other tool better than Firebug on any other browsers? GalacticCowboy 2009-12-11T12:00:54Z 2009-12-11T12:00:54Z <p>I often use <a href="http://getfirebug.com/lite.html" rel="nofollow">Firebug Lite</a> when I'm forced to use another browser. It doesn't have all Firebug features, obviously, but it works pretty well and is one less thing I have to figure out how to use...</p> http://stackoverflow.com/questions/1726826/javascript-do-while-type-loop/1726837#1726837 1 Answer by GalacticCowboy for Javascript "do-while" type loop GalacticCowboy 2009-11-13T02:54:48Z 2009-11-13T02:54:48Z <p>Neither example is a "do-while", they're just different code styles that essentially do the same thing. JSLint is simply informing you that the first style goes against best practices.</p> http://stackoverflow.com/questions/1666091/how-to-check-which-event-caused-the-post-back-in-asp-net-mvc-application/1666950#1666950 0 Answer by GalacticCowboy for how to check which event caused the post back in asp.net mvc application GalacticCowboy 2009-11-03T12:08:58Z 2009-11-03T12:08:58Z <p>I would suggest that your "cancel" button should not submit the form. There are several ways to handle this, but the simplest would be to have a javascript onclick event on the button that navigates back to the previous page. (<code>history.go(-1)</code>) If that doesn't meet your needs, you can also specify a specific route to navigate to. Most complex would be to intercept the click on the client side and decide which route to hit, but I typically only do that if I want to have multiple submit buttons on the form that will hit different actions, and that's a fairly rare situation.</p> http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware/1657154#1657154 0 Answer by GalacticCowboy for Why do most programmers know nothing about hardware? GalacticCowboy 2009-11-01T13:18:37Z 2009-11-03T11:48:36Z <p>I'm kind of split on this one. On the one hand, I agree that it's a shame that more programmers don't know the hardware side. However, I don't agree that it has anything to do with schooling or whatever.</p> <p>For my CS degree we barely touched hardware except as it related to specific programming concepts, and in most cases we used emulators anyway - a MIPS emulator is a lot cheaper than a lab full of DEC Alphas. My school didn't have an EE track, so I don't know that anyone really covered that side of it. Sure, we covered a lot of stuff about CPUs and RAM, but nothing higher-level.</p> <p>However, I think what you're seeing is actually a symptom that most programmers aren't particularly curious or interested in learning new things, particularly outside of their own tunnel-vision focus. I would suggest, though, that such curiosity and interest would actually do them a great service, as most of the people I know who have that kind of curiosity turn out to be the most accomplished programmers as well. I'm not sure if that's incidental or not. My career has been 99% Microsoft-focused, but I play around with Linux pretty regularly. I've never had to build a computer from scratch for my job, but I've build all my own home PCs since the late 90's.</p> <p>Meanwhile, some of these same people who can't plug in their own keyboards also can't figure out how to troubleshoot a software bug - after about 5 minutes they throw their hands up in frustration instead of digging in and refusing to give up.</p> http://stackoverflow.com/questions/1643106/conversion-from-string-to-double-error/1643161#1643161 1 Answer by GalacticCowboy for Conversion from string to double error GalacticCowboy 2009-10-29T11:47:13Z 2009-10-29T11:47:13Z <p><code>"VideoHandler.ashx?FileID="</code> is a string. <code>Eval("FileID")</code> results in a double. You have a type mismatch, so the addition overload doesn't know how to proceed. Solve it like this:</p> <pre><code>string.Format("VideoHandler.ashx?FileID={0}", Eval("FileID")) </code></pre> http://stackoverflow.com/questions/1612731/best-design-pattern-for-database-table-joins/1613031#1613031 1 Answer by GalacticCowboy for Best design pattern for database table joins GalacticCowboy 2009-10-23T12:09:47Z 2009-10-23T12:15:29Z <p>In C#/Linq to SQL it would be something like the following. (I'm assuming there's actually a lookup table of feature types, so that you have a standard list of your feature types and then their relationship to an account is separate, so FeatureTypeId would be your FK value, maybe selected from a drop-down list or something.)</p> <pre><code>// or whatever data type your keys are in public IEnumerable&lt;Customer&gt; getCustomersForFeature(int featureTypeId) { return from feature in dbContext.Features where feature.FeatureTypeId == featureTypeId select getCustomer(feature.Account.Customer.Id); } </code></pre> <p>At some level your DAO/BAO have to be aware of the relationships between your objects, so the fact that this is a grandparent relationship shouldn't be too scary.</p> <p>As to where it belongs in your BAO structure, an argument could probably be made either way. I'd probably put it on Customer, since that's ultimately where I'm trying to get to.</p> <p>Edit: As Toby pointed out, the relationships are bidirectional; again in Linq, you could go the other way as well:</p> <pre><code>// or whatever data type your keys are in public IEnumerable&lt;Customer&gt; getCustomersForFeature(int featureTypeId) { return from customer in dbContext.Customers from account in customer.Accounts from feature in account.Features where feature.FeatureTypeId == featureTypeId select getCustomer(customer.Id); } </code></pre> <p>Any other ORM should have very similar behavior, even though the syntax and structure will vary.</p> http://stackoverflow.com/questions/1606657/listsomething-and-gridview-editing/1606710#1606710 2 Answer by GalacticCowboy for List<something> and GridView editing GalacticCowboy 2009-10-22T11:55:33Z 2009-10-22T11:55:33Z <p>You can bind to an ObjectDataSource, but you will need to implement some methods on the backend and hook them up to your data source to handle the updates since the data source itself doesn't know anything about how to persist data.</p> <p>Here's an <a href="http://msdn.microsoft.com/en-us/library/ms972948.aspx" rel="nofollow">MSDN article</a> that describes this.</p> http://stackoverflow.com/questions/1527219/mvc-wysiwyg-editor/1527261#1527261 0 Answer by GalacticCowboy for MVC wysiwyg editor? GalacticCowboy 2009-10-06T18:25:06Z 2009-10-06T18:25:06Z <p>I've used <a href="http://trac.xinha.org/" rel="nofollow">Xinha</a> with MVC, and it's pretty good. Pretty much all of them work with any standard HTML "textarea", so they'll be broadly applicable to any application/framework/language. Xinha does have some features that assume the availability of PHP, but works well enough without them.</p> http://stackoverflow.com/questions/1438048/how-insert-byte-array-in-sql-table/1438115#1438115 3 Answer by GalacticCowboy for HOw insert Byte array in SQL table GalacticCowboy 2009-09-17T10:58:11Z 2009-09-17T10:58:11Z <p>You will maintain more control over the types, protect yourself from injection attacks, and enjoy slightly better performace by parameterizing your query as follows:</p> <pre><code> sql = "Insert into MembersTable (GUID,Name,Pass,CryptKey)" + "VALUES(@guid, @name, @pass, @key);"; SqlCommand cmdIns = new SqlCommand(sql, conn); SqlParameter _guidParam = new SqlParameter("@guid", DbType.UniqueIdentifier); _guidParam.Value = _GUID; cmdIns.Parameters.Add(_guidParam); // Repeat for other paramters, specifying the appropriate types cmdIns.ExecuteNonQuery(); </code></pre> http://stackoverflow.com/questions/1402807/how-to-prevent-a-users-editing-other-profiles-other-than-own-in-mvc-net-web-appli/1402853#1402853 3 Answer by GalacticCowboy for How to prevent a users editing other profiles other than own in MVC.NET Web Application? GalacticCowboy 2009-09-10T00:37:15Z 2009-09-10T20:21:21Z <p>You'll need to write some code in the controller action. Basically something like:</p> <pre><code>MembershipUser user = Membership.GetUser(); if (!User.IsInRole("Administrator") &amp;&amp; (user.ProviderUserKey != id)) return View("Unauthorized"); </code></pre> <p>In your case for OpenID, it will work pretty much the same. Assume this is pseudocode:</p> <pre><code>var user = GetLoggedInUser(); if (!IsAdmin(user) &amp;&amp; (user.UserID != id)) return View("Unauthorized"); </code></pre> <p>where <code>GetLoggedInUser</code> gets the user object for the current user, and <code>IsAdmin</code> figures out if a user object is an admin.</p> http://stackoverflow.com/questions/1365056/how-to-use-raw-normal-sql-in-asp-net-mvc-without-linq/1365074#1365074 0 Answer by GalacticCowboy for How to use raw normal sql in ASP.NET MVC without linq? GalacticCowboy 2009-09-01T23:01:32Z 2009-09-01T23:01:32Z <p>This seems like the "bloody knuckle" approach - you're really not using any of the 3.5 features that solve problems like this on your behalf.</p> <p>That said, I would suggest that you build business objects in your model folder, and let your business objects handle their persistence using your SQL. Don't put the SQL in your controller, and <em>definitely</em> not in your view. Maintain a clear separation between these layers, and your life will be much easier.</p> http://stackoverflow.com/questions/1126725/t-sql-equivalent-of-rand/1126949#1126949 0 Answer by GalacticCowboy for T-SQL equivalent of =rand() GalacticCowboy 2009-07-14T17:50:05Z 2009-07-14T17:50:05Z <p>I don't know about the Word source, but you can also use the <a href="http://www.lipsum.com" rel="nofollow">Lorem Ipsum generator</a> to generate random text.</p> http://stackoverflow.com/questions/1104105/reflection-in-c-want-a-list-of-the-data-types-of-a-class-fields/1104233#1104233 0 Answer by GalacticCowboy for Reflection in C# -- want a list of the data types of a class' fields GalacticCowboy 2009-07-09T14:27:49Z 2009-07-09T14:27:49Z <p>I'm not sure that MemberInfo has the information you want. You might want to look at <code>GetFields()</code> and the <code>FieldInfo</code> class, or <code>GetProperties()</code> and the <code>PropertyInfo</code> class.</p> <p><code>GetMembers()</code> returns all fields, properties and methods, so if your class contained these they would be enumerated as well.</p> http://stackoverflow.com/questions/1103524/using-a-bitwise-flag-for-a-primary-key/1103548#1103548 5 Answer by GalacticCowboy for Using a bitwise flag for a primary key? GalacticCowboy 2009-07-09T12:31:42Z 2009-07-09T12:31:42Z <p>I'd discourage using bit flags like this. For one thing, you've broken the ability to easily join these tables, so determining group membership will a) take longer, b) be more difficult, and c) probably involve more full-table scans or at least index scans.</p> http://stackoverflow.com/questions/1098066/i-want-to-be-able-to-see-the-displayrmuform-when-rmuboolean-and-effectivedate/1099176#1099176 0 Answer by GalacticCowboy for I want to be able to see the 'displayrmuform' when rmuboolean and effectivedate (right after inputting date) is not null GalacticCowboy 2009-07-08T16:30:26Z 2009-07-08T16:30:26Z <p>Is it calling your blur handler at all? (either debug or put an alert or something)</p> <p>You haven't shown us how you wired up the function to the event, so it could be as simple as that the browser doesn't even know to call the effectiveDate_blur() function.</p> http://stackoverflow.com/questions/1094253/what-is-the-best-way-to-resolve-an-object/1094356#1094356 1 Answer by GalacticCowboy for What is the best way to resolve an object? GalacticCowboy 2009-07-07T19:36:02Z 2009-07-07T20:47:44Z <p>Neil's approach is the best if T can be resolved (I think it also has to be in the same assembly?).</p> <p>Within your class, you could create an internal "registry" of sorts that could be used with System.Reflection to instantiate items without the giant switch statement. This preserves your "convention over configuration" while also keeping you DRY.</p> <p><strong><em>Edit</em></strong></p> <p>Combined with one aspect of LBushkin's answer to show some working code. (At least, it compiles in my head, and is taken from an example that I <em>know</em> works...)</p> <pre><code>public T LoadDefaultForType&lt;T&gt;() { try { string interfaceName = typeof(T).AssemblyQualifiedName; // Assumes that class has same name as interface, without leading I, and // is in ..."Classes" namespace instead of ..."Interfaces" string className = interfaceName.Replace("Interfaces.I", "Classes."); Type t = Type.GetType(className, true, true); System.Reflection.ConstructorInfo info = t.GetConstructor(Type.EmptyTypes); return (T)(info.Invoke(null)); } catch { throw new NotSupportException("Give me something I can work with!"); } } </code></pre> <p><strike>Note that - as written - it won't work across assembly boundaries. It can be done using essentially the same code, however - you just need to supply the assembly-qualified name to the <code>Type.GetType()</code> method.</strike> (fixed - use <code>AssemblyQualifiedName</code> instead of <code>FullName</code>; assumes that interface and implementing class are in same assembly.)</p> http://stackoverflow.com/questions/1094039/when-might-multiple-inheritance-be-the-only-reasonable-solution/1094143#1094143 3 Answer by GalacticCowboy for When might multiple inheritance be the only reasonable solution? GalacticCowboy 2009-07-07T18:56:59Z 2009-07-07T18:56:59Z <p>Multiple inheritance is useful if you need to inherit <em>behavior</em>, not just <em>contract</em>. However, as other languages demonstrate, multiple inheritance is not the only way to solve that problem, at the expense of making your inheritance tree deeper. As such, scenarios where you <strong>must</strong> and <strong>may only</strong> use multiple inheritance would be pretty rare.</p> http://stackoverflow.com/questions/832470/wpf-font-why-are-some-characters-missing/1087947#1087947 7 Answer by GalacticCowboy for WPF Font: Why are some characters missing? GalacticCowboy 2009-07-06T16:33:30Z 2009-07-06T16:44:28Z <p>From <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.fontfamily.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p><strong>Font Fallback</strong></p> <p>Font fallback refers to the automatic substitution of a font other than the font that is selected by the client application. There are two primary reasons why font fallback is invoked:</p> <ul> <li>The font that is specified by the client application does not exist on the system.</li> <li>The font that is specified by the client application does not contain the glyphs that are required to render text. </li> </ul> <p>In WPF, the font fallback mechanism uses the default fallback font family, "Global User Interface", as the substitute font. This font is defined as a composite font, whose file name is "GlobalUserInterface.CompositeFont". For more information about composite fonts, see the Composite Fonts section in this topic.</p> <p>The WPF font fallback mechanism replaces previous Win32 font substitution technologies.</p> </blockquote> <p>My guess would be that the font doesn't support Unicode - the font itself was created in 1996, and since it's intended to emulate Scrabble pieces, I'm not sure that the font author even considered localization.</p> <p><strong><em>EDIT</em></strong> According to the font documentation, the font supports the letters, and any number is supposed to render a blank tile. Spaces don't render a tile.</p> http://stackoverflow.com/questions/1086575/how-can-i-handle-numbers-bigger-than-17-digits-in-firefox-ie7/1086603#1086603 4 Answer by GalacticCowboy for How can I handle numbers bigger than 17-digits in Firefox/IE7? GalacticCowboy 2009-07-06T11:55:39Z 2009-07-06T11:55:39Z <p>In Javascript, all numbers are <a href="http://en.wikipedia.org/wiki/Double%5FPrecision" rel="nofollow">IEEE double precision</a> floating point numbers, which means that you only have about 16 digits of precision; the remainder of the 64 bits are reserved for the exponent. As Fabien notes, you will need to work some tricks to get more precision if you need all 64 bits.</p> http://stackoverflow.com/questions/1077438/sql-server-2005-encryptbykey-returns-null/1077490#1077490 1 Answer by GalacticCowboy for SQL server 2005 ENCRYPTBYKEY returns null GalacticCowboy 2009-07-03T01:48:22Z 2009-07-03T01:48:22Z <p>You must "open" the key before using it. An example is given in <a href="http://msdn.microsoft.com/en-us/library/ms174361%28SQL.90%29.aspx" rel="nofollow">Books Online</a> for how to do this.</p> http://stackoverflow.com/questions/1076097/sql-server-using-wildcard-within-in/1076183#1076183 3 Answer by GalacticCowboy for SQL Server using wildcard within IN GalacticCowboy 2009-07-02T19:15:22Z 2009-07-02T19:15:22Z <p>How about something like this?</p> <pre><code>declare @search table ( searchString varchar(10) ) -- add whatever criteria you want... insert into @search select '0711%' union select '0712%' select j.* from jobdetails j join @search s on j.job_no like s.searchString </code></pre> http://stackoverflow.com/questions/596262/image-fingerprint-to-compare-similarity-of-many-images/1076066#1076066 0 Answer by GalacticCowboy for Image fingerprint to compare similarity of many images GalacticCowboy 2009-07-02T18:51:20Z 2009-07-02T18:51:20Z <p>A long time ago I worked on a system that had some similar characteristics, and this is an approximation of the algorithm we followed:</p> <ol> <li>Divide the picture into zones. In our case we were dealing with 4:3 resolution video, so we used 12 zones. Doing this takes the resolution of the source images out of the picture.</li> <li>For each zone, calculate an overall color - the average of all pixels in the zone</li> <li>For the entire image, calculate an overall color - the average of all zones</li> </ol> <p>So for each image, you're storing <code>n + 1</code> integer values, where <code>n</code> is the number of zones you're tracking.</p> <p>For comparisons, you also need to look at each color channel individually.</p> <ol> <li>For the overall image, compare the color channels for the overall colors to see if they are within a certain threshold - say, 10%</li> <li>If the images are within the threshold, next compare each zone. If all zones also are within the threshold, the images are a strong enough match that you can at least flag them for further comparison.</li> </ol> <p>This lets you quickly discard images that are not matches; you can also use more zones and/or apply the algorithm recursively to get stronger match confidence.</p> http://stackoverflow.com/questions/1071374/merging-jpgs-with-gdi-in-c/1071394#1071394 1 Answer by GalacticCowboy for Merging JPGs with GDI in C# GalacticCowboy 2009-07-01T21:04:43Z 2009-07-01T21:22:20Z <p>If the images are the same size, iterate over them and "AND" the colors for each pixel. For the white pixels, you should get the color of the other image, and for the black ones you should get black.</p> <p>If they're not the same size, scale first.</p> <p>I'm making this up off the top of my head, but something like:</p> <pre><code>Color destColor = Color.FromArgb(pixel1.ToArgb() &amp; pixel2.ToArgb()); </code></pre> http://stackoverflow.com/questions/1071022/fastest-way-to-loop-thru-a-sql-query/1071135#1071135 3 Answer by GalacticCowboy for Fastest way to loop thru a SQL Query. GalacticCowboy 2009-07-01T20:15:58Z 2009-07-01T20:15:58Z <p>For your stated goal, something like this is actually a better bet - avoids the "looping" issue entirely.</p> <pre><code>declare @table table ( ID int ) insert into @table select 1 union select 2 union select 3 union select 4 union select 5 declare @concat varchar(256) -- Add comma if it is not the first item in the list select @concat = isnull(@concat + ', ', '') + ltrim(rtrim(str(ID))) from @table order by ID desc -- or do whatever you want with the concatenated value now... print @concat </code></pre> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1070493#1070493 11 Answer by GalacticCowboy for What are common UI misconceptions and annoyances? GalacticCowboy 2009-07-01T17:54:38Z 2009-07-01T17:54:38Z <p><strong>Inconsistent "metaphor" usage.</strong></p> <p>Common examples are:</p> <ul> <li>Checkboxes that behave like radio buttons, where one and only one can be selected</li> <li>Scroll buttons rather than scroll bar</li> <li>Tabs that behave like command buttons, or command buttons that behave like tabs</li> </ul> http://stackoverflow.com/questions/1065300/performance-of-interface-in-c/1065341#1065341 0 Answer by GalacticCowboy for performance of interface in C# GalacticCowboy 2009-06-30T18:51:14Z 2009-06-30T18:51:14Z <p>An interface simply defines the presence and signature of public methods and properties implemented by the class. Since the interface does not "stand on its own", there should be <em>no</em> performance difference for the method itself, and any "casting" penalty - if any - should be almost too small to measure.</p> http://stackoverflow.com/questions/1059135/how-do-i-load-pictures-in-zune-xna-without-running-out-of-memory/1059195#1059195 1 Answer by GalacticCowboy for How do I load pictures in Zune XNA without running out of memory? GalacticCowboy 2009-06-29T16:19:52Z 2009-06-29T16:19:52Z <p>Don't store the texture handle per item in your album. Instead, use a single program-level handle that you dispose and load as needed as the user walks through the album.</p> http://stackoverflow.com/questions/1041654/objective-c-newbie-does-anyone-know-of-diagrams-that-explain-class-objects-and/1041704#1041704 2 Answer by GalacticCowboy for Objective-C newbie: Does anyone know of diagrams that explain class, objects and methods? GalacticCowboy 2009-06-25T01:03:39Z 2009-06-25T01:03:39Z <p>To some extent, diagrams may not be that helpful to answer the questions you present.</p> <p>It may help to think of things like this:</p> <p>A "class" provides the prototype or definition for some thing. For example, a "Person" or a "Car". A common synonym for "class" is "type".</p> <p>An "object" is a concrete example or instance of a class. For example, you are an instance of "Person", and your car is an instance of "Car".</p> <p>A "method" is a behavior, action or property of a class. However, a method is normally only meaningful in the context of an object. "Person" -> "Eat" is not meaningful, but "you" -> "Eat" is.</p> <p>These are fundamental Object-Oriented concepts that are not specific to Objective-C. If you are interested in a general overview that is language-agnostic, I recommend "<a href="http://rads.stackoverflow.com/amzn/click/0735619654" rel="nofollow">Object Thinking</a>" by David West. Even though it's from Microsoft Press, it covers the concepts rather than any specific language.</p> http://stackoverflow.com/questions/1041163/inserting-n-number-of-records-with-t-sql/1041307#1041307 0 Answer by GalacticCowboy for Inserting n number of records with T-SQL GalacticCowboy 2009-06-24T22:19:20Z 2009-06-24T22:19:20Z <p>How about:</p> <pre><code>DECLARE @nRecords INT SET @nRecords=DATEDIFF(d,'2009-01-01',getdate()) SELECT TOP (@nRecords) ROW_NUMBER() OVER (ORDER BY a.object_id, b.object_id) - 1 FROM sys.objects a, sys.objects b </code></pre> <p>If you don't want it zero-indexed, remove the "<code> - 1</code>"</p> <p>Requires at least SQL Server 2005.</p> http://stackoverflow.com/questions/1031466/evaluate-dice-rolling-notation-strings/1034605#1034605 8 Answer by GalacticCowboy for Evaluate dice rolling notation strings GalacticCowboy 2009-06-23T19:24:07Z 2009-06-23T21:34:43Z <p>C# class. It evaluates recursively for addition and multiplication, left-to-right for chained die rolls</p> <p><strong>Edits:</strong></p> <ul> <li>Removed <code>.Replace(" ","")</code> on each call</li> <li>Added <code>.Trim()</code> on <code>int.TryParse</code> instead</li> <li>All work is now done in single method</li> <li>If die face count is not specified, assumes 6 (see Wiki article)</li> <li>Refactored redundant call to parse left side of "d"</li> <li>Refactored unnecessary <code>if</code> statement</li> </ul> <p>Minified: (411 bytes)</p> <pre><code>class D{Random r=new Random();public int R(string s){int t=0;var a=s.Split('+');if(a.Count()&gt;1)foreach(var b in a)t+=R(b);else{var m=a[0].Split('*');if(m.Count()&gt;1){t=1;foreach(var n in m)t*=R(n);}else{var d=m[0].Split('d');if(!int.TryParse(d[0].Trim(),out t))t=0;int f;for(int i=1;i&lt;d.Count();i++){if(!int.TryParse(d[i].Trim(),out f))f=6;int u=0;for(int j=0;j&lt;(t== 0?1:t);j++)u+=r.Next(1,f);t+=u;}}}return t;}} </code></pre> <p>Expanded form:</p> <pre><code> class D { /// &lt;summary&gt;Our Random object. Make it a first-class citizen so that it produces truly *random* results&lt;/summary&gt; Random r = new Random(); /// &lt;summary&gt;Roll&lt;/summary&gt; /// &lt;param name="s"&gt;string to be evaluated&lt;/param&gt; /// &lt;returns&gt;result of evaluated string&lt;/returns&gt; public int R(string s) { int t = 0; // Addition is lowest order of precedence var a = s.Split('+'); // Add results of each group if (a.Count() &gt; 1) foreach (var b in a) t += R(b); else { // Multiplication is next order of precedence var m = a[0].Split('*'); // Multiply results of each group if (m.Count() &gt; 1) { t = 1; // So that we don't zero-out our results... foreach (var n in m) t *= R(n); } else { // Die definition is our highest order of precedence var d = m[0].Split('d'); // This operand will be our die count, static digits, or else something we don't understand if (!int.TryParse(d[0].Trim(), out t)) t = 0; int f; // Multiple definitions ("2d6d8") iterate through left-to-right: (2d6)d8 for (int i = 1; i &lt; d.Count(); i++) { // If we don't have a right side (face count), assume 6 if (!int.TryParse(d[i].Trim(), out f)) f = 6; int u = 0; // If we don't have a die count, use 1 for (int j = 0; j &lt; (t == 0 ? 1 : t); j++) u += r.Next(1, f); t += u; } } } return t; } } </code></pre> <p>Test cases:</p> <pre><code> static void Main(string[] args) { var t = new List&lt;string&gt;(); t.Add("2d6"); t.Add("2d6d6"); t.Add("2d8d6 + 4d12*3d20"); t.Add("4d12"); t.Add("4*d12"); t.Add("4d"); // Rolls 4 d6 D d = new D(); foreach (var s in t) Console.WriteLine(string.Format("{0}\t{1}", d.R(s), s)); } </code></pre> http://stackoverflow.com/questions/1887410/whats-the-proper-and-easiest-way-of-handling-content-urls-in-asp-net-mvc/1887520#1887520 Comment by GalacticCowboy on What's the proper and easiest way of handling content URLs in ASP.NET MVC? GalacticCowboy 2009-12-11T11:57:10Z 2009-12-11T11:57:10Z Don't forget about the other HTML helpers such as ActionLink(), etc. http://stackoverflow.com/questions/1887531/winforms-whats-wrong-with-this-focus-set/1887562#1887562 Comment by GalacticCowboy on WinForms - Whats wrong with this Focus Set? GalacticCowboy 2009-12-11T11:53:52Z 2009-12-11T11:53:52Z Also, the reason his code isn't working is it looks like he's doing it from the user control, not the form, so the form ultimately is in control here and has to set focus. http://stackoverflow.com/questions/1866861/wireshark-what-is-wag-service Comment by GalacticCowboy on Wireshark: What is wag-service? GalacticCowboy 2009-12-08T13:11:45Z 2009-12-08T13:11:45Z Didn't get a fast enough answer on superuser? <a href="http://superuser.com/questions/80357/what-is-wag-service" rel="nofollow" title="what is wag service">superuser.com/questions/80357/&hellip;</a> http://stackoverflow.com/questions/1866832/video-resolution-on-webpage/1866867#1866867 Comment by GalacticCowboy on Video resolution on webpage GalacticCowboy 2009-12-08T13:10:09Z 2009-12-08T13:10:09Z Or the resolution scaling did a poor job... http://stackoverflow.com/questions/1770193/ies-xhtml-compatibility Comment by GalacticCowboy on IE's XHTML Compatibility GalacticCowboy 2009-11-20T12:43:33Z 2009-11-20T12:43:33Z Unfortunately, you're wrong. See <a href="http://www.howtocreate.co.uk/wrongWithIE/?chapter=XHTML" rel="nofollow">howtocreate.co.uk/wrongWithIE/?chapter=XHTML/&hellip;</a> - they have a demonstration (bottom of the page) that uses XHTML strict to force a failure in IE. http://stackoverflow.com/questions/1756621/do-you-know-of-a-visual-xml-schema-designer-tool/1756679#1756679 Comment by GalacticCowboy on Do you know of a Visual XML Schema Designer tool? GalacticCowboy 2009-11-18T15:32:09Z 2009-11-18T15:32:09Z @CodeMonkey - that's how I typically do it anyway. The tools are good for generating pretty pictures, but it's certainly no faster creating your schema visually than it is to just write it, especially if your tool has code completion/IntelliSense. http://stackoverflow.com/questions/1726826/javascript-do-while-type-loop/1726837#1726837 Comment by GalacticCowboy on Javascript "do-while" type loop GalacticCowboy 2009-11-13T12:50:42Z 2009-11-13T12:50:42Z You might even be able to tell JSLint to ignore this rule. But like it says on the JSLint site, &quot;Warning: JSLint will hurt your feelings.&quot; http://stackoverflow.com/questions/1726826/javascript-do-while-type-loop/1726837#1726837 Comment by GalacticCowboy on Javascript "do-while" type loop GalacticCowboy 2009-11-13T12:43:45Z 2009-11-13T12:43:45Z It's like OtherMichael said, it's a &quot;code smell&quot; - a style that, while syntactically valid, can be the source of bugs if you're not careful. In general, the best practice would be that your loop control should only <i>test</i>, not <i>assign</i>. With that said, 95% of programmers would do it the first way anyway; it's not an <i>error</i> to ignore JSLint - the tool is just there to bring it to your attention but you don't have to follow their advice 100% of the time. http://stackoverflow.com/questions/1726821/using-recursion-to-compare-strings-to-determine-which-comes-first-alphabetically Comment by GalacticCowboy on Using Recursion To Compare Strings To Determine Which Comes First Alphabetically Java GalacticCowboy 2009-11-13T02:58:53Z 2009-11-13T02:58:53Z Homework? Is there a reason you <i>have</i> to use recursion? For that matter, if there is a worst possible way to solve this type of problem, recursion is probably pretty close to it. http://stackoverflow.com/questions/1721771/what-to-do-when-a-page-returns-redirect-301-302-after-setting-location-href/1721787#1721787 Comment by GalacticCowboy on What to do when a page returns redirect (301/302) after setting location.href GalacticCowboy 2009-11-12T12:38:11Z 2009-11-12T12:38:11Z What browser are you using? http://stackoverflow.com/questions/1700624/posting-data-to-asp-net-mvc-from-a-wpf-app Comment by GalacticCowboy on POSTing data to ASP.NET MVC from a WPF app GalacticCowboy 2009-11-09T12:24:08Z 2009-11-09T12:24:08Z Could you show the code where the URL is specified? Have you verified that the incoming URL is set correctly? http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware/1657083#1657083 Comment by GalacticCowboy on Why do most programmers know nothing about hardware? GalacticCowboy 2009-11-03T11:54:43Z 2009-11-03T11:54:43Z However, not knowing how the CPU works (at a high level anyway) can make your code a <i>lot</i> worse... Different platforms and architectures work in different ways. So if you write SQL in the same way you write COBOL, one or the other is going to suck. http://stackoverflow.com/questions/1643106/conversion-from-string-to-double-error/1643161#1643161 Comment by GalacticCowboy on Conversion from string to double error GalacticCowboy 2009-11-01T12:59:34Z 2009-11-01T12:59:34Z param name=&quot;url&quot; value='&lt;%# string.Format(&quot;VideoHandler.ashx?FileID={0}&quot;, Eval(&quot;FileID&quot;)) %&gt;' http://stackoverflow.com/questions/1608695/jquery-contains-selector-multiple-text-items/1608739#1608739 Comment by GalacticCowboy on JQuery Contains Selector - Multiple Text Items GalacticCowboy 2009-10-25T01:47:06Z 2009-10-25T01:47:06Z It should work the same, just do two different &quot;contains&quot; clauses, separated by a comma. http://stackoverflow.com/questions/1553838/which-validation-library-for-asp-net-mvc/1553951#1553951 Comment by GalacticCowboy on Which validation library for ASP.NET MVC? GalacticCowboy 2009-10-12T11:14:51Z 2009-10-12T11:14:51Z Not sure about Misha, but we use xVal + DataAnnotations. I built a T4 generator that emits our business objects and DAL, and it puts the appropriate attributes on the data members.