User spinodal - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T05:57:39Zhttp://stackoverflow.com/feeds/user/11374http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/253040/is-it-true-that-the-best-best-practice-is-success2Is it true that "the best best practice is success"?spinodal2008-10-31T10:18:16Z2009-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-checkouts0Does TFS log undo checkouts?spinodal2009-08-25T11:14:32Z2009-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-tes3Should one override equals method for asserting the object equality in a unit test?spinodal2009-07-24T20:37:11Z2009-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#10845656Answer by spinodal for Blog engines for ASP.Net (maybe MVC) web sitesspinodal2009-07-05T18:17:20Z2009-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-testing14What not to test when it comes to Unit Testing?spinodal2008-09-20T21:16:48Z2009-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#5493041Answer by spinodal for Best-Practices : how should I store settings in C# (Format/Type) ?spinodal2009-02-14T16:12:01Z2009-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#4464296Answer by spinodal for How to get the FxCop custom dictionary to work?spinodal2009-01-15T11:33:34Z2009-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><Dictionary>
<Words>
<Recognized>
<Word>"productname"</Word>
<Word>"companyname"</Word>
</Recognized>
</Words>
</Dictionary>
</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#4292774Answer by spinodal for How to manage FxCop overwhelming reportsspinodal2009-01-09T19:01:36Z2009-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-03Pitfalls for converting a .net 1.1 solution to .net 2.0spinodal2008-12-07T18:46:54Z2008-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#3479440Answer by spinodal for Pitfalls for converting a .net 1.1 solution to .net 2.0spinodal2008-12-07T19:28:17Z2008-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-studio11What does "Optimize Code" option really do in Visual Studio?spinodal2008-09-22T08:51:29Z2008-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-why14Which configuration method do you prefer in .net? Why?spinodal2008-09-22T20:27:48Z2008-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#3168420Answer by spinodal for Reading call history in iPhone OSspinodal2008-11-25T09:45:45Z2008-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#2714794Answer by spinodal for how to execute csharp filespinodal2008-11-07T07:56:57Z2008-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#2465341Answer by spinodal for Database Guy Asks: Object-Oriented Design Theory?spinodal2008-10-29T12:01:03Z2008-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#2402291Answer by spinodal for Forcing a TFS checkin of a file via C#spinodal2008-10-27T15:09:47Z2008-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-team2Developing asp.net mvc applications as a team?spinodal2008-10-26T19:44:13Z2008-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#2330661Answer by spinodal for Branching Strategiesspinodal2008-10-24T10:51:11Z2008-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#2168679Answer by spinodal for ASP.NET MVC Beta 1 - where is Html.RenderPartial?spinodal2008-10-19T19:47:59Z2008-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><namespaces>
<add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/>
<add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/>
</namespaces>
</code></pre>
http://stackoverflow.com/questions/190476/is-there-a-way-to-write-a-group-by-query-in-linqtosql-grouping-not-on-a-scalar-va1Is there a way to write a group by query in LinqToSql grouping not on a scalar value?spinodal2008-10-10T08:04:54Z2008-10-19T14:48:37Z
<p>I have those maps in my repository. </p>
<pre><code>public IQueryable<AwType> GetAwTypes()
{
return from awt in _db.AwTypes
select new AwType
{
Id = awt.Id,
Header = awt.Header,
Description = awt.Description
};
}
public IQueryable<Aw> 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<KeyValuePair<AwType, int>></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<KeyValuePair<AwType, int>> RetGroups = new List<KeyValuePair<AwType, int>>();
foreach (var group in awGroups)
{
RetGroups.Add(new KeyValuePair<AwType, int>(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-library2What are pros and cons of Msmqdistributor service of Enterprise Library? spinodal2008-09-19T15:41:04Z2008-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-framework8Are there any tips/tricks about using Subsonic with Asp.Net MVC Framework?spinodal2008-09-25T09:16:55Z2008-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#1326963Answer by spinodal for The best CSS tutorial/site/blog/book.spinodal2008-09-25T11:20:56Z2008-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-200812Can I unshelve to a different branch in tfs 2008?spinodal2008-09-22T20:19:25Z2008-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#1198660Answer by spinodal for Which configuration method do you prefer in .net? Why?spinodal2008-09-23T08:36:18Z2008-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#1174591Answer by spinodal for What not to test when it comes to Unit Testing?spinodal2008-09-22T20:37:02Z2008-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#1148220Answer by spinodal for Are there any utilites that will help me refactor CSSspinodal2008-09-22T13:21:31Z2008-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#1137590Answer by spinodal for CruiseControl.NET post-build actionsspinodal2008-09-22T08:14:24Z2008-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#11040313Answer by spinodal for What not to test when it comes to Unit Testing?spinodal2008-09-21T06:36:10Z2008-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 not 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#1087100Answer by spinodal for Issues creating a box using CSSspinodal2008-09-20T16:49:17Z2008-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#1016077Comment by spinodal on standalone databasespinodal2009-11-27T20:17:28Z2009-11-27T20:17:28ZESE 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#431772Comment by spinodal on Common programming mistakes for .NET developers to avoid?spinodal2009-01-10T21:31:28Z2009-01-10T21:31:28Zinstead 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/…</a>http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinkingComment by spinodal on Benefits of programming (doing) versus reading blogs (thinking?)spinodal2009-01-10T13:40:24Z2009-01-10T13:40:24ZI haven't read the answers yet but this is a question that I wanted to ask absolutely "same way"... good point...http://stackoverflow.com/questions/196740/how-to-add-nunit-in-visual-studioComment by spinodal on How to add NUnit in Visual Studiospinodal2008-12-31T11:19:18Z2008-12-31T11:19:18ZSimilar 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/…</a>http://stackoverflow.com/questions/147275/Comment by spinodal on 这是一个测试,想看一下中文是否能得到支持spinodal2008-11-06T19:50:25Z2008-11-06T19:50:25ZI think this is a good way to ask this question.http://stackoverflow.com/questions/213303/sofware-requirements-analysisComment by spinodal on Sofware Requirements Analysisspinodal2008-10-29T16:26:17Z2008-10-29T16:26:17ZI 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-testingComment by spinodal on What not to test when it comes to Unit Testing?spinodal2008-10-29T10:33:13Z2008-10-29T10:33:13ZI 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#160440Comment by spinodal on What exactly do you do when your team leader is incompetent?spinodal2008-10-26T19:54:42Z2008-10-26T19:54:42ZFearless 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#198446Comment by spinodal on Is there a way to write a group by query in LinqToSql grouping not on a scalar value?spinodal2008-10-13T19:46:39Z2008-10-13T19:46:39ZThanks, 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#190487Comment by spinodal on Is there a way to write a group by query in LinqToSql grouping not on a scalar value?spinodal2008-10-10T10:34:57Z2008-10-10T10:34:57Zdo 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-classComment by spinodal on Most common examples of misuse of singleton classspinodal2008-09-26T06:20:14Z2008-09-26T06:20:14ZA 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/…</a>http://stackoverflow.com/questions/32282/regex-testing-tools/32290#32290Comment by spinodal on Regex Testing Toolsspinodal2008-09-25T13:44:40Z2008-09-25T13:44:40Zrubular is great, online and free...http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522Comment by spinodal on Good excuses NOT to use version controlspinodal2008-09-25T11:04:01Z2008-09-25T11:04:01Zwhat else can be said... http://stackoverflow.com/questions/58640/great-programming-quotes/58806#58806Comment by spinodal on Great programming quotesspinodal2008-09-22T11:36:18Z2008-09-22T11:36:18ZI've never heard that one before but I liked it. So true...http://stackoverflow.com/questions/58640/great-programming-quotes/58706#58706Comment by spinodal on Great programming quotesspinodal2008-09-22T11:34:45Z2008-09-22T11:34:45Zthis one may cause panic :o)