User Geo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:25:59Z http://stackoverflow.com/feeds/user/47222 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1709308/does-the-scrum-master-have-to-answer-the-3-standup-questions-as-well 4 Does the scrum master have to answer the 3 standup questions as well? Geo 2009-11-10T16:36:49Z 2009-11-25T06:17:08Z <p>This is more a theory and correctness of the process more than practical. I am curious to know if the Scrum Master will have to answer the three questions below in the stand up meeting.</p> <ol> <li>Things I have done since yesterday's meeting</li> <li>Things I am going to get done today</li> <li>Obstacles that I need someone to remove</li> </ol> http://stackoverflow.com/questions/1533190/is-there-a-production-grade-simpledb-net-library 1 Is there a production grade SimpleDB .NET library? Geo 2009-10-07T17:53:22Z 2009-11-19T00:58:15Z <ul> <li><a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2382&amp;categoryID=148" rel="nofollow">Here you will find all the SimpleDB code samples on the AWS page.</a></li> <li><a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1134" rel="nofollow">Here you will find a VB.NET SimpleDB library.</a></li> </ul> <p>Is there a production grade SimpleDB library, preferable built in C#. If not, May I use the VB.NET library on a C# project as a reference?</p> http://stackoverflow.com/questions/1090328/what-is-the-best-open-source-cms-system 0 What is the best Open Source CMS System? Geo 2009-07-07T04:14:38Z 2009-11-18T00:24:39Z <p><em>From the Developer (web dev/designer) point of view (POV). Not from the guy paying the bill POV.</em> </p> <p>Please read below:</p> <p>Our company is looking for a good CMS system to develop our new website. We are looking for:</p> <ol> <li>Easy maintainability of the content </li> <li>Well kept MVC model </li> <li>Widely supported</li> </ol> <p>We want something that will give us the flexibility to implement a great design without recoding in a proprietary language. Is there any available Open Source System available with this features?</p> <p><strong>Note 1</strong>: Even when some people might think this is a duplicate question since <a href="http://stackoverflow.com/questions/753404/what-is-your-favorite-open-source-cms">click here</a>, there is more in this question that I will like to investigate. I am looking at the CMS from the programmer (web dev) perspective. Asking especifically on the 3 req above.</p> http://stackoverflow.com/questions/385511/what-is-the-relation-between-scrum-agile-and-rup 1 What is the relation between scrum agile and RUP? Geo 2008-12-22T03:56:57Z 2009-11-15T20:18:44Z <p><a href="http://www-128.ibm.com/developerworks/rational/library/feb05/krebs/" rel="nofollow">RUP in the dialogue with Scrum</a></p> <p>There is a relation between Agile and RUP. Actually I though that Agile development was a type of RUP. In the article from IBM above you can see that they are fitting the model to RUP. </p> <p>Does someone has any <strong>practical</strong> explanation of the relation between these three interesting concepts.</p> http://stackoverflow.com/questions/1501375/how-to-test-repository-pattern-with-ado-net-entity-framework 2 How to test Repository Pattern with ADO.NET Entity Framework? Geo 2009-10-01T00:45:36Z 2009-11-15T11:54:47Z <p>While using Repository pattern I find it difficult to understand the reason of designing the software with TDD technique while in reality you will have to implement the Interface for your repository in your persistence dataset.</p> <p>To make my point clear I will submit an example:</p> <p>I have the following Interface on my domain model:</p> <pre><code>public interface IUserRepository { IQueryable&lt;User&gt; FindAllUsers(); void AddUser(User newUser); User GetUserByID(int userID); void Update(User userToUpdate); } </code></pre> <p>I have the following implementation of the interface for testing purposes:</p> <pre><code>public class FakeUserRepository : IUserRepository { private IList&lt;User&gt; _repository; public FakeUserRepository() { _repository = new List&lt;User&gt;(); ... //create all users for testing purposes } public IQueryable&lt;User&gt; FindAllUsers() { return _repository.AsQueryable&lt;User&gt;(); //returns all users } </code></pre> <p>Now I create a few tests: </p> <ol> <li>Can_Add_User</li> <li>Can_Add_Account for a User</li> <li>Can_Add_ShareSpace for a an account of a user with another user.</li> </ol> <p>My question is, after I test all these with my FakeUserRepository implementation, I have to go back and implement the IUserRepository on my actual persistence dataset (i.g. SQL), and I have to implement again the code, so my unit testing is not actually checking the code that I am actually using on my application.</p> <p>Maybe I am missing something.</p> <p>Thanks as always!</p> <p>Below then my Persistent data access repository which is the one that is supposed to be under test (by my mind at least), but then I should not test hooked to the database: </p> <pre><code>public class SQLUserRepository : IUserRepository { private BusinessDomainModel.EntityModel.BusinessHelperAccountDBEntities _repository; public SQLUserRepository() { _repository = new BusinessHelperAccountDBEntities(); } #region IUserRepository Members public IQueryable&lt;User&gt; FindAllUsers() { return _repository.UserSet.AsQueryable(); } </code></pre> http://stackoverflow.com/questions/1424435/what-pattern-could-help-to-keep-track-of-sessionobjectname-within-a-web-app-a 1 What pattern could help to keep track of Session["objectName"] within a Web App ASP.NET MVC? Geo 2009-09-14T23:40:17Z 2009-11-13T19:45:11Z <p>I want to keep track of User Sessions within my MVC webapp. I know I am doing something wrong because the flow of the programming seems kind of chaotic. Any suggestions? At this point I am trying to verify Session every time I hit a different controller.</p> <pre><code> private void VerifiedUserSession() { int? userID = (int?)Session["UserID"]; if (userID.HasValue) { IUsersRepository userRepository = new SQLUserRepository(); _user = userRepository.GetUser(userID.Value); } //TODO: Need to create a response for where the session is empty or null; } </code></pre> http://stackoverflow.com/questions/1518136/how-do-i-use-a-hidden-value-more-than-once-in-the-same-controller-method-view 0 How do I use a hidden value more than once in the same controller method/view? Geo 2009-10-05T03:17:09Z 2009-11-08T12:59:56Z <p>I have a method that list listing directories and you can drill in the directories. The method looks like this:</p> <pre><code> public ActionResult ListObjects(string Prefix) { if(string.isnullorempty(Prefix)) //Present root files and directories else //Present directory choosed with Prefix } </code></pre> <p>On the view ListObjects, I am experiencing the Prefix hidden field not changing value after the first time it has a value. I proofed that by adding and extra field that does changes the value after the first time it has one. for example: the first time you process the listobjects method prefix is null, and item.prefix has the first value for each directory, but after you click on any directory in the first view, the second time the controller is called the actual value never changes.</p> <pre><code> &lt;%= Html.Hidden("Prefix",item.Prefix) %&gt; &lt;%= Html.Hidden("TestVariable" ,item.Prefix) %&gt; </code></pre> <p>This is a little proof of what is actually happening. </p> <pre><code> &lt;input id="Prefix" type="hidden" value="CP/" name="Prefix"/&gt; &lt;input id="TestVariable" type="hidden" value="CP/CPTest/" name="TestVariable"/&gt; </code></pre> <p>My objective is to have the input id="Prefix" to change in every call, and not stay static after the first time it gets a value. As you can see the two input fields above the Prefix has CP while the testvariable has cp/cptest which is the value that I wanted, but both input fields are being taken from the same variable.</p> <p>EDIT 2: </p> <p>I think it has to do with the fact that strings are references and since mvc framework sees that Prefix has a value from a previous request it overrides the new value assignment from model.Prefix.</p> <p><hr /></p> <p>NOTE: I posted the question yesterday, and I answer the question myself after a little troubleshooting. The solution that I found is not the ideal, but is working and I am done unless someone here is able to give me a better way of achieving the same. Please let me know. Geo</p> http://stackoverflow.com/questions/1180799/do-drupal-and-yui-play-well-together 0 Do Drupal and YUI play well together? Geo 2009-07-25T00:33:55Z 2009-11-08T08:39:41Z <p>We are putting together a website for a client and their IT Team have ask us if we can use Drupal and YUI together. </p> <p>We have not use both products before, but we have no reason why not to use them. We have heard good things for both, the only concern that we have is the actual integration, since drupal is a CMS and YUI is a framework. </p> <p>Could you all throw a few tips?</p> http://stackoverflow.com/questions/1355412/what-is-a-scalable-process-of-project-management-in-small-development-firms 0 What is a scalable process of Project Management in Small Development Firms? Geo 2009-08-31T01:10:43Z 2009-11-07T13:44:36Z <p>We have a small company team and even smaller Development team. The current process is that each Sales Rep (SR) is the actual Project Manager of each web application sold. Developers obtain requirements, functionality and design from the SR directly. Giving the actual head of developers to visibility over the actual work load on the developers. While we get more projects and thus possible more Sales Rep and Developers this process gets not-scalable. </p> <p>We have thought about having a Technical PM be in the middle between SRs and Developers. </p> <p>SR1, SR2, SR(n) ---> TPM --> Dev1,Dev2</p> <p>This seems ok, but our current process allows our Sales Reps/QuasiPM actually get developer time in a very immediate way. And they are actually trying to get aways of this. </p> <p>The issues we are having with the current process are:</p> <p>SR1, SR2 --> Dev1, Dev2 (Adhoc)</p> <ul> <li>No visibility to our Developers work load (Making developers have too much down time or too much work load)</li> <li>Not being able to plan vacations according to crunch times</li> <li>Edit1: Another issue that we forgot to post is that SRs are in morning meetings and priorities change per day depending on their emergency.</li> </ul> <p>I will add more information depending on the comments I receive. Thanks for your time as always.</p> <p>EDIT2: In general there are 3 SR or Product Owners, 3-4 Developers, 1 Technical PM. </p> http://stackoverflow.com/questions/1370714/what-tools-are-available-for-qa-a-website-that-is-treated-as-a-unit-testing 4 What tools are available for QA a Website? That is treated as a Unit Testing Geo 2009-09-02T23:33:22Z 2009-11-03T20:32:17Z <p>We are looking for QA tool that allow us to test functionality in our web applications. At this moment we QA all our work/enhancements/defects by hand, but we have so many webapps that is difficult to QA the entire site for a few changes. </p> <p>We want to have a list of Test Cases that we will run every time we will push a change to development to at least build a confidence level before the push.</p> <p>I am sure that this is an issue that is normal among us, the web development community. </p> http://stackoverflow.com/questions/1046420/how-to-relate-gacampaign-and-gapagepath-content-on-google-analytics-export-ap 1 How to relate ga:campaign and ga:pagePath (content) on Google Analytics Export API? Geo 2009-06-25T21:46:57Z 2009-10-26T11:24:38Z <p>Using custom reports you are able to drill down on a specific campaign and then choose the Landing Page or content page that the individual visitor choose. When I try to retrieve the same information through the Google Analytics Export API, I get an error if I try to relate those two dimensions in my feed. Is there any success story about getting this information together. I know is possible, we just don't know what is the correct combination.</p> <p>Since I had no progress on this issue during the last week I thought about giving a little more information. I am presenting below a screen shot of an actual report of the Google Analytics UI givin the information that I am trying to pull and I am getting no info. Basically the campaing information group by the pagePage landed. So I am able to know who clicked on my emails and where that person landed.</p> <p><img src="http://img.readytocloud.com/ganalytics-stackoverflow/R2C-6-28-2009-002.png" alt="Landing page from Campaign information" /></p> <p>I just found other people with the same questions on the <a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=0a70a94663dfb464&amp;hl=en" rel="nofollow">Google Analytic Help Forum</a>. </p> http://stackoverflow.com/questions/1501616/is-the-combination-of-ado-net-entity-framework-and-asp-mvc-wrong-by-any-chance 0 Is the combination of ADO.NET Entity Framework and ASP.MVC wrong by any chance? Geo 2009-10-01T02:32:35Z 2009-10-21T22:14:25Z <p>I have one solution with three projects. </p> <ol> <li>DomainModel (C# Library with ADO.NET Entity Framework)</li> <li>DomainModelTest (Unit Testing for Business Logic)</li> <li>WebApp (Using DomainModel)</li> </ol> <p>For some reason, I cannot even bring the view if I pass any of the objects in the DomainModel, not even simple. I get the error below:</p> <p>Any ideas?</p> <blockquote> <p>Compiler Error Message: CS0012: The type 'System.Data.Objects.DataClasses.EntityObject' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.</p> <p>Source Error:</p> <p>Line 146: Line 147:<br /> [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()] Line 148: public class views_home_index_aspx : System.Web.Mvc.ViewPage, System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler { Line 149:<br /> Line 150: private static bool @__initialized;</p> </blockquote> <p>I thought this might be helpful, the actual error comes up on the Default.aspx file in the line pointed below:</p> <pre><code>public partial class _Default : Page { public void Page_Load(object sender, System.EventArgs e) { // Change the current path so that the Routing handler can correctly interpret // the request, then restore the original path so that the OutputCache module // can correctly process the response (if caching is enabled). string originalPath = Request.Path; HttpContext.Current.RewritePath(Request.ApplicationPath, false); IHttpHandler httpHandler = new MvcHttpHandler(); httpHandler.ProcessRequest(HttpContext.Current); //**HERE** HttpContext.Current.RewritePath(originalPath, false); } } </code></pre> http://stackoverflow.com/questions/1240670/how-to-generate-traffic-to-test-a-bounce-management-tool 0 How to generate traffic to test a bounce management tool? Geo 2009-08-06T18:44:24Z 2009-10-15T15:00:03Z <p>What tools are available to generate bounce messages in order to test a bounce management tool? We want to test invalid addresses but we will like to test other error status codes.</p> http://stackoverflow.com/questions/1565851/how-do-i-contract-out-the-design-of-an-asp-net-mvc-application 3 How do I contract out the design of an ASP.NET MVC Application? Geo 2009-10-14T12:07:01Z 2009-10-14T12:20:20Z <p>As many of you know MVC applications will have one or more of these View elements. </p> <ul> <li>Partial Controls</li> <li>Views</li> <li>Strongly Typed Views</li> <li>And probably others that I don't know yet.</li> </ul> <p>As many developers, I am one of those that has no art for design, I can't think about colors, just about logic. I will like to contract out the graphic design of my small web app, about 7-10 pages. The biggest task is to create a good template (CSS and Master Page) with a good color palette. My question is how do I go about it?</p> <p>Do I take the View directory and send it to the graphic artist? Do I send the whole application (i will like to avoid that)? Do I take snapshots (jpg, png) of the application now and send it to the GA?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1485174/where-can-i-find-amazon-devpay-c-sample-code-that-works 0 Where can I find Amazon DevPay C# Sample Code that works? Geo 2009-09-28T02:44:51Z 2009-10-11T00:16:23Z <p>I am trying to code an small application that will utilize Amazon DevPay and I am having difficulties sending a few sample requests and getting errors. Looking for library class in c# that will conceal all the details. Currently playing with the sample C# library by Amazon but having no luck. any other will be appreciated. This <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1097" rel="nofollow">link</a> will get you to the library I am currently using. </p> <p>Original Question: Can someone point me to a good source of DevPay c# Sample Code? Did not draw an attention from the public so I change it a little. </p> http://stackoverflow.com/questions/1415833/what-amazon-s3-net-library-is-most-useful-and-efficient 9 What Amazon S3 .NET Library is most useful and efficient? Geo 2009-09-12T18:52:41Z 2009-10-08T20:50:57Z <p>There are two main open source .net Amazon S3 libraries.</p> <ol> <li><a href="http://threesharp.codeplex.com/" rel="nofollow">Three Sharp</a></li> <li><a href="http://code.google.com/p/lits3/" rel="nofollow">LitS3</a></li> </ol> <p>I am currently using LitS3 in our MVC demo project, but there is some criticism about it. Has anyone here used both libraries so they can give an objective point of view.</p> <p>Below some sample calls using LitS3:</p> <p>On demo controller:</p> <pre><code> private S3Service s3 = new S3Service() { AccessKeyID = "Thekey", SecretAccessKey = "testing" }; public ActionResult Index() { ViewData["Message"] = "Welcome to ASP.NET MVC!"; return View("Index",s3.GetAllBuckets()); } </code></pre> <p>On demo view:</p> <pre><code>&lt;% foreach (var item in Model) { %&gt; &lt;p&gt; &lt;%= Html.Encode(item.Name) %&gt; &lt;/p&gt; &lt;% } %&gt; </code></pre> <p>EDIT 1:</p> <p>Since I have to keep moving and there is no clear indication of what library is more effective and kept more up to date, I have implemented a repository pattern with an interface that will allow me to change library if I need to in the future. Below is a section of the S3Repository that I have created and will let me change libraries in case I need to: </p> <pre><code>using LitS3; namespace S3Helper.Models { public class S3Repository : IS3Repository { private S3Service _repository; #region IS3Repository Members public IQueryable&lt;Bucket&gt; FindAllBuckets() { return _repository.GetAllBuckets().AsQueryable(); } public IQueryable&lt;ListEntry&gt; FindAllObjects(string BucketName) { return _repository.ListAllObjects(BucketName).AsQueryable(); } #endregion </code></pre> <p>If you have any information about this question please let me know in a comment, and I will get back and edit the question.</p> <p><strong>EDIT 2:</strong> Since this question is not getting attention, I integrated both libraries in my web app to see the differences in design, I know this is probably a waist of time, but I really want a good long run solution. Below you will see two samples of the same action with the two libraries, maybe this will motivate some of you to let me know your thoughts. </p> <p>WITH THREE SHARP LIBRARY: </p> <pre><code> public IQueryable&lt;T&gt; FindAllBuckets&lt;T&gt;() { List&lt;string&gt; list = new List&lt;string&gt;(); using (BucketListRequest request = new BucketListRequest(null)) using (BucketListResponse response = service.BucketList(request)) { XmlDocument bucketXml = response.StreamResponseToXmlDocument(); XmlNodeList buckets = bucketXml.SelectNodes("//*[local-name()='Name']"); foreach (XmlNode bucket in buckets) { list.Add(bucket.InnerXml); } } return list.Cast&lt;T&gt;().AsQueryable(); } </code></pre> <p>WITH LITS3 LIBRARY: </p> <pre><code> public IQueryable&lt;T&gt; FindAllBuckets&lt;T&gt;() { return _repository.GetAllBuckets() .Cast&lt;T&gt;() .AsQueryable(); } </code></pre> http://stackoverflow.com/questions/1537595/how-to-test-business-logic-doman-model-rules-while-using-ado-net-entity-framewo 0 How to test business logic (Doman Model Rules) while using ADO.net entity framework? Geo 2009-10-08T12:50:21Z 2009-10-08T13:42:26Z <p>I am trying to test that the business rule of not allowing to share the same space with a user twice. Below is the method being tested. The line having the issue is marked below.</p> <pre><code>public void ShareSpace(string spaceToShare,string emailToShareIt) { SharedSpace shareSpace = new SharedSpace(); shareSpace.InvitationCode = Guid.NewGuid().ToString("N"); shareSpace.DateSharedStarted = DateTime.Now; shareSpace.Expiration = DateTime.Now.AddYears(DefaultShareExpirationInYears); shareSpace.Active = true; shareSpace.SpaceName = spaceToShare; shareSpace.EmailAddress = emailToShareIt; if (!this.MySpacesShared.IsLoaded) this.MySpacesShared.Load(); //Here I am getting the exception further below. if (this.MySpacesShared.Any(s =&gt; (s.EmailAddress == emailToShareIt) &amp; (s.SpaceName == spaceToShare))) throw new InvalidOperationException("Cannot share the a space with a user twice."); else this.MySpacesShared.Add(shareSpace); } </code></pre> <p>The TestMethod below:</p> <pre><code>[TestMethod] public void Cannot_Share_SameSpace_with_same_userEmail_Twice() { account.ShareSpace("spaceName", "user1@domain.com"); try { account.ShareSpace("spaceName", "user1@domain.com"); Assert.Fail("Should throw exception when same space is shared with same user."); } catch (InvalidOperationException) { /* Expected */ } Assert.AreEqual(1, account.MySpacesShared.Count); Assert.AreSame(null, account.MySpacesShared.First().InvitedUser); } </code></pre> <p>The error that I am getting on the test results:</p> <blockquote> <p>Test method SpaceHelper.Tests.Controllers.SpaceControllerTest.Cannot_Share_SameSpace_with_same_userEmail_Twice threw exception: System.InvalidOperationException: The EntityCollection could not be loaded because it is not attached to an ObjectContext..</p> </blockquote> <p>When I go step by step on the debugging mechanism this error comes up on the Load() event. I am pretty sure it has to do with the fact that I don't have a ADO.NET Entity Framework on my test scenario since I am using fake information here and is not hooked to my database. </p> <p>I case anyone wants to see here is my initialization for that test:</p> <pre><code>[TestInitialize()] public void MyTestInitialize() { user = new User() { Active = true, Name = "Main User", UserID = 1, EmailAddress = "user1@userdomain.com", OpenID = Guid.NewGuid().ToString() }; account = new Account() { Key1 = "test1", Key2 = "test2", AccountName = "Brief Account Description", ID = 1, Owner = user }; } </code></pre> http://stackoverflow.com/questions/1257874/where-we-can-find-database-designs-schemes-erd-or-other-for-very-common-use-cas 2 Where we can find database designs schemes (ERD or other) for very common use cases? Geo 2009-08-11T00:03:23Z 2009-10-07T09:08:11Z <p>The question is more simple than what it looks. There are many use cases that are well known and people have put a lot of thought into them. For example: Audit trailing, login users, and so on. We are looking for a good resource site that present the DB design for those common use cases. </p> http://stackoverflow.com/questions/1529280/what-is-the-performance-impact-of-having-jquery-functions-not-used 3 What is the performance impact of having jquery functions not used? Geo 2009-10-07T03:03:42Z 2009-10-07T05:16:17Z <p>I posted another <a href="http://stackoverflow.com/questions/1527730/where-to-put-javascript-configuration-functions">question</a> on a very similar topic, but turned out to be a little subjective. I am able to divided the question in two questions, one that I will explain below:</p> <p>In the following Code:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $("#accordion").accordion(); $("#datepicker").datepicker(); $("#button").click(function() { runEffect(); return false; }); }); &lt;/script&gt; </code></pre> <p>Question: If I have this code called in a 1,000 pages, but only 250 pages have a datepicker id. Will the browser spend extra time on the other 750 pages trying to parse for id datepicker, or Jquery has a smart way of solving this situation without affecting performance?</p> <p>What happen if the code is making reference to ids or classes that does not exist on the html markup of the current page, will that impact performance? </p> http://stackoverflow.com/questions/1527730/where-to-put-javascript-configuration-functions 3 Where to put JavaScript configuration functions? Geo 2009-10-06T19:53:33Z 2009-10-06T21:13:27Z <p>What is the general developer opinion on including javascript code on the file instead of including it on the script tag.</p> <p>So we all agree that jquery needs to be included with a script file, like below:</p> <pre><code> &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>My question is, in order to get functions on a page that is not on all pages of a site. Do we include the functions like below in the same page or in a global include file like above called mysite.js.</p> <pre><code>$(document).ready(function(){ $(".clickme").click(function(event){ alert("Thanks for visiting!"); }); }); </code></pre> <p>ok. So the question is: if the code above is going to be called in every class="clickme" on a specific pages, and you have the ability to call it either from an include separate file called mysite.js or in the content of the page. Which way will you go?</p> <p><hr /></p> <p>Arguments are: </p> <ul> <li><p>If you include it on the page you will only call it from those specific pages that the js functionality is needed.</p></li> <li><p>Or you include it as a file, which the browser cached, but then jquery will have to spend x ms to know that that function is not trigger on a page without "clickme" class in it.</p></li> </ul> <p><hr /></p> <p>EDIT 1: Ok. One point that I want to make sure people address is what is the effect of having the document.ready function called things that does not exist in the page, will that trigger any type of delay on the browser? Is that a significant impact?</p> http://stackoverflow.com/questions/956184/should-web-developers-upgrade-to-internet-explorer-8/956207#956207 5 Answer by Geo for Should Web Developers upgrade to Internet Explorer 8? Geo 2009-06-05T14:37:02Z 2009-10-05T08:34:23Z <p>Hello tj. The best advice I can give is that you keep a few Virtual Machines with IE7 and IE6. IE8 has been very inconsistent for me as well, crashing every now and then. Compatibility mode seems to work at least in my sites, so that part looks ok. </p> http://stackoverflow.com/questions/1518780/when-to-use-extends-and-when-to-use-interface/1518802#1518802 3 Answer by Geo for When to use extends and when to use interface? Geo 2009-10-05T08:16:56Z 2009-10-05T08:16:56Z <p>Hi Devil:</p> <p>Is a matter of uses. Interfaces can be used as a contract with your application and then base classes can be use to extend that interface, so it is loosely couple. </p> <p>Take for example Injection Dependency pattern:</p> <p>You first write a contract:</p> <pre><code> public interface IProductRepository { IList&lt;T&gt; GetAllProducts(); } </code></pre> <p>Then you extend your contract with a base class:</p> <pre><code> public abstract BaseProductRepository : IProductRepository { public IList&lt;T&gt; GetAllProducts() { //Implementation } } </code></pre> <p>Now you have the option to extend base into two or more concrete classes:</p> <pre><code> public class InternetProductRepository extends BaseProductRepository; public class StoreProductRepository extends BaseProductRepository; </code></pre> <p>I hope this small examples clears the differences between extend and Implement. sorry that I did not use java for the example but is all OO, so I think you will get the point.</p> <p>Thanks for reading, Geo</p> <p><hr /></p> <p>I did not complete the code for injection dependency pattern but the idea is there, is also well documented on the net. Let me know if you have any questions.</p> http://stackoverflow.com/questions/1518136/how-do-i-use-a-hidden-value-more-than-once-in-the-same-controller-method-view/1518236#1518236 0 Answer by Geo for How do I use a hidden value more than once in the same controller method/view? Geo 2009-10-05T04:13:55Z 2009-10-05T04:13:55Z <p>I am sure this is not the ideal solution, but I got around my issue by not using the MVC helper files. Instead of using the Html.Hidden helper I used directly the input field as below:</p> <pre><code> &lt;%--&lt;%= Html.Hidden("Prefix",item.Prefix) %&gt;--%&gt; &lt;input id="Prefix" type="hidden" value="&lt;%= item.Prefix %&gt;" name="Prefix" /&gt; </code></pre> <p>This works like a charm, if you think of a reason why the html.Hidden is not working please let me know.</p> http://stackoverflow.com/questions/378332/what-is-the-best-way-to-backup-mysql-in-s3 1 What is the best way to backup mysql in s3? Geo 2008-12-18T16:09:35Z 2009-10-02T03:16:42Z <p>mysqldump is probably not the best idea on running backups every x hours but is the one that we are currently using. The backups are around 150 Megs each so sending it to other machines could waste many gigs of bandwidth. </p> <p>Is there any tool or application or script that could automate the creation of the backup and the upload to s3 amazon service or any similar. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1492710/how-to-implement-an-invitation-code-to-share-resource-with-another-user 2 How to implement an invitation code to share resource with another user? Geo 2009-09-29T13:52:19Z 2009-09-30T11:37:00Z <p>We want to be able to share resources inside our web application with new or other users. We want to do this by implementing an invitation code. I have seen this implemented many times before in other applications (google docs for example), where you send an invitation code to another user and that other user will have whatever access the first user agreed. </p> <p>I am sure there has to be a pattern, or best approach already documented somewhere, I just need the right words to look for it. Will someone be able to point me in the right direction? Below is the use case:</p> <ol> <li>User one (user1) has an account with multiple spaces.</li> <li>User1 wants to share a specific space (space9) with User2 (which is or not on the user table).</li> <li>User1 sends an invitation code to the email of user2.</li> <li>User2 registers and enters the invitation code or clicks on the link to register with the invitation code. </li> <li>User2 has access to space9 and only to space9, not to any other space register for user1.</li> </ol> <p><strong>Edit 1:</strong> (Possible Algorithm to Use based on Mark Answer):</p> <p>In my domain model I have User and Account and each user has 0 or more accounts. Then we also have SharedSpace, each user has 0 or more share space and each account may have 0 or more sharespace. Now Sharespace will contain (inviationCode, spaceCode, active (yes), expiration, email (share with).</p> <p>Any user who has an account (acct1) is able to share space with </p> <pre><code>acct1.shareSpace("spaceCodeToShare","Emailofusertosharewith"); </code></pre> <blockquote> <blockquote> <p>The method shareSpace(string,string) will do the following:</p> </blockquote> <ol> <li>Create and send invitation Code to email</li> <li>If user is registered, he activates his code either clicking or entering it (using authorize or customAuthorize attribute and IPrincipal to prevent unauthorized access).</li> <li>IF user is not registered then he logs in and after a user entry for this user is created then he activates the code.</li> <li>If user never activates the code the the code expires and the active status toggles to false.</li> </ol> </blockquote> <p>Do you think I am missing anything, it looks more simple than I thought it would be?</p> http://stackoverflow.com/questions/475278/asp-net-mvc-and-css-having-menu-tab-stay-highlighted-on-selection/1484499#1484499 0 Answer by Geo for asp.net mvc and css: Having menu tab stay highlighted on selection Geo 2009-09-27T21:14:53Z 2009-09-27T21:14:53Z <p>This approach I am using in one of my projects and is working pretty well. I assigned in each controller ViewData["Home"] = "activeTab" class, and use in the view a default value of empty string, as showing below. This will make the tab active if the value of that viewData dictionary is taken. Is simple and very clean. </p> <p>Your home controller will look like this:</p> <pre><code> ViewData["Home"] = "activeTab"; return View("Index"); } </code></pre> <p>The view will look like this:</p> <pre><code>&lt;li class="&lt;%= ((string)ViewData["Home"] ?? "") %&gt;"&gt;&lt;%= Html.ActionLink("Home", "Index", "Home")%&gt;&lt;/li&gt; &lt;li class="&lt;%= ((string)ViewData["About"] ?? "") %&gt;"&gt;&lt;%= Html.ActionLink("About", "About", "Home")%&gt;&lt;/li&gt; </code></pre> http://stackoverflow.com/questions/1482463/where-can-i-get-an-asp-net-mvc-designs 0 Where can I get an ASP.NET MVC Designs? Geo 2009-09-27T00:11:04Z 2009-09-27T00:34:04Z <p>I am looking at the <a href="http://www.asp.net/mvc/gallery/default.aspx?supportsjs=true" rel="nofollow">ASP.net</a> gallery of designs that they have available and I cannot find anything that I can use as a base to customize. The project is a basic prototype so I cannot spend money on a designer yet, but I cannot let it go with the default scheme. Any ideas on where I can find a good mvc design that I can modify. </p> <p>As many technical people out there, I have difficulties making things look good. Thanks.</p> http://stackoverflow.com/questions/1481678/how-to-decide-what-radiobutton-is-on-in-a-view 0 How to decide what radioButton is on in a View? Geo 2009-09-26T17:21:03Z 2009-09-26T23:01:28Z <p>In my controller I am setting my value to true:</p> <pre><code>ViewData[itemName] = true; </code></pre> <p>Then in my view I am trying to set the item with true as select radio button. I have tried the following:</p> <pre><code> &lt;%= Html.RadioButton("default",item.Name, ((bool)ViewData[item.Name])==null ? false:true) %&gt; &lt;%= Html.RadioButton("default",item.Name, ViewData[item.Name]) %&gt; &lt;%= Html.RadioButton("default",item.Name, ViewData["defaultItem"]==item.Name) %&gt; //In the case above I assigned ViewData["defaultItem"] = itemName; </code></pre> <p>any ideas?</p> http://stackoverflow.com/questions/1479577/what-jquery-plugin-or-extension-could-i-use-to-construct-a-query-string 0 What Jquery Plugin or Extension could I use to construct a query string? Geo 2009-09-25T21:04:12Z 2009-09-26T14:10:10Z <p>At this moment we construct our search query in our website with java script. We have an input box for keyword and another input box for name and so on. If a user enters keyword: test the query looks like:</p> <pre><code>http://oursite.com/Search?keyword=test </code></pre> <p>if they enter keyword: test and name: john the string looks like:</p> <pre><code>http://oursite.com/Search?keyword=test&amp;name=john </code></pre> <p>So the functionality is easy, take information from input boxed chain it, and then pass it to the window.location. </p> <p>ok. now we want to do it with jquery, any ideas on how to start or plugins that will do this.</p> <p>In case you are wondering, we want to do this to increase maintainability of our code and decrease dependency in one developer. </p> http://stackoverflow.com/questions/1463514/is-there-any-performance-advantage-over-running-code-outside-try-catch-blocks 0 Is there any performance advantage over running code outside try,catch blocks? Geo 2009-09-23T01:28:12Z 2009-09-23T02:27:01Z <p>I am curious to know if I should minimize the code that goes inside a try/catch block or it really does not matters. </p> <pre><code> public bool ObjectExists(string stringTest, string againSomethingElse) { if(true) {} else {} //Code here is better/worst/same try { //Versus code inside try/catch block } catch (Exception) { throw; } } </code></pre> http://stackoverflow.com/questions/1709308/does-the-scrum-master-have-to-answer-the-3-standup-questions-as-well/1709333#1709333 Comment by Geo on Does the scrum master have to answer the 3 standup questions as well? Geo 2009-11-10T16:40:17Z 2009-11-10T16:40:17Z Thanks, I though that too. http://stackoverflow.com/questions/1537595/how-to-test-business-logic-doman-model-rules-while-using-ado-net-entity-framewo/1537796#1537796 Comment by Geo on How to test business logic (Doman Model Rules) while using ADO.net entity framework? Geo 2009-10-11T04:18:27Z 2009-10-11T04:18:27Z Hi Anton: Could you give me the reasoning around using TimeSpan instead of adding a year to today's date. I tried googling but only found definitions. Thanks. http://stackoverflow.com/questions/1537595/how-to-test-business-logic-doman-model-rules-while-using-ado-net-entity-framewo/1537876#1537876 Comment by Geo on How to test business logic (Doman Model Rules) while using ADO.net entity framework? Geo 2009-10-11T00:14:11Z 2009-10-11T00:14:11Z Hi NerdFury: I found my problem. As others mentioned I have my automatically created entity model classes mixed with my business logic. The main reason is lack of proper knowledge on ADO.NET EN FW. I followed your code and was able to test it using an interface of the Entity class on the account class. Is kind of ugly. Any advice on how to fix this flaw in my design without refactoring the entire application. Thanks again, and I marked your question as the answer. http://stackoverflow.com/questions/1533190/is-there-a-production-grade-simpledb-net-library/1533262#1533262 Comment by Geo on Is there a production grade SimpleDB .NET library? Geo 2009-10-07T18:39:36Z 2009-10-07T18:39:36Z Have you used the SimpleDB provider (Linq2SQL), it looks like it has not been maintained. Any opinions? http://stackoverflow.com/questions/1529280/what-is-the-performance-impact-of-having-jquery-functions-not-used/1529309#1529309 Comment by Geo on What is the performance impact of having jquery functions not used? Geo 2009-10-07T16:52:04Z 2009-10-07T16:52:04Z Thanks for the information. I could not understand the use() import() analogy, but thanks in general. http://stackoverflow.com/questions/1529280/what-is-the-performance-impact-of-having-jquery-functions-not-used/1529309#1529309 Comment by Geo on What is the performance impact of having jquery functions not used? Geo 2009-10-07T16:08:21Z 2009-10-07T16:08:21Z Let me see if I get what you are saying. You define your functions on the global include called activate_{functionname} and then you add on the markup that uses that function the actual activate_{functionname} call. So at the end you have a contract with all your activate_{functionname} and you can add all the functions that are needed in each page on the markup. is this accurate? http://stackoverflow.com/questions/1527730/where-to-put-javascript-configuration-functions Comment by Geo on Where to put JavaScript configuration functions? Geo 2009-10-06T20:27:09Z 2009-10-06T20:27:09Z Hi Marc: Why you think this is subjective? If enough people use a convention is called a best-practice, but you will always have people doing it in a different way or even a better way. http://stackoverflow.com/questions/1518136/how-do-i-use-a-hidden-value-more-than-once-in-the-same-controller-method-view Comment by Geo on How do I use a hidden value more than once in the same controller method/view? Geo 2009-10-05T03:37:46Z 2009-10-05T03:37:46Z I tried that already, but did not work. http://stackoverflow.com/questions/1434900/why-is-my-castle-windsor-controller-factorys-getcontrollerinstance-being-calle/1435448#1435448 Comment by Geo on Why is my Castle Windsor controller factory's GetControllerInstance() being called with a null value? Geo 2009-10-02T03:42:36Z 2009-10-02T03:42:36Z Thanks, I spent hours looking for this solution. http://stackoverflow.com/questions/1501375/how-to-test-repository-pattern-with-ado-net-entity-framework/1501477#1501477 Comment by Geo on How to test Repository Pattern with ADO.NET Entity Framework? Geo 2009-10-01T13:25:02Z 2009-10-01T13:25:02Z Hi tvanfosson: Thanks for the reply. I understand your post, and that's the reason I have the question. If I should not test my FakeImplementation of the IUserRepository, then I have to test the SQLUserRepository implementation of IUserRepository, which is the one that I am using. But If I do that then I am testing with Database and I have read that this should be avoided. I know I am missing something to make the connection, I just don't know what it is. Thanks. http://stackoverflow.com/questions/1501616/is-the-combination-of-ado-net-entity-framework-and-asp-mvc-wrong-by-any-chance/1501672#1501672 Comment by Geo on Is the combination of ADO.NET Entity Framework and ASP.MVC wrong by any chance? Geo 2009-10-01T02:57:49Z 2009-10-01T02:57:49Z Thanks!!!! I spent around 1.5 hour on this alone. Is this a known bug? Thanks anyway. http://stackoverflow.com/questions/1501616/is-the-combination-of-ado-net-entity-framework-and-asp-mvc-wrong-by-any-chance Comment by Geo on Is the combination of ADO.NET Entity Framework and ASP.MVC wrong by any chance? Geo 2009-10-01T02:38:35Z 2009-10-01T02:38:35Z @Jason. Yes, I did. I removed it, re-added it, even check the version, also tried using statements in the homecontroller. I even thought it was my views, so I delete them and re-create them. When they don't make reference to Objects created by the ado.net enti fram all is good, as soon as I try users or any other object, compile error happens. thanks. http://stackoverflow.com/questions/1481678/how-to-decide-what-radiobutton-is-on-in-a-view/1482360#1482360 Comment by Geo on How to decide what radioButton is on in a View? Geo 2009-09-26T23:37:58Z 2009-09-26T23:37:58Z Exactly what I was looking. Thanks Josh!!! http://stackoverflow.com/questions/1481678/how-to-decide-what-radiobutton-is-on-in-a-view/1481704#1481704 Comment by Geo on How to decide what radioButton is on in a View? Geo 2009-09-26T17:51:56Z 2009-09-26T17:51:56Z I tried that on the third section of the code above and it did not worked. I thought it was going to, though. Thanks. http://stackoverflow.com/questions/1479577/what-jquery-plugin-or-extension-could-i-use-to-construct-a-query-string/1479599#1479599 Comment by Geo on What Jquery Plugin or Extension could I use to construct a query string? Geo 2009-09-25T22:09:45Z 2009-09-25T22:09:45Z this works, but for some reason every time the html is loaded the keyword=keyvar is cleared. I think I am doing something wrong. any ideas.