User Maxim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:52:07Z http://stackoverflow.com/feeds/user/24975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/266255/filenotfoundexception-with-the-spsite-constructor-whats-the-problem 1 FileNotFoundException with the SPSite constructor. What's the problem? Maxim 2008-11-05T19:22:50Z 2009-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#1820683 0 Answer by Maxim for How to spot empty parking spaces? Maxim 2009-11-30T15:59:23Z 2009-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#1804125 1 Answer by Maxim for Best practices for converting an existing website into a website with SEF URL Maxim 2009-11-26T14:51:45Z 2009-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#1773459 2 Answer by Maxim for Security and roles authorization with model view presenter design pattern Maxim 2009-11-20T21:49:58Z 2009-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-fast 1 Anyone implemented Endeca with .NET? Would you recommend Endeca or FAST? Maxim 2008-10-04T14:39:10Z 2009-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-architect 4 What would be the best suggestions for a developer aspiring to become architect? Maxim 2009-02-14T05:47:19Z 2009-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-apl 0 Anyone coding with APL? Maxim 2008-11-29T03:53:55Z 2009-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-why 1 ChannelFactory don't have an address on the endpoint, why? Maxim 2008-11-18T00:05:50Z 2009-09-04T15:09:45Z <p>When I create a new instance of a ChannelFactory:</p> <pre><code>var factory = new ChannelFactory&lt;IMyService&gt;(); </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&lt;IMyService&gt;(); 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-column 4 What happen in SQL 2005 when it run out of number for an autonumber column? Maxim 2008-11-04T15:14:37Z 2009-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-c 10 When would you use delegates in C#? Maxim 2008-10-10T13:02:06Z 2009-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-microsoft 1 Is there any good resources for T4 (Text Templating framework from Microsoft)? Maxim 2008-10-15T14:06:54Z 2009-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-itemcheckingout 0 properties.ListItem is null on event ItemCheckingOut Maxim 2009-06-08T15:37:18Z 2009-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-0 6 What is the practical use of "dynamic" variable in C# 4.0? Maxim 2008-10-31T13:28:34Z 2009-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-had 7 What is the worst software idea you've had? Maxim 2008-11-11T04:25:53Z 2009-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-p 2 Who is using BlogEngine.Net for their blog? Does it run well? Will it scale? :P Maxim 2008-10-21T12:02:54Z 2009-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-sharepoint 2 Unit testing Event Handlers in SharePoint? Maxim 2008-12-11T23:12:28Z 2009-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-website 0 What is a good choice of ORM for an eCommerce website? Maxim 2008-11-25T19:57:18Z 2009-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-deactivate 2 Which rule from FxCop do you deactivate? Maxim 2008-11-02T20:20:52Z 2009-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#563644 2 Answer by Maxim for Do you save the code you wrote at your previous jobs? Maxim 2009-02-19T01:45:23Z 2009-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 -1 Answer by Maxim for How to make the process of debugging ASP.NET Sharepoint applications less time consuming? Maxim 2009-02-13T22:57:37Z 2009-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>&lt;system.web&gt; ... &lt;trust level="Full" originUrl="" /&gt; ... &lt;/system.web&gt; </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#547993 1 Answer by Maxim for Is it possible to develop for sharepoint using continuous integration techniques? Maxim 2009-02-13T22:47:55Z 2009-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#540127 0 Answer by Maxim for SharePoint Solution Deployment: How do I prevent SP from resetting IIS when upgrading or retracting a globally deployed solutions? Maxim 2009-02-12T05:12:03Z 2009-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#540116 1 Answer by Maxim for MOSS Web Solution Package breaks when moved Maxim 2009-02-12T05:07:51Z 2009-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#540104 1 Answer by Maxim for SPFarm.Local.Solutions.Add - Exception - "Access Denied" Maxim 2009-02-12T05:03:05Z 2009-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#526906 3 Answer by Maxim for Caching in the ASP.NET MVC Framework Maxim 2009-02-09T01:47:01Z 2009-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#495593 4 Answer by Maxim for Sharepoint: How to find out whether an realtive URL is available or already used by a site Maxim 2009-01-30T14:09:25Z 2009-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#230452 5 Answer by Maxim for Promoting MOSS '07 Sites From Dev To Production Maxim 2008-10-23T16:36:42Z 2009-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#480797 0 Answer by Maxim for INotifyPropertyChanged problem Maxim 2009-01-26T18:14:27Z 2009-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-studio 3 HintPath on a added reference in Visual Studio Maxim 2009-01-20T18:48:08Z 2009-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#462650 2 Answer by Maxim for HintPath on a added reference in Visual Studio Maxim 2009-01-20T19:10:16Z 2009-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#1820710 Comment by Maxim on How to spot empty parking spaces? Maxim 2009-11-30T16:04:32Z 2009-11-30T16:04:32Z I 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-spaces Comment by Maxim on How to spot empty parking spaces? Maxim 2009-11-30T16:01:03Z 2009-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-spaces Comment by Maxim on How to spot empty parking spaces? Maxim 2009-11-30T15:55:59Z 2009-11-30T15:55:59Z Please provide more information on what exactly you are doing. I'm sure that doing some searches on &quot;image algorithms&quot; 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-project Comment by Maxim on How do I implement a test framework in a legacy project Maxim 2009-11-30T15:52:00Z 2009-11-30T15:52:00Z I'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#15153 Comment by Maxim on What are the pros and cons to keeping SQL in Stored Procs versus Code Maxim 2009-11-11T15:18:15Z 2009-11-11T15:18:15Z If 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#263784 Comment by Maxim on DirectoryEntry.NativeObject throws access denied for a user in Administrators group in windows 2008 Maxim 2009-06-25T15:35:58Z 2009-06-25T15:35:58Z Thanks! 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#100493 Comment by Maxim on TFSBuild.proj and Importing External Targets Maxim 2009-06-16T19:10:56Z 2009-06-16T19:10:56Z Martin... 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#984131 Comment by Maxim on properties.ListItem is null on event ItemCheckingOut Maxim 2009-06-12T17:04:33Z 2009-06-12T17:04:33Z Bravo! 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 &quot;GhostableInLibrary&quot; 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 &quot;/&quot; inside the &quot;Url&quot; attribute. Otherwise, it won't be included inside the list either. Congratz! http://stackoverflow.com/questions/761756/asp-net-site-map-configuration-error Comment by Maxim on ASP.NET site map configuration error Maxim 2009-04-17T19:11:24Z 2009-04-17T19:11:24Z upvoted. Even if the question seem simple, no question is too simple for SO.com http://stackoverflow.com/questions/526867/caching-in-the-asp-net-mvc-framework/526906#526906 Comment by Maxim on Caching in the ASP.NET MVC Framework Maxim 2009-02-21T21:17:12Z 2009-02-21T21:17:12Z Yeah... 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#563610 Comment by Maxim on Do you save the code you wrote at your previous jobs? Maxim 2009-02-19T01:45:42Z 2009-02-19T01:45:42Z That's right! :) http://stackoverflow.com/questions/548564/what-would-be-the-best-suggestions-for-a-developer-aspiring-to-become-architect/548599#548599 Comment by Maxim on What would be the best suggestions for a developer aspiring to become architect? Maxim 2009-02-14T17:29:04Z 2009-02-14T17:29:04Z That'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#486770 Comment by Maxim on Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion? Maxim 2009-02-01T03:15:49Z 2009-02-01T03:15:49Z Bad 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#313046 Comment by Maxim on Why does Visual Studio 2008 forget where to dock my add-in's window pane? Maxim 2009-01-22T00:56:24Z 2009-01-22T00:56:24Z Developing 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#247623 Comment by Maxim on What are the correct version numbers for C#? Maxim 2009-01-14T22:39:00Z 2009-01-14T22:39:00Z If someone can add dates to that... it would be great!!!