User Brett Bim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:05:30Z http://stackoverflow.com/feeds/user/117502 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856518/passing-textbox-value-using-html-actionlink 0 Passing Textbox Value using Html.ActionLink Brett Bim 2009-12-06T20:36:28Z 2009-12-06T21:40:41Z <p>I have a table that lists products as well as displays a quantity text box and an Html.ActionLink. Each quantity textbox has a unique id derived from the product id. I think this should be simple but I can't seem to figure out how to get the value in the associated textbox passed to my controller when the user clicks on the link. My code is below and any help is appreciated.</p> <pre><code> &lt;% foreach (var item in Model) { %&gt; &lt;tr&gt; &lt;td&gt; &lt;%= Html.Encode(item.Id) %&gt; &lt;/td&gt; &lt;td&gt; &lt;%= Html.Encode(item.Description) %&gt; &lt;/td&gt; &lt;td&gt; &lt;%= Html.Encode(String.Format("${0:F}", item.Cost)) %&gt; &lt;/td&gt; &lt;td&gt; &lt;%= Html.TextBox(String.Format("quantity{0}", item.Id), "0") %&gt; &lt;/td&gt; &lt;td&gt; &lt;%= Html.ActionLink("Add", "Add", new { id = item.Id, quantity="I want the quantity here?" })%&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> http://stackoverflow.com/questions/1750263/is-it-possible-to-constrain-a-generic-parameter-to-be-a-subtype-of-the-current-ob/1750294#1750294 3 Answer by Brett Bim for Is it possible to constrain a generic parameter to be a subtype of the current object? Brett Bim 2009-11-17T17:03:13Z 2009-11-17T17:03:13Z <p>I think you may be able to do it by just specifying the type on the end.</p> <pre><code>public void DoStuff&lt;T&gt;(T arg1) where T: YourType </code></pre> <p>I am doing that currently in a solution but the YourType is an interface. I think you can do it with a concrete class.</p> http://stackoverflow.com/questions/1722240/perforce-create-a-local-backup-of-current-pendinglist/1722322#1722322 4 Answer by Brett Bim for perforce: create a local backup of current pendinglist Brett Bim 2009-11-12T13:52:42Z 2009-11-12T13:58:21Z <p>You should be able to do a shelve. It's a way of saving a changelist for future editing. The link below is a Python add-in for Perforce that implements shelve. Also, I know that Practical Perforce has a couple of ways to shelve current changes without an external script. I don't have the book in front of me but I'll try to update this question tonight when I do.</p> <p><a href="http://public.perforce.com/wiki/P4%5FShelve" rel="nofollow">http://public.perforce.com/wiki/P4%5FShelve</a></p> http://stackoverflow.com/questions/1709781/wcf-rest-parameters-involving-complex-types/1710053#1710053 0 Answer by Brett Bim for WCF Rest parameters involving complex types Brett Bim 2009-11-10T18:16:23Z 2009-11-11T18:57:51Z <p>You can post complex types using rest.</p> <pre><code>[ServiceContract] public interface ICustomerSpecialOrderService { [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "deletecso/")] bool DeleteCustomerOrder(CustomerSpecialOrder orderToDelete); } </code></pre> <p>The implementation looks like this:</p> <pre><code>public bool DeleteCustomerOrder(CustomerSpecialOrder orderToDelete) { // Do something to delete the order here. } </code></pre> <p>You can call a method from a WPF client:</p> <pre><code>public void DeleteMyOrder(CustomerSpecialOrder toDelete) { Uri address = new Uri(your_uri_here); var factory = new WebChannelFactory&lt;ICustomerSpecialOrderService&gt;(address); var webHttpBinding = factory.Endpoint.Binding as WebHttpBinding; ICustomerSpecialOrderService service = factory.CreateChannel(); service.DeleteCustomerOrder(toDelete); } </code></pre> <p>Or you can call it with a HttpWebRequest as well, writing the complex type to a byte array which we do from a mobile client.</p> <pre><code>private HttpWebRequest DoInvokeRequest&lt;T&gt;(string uri, string method, T requestBody) { string destinationUrl = _baseUrl + uri; var invokeRequest = WebRequest.Create(destinationUrl) as HttpWebRequest; if (invokeRequest == null) return null; // method = "POST" for complex types invokeRequest.Method = method; invokeRequest.ContentType = "text/xml"; byte[] requestBodyBytes = ToByteArray(requestBody); invokeRequest.ContentLength = requestBodyBytes.Length; using (Stream postStream = invokeRequest.GetRequestStream()) postStream.Write(requestBodyBytes, 0, requestBodyBytes.Length); invokeRequest.Timeout = 60000; return invokeRequest; } </code></pre> http://stackoverflow.com/questions/651073/how-do-you-mock-iunitycontainer/1701165#1701165 1 Answer by Brett Bim for How do you Mock IUnityContainer? Brett Bim 2009-11-09T14:05:58Z 2009-11-09T14:05:58Z <p>Have you tried mocking UnityBaseContainer or UnityContainer instead of IUnityContainer, ala <a href="http://www.neovolve.com/post/2009/08/07/Mocking-IUnityContainer-and-avoiding-BadImageFormatException.aspx" rel="nofollow">this post</a> by Rory Primrose? He is dealing with RhinoMocks but because I think the issue is related to Moq's internal use of Castle, you may be able to solve the problem this way.</p> http://stackoverflow.com/questions/1687889/setup-project-vs-2008-installation-location-always-wrong 0 Setup Project VS 2008 Installation Location Always Wrong Brett Bim 2009-11-06T14:16:46Z 2009-11-06T14:16:46Z <p>I have an application that I'm trying to deploy using a Setup project. It deploys just fine but it always puts it in the DefaultLocation, even if the user changes the file path in the Installation folder dialog box. Why is this and what can I do to actually give the user control of where they install the software?</p> http://stackoverflow.com/questions/1673724/why-cant-an-asp-net-mvc-strongly-typed-view-use-an-interface/1673853#1673853 0 Answer by Brett Bim for Why can't an asp.net mvc strongly typed view use an interface? Brett Bim 2009-11-04T13:49:54Z 2009-11-04T13:52:55Z <p>See <a href="http://blog.davidohara.net/2009/08/18/using-interfaces-for-model-in-asp-net-mvc-impl/" rel="nofollow">this blog post</a> for more information on implementing strongly typed views in ASP.Net MVC.</p> http://stackoverflow.com/questions/1669569/object-databases-and-c 3 Object Databases and C# Brett Bim 2009-11-03T19:21:34Z 2009-11-03T19:54:50Z <p>I have an application where my domain model just works. It's all very clear, clean and maps to objects very well. My problem is that it does not map to a relational database very well. With that in mind, I'm looking for object databases that play with .Net/C# reasonably well. </p> <p>Is there a defacto best in class object database for the Microsoft .Net world?</p> http://stackoverflow.com/questions/1664266/replace-default-null-values-returned-from-left-outer-join 2 Replace Default Null Values Returned From Left Outer Join Brett Bim 2009-11-02T22:56:17Z 2009-11-03T02:25:54Z <p>I have a Microsoft SQL Server 2008 query that returns data from three tables using a left outer join. Many times, there is no data in the second and third tables and so I get a null which I think is the default for left outer join. Is there a way to replace the default values in the select statement? I have a workaround in that I can select into a table variable but it feels a little dirty.</p> <pre><code>SELECT iar.Description, iai.Quantity, iai.Quantity * rpl.RegularPrice as 'Retail', iar.Compliance FROM InventoryAdjustmentReason iar LEFT OUTER JOIN InventoryAdjustmentItem iai on (iar.Id = iai.InventoryAdjustmentReasonId) LEFT OUTER JOIN Item i on (i.Id = iai.ItemId) LEFT OUTER JOIN ReportPriceLookup rpl on (rpl.SkuNumber = i.SkuNo) WHERE iar.StoreUse = 'yes' </code></pre> <p>I would like the Quantity and RegularPrice to default to zero if possible.</p> http://stackoverflow.com/questions/1503524/incorrect-states-on-tfs-2008-project-files/1503617#1503617 1 Answer by Brett Bim for Incorrect states on TFS 2008 Project Files Brett Bim 2009-10-01T12:16:24Z 2009-10-01T12:16:24Z <p>Go to File->Source Control->Workspaces in Visual Studio. Make sure that the devs you have only have 1 workspace. It's likely that someone has created multiple workspaces on his machine and have files checked out there. </p> <p>TFS maps workspaces to locations on the machine they are created on so if someone pulled down code to multiple places and edited it, you can have one person with code checked out in multiple places.</p> <p>Also, <a href="http://blog.markjordan.org/archive/2008/03/13/64.aspx" rel="nofollow">this link</a> shows you how to see all the files checked out for a particular person. </p> <p>But I also agree with Preet. It's perfectly OK to have the file checked out by more than one person in TFS. That's one of the minor improvements over SourceSafe.</p> http://stackoverflow.com/questions/1224537/why-is-visual-sourcesafe-viewed-so-poorly/1224631#1224631 3 Answer by Brett Bim for Why is Visual SourceSafe viewed so poorly? Brett Bim 2009-08-03T21:03:55Z 2009-08-27T03:44:38Z <p>I agree that VSS is a horrible piece of software but other than the possible database corruption problem, it seems like your situation will be a difficult one to sell people on. For example, you can't say VSS has terrible merge support because, well, you're the only developer. You can't complain about locking checkouts for the same reason. Unless your app is pretty good sized, you can't argue from the suggested 1 GB maximum database size that VSS suggests. </p> <p>I personally think that in an interview like you're suggesting, you'd be better off looking for lower hanging fruit to suggest like iterative development, TDD or a wiki for documentation. I have fought the good fight to move from VSS to Perforce in an enterprise situation and that was hard enough. I can't imagine trying to convince management of a major source control change on an application that has one developer. YMMV. </p> http://stackoverflow.com/questions/981475/wcf-timeout-exception-detailed-investigation/1306750#1306750 1 Answer by Brett Bim for WCF timeout exception detailed investigation Brett Bim 2009-08-20T14:55:30Z 2009-08-21T21:20:30Z <p>I'm having a very similar problem. In the past, this has been related to serialization problems. If you are still having this problem, can you verify that you can correctly serialize the objects you are returning. Specifically, if you are using Linq-To-Sql objects that have relationships, there are known serialization problems if you put a back reference on a child object to the parent object and mark that back reference as a DataMember.</p> <p>You can verify serialization by writing a console app that serializes and deserializes your objects using the DataContractSerializer on the server side and whatever serialization methods your client uses. For example, in our current application, we have both WPF and Compact Framework clients. I wrote a console app to verify that I can serialize using a DataContractSerializer and deserialize using an XmlDesserializer. You might try that.</p> <p>Also, if you are returning Linq-To-Sql objects that have child collections, you might try to ensure that you have eagerly loaded them on the server side. Sometimes, because of lazy loading, the objects being returned are not populated and may cause the behavior you are seeing where the request is sent to the service method multiple times.</p> <p>If you have solved this problem, I'd love to hear how because I'm stuck with it too. I have verified that my issue is not serialization so I'm at a loss.</p> <p>UPDATE: I'm not sure if it will help you any but the Service Trace Viewer Tool just solved my problem after 5 days of very similar experience to yours. By setting up tracing and then looking at the raw XML, I found the exceptions that were causing my serialization problems. It was related to Linq-to-SQL objects that occasionally had more child objects than could be successfully serialized. Adding the following to your web.config file should enable tracing:</p> <pre><code>&lt;sharedListeners&gt; &lt;add name="sharedListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData="c:\Temp\servicetrace.svclog" /&gt; &lt;/sharedListeners&gt; &lt;sources&gt; &lt;source name="System.ServiceModel" switchValue="Verbose, ActivityTracing" &gt; &lt;listeners&gt; &lt;add name="sharedListener" /&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;source name="System.ServiceModel.MessageLogging" switchValue="Verbose"&gt; &lt;listeners&gt; &lt;add name="sharedListener" /&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;/sources&gt; </code></pre> <p>The resulting file can be opened with the Service Trace Viewer Tool or just in IE to examine the results.</p> http://stackoverflow.com/questions/1302855/is-there-any-difference-between-sqlconnection-createcommand-and-new-sqlcommand 1 Is There Any Difference Between SqlConnection.CreateCommand and new SqlCommand? Brett Bim 2009-08-19T21:59:27Z 2009-08-19T22:13:56Z <p>In .Net, is there any functional difference between creating a new SqlCommand object and attaching a SqlConnection to it and calling CreateCommand on an existing SqlConnection object?</p> http://stackoverflow.com/questions/1258269/selecting-a-subset-of-a-list-with-a-particular-element-first-in-the-list 1 Selecting A Subset Of A List With A Particular Element First In The List Brett Bim 2009-08-11T02:51:17Z 2009-08-11T05:52:58Z <p>I have a list in C# of Vendors that all have a Name property. I want to allow a user to filter that list by searching for a Name. The filter string can be a partial or complete match. However, if the resulting list contains an exact match, it should be in position zero in the list with all partial matches after that.</p> <p>I can get the sub-list pretty easily with linq and lambdas but I'm having to resort to a hack of creating a second list if an exact match exists, adding it, and then adding the rest of the matches without the exact one. It feels inelegant. Is there an easier way? My current code (done from memory so it may not compile):</p> <pre><code>List&lt;Vendor&gt; temp = vendors.Where(v =&gt; v.Name.ToUpper().Contains(vendorNameSearch)).ToList(); Vendor exactMatch = vendors.Single(v =&gt; v.Name.ToUpper().Equals(vendorNameSearch)); if(null == exactMatch){return temp;} else { List&lt;Vendor&gt; temp1 = new List&lt;Vendor&gt;(); temp1.Add(exactMatch); temp1.AddRange(temp.Remove(exactMatch)); return temp1; } </code></pre> http://stackoverflow.com/questions/1169424/correctly-modeling-sports-statistics-in-a-relational-database 0 Correctly Modeling Sports Statistics in a Relational Database Brett Bim 2009-07-23T03:23:28Z 2009-07-27T08:06:21Z <p>I'm trying to model football statistics in PostGreSQL and I have something that works but it doesn't quite feel right. Here's the problem:</p> <p>I have teams, games and stats. For every game there are two teams. Each team has a single offensive statistic line that might include rushing, passing, etc. However, that offensive stat is implicitly the other team's defensive stat, e.g. if the the offensive team has 100 yards rushing in a game against the the defensive team, the defensive team gave up 100 yards rushing. It's important to track both offensive and defensive stats.</p> <p>My current model has FootballTeam, FootballGame, FootballStat and FootballTeamStat as a linking table between FootballTeam and FootballStat. FootballStat has a foreign key to FootballGame. FootballTeamStat has two foreign keys, one to FootballTeam and one to FootballStat. It also has a StatTypeId which is a flag for either offensive or defensive. By doing this, I can avoid a lot of redundancy in FootballStat where I would otherwise have to have two rows for the same stat but one with an offensive flag and one with a defensive flag.</p> <p>This works pretty well in my current application but it has never felt completely right. Is there a better way to do this? My database modeling experience pretty much is limited to projects I've done myself after reading Database Design for Mere Mortals and while this seems to follow most of my experience there, I'm not sure it's the best way.</p> <p>EDIT: Updated to make it generic instead of league specific.</p> http://stackoverflow.com/questions/1009643/what-are-the-funniest-programmer-videos/1120342#1120342 0 Answer by Brett Bim for What are the funniest programmer videos? Brett Bim 2009-07-13T15:56:19Z 2009-07-13T15:56:19Z <p>I think the <a href="http://www.railsenvy.com/tags/MVC" rel="nofollow">MVC Public Service Announcements</a> from Rails Envy are top notch.</p> http://stackoverflow.com/questions/1064942/a-dynamic-language-to-learn-for-curiositys-sake/1064993#1064993 0 Answer by Brett Bim for A dynamic language to learn for curiosity's sake Brett Bim 2009-06-30T17:38:37Z 2009-06-30T17:38:37Z <p>If you really want to go crazy but want things to at least be slightly familiar (I know that sounds like a contradiction but it's true), look at F#. It's a type-inferred language but it supports a lot of dynamic type properties. It's a functional language built on top of the CLR so you get full use of the .Net object system which is cool. Because it's a functional language, there are enough novel concepts to really work your brain. </p> <p>If you really want to go for "biggest departure", Clojure might be of interest. It's a Lisp dialect built on the JVM. It's getting some pretty serious attention both in the Java and Lisp world. It might suit your purposes.</p> http://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider/1044904#1044904 0 Answer by Brett Bim for How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider? Brett Bim 2009-06-25T16:32:15Z 2009-06-25T16:32:15Z <p>Is the problem that the user can't add rows or is it that when the user does add a row, it's not saved to the backing XML store? I can easily add a datagrid with CanUserAddRows="True" to a WPF application, bind the grid to an in-memory list and then have the user add rows that are reflected in that in-memory list. That makes me think that your problem is saving to the backing store.</p> <p>When I bind to an XML on the file system, I can no longer add records to the data grid. I think you will need a minor workaround in that you read the file into an in-memory collection, bind to that and then update the file accordingly as users add rows. </p> http://stackoverflow.com/questions/1041471/pylons-is-confusing-help/1043954#1043954 6 Answer by Brett Bim for Pylons is confusing: help! Brett Bim 2009-06-25T13:32:03Z 2009-06-25T13:32:03Z <p>Have you looked at the <a href="http://pylonsbook.com/" rel="nofollow">Pylons book</a>? I think it does a much better job documenting and explaining how Pylons works. If you are really interested in Pylons, I'd start there.</p> http://stackoverflow.com/questions/1040979/is-there-anything-wrong-with-using-var-to-declare-collections-in-linq-queries/1041030#1041030 0 Answer by Brett Bim for Is there anything wrong with using var to declare collections in LINQ queries? Brett Bim 2009-06-24T21:09:16Z 2009-06-24T21:09:16Z <p>I feel like explicit is always the way to go here if you are in fact getting back known types. The <a href="http://msdn.microsoft.com/en-us/library/bb383973.aspx" rel="nofollow">documentation</a> says that var is required when you are dealing with anonymous types. I see var used all over the place in code not dealing with anonymous types and it feels like lazy coding to me. If we were coding in a duck typed language like Python, I could see using var everywhere but given the situation where you know what types you will get back, I think it's far better to be explicit, not just for you but for future maintainers of the code.</p> http://stackoverflow.com/questions/989844/get-windows-service-description-asp-net/989866#989866 1 Answer by Brett Bim for Get Windows Service Description ASP .NET Brett Bim 2009-06-13T03:35:54Z 2009-06-13T04:12:02Z <p>I think this should work.</p> <p>EDIT: I should read questions closer. The code below gets the description for the first service in the array.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceProcess; using System.Management; namespace ServiceNames { class Program { static void Main(string[] args) { ServiceController[] services = ServiceController.GetServices(); string serviceName = services[0].ServiceName; string objPath = string.Format("Win32_Service.Name='{0}'", serviceName); using (ManagementObject service = new ManagementObject(new ManagementPath(objPath))) { Console.WriteLine(service["Description"]); } Console.Read(); } } } </code></pre> http://stackoverflow.com/questions/974821/python-not-starting-properly/975292#975292 0 Answer by Brett Bim for python not starting properly Brett Bim 2009-06-10T12:34:46Z 2009-06-10T12:34:46Z <p>In your path, I think you need to have both the location of the Python install and the Python\Scripts folder. For example, on XP, I have C:\Python25;C:\Python25\Scripts. Can you verify that you have both?</p> http://stackoverflow.com/questions/973106/what-is-the-clojure-equivalent-of-the-python-idiom-if-name-main/973432#973432 1 Answer by Brett Bim for What is the clojure equivalent of the Python idiom "if __name__ == '__main__'"? Brett Bim 2009-06-10T02:28:39Z 2009-06-10T02:28:39Z <p>I'm very new to Clojure but I think <a href="http://groups.google.com/group/clojure/browse_thread/thread/d3c2c328787c328f/8c8c526fee2d6deb?lnk=gst&amp;q=clojure+python+__name__#8c8c526fee2d6deb" rel="nofollow">this discussion</a> on the Clojure groups may be a solution and/or workaround, specifically the post by Stuart Sierra on April 17th at 10:40 PM. </p> http://stackoverflow.com/questions/972749/python-regular-expression-for-multiple-tags/972928#972928 5 Answer by Brett Bim for Python regular expression for multiple tags Brett Bim 2009-06-09T23:00:36Z 2009-06-09T23:00:36Z <p>Beautiful soup is definitely the way to go with a problem like this. The code is cleaner and easier to read. Once you have it installed, getting all the tags looks something like this.</p> <pre><code>from BeautifulSoup import BeautifulSoup import urllib2 def getTags(tag): f = urllib2.urlopen("http://cnn.com") soup = BeautifulSoup(f.read()) return soup.findAll(tag) if __name__ == '__main__': tags = getTags('p') for tag in tags: print(tag.contents) </code></pre> <p>This will print out all the values of the p tags.</p> http://stackoverflow.com/questions/951634/dblinq-cache-problem/951933#951933 1 Answer by Brett Bim for DbLinq - Cache problem Brett Bim 2009-06-04T17:21:17Z 2009-06-04T17:21:17Z <p>I wrote some pretty similar code that seems to work fine. The only difference is that as Marc suggests, I'm passing in the connection string and calling ToList on the Where method. My Database is not automatically generated but derives from DataContext. The code is below.</p> <pre><code>class Program { static void Main(string[] args) { List&lt;Item&gt; first = GetItems("F891778E-9C87-4620-8AC6-737F6482CECB").ToList(); List&lt;Item&gt; second = GetItems("7CA18DD1-E23B-41AA-871B-8DEF6228F96C").ToList(); Console.WriteLine(first.Count); Console.WriteLine(second.Count); Console.Read(); } static IEnumerable&lt;Item&gt; GetItems(string vendorId) { using (Database repo = new Database(@"connection_string_here")) { return repo.GetTable&lt;Item&gt;().Where(i =&gt; i.VendorId.ToString() == vendorId).ToList(); ; } } } </code></pre> http://stackoverflow.com/questions/1856518/passing-textbox-value-using-html-actionlink/1856556#1856556 Comment by Brett Bim on Passing Textbox Value using Html.ActionLink Brett Bim 2009-12-06T21:01:58Z 2009-12-06T21:01:58Z Sorry, I think my question was poorly worded. I want whatever value the user puts in the text box to be passed to my controller when they click on the add link. http://stackoverflow.com/questions/1722240/perforce-create-a-local-backup-of-current-pendinglist/1722322#1722322 Comment by Brett Bim on perforce: create a local backup of current pendinglist Brett Bim 2009-11-19T14:04:22Z 2009-11-19T14:04:22Z Thanks for the reminder. Unfortunately, it looks like my book got left with a previous employer when I left there. However, the two ways are listed in the Google Books preview below. It looks like a sparse branch would be the way to go for the original poster. <a href="http://books.google.com/books?id=tlZHxJ5dkGcC&amp;printsec=frontcover&amp;dq=practical+perforce#v=onepage&amp;q=shelve&amp;f=false" rel="nofollow">books.google.com/books?id=tlZHxJ5dkGcC&amp;prints&hellip;</a> http://stackoverflow.com/questions/1709781/wcf-rest-parameters-involving-complex-types/1710053#1710053 Comment by Brett Bim on WCF Rest parameters involving complex types Brett Bim 2009-11-11T18:42:06Z 2009-11-11T18:42:06Z Well, I'm working on a project right now where we pass complex types to RESTful services using WebInvoke and POST. We have a service that implements the OperationContract above and we call it using WPF clients and mobile clients who post using an HttpWebRequest. I agree with Scott Seely in response to your second link. Complex types get posted and URIs are used to pass simple strings. http://stackoverflow.com/questions/1709781/wcf-rest-parameters-involving-complex-types/1710053#1710053 Comment by Brett Bim on WCF Rest parameters involving complex types Brett Bim 2009-11-10T19:06:12Z 2009-11-10T19:06:12Z Both your links are broken in your post so I'm not sure I can completely tell what you're doing. Are you saying you can't post complex types using REST? http://stackoverflow.com/questions/1700568/managing-net-assembly-dependencies-by-dll-reference-rather-than-by-project-refer Comment by Brett Bim on Managing .NET assembly dependencies by dll reference rather than by project reference in VS. Brett Bim 2009-11-09T13:37:15Z 2009-11-09T13:37:15Z Just to make sure I understand, you have a solution that has one or more projects in it. Some of these projects reference the dll output of other projects in the solution, even though the referenced project is in the solution? http://stackoverflow.com/questions/1664266/replace-default-null-values-returned-from-left-outer-join/1664268#1664268 Comment by Brett Bim on Replace Default Null Values Returned From Left Outer Join Brett Bim 2009-11-02T22:59:34Z 2009-11-02T22:59:34Z I knew it had to be easy but for some reason, I was blocked on how to do it. Thanks. http://stackoverflow.com/questions/1503524/incorrect-states-on-tfs-2008-project-files/1503617#1503617 Comment by Brett Bim on Incorrect states on TFS 2008 Project Files Brett Bim 2009-10-01T22:06:20Z 2009-10-01T22:06:20Z Yeah, I was being a little tongue in cheek there. :-) http://stackoverflow.com/questions/1169424/correctly-modeling-sports-statistics-in-a-relational-database/1169617#1169617 Comment by Brett Bim on Correctly Modeling Sports Statistics in a Relational Database Brett Bim 2009-07-23T12:33:20Z 2009-07-23T12:33:20Z Thanks for the input. I'm not actually storing the stats twice. FootballStat only has a foreign key to FootballGame in it and then all the data. It's not associated with a team for the reason that each stat is related to two teams. I associate them in FootballTeamStat by linking the statid to the teamid. Does that make sense? http://stackoverflow.com/questions/1126951/are-there-any-open-source-f-projects Comment by Brett Bim on Are There Any Open Source F# Projects Brett Bim 2009-07-20T23:22:21Z 2009-07-20T23:22:21Z The beta is available through Safari. http://stackoverflow.com/questions/383848/f-open-source-projects/384037#384037 Comment by Brett Bim on F# open source projects Brett Bim 2009-07-14T18:00:42Z 2009-07-14T18:00:42Z I can't correct your entry but the DownloadStockPrices link is broken. http://stackoverflow.com/questions/1126951/are-there-any-open-source-f-projects Comment by Brett Bim on Are There Any Open Source F# Projects Brett Bim 2009-07-14T17:58:14Z 2009-07-14T17:58:14Z Thanks. I'm curious why that didn't come up in the related questions when I created the question. http://stackoverflow.com/questions/1088950/itemgroup-item-scope-alternatively-why-does-msbuild-hate-me Comment by Brett Bim on ItemGroup Item scope, alternatively "Why does MSBuild hate me?" Brett Bim 2009-07-06T20:29:42Z 2009-07-06T20:29:42Z Are you trying to build the test.proj file? I'm not sure I understand why you are specifying AssemblyInfo.cs versus just building from the project file. http://stackoverflow.com/questions/989844/get-windows-service-description-asp-net/989866#989866 Comment by Brett Bim on Get Windows Service Description ASP .NET Brett Bim 2009-06-13T04:23:21Z 2009-06-13T04:23:21Z Sorry about that, I didn't pay close enough attention to the original question. The code above should do what you want, I believe. http://stackoverflow.com/questions/972749/python-regular-expression-for-multiple-tags/973538#973538 Comment by Brett Bim on Python regular expression for multiple tags Brett Bim 2009-06-10T15:14:28Z 2009-06-10T15:14:28Z Cool! I didn't know about the object being memory intensive, I've only used it on small parsing projects and never run into issues. Thanks for the update. I voted yours up based on your explanation. http://stackoverflow.com/questions/972749/python-regular-expression-for-multiple-tags/973538#973538 Comment by Brett Bim on Python regular expression for multiple tags Brett Bim 2009-06-10T12:29:18Z 2009-06-10T12:29:18Z I don't think you need to import re. Also, I'm curious what your example provides that mine doesn't other than the list comprehension.