| |
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.
|
45 Articles match "Books"
See all articles with
"Books"
| The Latest from DevelopMentor Courses | MORE | | Unit testing code depending on the ASP.NET #WebApi HttpClient In this case the client application contains the following class to load books from the REST WebAPI controller: 1: public class BooksClient. 19: 20: public Book GetBook( int id). 27: 28: public Tuple PostBook(Book book). 30: var response = _httpClient.PostAsJsonAsync(BaseUrl.ToString(), book).Result; This class uses the HttpClient to request the data from the service and extracts the books from the body before returning them. The GetBooks() function gets all books from the REST service. 5: var books = new []. 14: {. Result; 18: }. 21: {. The Problem Solver - Monday, May 20, 2013 Unit testing a ASP.NET WebAPI controller Testing a simple ApiController that gets data Suppose we have the following ASP.NET WebAPI Controller with two Get methods, the first returns the complete list of books and the second returns the book with the requested ID. 14: 15: // GET api/books. 24: var book = _repo.GetBook(id); 25: 26: if (book == null ). 30: 31: return Request.CreateResponse(HttpStatusCode.OK, book); 32: }. The Get() method that returns all books is easy enough to test. There are no dependencies on WebAPI bits, all it does is return a enumeration of books. 8: 9: }. The Problem Solver - Sunday, May 12, 2013 Requirements and Specifications The first book I picked up was Mike Cohn’s User Stories Applied , the nearest thing the Agile-set has to a definitive text on requirements. True Requirements runs throughout the book but doesn’t help me compare and contrast. The fact that so many prominent books duck the question of requirements and specification makes me think this is a fairly common issue. '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!” and so I’ve been giving a lot of thought to requirements. nothing. Allan Kelly's Blog - Monday, April 15, 2013 | | The Best from DevelopMentor Courses | MORE | | Understanding Map - Reduce 14: public string Book { get; set; }. Each order line contains the books title, the quantity and the amount it was sold for. In this case the books title and the price it was sold for. 3: public string Book { get; set; }. 11: Book = line.Book, 12: Amount = line.Price. 7: Book = line.Book, 8: Amount = line.Price. 7: Book = grp.Key, 8: Amount = grp.Sum(item => item.Amount). Quite a few people seem to be intimidated by the concept of Map-Reduce. Basic principle The basic Map-Reduce consists of two steps. Simple right? Again pretty simple right? The Problem Solver - Monday, December 3, 2012 Using SignalR for real time data updates In the following code the clients starts the communications hub and passed the loadBooks callback to load the books as soon as the communications are initialized. $( function () {. then( function (books) {. each(books, function () {. appendTo(ul); renderBook(newLi, this ); }); }); }; function renderBook(li, book) {. var books = _repo.GetBooks(); return books; }. }. e.preventDefault(); var form = $( this ); var book = {. val(). }; hub.updateBook(book); }); hub.bookUpdated = function (book) {. public void updateBook(Book book). {. The Problem Solver - Wednesday, July 25, 2012 Screening C# Candidates: Let’s Play 20 Questions! If a person has ever bothered to read a book or technical article or taken a training course, their answers will set them apart from the crowd of folks who don’t make time for ongoing professional development. My short list for the books on various.NET API’s is Programming Entity Framework by Julie Lerman , Programming WCF Services by Juval Lowy , Essential WPF by Chris Anderson , Silverlight 4 in Action by Pete Brown , and Pro ASP.NET MVC by Steve Sanderson. Furthermore, I’m looking for a developer with a thirst for knowledge. This is the purpose of the technical phone screen. DevelopMentor Courses - Tuesday, February 28, 2012 | - Unit testing a ASP.NET WebAPI controller
Testing a simple ApiController that gets data Suppose we have the following ASP.NET WebAPI Controller with two Get methods, the first returns the complete list of books and the second returns the book with the requested ID. 14: 15: // GET api/books. 24: var book = _repo.GetBook(id); 25: 26: if (book == null ). 30: 31: return Request.CreateResponse(HttpStatusCode.OK, book); 32: }. The Get() method that returns all books is easy enough to test. There are no dependencies on WebAPI bits, all it does is return a enumeration of books. 8: 9: }. The Problem Solver - Sunday, May 12, 2013 - Agile: Where's the evidence?
For their book Organizational Patterns of Agile Software Development Coplien and Harrison spent over 10 years assessing teams. 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. It is rarely a question aimed at a rational decision. Allan Kelly's Blog - Friday, March 30, 2012 - An Effective Introduction to the STL Training
The companion reference book, Nicolai M. Participants will gain: An understanding of the architecture behind the STL, including its core components and concepts. Mastery of the subtle differences in semantics of member and non-member functions with the same name, e.g., find, remove, etc. Knowledge of how to integrate STL containers with code expecting arrays and other C-like data structures. The ability to cope with the complex STL-related error messages compilers often generate. Format: Lectures and programming labs. Exercises Further Reading DevelopMentor Courses - Tuesday, March 1, 2011 - 10 Things to make you Agile adoption successfull
And I fluffed it, despite having written a book on the subject I didn’t have a quick answer to hand. You can read the books, you can experiment, you can go on courses. Reading books works for some people but most books go unread, or the words go in one eye and out the other. One of the closing slides in my Agile Foundations course includes a quote from Ken Schwaber saying that only 30% of teams who attempt Scrum will be successful. What I find interesting about this quote is that it aligns with many other change management studies. There are real feedback loops here. Allan Kelly's Blog - Monday, May 14, 2012 - 10 years on: IT does matter, more than ever
remember booking my first flight to the US that year. We talked, she booked me a flight. This year I’ve booked flights on BA, KLM, S7 and Virgin Atlantic. How I book them - the company web site, Opodo, Expedia, SkyScanner has a lot to do with the customer service experience. normal start a flight search on SkyScanner, switch to Opodo or Expedia to book and complete things on the airlines own site. Booking the family holiday is even more IT dependent. At the time my response was, “Is IT worth it?” It was a strategy decision. Anyway, 10 years on. Allan Kelly's Blog - Thursday, July 19, 2012 - 10 pieces of advice for teams
First I’ve realised that I have an awful lot I would like to say about it, I’m terrified it will become another book. I have started to write up a more useful description of Xanpan. In doing so two things have happened. Second, I’m becoming more and more aware of how Xanpan differs from Scrum, XP and Kanban. As a result I expect this blog will get a little quieter. But before the end of the year I’d like to get a few entries finished and published which have been languishing for a while. Of course, if you are a self-managing team you should all read this list. Allan Kelly's Blog - Thursday, November 22, 2012 - Getting started with RavenDB in an ASP.NET MVC application
In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. 3: public class Book. list of books application. Showing a lost of books is real simple. 4: // GET: /Books/. 9: var books = session.Query ().ToList(); ToList(); 10: return View(books); 11: }. Instead RavenDB will just check to see of it knows about books and if so return them. Loading a single book. 2: // GET: /Books/Details/5. The Problem Solver - Sunday, November 25, 2012 %>
284 Articles match "Books"
See all articles with
"Books"
| The Latest from DevelopMentor | MORE | | Unit testing code depending on the ASP.NET #WebApi HttpClient In this case the client application contains the following class to load books from the REST WebAPI controller: 1: public class BooksClient. 19: 20: public Book GetBook( int id). 27: 28: public Tuple PostBook(Book book). 30: var response = _httpClient.PostAsJsonAsync(BaseUrl.ToString(), book).Result; This class uses the HttpClient to request the data from the service and extracts the books from the body before returning them. The GetBooks() function gets all books from the REST service. 5: var books = new []. 14: {. Result; 18: }. 21: {. The Problem Solver - Monday, May 20, 2013 Unit testing a ASP.NET WebAPI controller Testing a simple ApiController that gets data Suppose we have the following ASP.NET WebAPI Controller with two Get methods, the first returns the complete list of books and the second returns the book with the requested ID. 14: 15: // GET api/books. 24: var book = _repo.GetBook(id); 25: 26: if (book == null ). 30: 31: return Request.CreateResponse(HttpStatusCode.OK, book); 32: }. The Get() method that returns all books is easy enough to test. There are no dependencies on WebAPI bits, all it does is return a enumeration of books. 8: 9: }. The Problem Solver - Sunday, May 12, 2013 Requirements and Specifications The first book I picked up was Mike Cohn’s User Stories Applied , the nearest thing the Agile-set has to a definitive text on requirements. True Requirements runs throughout the book but doesn’t help me compare and contrast. The fact that so many prominent books duck the question of requirements and specification makes me think this is a fairly common issue. '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!” and so I’ve been giving a lot of thought to requirements. nothing. Allan Kelly's Blog - Monday, April 15, 2013 | -
| The Best from DevelopMentor | MORE | - How to rip audio books
So i listen to a lot of audio books, and here's how i create the mp3 of them. Make sure the book is UNABRIDGED 1) get a ipod - i prefer the nano. link] 4) set your encoding bitrate to 64k & stereo, this is a very high quality audio book. Overview we are going to create bite size files about 30 minutes each. then label them, and create the id tags. finally we'll attach a picture. link] Ripping 2) download audiograbber & install. link] 3) download lame encoder & install. To do this double click a track. select the Sectors>Last. And there you go Llewellyn Falco - Sunday, July 6, 2008 - Book review: Silverlight 4 in Action
Reviewing this book took some time as it weighs in at a hefty 798 pages, who ever said that Silverlight was a small products? That is a lot of material but then the book doesn't assume any prior knowledge of Silverlight at all. The book is divided into 25 chapters in 3 different sections. In these cases the book is a nice point to get started but no more than that and getting additional information on the Internet is pretty much a requirement. Pete has a pretty solid coverage of the material the book will help you understand what you need to know. Enjoy! The Problem Solver - Wednesday, September 29, 2010 - Books on Windows Phone 7 development
Here are some books for people that are looking to get into Windows Phone 7 development (some are pre-order only at this time): Microsoft XNA Framework Programming for Windows Phone 7. Microsoft Silverlight Programming for Windows Phone 7. Windows Phone 7 Plain & Simple. Developing Windows Phone 7 Applications. Windows Phone 7 The Blomsma Code - Thursday, December 2, 2010 - Using SignalR for real time data updates
In the following code the clients starts the communications hub and passed the loadBooks callback to load the books as soon as the communications are initialized. $( function () {. then( function (books) {. each(books, function () {. appendTo(ul); renderBook(newLi, this ); }); }); }; function renderBook(li, book) {. var books = _repo.GetBooks(); return books; }. }. e.preventDefault(); var form = $( this ); var book = {. val(). }; hub.updateBook(book); }); hub.bookUpdated = function (book) {. public void updateBook(Book book). {. The Problem Solver - Wednesday, July 25, 2012 - Unit testing a ASP.NET WebAPI controller
Testing a simple ApiController that gets data Suppose we have the following ASP.NET WebAPI Controller with two Get methods, the first returns the complete list of books and the second returns the book with the requested ID. 14: 15: // GET api/books. 24: var book = _repo.GetBook(id); 25: 26: if (book == null ). 30: 31: return Request.CreateResponse(HttpStatusCode.OK, book); 32: }. The Get() method that returns all books is easy enough to test. There are no dependencies on WebAPI bits, all it does is return a enumeration of books. 8: 9: }. The Problem Solver - Sunday, May 12, 2013 %>
| | |