User Maxim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:52:07Zhttp://stackoverflow.com/feeds/user/24975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/266255/filenotfoundexception-with-the-spsite-constructor-whats-the-problem1FileNotFoundException with the SPSite constructor. What's the problem?Maxim2008-11-05T19:22:50Z2009-12-02T21:37:56Z
<p>I try to instantiate a instance of SPSite on the farm server in a custom software (MyApp.exe) and I give in parameter the whole website (<a href="http://mysite:80/" rel="nofollow">http://mysite:80/</a>). I also made sure that the account running MyApp.exe is Site Collection Administrator.</p>
<p>However, I can't make an instance of SPSite whatever I am trying to do. I always gives back "FileNotFoundException".</p>
<p>Anyone got an idea?</p>
<p>StackTrace:</p>
<blockquote>
<p>at
Microsoft.SharePoint.SPSite..ctor(SPFarm
farm, Uri requestUri, Boolean
contextSite, SPUserToken userToken)<br />
at
Microsoft.SharePoint.SPSite..ctor(String
requestUrl) at
MyCompanyName.Service.HelperClass.GetItemStateInSharePoint(SharePointItem
item) in
C:\Workspaces\MyCompanyName\Development\Main\MyCompanyName.SharePoint\Service\HelperClass.cs:line
555</p>
</blockquote>
<p>Another side note... I have a Web Application + Site collection that I can access through the browser without any problem.</p>
http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820683#18206830Answer by Maxim for How to spot empty parking spaces?Maxim2009-11-30T15:59:23Z2009-11-30T16:16:34Z<p>Here is a few links on image processing that I could find that could be relevant to your situation.</p>
<ul>
<li><a href="http://www.efg2.com/Lab/Library/ImageProcessing/Algorithms.htm" rel="nofollow">http://www.efg2.com/Lab/Library/ImageProcessing/Algorithms.htm</a></li>
<li><a href="http://scialert.net/fulltext/?doi=itj.2009.114.127" rel="nofollow">http://scialert.net/fulltext/?doi=itj.2009.114.127</a></li>
<li><a href="http://www.rob.cs.tu-bs.de/en/research/projects/parkspot" rel="nofollow">http://www.rob.cs.tu-bs.de/en/research/projects/parkspot</a></li>
</ul>
<p>If you want, you can redo my search by <a href="http://www.google.ca/search?q=image+processing+algorithms+%2Bparking" rel="nofollow">clicking here</a>.</p>
<p><strong>EDIT:</strong> Now that I look at it, you might also be considering magnetic car detection in your parking place. If the budget is not a problem, I'm sure there is already some commercialized system that would be able to be installed to detect car in specific spots. Probably more expensive than cameras however.</p>
<p>Magnetic car sensor may vary from 1$ to 6$ each depending on what you need. So if you have a 200 places parking lot... I would see a magnetic detector (like they have at red lights) as a very feasible and cheap solution. </p>
http://stackoverflow.com/questions/1733476/best-practices-for-converting-an-existing-website-into-a-website-with-sef-url/1804125#18041251Answer by Maxim for Best practices for converting an existing website into a website with SEF URL Maxim2009-11-26T14:51:45Z2009-11-26T14:51:45Z<p>If you want to do URL Rewriting without changing frameworks or anything, may I suggest that you take a look at <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" rel="nofollow">IIS7 Url Rewriting Module</a>?</p>
<p>However, if you are rewriting part of your application in .NET ... you might want to consider <a href="http://www.asp.net/MVC/" rel="nofollow">ASP.NET MVC</a>. It already build simple built-in URL Rewriting module and definitely allows you to keep on using your old "WebForms" (if ASP.NET) or your classic ASP pages.</p>
http://stackoverflow.com/questions/1725279/security-and-roles-authorization-with-model-view-presenter-design-pattern/1773459#17734592Answer by Maxim for Security and roles authorization with model view presenter design patternMaxim2009-11-20T21:49:58Z2009-11-20T21:49:58Z<p>Here is something that you might want to consider. </p>
<p>I would use the decorator pattern to authorize each call to your object separatly.</p>
<p>Let's say you have the following class:</p>
<pre><code>public class MyService
{
public virtual void DoSomething()
{
//do something on the server
}
}
</code></pre>
<p>You would then proceed to create a base decorator to implement the default constructor like this:</p>
<pre><code>public class MyServiceDecoratorBase : MyService
{
public MyServiceDecoratorBase(MyService service)
{
}
}
</code></pre>
<p>Once this is setup, you can actually start to decorate by creating an authorization decorator like this:</p>
<pre><code>public class MyServiceAuthorizationDecorator : MyServiceDecoratorBase
{
private readonly MyService _service;
public MyServiceDecoratorBase(MyService service)
{
_service = service;
}
public override void DoSomething()
{
//TODO: Authorize the user here.
_service.DoSomething();
}
}
</code></pre>
<p>So now that the main classes are done... how are you going to call all this? Easy!</p>
<pre><code>MyService service = new MyServiceAuthorizationDecorator(new MyService());
service.DoSomething();
</code></pre>
<p>Now... the advantage of all that is that your authorization logic is completely decoupled from your main service(or object) logic. Why is this important? Testability. You can test your main service independently of your authorization logic. This correspond to the Open/Close Principle. </p>
<p>Now, let's say you want to calculate performance on those pesky methods... add a decorator! Logging? Another decorator! They can all be chained that way. Of course, the more you add and the heavier it gets but I think that it's worth it for the advantage it gives.</p>
<p>Comments?</p>
http://stackoverflow.com/questions/170442/anyone-implemented-endeca-with-net-would-you-recommend-endeca-or-fast1Anyone implemented Endeca with .NET? Would you recommend Endeca or FAST?Maxim2008-10-04T14:39:10Z2009-11-15T16:21:00Z
<p>Which search engine would you recommend for a Commerce website?</p>
<p>We have millions of products in a catalog and we want it to be as quick as possible.</p>
<p>We would also want to make sure that the marketing driven through the search engine will be fast and effective.</p>
<p>What are your opinions?</p>
http://stackoverflow.com/questions/548564/what-would-be-the-best-suggestions-for-a-developer-aspiring-to-become-architect4What would be the best suggestions for a developer aspiring to become architect?Maxim2009-02-14T05:47:19Z2009-11-15T12:01:38Z
<p>My career goal is to become architect. I would like to know from people who made such transition what are the best suggestions/hints/recommendation that would be critical in making the change.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/327136/anyone-coding-with-apl0Anyone coding with APL?Maxim2008-11-29T03:53:55Z2009-09-09T17:52:03Z
<p>we had a discussion about this language at work... Who works with that today?</p>
<p>Don't we normally favor readability over smallest number of lines?</p>
http://stackoverflow.com/questions/297431/channelfactory-dont-have-an-address-on-the-endpoint-why1ChannelFactory don't have an address on the endpoint, why?Maxim2008-11-18T00:05:50Z2009-09-04T15:09:45Z
<p>When I create a new instance of a ChannelFactory:</p>
<pre><code>var factory = new ChannelFactory<IMyService>();
</code></pre>
<p>and that I create a new channel, I have an exception saying that the address of the Endpoint is null. </p>
<p>My configuration inside my web.config is as mentioned and everything is as it is supposed to be (especially the address of the endpoint).</p>
<p>If I create a new MyServiceClientBase, it loads all the configuration from my channel factory:</p>
<pre><code>var factoryWithClientBase = new MyServiceClientBase().ChannelFactory;
Console.WriteLine(factoryWithClientBase.Endpoint.Address); //output the configuration inside the web.config
var factoryWithChannelFactory = new ChannelFactory<IMyService>();
Console.WriteLine(factoryWithChannelFactory.Endpoint.Address); //output nothing (null)
</code></pre>
<p>Why?</p>
http://stackoverflow.com/questions/262106/what-happen-in-sql-2005-when-it-run-out-of-number-for-an-autonumber-column4What happen in SQL 2005 when it run out of number for an autonumber column?Maxim2008-11-04T15:14:37Z2009-08-21T14:28:02Z
<p>What happen when SQL Server 2005 happen to reach the maximum for an IDENTITY column? Does it start from the beginning and start refilling the gap? </p>
<p>What is the behavior of SQL Server 2005 when it happen?</p>
http://stackoverflow.com/questions/191153/when-would-you-use-delegates-in-c10When would you use delegates in C#?Maxim2008-10-10T13:02:06Z2009-08-05T14:07:54Z
<p>What are your usage of delegates in C#?</p>
http://stackoverflow.com/questions/204836/is-there-any-good-resources-for-t4-text-templating-framework-from-microsoft1Is there any good resources for T4 (Text Templating framework from Microsoft)?Maxim2008-10-15T14:06:54Z2009-07-27T16:52:39Z
<p>Anything would be good. Exemples, best practices, samples, etc.</p>
http://stackoverflow.com/questions/965537/properties-listitem-is-null-on-event-itemcheckingout0properties.ListItem is null on event ItemCheckingOutMaxim2009-06-08T15:37:18Z2009-06-18T10:25:15Z
<p>I am having the weirdest error.</p>
<p>If anyone can give me hints, I've found nothing relevant with Google.</p>
<p>When I hook the events on ItemCheckingOut on a Document Library (TemplateType=101) with 6 items inside, properties.ListItem will always be null for all those items.</p>
<p>This never happened before. The problem seem related to the fact that those files are deployed in Feature with WSS Extensions 1.2. </p>
<p>Here is what I have done:</p>
<ul>
<li>If I try to access the list and get the items manually, the count return 0.</li>
<li>If I try to get the file manually (even though sharepoint say it doesn't exist), I can't make any operation on it (OpenBinary in this case) and it will throw.</li>
<li>Creating a new file that is not deployed by feature inside the same list make the "properties.ListItem" not null again for this specific element only.</li>
</ul>
<p>Anyone have an idea?</p>
http://stackoverflow.com/questions/253460/what-is-the-practical-use-of-dynamic-variable-in-c-4-06What is the practical use of "dynamic" variable in C# 4.0?Maxim2008-10-31T13:28:34Z2009-06-05T06:12:56Z
<p>What is their use if when you call the method, it might not exist?</p>
<p>Does that mean that you would be able to dynamically create a method on a dynamic object?</p>
<p>What are the practical use of this?</p>
http://stackoverflow.com/questions/279996/what-is-the-worst-software-idea-youve-had7What is the worst software idea you've had?Maxim2008-11-11T04:25:53Z2009-05-10T10:02:58Z
<p>It can be from anything from reinventing Notepad to something so worse that no one can imagine.</p>
<p>So? What kind of skeleton do you have in your closet?</p>
http://stackoverflow.com/questions/221598/who-is-using-blogengine-net-for-their-blog-does-it-run-well-will-it-scale-p2Who is using BlogEngine.Net for their blog? Does it run well? Will it scale? :PMaxim2008-10-21T12:02:54Z2009-05-08T15:55:26Z
<p>I'm thinking about using BlogEngine.NET to launch my blog. I'm a C# programmer and was wondering was BlogEngine.NET has in the belly.</p>
<p>Does it scale well? Is it caching properly? Is it memory intensive? Can you easily add/remove functionality?</p>
<p>I also accept any hosting recommendation :)</p>
http://stackoverflow.com/questions/361372/unit-testing-event-handlers-in-sharepoint2Unit testing Event Handlers in SharePoint?Maxim2008-12-11T23:12:28Z2009-05-08T14:59:09Z
<p>Is it even possible?</p>
<p>So far, I found that we can buy TypeMock to mock the SharePoint objects and then use any free Mocking framework (<a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>?) to do the rest of the job.</p>
<p>What do you think?</p>
<p>It seams that without TypeMock, it's impossible to do unit test within SharePoint.</p>
<p>To properly test our events, we need to give the event a SPItemEventProperties. The class is sealed and have an internal constructor that require a SPSite.</p>
<p>If I use the SPSite I can instantiate the class and give the proper values to test for my event. However, I want to remove that dependency and TypeMock seams to be the only one able to do that.</p>
<p>Any way around it?</p>
http://stackoverflow.com/questions/318658/what-is-a-good-choice-of-orm-for-an-ecommerce-website0What is a good choice of ORM for an eCommerce website?Maxim2008-11-25T19:57:18Z2009-04-14T21:55:04Z
<p>I am using C# 3.0 / .NET 3.5 and planning to build an eCommerce website.</p>
<p>I've seen NHibernate, LLBLGEN, Genome, Linq to SQL, Entity Framework, SubSonic, etc.</p>
<p>I don't want to code everything by hand. If there is some specific bottleneck I'll manage to optimize the database/code.</p>
<p>Which ORM would be best? There is so much available those day that I don't even know where to start. </p>
<p>Which feature(s) should I be using?</p>
<p>Links, Screencast and Documentation are welcome.</p>
http://stackoverflow.com/questions/257301/which-rule-from-fxcop-do-you-deactivate2Which rule from FxCop do you deactivate?Maxim2008-11-02T20:20:52Z2009-03-18T00:37:40Z
<p>I personally don't use FxCop yet. We want to work out the unit testing first before going with code analysis. However, which rules would you permanantly deactivate? Which rules would you deactivate temporarily and in which situation?</p>
http://stackoverflow.com/questions/563588/do-you-save-the-code-you-wrote-at-your-previous-jobs/563644#5636442Answer by Maxim for Do you save the code you wrote at your previous jobs?Maxim2009-02-19T01:45:23Z2009-02-19T01:45:23Z<p>I don't save the code. </p>
<p>However, if I find a bit of information that might be interesting to the rest of the community, I blog about it. I make sure not to leave any proprietary code or anything that might indicate where it comes from.</p>
<p>Normally, the code itself is not interesting. It's how you solved the problem that is interesting and that alone... is worth blogging about.</p>
<p>The kind of stuff that might be interesting to blog about is when you understand a part of the framework that you might have problem to remember again.</p>
http://stackoverflow.com/questions/31919/how-to-make-the-process-of-debugging-asp-net-sharepoint-applications-less-time-co/548017#548017-1Answer by Maxim for How to make the process of debugging ASP.NET Sharepoint applications less time consuming?Maxim2009-02-13T22:57:37Z2009-02-13T22:57:37Z<p>Normally in our development environment, we make sure not to have to do IIS reset all the time. Normally we simply copy our files to the bin folders and they are automatically loaded.</p>
<p>If you do that, you will have to modify your web.config to allow "Full Trust" to all those assemblies. WSS (thus SharePoint) use a different trust profile and even the most permissible of the profile doesn't grant full trust to the DLLs inside the bin folder.</p>
<p>You have to use the following trust profile in your web.config to make it work:</p>
<pre><code><system.web>
...
<trust level="Full" originUrl="" />
...
</system.web>
</code></pre>
<p>Now hoping that everything will work fine on your side!</p>
http://stackoverflow.com/questions/541108/is-it-possible-to-develop-for-sharepoint-using-continuous-integration-techniques/547993#5479931Answer by Maxim for Is it possible to develop for sharepoint using continuous integration techniques?Maxim2009-02-13T22:47:55Z2009-02-13T22:47:55Z<p>The only was to work with SharePoint with some kind of continous integration is when you are working with features and solution packages (wsp).</p>
<p>You just have to somehow get to package your wsp with all the necessary files/DLLs and configuration and then deploy it. Once it's deployed, you can create a batch script to automatically reactivate all features.</p>
<p>Please be aware that all file that has been customized (unghosted) will NOT be updated. You must make sure to make a reset to site definition (by code it's "SPFile.RevertContentStream").</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/508734/sharepoint-solution-deployment-how-do-i-prevent-sp-from-resetting-iis-when-upgra/540127#5401270Answer by Maxim for SharePoint Solution Deployment: How do I prevent SP from resetting IIS when upgrading or retracting a globally deployed solutions?Maxim2009-02-12T05:12:03Z2009-02-12T05:12:03Z<p>You might also take a look at the "-local" switch. Didn't try it yet but it seemed that it allowed deployment server per server when you are in a load balanced situation.</p>
<p>Might be a good lead.</p>
http://stackoverflow.com/questions/531827/moss-web-solution-package-breaks-when-moved/540116#5401161Answer by Maxim for MOSS Web Solution Package breaks when movedMaxim2009-02-12T05:07:51Z2009-02-12T05:07:51Z<p>If you simply moved the content database over, you might want to redeploy your WSP.</p>
<p>WSP deploy files locally inside the SharePoint hive (C:\Program Files\Common Files\Microsoft Shared\Web server extensions\12) and are most likely required to run.</p>
<p>If you didn't join a new server to the farm and then disconnected the old server, the files are most likely missing. </p>
http://stackoverflow.com/questions/536965/spfarm-local-solutions-add-exception-access-denied/540104#5401041Answer by Maxim for SPFarm.Local.Solutions.Add - Exception - "Access Denied"Maxim2009-02-12T05:03:05Z2009-02-12T05:03:05Z<p>Your main problem might just be that you are not DBO of a sharepoint database (_Config if I'm not wrong). Adding a solution to a farm is something that require more rights than just access to the farm.</p>
<p>Be sure that the user running this is Farm Administrator and DBO of the proper database.</p>
<p>If you still have problem... try running </p>
<blockquote>
<p>stsadm -o addsolution -filename
"myWsp.wsp"</p>
</blockquote>
<p>If you have the proper right, it will give you the proper error.</p>
http://stackoverflow.com/questions/526867/caching-in-the-asp-net-mvc-framework/526906#5269063Answer by Maxim for Caching in the ASP.NET MVC FrameworkMaxim2009-02-09T01:47:01Z2009-02-09T01:47:01Z<p>You might want to take a look at <a href="http://haacked.com/archive/2008/11/05/donut-caching-in-asp.net-mvc.aspx" rel="nofollow">Phil Haack post</a> for some donut caching. He's THE reference for ASP.NET MVC :)</p>
http://stackoverflow.com/questions/495554/sharepoint-how-to-find-out-whether-an-realtive-url-is-available-or-already-used/495593#4955934Answer by Maxim for Sharepoint: How to find out whether an realtive URL is available or already used by a siteMaxim2009-01-30T14:09:25Z2009-01-30T14:09:25Z<p>The normal answer is</p>
<pre><code>if(web.Exists)
</code></pre>
<p>But... you might want to wrap this SPWeb into a using.</p>
<pre><code>using(SPWeb web = site.OpenWeb("/newUrl/"))
{
if(web.Exists)
{
string title = web.Title;
}
}
</code></pre>
http://stackoverflow.com/questions/230429/promoting-moss-07-sites-from-dev-to-production/230452#2304525Answer by Maxim for Promoting MOSS '07 Sites From Dev To ProductionMaxim2008-10-23T16:36:42Z2009-01-28T21:08:59Z<p>The best way to go is developing with features. Once the features are done, you ca deploy them with Solution package (called WSP).</p>
<p>The only thing left to do is to reactivate those features. That way, you can progressively roll-out new features without having to do everything in production.</p>
<p><a href="http://www.codeplex.com/wspbuilder" rel="nofollow">WSPBuilder</a> is an application that helps you build WSP.</p>
<p>For automating all of this... good luck. There is a lot of work involved.</p>
<p><strong>UPDATE:</strong>
Deploying Content Types and Columns are tricky. Once the website has been created, you can't update them anymore through features. You need to go through the code and recursively go through all the sites and modify the specific content type that match the name. </p>
<p>We've tried and it's not possible to do that normally with features. This need to go through something I call "deploying with code".</p>
http://stackoverflow.com/questions/480743/inotifypropertychanged-problem/480797#4807970Answer by Maxim for INotifyPropertyChanged problemMaxim2009-01-26T18:14:27Z2009-01-26T18:14:27Z<pre><code>public string MyField
{
get { return _myField; }
set {
if (_myField == value)
return;
_myField = value;
OnPropertyChanged("MyField");
}
}
</code></pre>
<p>This is the proper implementation of the property.</p>
<p>When you change the property, make sure that the EXACT same instance of the object is binded to a control. Otherwise, the change will be notified but the control will never get it because the control is not binded properly.</p>
http://stackoverflow.com/questions/462564/hintpath-on-a-added-reference-in-visual-studio3HintPath on a added reference in Visual StudioMaxim2009-01-20T18:48:08Z2009-01-20T19:10:16Z
<p>I know that I can add a <strong>HintPath</strong> to an external DLLs to help Visual Studio/TFS find the dll when it builds.</p>
<p>What I was wondering is... is it possible to add multiple <strong>HintPath</strong>?</p>
<p>For example... developers have their DLLs for one place and we do a GetLatest of those DLLs at a different place on the server hence the need for multiple <strong>HintPath</strong>.</p>
<p>What do you think, world?</p>
http://stackoverflow.com/questions/462564/hintpath-on-a-added-reference-in-visual-studio/462650#4626502Answer by Maxim for HintPath on a added reference in Visual StudioMaxim2009-01-20T19:10:16Z2009-01-20T19:10:16Z<p>Alright. I'm faster than Stackoverflow this time. I tried to add it and it seems to work fine.</p>
<p>So multiple HintPath IS possible.</p>
<p>Thanks anyway.</p>
http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820710#1820710Comment by Maxim on How to spot empty parking spaces?Maxim2009-11-30T16:04:32Z2009-11-30T16:04:32ZI dont know if I should upvote or downvote. It look whacky but could be a nice use of genetic algorithm.http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spacesComment by Maxim on How to spot empty parking spaces?Maxim2009-11-30T16:01:03Z2009-11-30T16:01:03Z@Jacob There is enough data to give a meaninful answer but any specific implementation for this would require more info from the mithila as you mentioned (eg. camera type, position, real-time, timed, etc.).http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spacesComment by Maxim on How to spot empty parking spaces?Maxim2009-11-30T15:55:59Z2009-11-30T15:55:59ZPlease provide more information on what exactly you are doing. I'm sure that doing some searches on "image algorithms" or something similar should give some nice results but we would probably need more details to give you a hand with that.http://stackoverflow.com/questions/1820505/how-do-i-implement-a-test-framework-in-a-legacy-projectComment by Maxim on How do I implement a test framework in a legacy projectMaxim2009-11-30T15:52:00Z2009-11-30T15:52:00ZI'm also really interested. Going from no tests to tested code should be more than interesting.http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15153#15153Comment by Maxim on What are the pros and cons to keeping SQL in Stored Procs versus CodeMaxim2009-11-11T15:18:15Z2009-11-11T15:18:15ZIf you do your design right, the only region of your code that should be impacted by a data change is the persistence layer. If you use stored procedure and the inputs/outputs stays the same... the code can still work even if the DBA denormalize the schema of the database for performance reason. Stored procedure is another way of separating concerns. The persistence layer is supposed to care about the data, not the schema. If you build a contract (read: stored procedure) between the persistence layer and the DB, you can change the DB without impacting the persistence layer too much.http://stackoverflow.com/questions/263552/directoryentry-nativeobject-throws-access-denied-for-a-user-in-administrators-gro/263784#263784Comment by Maxim on DirectoryEntry.NativeObject throws access denied for a user in Administrators group in windows 2008Maxim2009-06-25T15:35:58Z2009-06-25T15:35:58ZThanks! I've been looking at that problem and was seriously wondering what the hell was wrong.http://stackoverflow.com/questions/97349/tfsbuild-proj-and-importing-external-targets/100493#100493Comment by Maxim on TFSBuild.proj and Importing External TargetsMaxim2009-06-16T19:10:56Z2009-06-16T19:10:56ZMartin... you are my hero. 2 times I asked questions, 2 times you were the only one with a valid answer. You rock!http://stackoverflow.com/questions/965537/properties-listitem-is-null-on-event-itemcheckingout/984131#984131Comment by Maxim on properties.ListItem is null on event ItemCheckingOutMaxim2009-06-12T17:04:33Z2009-06-12T17:04:33ZBravo! That was actually it! I figured it out the same day I asked the question but wanted to know if StackOverflow was still working! Files that are deployed without "GhostableInLibrary" do not appear in a list. It is also important to note that when declaring your File Element inside the Element Manifest file, you must NOT have any "/" inside the "Url" attribute. Otherwise, it won't be included inside the list either.
Congratz!http://stackoverflow.com/questions/761756/asp-net-site-map-configuration-errorComment by Maxim on ASP.NET site map configuration errorMaxim2009-04-17T19:11:24Z2009-04-17T19:11:24Zupvoted. Even if the question seem simple, no question is too simple for SO.comhttp://stackoverflow.com/questions/526867/caching-in-the-asp-net-mvc-framework/526906#526906Comment by Maxim on Caching in the ASP.NET MVC FrameworkMaxim2009-02-21T21:17:12Z2009-02-21T21:17:12ZYeah... but there's nobody as noisy as Phil Haack. Maybe Jeff Atwood beats him on the noisy thing. But that's it.http://stackoverflow.com/questions/563588/do-you-save-the-code-you-wrote-at-your-previous-jobs/563610#563610Comment by Maxim on Do you save the code you wrote at your previous jobs?Maxim2009-02-19T01:45:42Z2009-02-19T01:45:42ZThat's right! :)http://stackoverflow.com/questions/548564/what-would-be-the-best-suggestions-for-a-developer-aspiring-to-become-architect/548599#548599Comment by Maxim on What would be the best suggestions for a developer aspiring to become architect?Maxim2009-02-14T17:29:04Z2009-02-14T17:29:04ZThat's neat to know. I'm already on the blog/presentations path. Cool :)http://stackoverflow.com/questions/486670/why-does-c-designer-generated-code-like-form1-designer-cs-play-havoc-with-subv/486770#486770Comment by Maxim on Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion?Maxim2009-02-01T03:15:49Z2009-02-01T03:15:49ZBad advice. The person creating the UI will have the copy of the file but no body else will. You must keep this file is you want the form to have the same updated data. I would say that it would be like removing the ASPX of a page because HTML is hard to merge.http://stackoverflow.com/questions/301577/why-does-visual-studio-2008-forget-where-to-dock-my-add-ins-window-pane/313046#313046Comment by Maxim on Why does Visual Studio 2008 forget where to dock my add-in's window pane?Maxim2009-01-22T00:56:24Z2009-01-22T00:56:24ZDeveloping an addin here. This post was TOTALLY helpful. Would have voted twice if it didn't remove my vote instead :P.http://stackoverflow.com/questions/247621/what-are-the-correct-version-numbers-for-c/247623#247623Comment by Maxim on What are the correct version numbers for C#?Maxim2009-01-14T22:39:00Z2009-01-14T22:39:00ZIf someone can add dates to that... it would be great!!!