| |
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.
|
48 Articles match "Products"
| Related DevelopMentor Courses | MORE | | NET Architecture and Design Principles: Building Distributed Applications Training Hosting and Deployment Once a component of a distributed system is built, we must push it out into a production environment or to the customer. Learn to build systems that are scalable, reliable and secure. Discussions range from object-oriented programming to enterprise patterns, networking to Web Services, caching to distributed databases, and client/database applications to very large-scale web sites. You'll get answers to these questions: How do I build scalable and reliable systems? How can I use patterns to design extensible, reusable services? Using C# 3.0's DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (US) Training Debugging : Come and learn to build robust.NET applications including tools and techniques for monitoring and debugging applications in a production environment. Debugging : Come and learn to build robust.NET applications including tools and techniques for monitoring and debugging applications in a production environment. Platforms such as Ruby on Rails have shown that Model/View/Controller (MVC) is a highly productive and very testable pattern for building web applications. C# : Leverage new features of C# including asynchronous methods from C# 5.0, assuming Silverlight 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Essential SQL Azure Training Acquire skills you need to be productive today. Day 2 SSRS SQL Server Reporting Services has been in the SQL Server on premise product since SQL 2000. Learn to write code for maximum database performance, re-usability, and application modularity. Discover how to handle the transient nature of the cloud. Learn how to use SQL Azure with Entity Framework. You'll get answers to these questions: How can I improve and evaluate the performance of my queries? How can I take advantage of query plans to optimize database performance? What's the best way to secure my data? DevelopMentor Courses - Thursday, May 19, 2011 |
343 Articles match "Products"
| The Latest from DevelopMentor | MORE | | 10 Things to make you Agile adoption successfull What ever you call the role you want someone who can: Provide advice on which practices and process to adopt, and how to best adopt them Offer examples of what they have seen work, and not work, elsewhere, and how other team tackle similar issues Observe, examine, query and challenge your thinking on what you are doing Challenge your thinking and point out opportunities and idea that you haven’t seen yet You may need to work with multiple advisors since few will be able to cover all process, practice, technology, product and strategy bases. Either way, the prognosis isn’t optimistic. Allan Kelly's Blog - Monday, May 14, 2012 Points 4 of 4 - Breakdown The Business” aka Product Owner/Manager/BA are not always good at delivering small stories, breaking a blue down gives the developer a chance. Having the Product Manager/Owner/BA in the room during this break down allows for requirements elaboration and knowledge mining. This entry directly continues from three earlier ones: Story points considered harmful? of 4 - Journey's start Story points 2 of 4 - Duarte's arguments Story points 3 of 4 - An example Duarte’s analysis, and my response, has got me thinking. And I think it would be useful - to me at least, maybe to some readers! Allan Kelly's Blog - Thursday, April 19, 2012 Agile: Where's the evidence? Despite this one study claimed Scrum resulted in productivity improvements of as much as 600% - Benefield, “Rolling Out Agile in a Large Enterprise”. A few weeks ago I was presenting at the BCS SIGIST conference - another outing for my popular Objective Agility presentation. Someone in the audience asked: “Where is the evidence that Agile works?” My response was in two parts. First although it sounds like a reasonable question I’ve come to believe that this is a question that is asked by those who don’t believe in Agile, those who want to stall thing. to which the answer is certainly No. Allan Kelly's Blog - Friday, March 30, 2012 | -
| The Best from DevelopMentor | MORE | - Product Management an open secret, a differenciator
At the Skills Matter Agile Lean Kanban exchange the other week someone - sorry I missed you name - told me about a report from the BBC on Product Management. It turns out the report is from a branch of the BBC I didn’t know about, “BBC Academy” and it entitled “The State of Product Management 2010.” Its well worth reading if you have an interest in Product Management or the UK software development scene. Although I’ve not blogged about it for a while Product Management is one of my passions. In Silicon Valley there is a well developed role called the Product Manager. Allan Kelly's Blog - Tuesday, December 14, 2010 - CodeCamp iPhone & jQTouch presentation
And if you still want to go the AppStore route a product like PhoneGap will even let you do that. During last years CodeCamp in Rotterdam I recorded my presentation on doing iPhone development using jQTouch and ASP.NET MVC. After looking at several options I have posted the recording on Vimeo. You can view the Dutch language recording here. If you are interested in doing iPhone development but don’t want to get started using Objective-C that jQTouch might just be what you need. Its a cool way to build HTML 5 and JavaScript application for the iPhone. Enjoy! www.TheProblemSolver.nl The Problem Solver - Thursday, January 28, 2010 - Query composition with the ASP.NET Web API
12: public Product Get( int id). Loading the products with the original URL returns exactly the same result as before. This request “ [link] ” returns only product 11 to 15 ordered by the product name. Having the ASP.NET Web API as a REST service returning data is kind of nice but to be efficient on the wire we don’t want to return more data that required only to discard it in the client. As we have seen in a previous post just returning a collection data was real easy. As it turns out changing the service so the client can filter data is almost just as easy. 13: {. The Problem Solver - Wednesday, March 21, 2012 - Getting started with Windows Workflow Foundation 4
And as WF 4 is a complete rewrite we should approach it as a new product and forget just about everything we already know about WF 3. As you may have heard Windows Workflow Foundation 4 is not an upgrade from Windows Workflow Foundation 3 (or 3.5). The version numbers might suggest that the previous version was quite mature but in fact it refers to the version of the.NET framework. In fact Windows Workflow Foundation 3 was the first version and 3.5 added only very few features and some bug fixes. Well wrong actually! There no longer is a class named WorkflowRuntime. Yes there is. The Problem Solver - Monday, June 22, 2009 - EF4 compared to NHibernate
On the other side, NH is a much a more mature ORM product than EF and has better batching capabilities. It is also more extensible, especially as an open-source product. The end result will be greater parity between the two products going forward, making the choice even more challenging and determined mostly by philosophical and strategic factors. Last week while teaching my new LINQ and Entity Framework course I got a question asking me to compare EF4 with NHibernate. Not having worked extensively with NHibernate, I wasn’t in a position to address the question. Tony and Zuzana's World - Wednesday, January 13, 2010 - Updating data with the ASP.NET Web API
In the previous blog post I demonstrated how to get started with the ASP.NET Web API and retrieve some products data from the Northwind database. Adding new products to the database. 12: public Product Get( int id). 18: public void Post(Product product). 20: _db.AddToProducts(product); 21: _db.SaveChanges(); 22: }. Using Fiddler we can POST a new product, in this case the ASP.NET Web API itself, to the server. The function parameter is of type Product and the ASP.NET Web API does the proper deserialization for us. 10: 11: // GET /api/ /5. The Problem Solver - Monday, March 12, 2012 - Using Reporters in Approval Tests
1: using ApprovalTests.Reporters; 2: using NUnit.Framework; 3: 4: namespace ApprovalTests.Tests.Html 5: { 6: [TestFixture] 7: [UseReporter( typeof (DiffReporter), typeof (FileLauncherReporter))] 8: public class HtmlTest 9: { 10: [Test] 11: public static void TestHtml() 12: { 13: Approvals.ApproveHtml( " Web Page from ApprovalTests " ); 14: } 15: } 16: } I have found that using the right Reporter or Reporters at the right time in the testing cycle has made me more productive. Today I pushed new versions of ApprovalTests for both C# and Java to SourceForge. Why Use Reporters? png, *.html,
| | |