-
| The Best from DevelopMentor | 284 Results found Showing page 1 of 29 Next > |
- 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 - 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 the WCF Web API in an ASP.NET MVC application
All we can do is retrieve a list of books or get an individual one. Book GetBook( int id). {. These steps, and adding the required IBooksRepository and its implementation, result in a working service the URL “books” maps to the collection of all books and the URL “books/3” maps to the book with id 3 using the template. Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. just prefer the MVC approach, you might not. repo = repo; }.
The Problem Solver - Monday, June 13, 2011 - Using HTTP status codes in a REST service
Book GetBook( int id). {. If I request the books resource using the URL [link] I get the following. However if I use the URL [link] to get a book with id 999 which doesn’t exist I see the following: Not exactly what I want, there is no book found and yet it returns a null book resource. Using the HttpResponseMessage we can set all sorts of headers but in this case we are only interested in setting the HttpStatusCode to NotFound if the requested book doesn’t exist. HttpResponseMessage result; var book = _repo.GetBook(id); if (book != Enjoy!
The Problem Solver - Wednesday, July 20, 2011 - 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 - Verifying JavaScript with JSLint and Visual Studio
If you’re confused about why it’s saying such simple things like == and ++ are errors, read Douglas’ book or at least read the documentation for JSLint and the other essays on his web site. Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. In it, he describes what parts of the JavaScript language we should be using (the good parts) and what parts we shouldn’t (the bad and the awful parts). finally decided to make this an almost instantaneous process.
Jason Diamond - Saturday, August 9, 2008