| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
29 Articles match "Form","Products"
| Related DevelopMentor Courses | MORE | | Agile: Where's the evidence? Or, as I believe, Agile is a form of Lean? Despite this one study claimed Scrum resulted in productivity improvements of as much as 600% - Benefield, “Rolling Out Agile in a Large Enterprise”. OK, sometimes, to save myself form a boring conversation or to cut to the chase I’m prepared to concede that: Waterfall worked in 1972 on developments using Cobol on OS/360 with an IMS database. A few weeks ago I was presenting at the BCS SIGIST conference - another outing for my popular Objective Agility presentation. My response was in two parts. to which the answer is certainly No. Allan Kelly's Blog - Friday, March 30, 2012 Guerrilla.NET (UK) Training How can I reduce the number of bugs that make it into production? ASP.NET has used server sided controls to build "web forms". This new approach is called ASP.NET MVC and creates code that is much easier to unit test than web forms and so lends itself well to Test Driven Development. WinDBG and the plugin SOS.DLL bring a new set of tools to.NET developers that can provide insights that help you solve bugs that you see during testing but also allow you to diagnose issues occurring in production systems where the only data you can get is a crash dump file. couldn't? DevelopMentor Courses - Tuesday, March 1, 2011 Testing triangles, pyramids and circles, and UAT typically hear people say there are between two and four times as much test code (for unit tests) as production code. Both mean: showing a potentially finished product to real life users and getting their response. If you have professional testers performing it then it is in effect a form of System Testing. If users delegate the task to a machine then it is some other form of testing. 'A few months ago Markus Gartner introduced me to the Testing Triangle, or Testing Pyramid. Now a question: where did this come from? Who should I credit with the original? Allan Kelly's Blog - Friday, May 24, 2013 |
73 Articles match "Form","Products"
| The Latest from DevelopMentor | MORE | | Testing triangles, pyramids and circles, and UAT typically hear people say there are between two and four times as much test code (for unit tests) as production code. Both mean: showing a potentially finished product to real life users and getting their response. If you have professional testers performing it then it is in effect a form of System Testing. If users delegate the task to a machine then it is some other form of testing. 'A few months ago Markus Gartner introduced me to the Testing Triangle, or Testing Pyramid. Now a question: where did this come from? Who should I credit with the original? Allan Kelly's Blog - Friday, May 24, 2013 Requirements and Specifications 'As I was saying in my last blog, I’m preparing for a talk at Skills Matter entitled: “Business Analyst, Product Manager, Product Owner, Spy!” So now I turned to a standard textbook on requirements: Discovering Requirements: How to Specify Products and Services by Alexander and Beus-Dukis. On the occasions were there are both they are overkill and form voluminous documentation (and neither gets read.) which I should just have entitled it “Requirements: Whose job are they anyway?” and so I’ve been giving a lot of thought to requirements. turned to the index and…. Allan Kelly's Blog - Monday, April 15, 2013 People or the system? is whether it can help mediocre people perform, i.e. deliver, be more productive” In that one statement I epitomise the contradiction. instigated a simple process we could now recognise as a form of Agile but ultimately the company, the system, killed the success. The strength of the system derives form multiple sources including: the effectiveness of the system, the degree to which it is enforced and the degree to which people see their interests being served by the system. “the two view-points are always tenable. Scrum, XP, Prince2, DSDM, etc.) Kanban, Scrum, etc. Allan Kelly's Blog - Tuesday, March 26, 2013 | -
| The Best from DevelopMentor | MORE | - Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series)
We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. We’ll start with a very basic store website (downloads here: BasicMvcForms_starter.zip and BasicMvcForms_final.zip)which has a database and some basic products already listed. In this ASP.NET MVC Foundations article, we’re going to look at building an ASP.NET MVC page which allows users to create and edit objects in our domain. Continue reading → Michael C. Kennedy's Weblog - Friday, January 20, 2012 - Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series)
We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. We’ll start with a very basic store website (downloads here: BasicMvcForms_starter.zip and BasicMvcForms_final.zip )which has a database and some basic products already listed: Notice that we have five products. There links to edit and create products. Now our links to edit and create products work. We’ll use the HTML Helper methods to convert our product into forms ready for the editing. Michael C. Kennedy's Weblog - Friday, January 20, 2012 - Screencast: Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series)
We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. We’ll start with a very basic store website which has read-only data and we'll add the ability to create and edit products in our store. [note: This screencast has been adapted from my earlier blog post.]. In this ASP.NET MVC Foundations screencast, we’re going to look at building an ASP.NET MVC page which allows users to create and edit objects in our domain. All content copyright Michael C. Kennedy. Michael C. Kennedy's Weblog - Monday, January 23, 2012 - Software Facts - well, numbers at least
About a year ago I needed some numbers about software development - industry norms really: effectiveness, productivity, bug counts etc. It is counter productivity to invest in tools before resolving organisational and methodology issues. Productivity and quality seem to be better in object oriented languages Documentation & Bugs Producing paper documents for software development is more expensive than producing software itself Up to 400 words may be written in specification for every line of code in large systems. But he does have lots of interesting facts and numbers. Allan Kelly's Blog - Friday, January 14, 2011 - Tackling the Problem of Modal Dialogs in MVVM
private void ProductsLoaded( List < Product > entities, Exception error) { if (error != ErrorNotice( this , new NotificationEventArgs < Exception > ( "Unable to retrieve products" , error)); else Products = entities; } } }. This plays nice with the asynchronous nature of dialogs in Silverlight, which are not truly model as they are in WPF or Windows Forms (this is because you can’t rely on the Windows message pump in a cross-platform framework such as Silverlight). " , "Product Availability" , MessageBoxButton.OK); } }. Tony and Zuzana's World - Friday, January 28, 2011 - Client side support with the ASP.NET Web API
As long as you can send HTTP GET requests you are good to go and there are very few programming stacks that don’t allow for some form of doing that. In order to make life even easier the ASP.NET Web API adds some client support in the form of the HttpClient class. am using Entity Framework Code First here and the model and context look like this: 1: public class Product. 10: public DbSet Products { get; set; }. 12: public Product Get( int id). Result; 7: var xml = XElement.Load(stream); 8: 9: foreach (var product in xml.Descendants( "Product" )). The Problem Solver - Tuesday, March 13, 2012 - Dependency Injection vs. Dependency Injection Framework
have found this moves people into more of a sports team cheering mindset and does little to help keep conversation rationale and productive. There are many many forms of Dependency Injection, and they offer different pro’s & con’s for different scenarios. Yesterday, David Heinemeier Hansson wrote a blog: ‘Dependency injection is not a virtue’. There is a lot of things mixed together in this blog, all finally put together with the statement “I'm a Ruby programmer”. assert_equal 24, article.published_at.day is preferable to article.publish! It may not apply to your framework. DevelopMentor Courses - Monday, January 7, 2013 %>
| | |