User spinodal - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:57:39Z http://stackoverflow.com/feeds/user/11374 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/253040/is-it-true-that-the-best-best-practice-is-success 2 Is it true that "the best best practice is success"? spinodal 2008-10-31T10:18:16Z 2009-11-10T15:17:20Z <p>Sometimes I come across this sentence "the best best practice is success" in several blog posts or podcast. Last I've heard this on some podcast; subject was Design related/architectural/security decisions.</p> <p>I don't believe this but it sounds right. And it may cause misunderstanding. What do you think about this? </p> http://stackoverflow.com/questions/1327593/does-tfs-log-undo-checkouts 0 Does TFS log undo checkouts? spinodal 2009-08-25T11:14:32Z 2009-08-25T11:23:47Z <p>Let's say someone checkedout some files and then he/she undo the checkout. Can I find those undo checkout tracks in TFS history? Where? </p> http://stackoverflow.com/questions/1180044/should-one-override-equals-method-for-asserting-the-object-equality-in-a-unit-tes 3 Should one override equals method for asserting the object equality in a unit test? spinodal 2009-07-24T20:37:11Z 2009-07-28T17:54:59Z <p>Let's say we are testing the result of a method by asserting the equality of all the properties of the result object with properties of an expected result object. Should we implement equals method and use Assert.AreEqual(expectedResult, actualResult)... But equals may mean something different in production code. </p> <p>Which is the best practice? </p> <ul> <li>Asserting the equality of the objects through overriden equals method </li> </ul> <p>or</p> <ul> <li>Asserting the equality of all the properties</li> </ul> http://stackoverflow.com/questions/1084543/blog-engines-for-asp-net-maybe-mvc-web-sites/1084565#1084565 6 Answer by spinodal for Blog engines for ASP.Net (maybe MVC) web sites spinodal 2009-07-05T18:17:20Z 2009-07-05T18:22:30Z <p>Three most famous are those: </p> <p>Classical Asp.Net </p> <ul> <li><a href="http://www.dasblog.info/" rel="nofollow">dasBlog</a> </li> <li><a href="http://www.subtextproject.com/" rel="nofollow">Subtext</a></li> </ul> <p>Asp.Net Mvc </p> <ul> <li><a href="http://www.codeplex.com/oxite" rel="nofollow">Oxite</a> </li> </ul> http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing 14 What not to test when it comes to Unit Testing? spinodal 2008-09-20T21:16:48Z 2009-05-01T17:31:19Z <p>In which parts of a project writing unit tests is nearly or really impossible? Data access? ftp?</p> <p>If there is an answer to this question then %100 coverage is a myth, isn't it?</p> http://stackoverflow.com/questions/535685/best-practices-how-should-i-store-settings-in-c-format-type/549304#549304 1 Answer by spinodal for Best-Practices : how should I store settings in C# (Format/Type) ? spinodal 2009-02-14T16:12:01Z 2009-02-14T16:12:01Z <p>I have asked a similar question <a href="http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why">here</a>, maybe the answers help...</p> http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/446429#446429 6 Answer by spinodal for How to get the FxCop custom dictionary to work? spinodal 2009-01-15T11:33:34Z 2009-01-15T11:33:34Z <p>If you use it inside Visual Studio...</p> <p>From <a href="http://blogs.msdn.com/fxcop/archive/2007/08/20/new-for-visual-studio-2008-custom-dictionaries.aspx" rel="nofollow">Visual Studio Code Analysis Team Blog</a></p> <blockquote> <p>To add a custom dictionary to a C# and Visual Basic project is simple:</p> <ol> <li>In Solution Explorer, right-click on the project and choose Add -> New Item...</li> <li>Under Templates, select XML File, enter a name for the dictionary, such as CodeAnalysisDictionary.xml and click Add</li> <li>In Solution Explorer, right-click on the XML file and choose Properties</li> <li>In the Properties tool window, under Build Action choose CodeAnalysisDictionary</li> <li>In Solution Explorer, double-click on the newly created dictionary to open it</li> <li><p>In the XML editor, paste the following, replacing "productname" and "companyname" with your team's equivalents:</p> <pre><code>&lt;Dictionary&gt; &lt;Words&gt; &lt;Recognized&gt; &lt;Word&gt;"productname"&lt;/Word&gt; &lt;Word&gt;"companyname"&lt;/Word&gt; &lt;/Recognized&gt; &lt;/Words&gt; &lt;/Dictionary&gt; </code></pre></li> </ol> <p>You are now ready to start entering your own custom words. Simply add a new element for each word in your project that does not exist in the dictionary. Each word is case-insensitive, so any casing of the word will be recognized. Code Analysis will automatically pick up the custom dictionary the next time it is run.</p> </blockquote> http://stackoverflow.com/questions/429255/how-to-manage-fxcop-overwhelming-reports/429277#429277 4 Answer by spinodal for How to manage FxCop overwhelming reports spinodal 2009-01-09T19:01:36Z 2009-01-09T19:01:36Z <p>At first you can start with a small set of rules at the beginning. And then increase the number of rules you apply. </p> <p>And also you must have a look at <a href="http://stackoverflow.com/questions/27009/how-does-one-implement-fxcop-static-analysis-on-an-existing-code-base">this questio</a>n's answers... </p> http://stackoverflow.com/questions/347905/pitfalls-for-converting-a-net-1-1-solution-to-net-2-0 3 Pitfalls for converting a .net 1.1 solution to .net 2.0 spinodal 2008-12-07T18:46:54Z 2008-12-07T21:46:56Z <p>In <a href="http://stackoverflow.com/questions/161368/pitfalls-for-converting-a-net-20-solution-to-net-35">this question</a> superwiren asks about the pitfalls for converting a .net 2.0 solution to .net 3.5. </p> <p>What about .net 1.1 to .net 2.0? </p> <p>Is 2.0 fully backwards compatible with 1.1?</p> http://stackoverflow.com/questions/347905/pitfalls-for-converting-a-net-1-1-solution-to-net-2-0/347944#347944 0 Answer by spinodal for Pitfalls for converting a .net 1.1 solution to .net 2.0 spinodal 2008-12-07T19:28:17Z 2008-12-07T19:28:17Z <p><a href="http://msdn.microsoft.com/en-us/library/ms994381.aspx" rel="nofollow">1.1 to 2.0 compatibility</a> link that @kushin mentioned helps a lot...</p> http://stackoverflow.com/questions/113866/what-does-optimize-code-option-really-do-in-visual-studio 11 What does "Optimize Code" option really do in Visual Studio? spinodal 2008-09-22T08:51:29Z 2008-12-07T10:34:57Z <p>Name of the option tells something but what Visual Studio/compiler really do and what are the real consequences?</p> <p>Edit: If you search google you can find <a href="http://msdn.microsoft.com/en-us/library/k1ack8f1.aspx" rel="nofollow">this address</a>, but that is not really I am looking for. I wonder the real things happening. For example why do the loops get less time, etc. </p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why 14 Which configuration method do you prefer in .net? Why? spinodal 2008-09-22T20:27:48Z 2008-12-02T23:51:08Z <ul> <li>You can use App.config; but it only supports key/value pairs.</li> <li>You can use .Net configuration, configuration sections; but it can be really complex.</li> <li>You can use Xml Serialization/Deserialization by yourself; your classes-your way.</li> <li>You can use some other method; what can they be? ...</li> </ul> <p>Which of these or other methods (if there are) do you prefer? Why?</p> http://stackoverflow.com/questions/144888/reading-call-history-in-iphone-os/316842#316842 0 Answer by spinodal for Reading call history in iPhone OS spinodal 2008-11-25T09:45:45Z 2008-11-25T09:45:45Z <p>@Andrew says </p> <blockquote> <p>Unfortunately you can't access the call history. The only User Data you have API access to is the address book.</p> </blockquote> <p>But <a href="http://www.markspace.com/missingsync_iphone_call_log_win.php" rel="nofollow">This application</a> says it can do this. If there is an application that says it can reach and show you the detail of the call history I think there is a way.</p> <p>I know this is not a real answer but it may add value to the search of answer. </p> <p>And @schwa; can you name the apps that can access this info.</p> http://stackoverflow.com/questions/271438/how-to-execute-csharp-file/271479#271479 4 Answer by spinodal for how to execute csharp file spinodal 2008-11-07T07:56:57Z 2008-11-07T07:56:57Z <p>.cs file is only a file that holds the code, it cannot be executed directly. You should compile/build it first (to executable format) with suitable tools. </p> <p>You can start somewhere like this: <a href="http://www.csharp-station.com/Tutorials/Lesson01.aspx" rel="nofollow">http://www.csharp-station.com/Tutorials/Lesson01.aspx</a></p> http://stackoverflow.com/questions/246499/database-guy-asks-object-oriented-design-theory/246534#246534 1 Answer by spinodal for Database Guy Asks: Object-Oriented Design Theory? spinodal 2008-10-29T12:01:03Z 2008-10-29T12:01:03Z <p><a href="http://sourcemaking.com/design-patterns-and-tips" rel="nofollow">This site lists 101 title</a>... design patterns, refactoring and other... Have a look at it.. It will be a good starting point...</p> http://stackoverflow.com/questions/213873/forcing-a-tfs-checkin-of-a-file-via-c/240229#240229 1 Answer by spinodal for Forcing a TFS checkin of a file via C# spinodal 2008-10-27T15:09:47Z 2008-10-28T09:46:40Z <p>Checkins are atomic - either they all succeed or they all fail. <strong>If there are any conflicts that need to be resolved before the check in, the check in operation will throw an exception.</strong> (Documentation)</p> <p>You have to evaluate checkin for conflicts and then resolve the CheckinConflicts by Workspace.ResolveConflict Method. ResolveConflict expects CheckinConflict, and result of the EvaluateCheckin (which is CheckinEvaluationResult) includes CheckinConflicts.</p> <p><a href="http://blogs.msdn.com/buckh/archive/2006/03/20/evaluate-checkin.aspx" rel="nofollow">This page</a> may help.</p> <p>Note: checkinoptions is not related with what you are asking.</p> <p>Hope this helps. </p> http://stackoverflow.com/questions/238505/developing-asp-net-mvc-applications-as-a-team 2 Developing asp.net mvc applications as a team? spinodal 2008-10-26T19:44:13Z 2008-10-28T07:18:20Z <p>I don't know if this has been discussed. </p> <p>Let's say you are in a three developer team. How would you share: </p> <ul> <li>models - views - controllers</li> <li>by controllers</li> <li>by use cases</li> <li>something else?</li> </ul> <p>Maybe someone says this has nothing to do with asp.net mvc but I think it affects somehow.</p> http://stackoverflow.com/questions/34975/branching-strategies/233066#233066 1 Answer by spinodal for Branching Strategies spinodal 2008-10-24T10:51:11Z 2008-10-24T10:51:11Z <p>Jeff Atwood <a href="http://www.codinghorror.com/blog/archives/000968.html" rel="nofollow">wrote</a> about this in a good blog post; that post has got some important links in it.</p> http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial/216867#216867 9 Answer by spinodal for ASP.NET MVC Beta 1 - where is Html.RenderPartial? spinodal 2008-10-19T19:47:59Z 2008-10-19T19:47:59Z <p>And also don't forget to add namespaces like below to the web config, I think preview 5 default web.config does not have System.Web.Mvc.Html in it:</p> <pre><code>&lt;namespaces&gt; &lt;add namespace="System.Web.Mvc"/&gt; &lt;add namespace="System.Web.Mvc.Ajax"/&gt; &lt;add namespace="System.Web.Mvc.Html"/&gt; &lt;add namespace="System.Web.Routing"/&gt; &lt;add namespace="System.Linq"/&gt; &lt;add namespace="System.Collections.Generic"/&gt; &lt;/namespaces&gt; </code></pre> http://stackoverflow.com/questions/190476/is-there-a-way-to-write-a-group-by-query-in-linqtosql-grouping-not-on-a-scalar-va 1 Is there a way to write a group by query in LinqToSql grouping not on a scalar value? spinodal 2008-10-10T08:04:54Z 2008-10-19T14:48:37Z <p>I have those maps in my repository. </p> <pre><code>public IQueryable&lt;AwType&gt; GetAwTypes() { return from awt in _db.AwTypes select new AwType { Id = awt.Id, Header = awt.Header, Description = awt.Description }; } public IQueryable&lt;Aw&gt; GetAws() { return from aw in _db.Aws select new Aw { Id = aw.Id, Bw = (from bw in GetBws() where bw.Id == aw.Bw select bw ).SingleOrDefault(), AwType = (from awt in GetAwTypes() where awt.Id == awAwType select awt ).SingleOrDefault(), AwAttribute = aw.AwAttribute }; } </code></pre> <p>In service I want to get count of Bws grouped by AwType as <code>List&lt;KeyValuePair&lt;AwType, int&gt;&gt;</code>. When I call that linq query :</p> <pre><code>var awGroups = from aw in _repository.GetAws() group aw by aw.AwType into newGroup select newGroup; List&lt;KeyValuePair&lt;AwType, int&gt;&gt; RetGroups = new List&lt;KeyValuePair&lt;AwType, int&gt;&gt;(); foreach (var group in awGroups) { RetGroups.Add(new KeyValuePair&lt;AwType, int&gt;(group.Key, group.Count())); } return RetGroups; </code></pre> <p>I get an error that is saying I can't group by on an object I have to group by a scalar value like aw.AwType.Id.</p> <p>Is there a way to get "AwType, int" pairs in one call?</p> http://stackoverflow.com/questions/103033/what-are-pros-and-cons-of-msmqdistributor-service-of-enterprise-library 2 What are pros and cons of Msmqdistributor service of Enterprise Library? spinodal 2008-09-19T15:41:04Z 2008-09-30T20:29:08Z <p>We are using EntLib Logging Application Block. And also it turned out that we should use msmq for logging because of performance. Now we are trying to use Msmqdistributor service to log those messages in the queue.</p> <p>What are pros and cons of Msmqdistributor service of Enterprise Library? </p> <p>Please share your experience.</p> http://stackoverflow.com/questions/132280/are-there-any-tips-tricks-about-using-subsonic-with-asp-net-mvc-framework 8 Are there any tips/tricks about using Subsonic with Asp.Net MVC Framework? spinodal 2008-09-25T09:16:55Z 2008-09-26T15:24:34Z <p>Is there anyone using Subsonic with asp.net mvc framework? If so, can you tell us something about your experience. Are there tips and tricks that can be shared?</p> http://stackoverflow.com/questions/132587/the-best-css-tutorial-site-blog-book/132696#132696 3 Answer by spinodal for The best CSS tutorial/site/blog/book. spinodal 2008-09-25T11:20:56Z 2008-09-25T11:20:56Z <p><a href="http://css.maxdesign.com.au/index.htm" rel="nofollow">MaxDesign</a> also contains good tutorials. For example:</p> <ul> <li><a href="http://css.maxdesign.com.au/floatutorial/" rel="nofollow">Floatutorial</a> </li> <li><a href="http://css.maxdesign.com.au/selectutorial/" rel="nofollow">Selectutorial</a></li> </ul> http://stackoverflow.com/questions/117337/can-i-unshelve-to-a-different-branch-in-tfs-2008 12 Can I unshelve to a different branch in tfs 2008? spinodal 2008-09-22T20:19:25Z 2008-09-23T13:47:49Z <p>Let's assume that some developer in my team shelved his changes that he did in branch A. And I am working on branch B. Can I unshelve his changes into branch B? (By GUI or command prompt) </p> http://stackoverflow.com/questions/117407/which-configuration-method-do-you-prefer-in-net-why/119866#119866 0 Answer by spinodal for Which configuration method do you prefer in .net? Why? spinodal 2008-09-23T08:36:18Z 2008-09-23T08:36:18Z <p>Mostly I prefer using custom xml file and Xml Serialization method to read and write this config files... Not restricted to key/value pairs and not complex to implement... </p> http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing/117459#117459 1 Answer by spinodal for What not to test when it comes to Unit Testing? spinodal 2008-09-22T20:37:02Z 2008-09-22T20:37:02Z <p>And also, some answers may be extracted from another questions (<a href="http://stackoverflow.com/questions/61400/what-makes-a-good-unit-test">What makes a good unit test?</a>) answers...</p> http://stackoverflow.com/questions/114272/are-there-any-utilites-that-will-help-me-refactor-css/114822#114822 0 Answer by spinodal for Are there any utilites that will help me refactor CSS spinodal 2008-09-22T13:21:31Z 2008-09-22T13:21:31Z <p>Maybe <a href="http://floele.flyspray.org/csstidy/css_optimiser.php" rel="nofollow">CssTidy</a> or <a href="http://www.cssoptimiser.com/" rel="nofollow">CssOptimiser</a> can help to clean-up and make smaller</p> http://stackoverflow.com/questions/113731/cruisecontrol-net-post-build-actions/113759#113759 0 Answer by spinodal for CruiseControl.NET post-build actions spinodal 2008-09-22T08:14:24Z 2008-09-22T08:14:24Z <p>You have to use <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> for those kind of stuff. Here is the <a href="http://nant.sourceforge.net/release/latest/help/tasks/" rel="nofollow">Task Reference of Nant</a>..</p> http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing/110403#110403 13 Answer by spinodal for What not to test when it comes to Unit Testing? spinodal 2008-09-21T06:36:10Z 2008-09-21T06:36:10Z <p><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=126923" rel="nofollow">Here</a> I found (via <a href="http://haacked.com/archive/2008/07/22/unit-test-boundaries.aspx" rel="nofollow">haacked</a> something Michael Feathers says that can be an answer:</p> <p>He says, </p> <blockquote> <p>A test is not a unit test if:</p> <blockquote> <ul> <li>It talks to the database</li> <li>It communicates across the network</li> <li>It touches the file system</li> <li>It can't run at the same time as any of your other unit tests</li> <li>You have to do special things to your environment (such as editing config files) to run it. </li> </ul> </blockquote> </blockquote> <p>Again in same article he adds:</p> <blockquote> <p>Generally, unit tests are supposed to be small, they test a method or the interaction of a couple of methods. When you pull the database, sockets, or file system access into your unit tests, they are no’t really about those methods any more; they are about the integration of your code with that other software.</p> </blockquote> http://stackoverflow.com/questions/108687/issues-creating-a-box-using-css/108710#108710 0 Answer by spinodal for Issues creating a box using CSS spinodal 2008-09-20T16:49:17Z 2008-09-20T16:49:17Z <p>Maybe those two will help:</p> <ul> <li><a href="http://css.maxdesign.com.au/listutorial/" rel="nofollow">Listutorial</a></li> <li><a href="http://www.cssplay.co.uk/menus/" rel="nofollow">CssPlay Menus</a></li> </ul> http://stackoverflow.com/questions/1016063/standalone-database/1016077#1016077 Comment by spinodal on standalone database spinodal 2009-11-27T20:17:28Z 2009-11-27T20:17:28Z ESE is not hard to intagrate with .NET anymore... You can use ESENT Managed Interop <a href="http://www.codeplex.com/ManagedEsent" rel="nofollow">codeplex.com/ManagedEsent</a> http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/431772#431772 Comment by spinodal on Common programming mistakes for .NET developers to avoid? spinodal 2009-01-10T21:31:28Z 2009-01-10T21:31:28Z instead of writing long I will give you a link: <a href="http://codebetter.com/blogs/karlseguin/archive/2006/04/10/142602.aspx" rel="nofollow">codebetter.com/blogs/karlseguin/&hellip;</a> http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinking Comment by spinodal on Benefits of programming (doing) versus reading blogs (thinking?) spinodal 2009-01-10T13:40:24Z 2009-01-10T13:40:24Z I haven't read the answers yet but this is a question that I wanted to ask absolutely &quot;same way&quot;... good point... http://stackoverflow.com/questions/196740/how-to-add-nunit-in-visual-studio Comment by spinodal on How to add NUnit in Visual Studio spinodal 2008-12-31T11:19:18Z 2008-12-31T11:19:18Z Similar question <a href="http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit" rel="nofollow" title="is there a free visual studio addin for nunit">stackoverflow.com/questions/247900/&hellip;</a> http://stackoverflow.com/questions/147275/ Comment by spinodal on 这是一个测试,想看一下中文是否能得到支持 spinodal 2008-11-06T19:50:25Z 2008-11-06T19:50:25Z I think this is a good way to ask this question. http://stackoverflow.com/questions/213303/sofware-requirements-analysis Comment by spinodal on Sofware Requirements Analysis spinodal 2008-10-29T16:26:17Z 2008-10-29T16:26:17Z I think title is a little bit broad for the question. (in my opinion) http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing Comment by spinodal on What not to test when it comes to Unit Testing? spinodal 2008-10-29T10:33:13Z 2008-10-29T10:33:13Z I think those three questions are different, and must be discussed on different pages. http://stackoverflow.com/questions/160433/what-exactly-do-you-do-when-your-team-leader-is-incompetent/160440#160440 Comment by spinodal on What exactly do you do when your team leader is incompetent? spinodal 2008-10-26T19:54:42Z 2008-10-26T19:54:42Z Fearless Leader is a fearless leader I guess. :) http://stackoverflow.com/questions/190476/is-there-a-way-to-write-a-group-by-query-in-linqtosql-grouping-not-on-a-scalar-va/198446#198446 Comment by spinodal on Is there a way to write a group by query in LinqToSql grouping not on a scalar value? spinodal 2008-10-13T19:46:39Z 2008-10-13T19:46:39Z Thanks, I've nearly gave up waiting an answer... :) http://stackoverflow.com/questions/190476/is-there-a-way-to-write-a-group-by-query-in-linqtosql-grouping-not-on-a-scalar-va/190487#190487 Comment by spinodal on Is there a way to write a group by query in LinqToSql grouping not on a scalar value? spinodal 2008-10-10T10:34:57Z 2008-10-10T10:34:57Z do you mean group aw by new {Foo, Bar} ... I didn't understand what you mean... http://stackoverflow.com/questions/135347/most-common-examples-of-misuse-of-singleton-class Comment by spinodal on Most common examples of misuse of singleton class spinodal 2008-09-26T06:20:14Z 2008-09-26T06:20:14Z A related question: <a href="http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons" rel="nofollow" title="what is so bad about singletons">stackoverflow.com/questions/137975/&hellip;</a> http://stackoverflow.com/questions/32282/regex-testing-tools/32290#32290 Comment by spinodal on Regex Testing Tools spinodal 2008-09-25T13:44:40Z 2008-09-25T13:44:40Z rubular is great, online and free... http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522 Comment by spinodal on Good excuses NOT to use version control spinodal 2008-09-25T11:04:01Z 2008-09-25T11:04:01Z what else can be said... http://stackoverflow.com/questions/58640/great-programming-quotes/58806#58806 Comment by spinodal on Great programming quotes spinodal 2008-09-22T11:36:18Z 2008-09-22T11:36:18Z I've never heard that one before but I liked it. So true... http://stackoverflow.com/questions/58640/great-programming-quotes/58706#58706 Comment by spinodal on Great programming quotes spinodal 2008-09-22T11:34:45Z 2008-09-22T11:34:45Z this one may cause panic :o)