| |
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.
|
3 Articles match "Books","Windows"
| Related DevelopMentor Courses | MORE | | Maurice de Beijer: Querying RavenDB databases In my original online example you might have noticed that the books aren't ordered. 5: var books = session.Query (). 7: ToList(); 8: 9: return View(books); 10: }. 5: var books = from book in session.Query (). 7: select book; 8: 9: return View(books.ToList()); 10: }. Just want books from an author starting with “A”? The following view search for books where the title or author starts with the passed string. 5: var books = session.Query (). 8: ToList(); 9: 10: return View( "Index" , books); 11: }. 11: }. 11: }. The Problem Solver - Monday, December 17, 2012 Version 2 "The Rewrite" - don't do it! - never ever rewrite you system Sometimes is the business side realising that their system looks out of date - Visual Basic 6 controls on Windows Vista, or turn of the century web style. Consider this a variation on Same Customer, Different Product pattern ( available online or in the Business Patterns book ). “The second is the most dangerous system a man ever designs” Fred Brooks, 1975 & 1995 Brooks was talking about software designers, architects, but I think the statement holds true not only for all software developers but for the business people who commission replacement systems. Not the developers. Allan Kelly's Blog - Tuesday, August 21, 2012 I Use This use Windows 7 and do most development in Ubuntu within VMware player (using Unity). The Kindle can sync my current location in a book to every device, but I have to move papers and articles over manually. At usesthis.com they interview a bunch of people to ask about their current computer setup and their dream setup. Most of them are using aged machines, ultraportables (Mac Air is popular), and Emacs/VIM for editing (a few slickedit fans). Most of them have little to add in their dream setup (more battery life, better cloud sync). Are our tools finally good enough? Not for me. DevelopMentor Courses - Friday, October 26, 2012 |
20 Articles match "Books","Windows"
| The Latest from DevelopMentor | MORE | | Querying RavenDB databases In my original online example you might have noticed that the books aren't ordered. 5: var books = session.Query (). 7: ToList(); 8: 9: return View(books); 10: }. 5: var books = from book in session.Query (). 7: select book; 8: 9: return View(books.ToList()); 10: }. Just want books from an author starting with “A”? The following view search for books where the title or author starts with the passed string. 5: var books = session.Query (). 8: ToList(); 9: 10: return View( "Index" , books); 11: }. 11: }. 11: }. The Problem Solver - Monday, December 17, 2012 Maurice de Beijer: Querying RavenDB databases In my original online example you might have noticed that the books aren't ordered. 5: var books = session.Query (). 7: ToList(); 8: 9: return View(books); 10: }. 5: var books = from book in session.Query (). 7: select book; 8: 9: return View(books.ToList()); 10: }. Just want books from an author starting with “A”? The following view search for books where the title or author starts with the passed string. 5: var books = session.Query (). 8: ToList(); 9: 10: return View( "Index" , books); 11: }. 11: }. 11: }. The Problem Solver - Monday, December 17, 2012 I Use This use Windows 7 and do most development in Ubuntu within VMware player (using Unity). The Kindle can sync my current location in a book to every device, but I have to move papers and articles over manually. At usesthis.com they interview a bunch of people to ask about their current computer setup and their dream setup. Most of them are using aged machines, ultraportables (Mac Air is popular), and Emacs/VIM for editing (a few slickedit fans). Most of them have little to add in their dream setup (more battery life, better cloud sync). Are our tools finally good enough? Not for me. DevelopMentor Courses - Friday, October 26, 2012 | -
| The Best from DevelopMentor | MORE | - 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 - Building Windows Machines in Amazon EC2
In this article I'm going to give you a simple, step-by-step overview of how to create a Windows 2008 server image in Amazon's Elastic Cloud Compute (EC2) infrastructure. Now I must admit I'd rather have found a good tutorial on The Internets or even in a book. We'll start with a stock Amazon Windows 2008 server image. This time we'll setup a 64-bit Windows 2008 Server (Data Center Edition). You'll need to retrieve that password using the "Instance Actions -> Get Windows Admin Password" option. Now you have full access to your Windows 2008 machine. Michael C. Kennedy's Weblog - Saturday, January 30, 2010 - Verifying JavaScript with JSLint and Visual Studio
Since I do the majority of my work on Windows machines, I’m fortunate enough to have a built-in scripting engine that can run JavaScript without having to install any extra tools. Check Use Output Window and click OK. You should see your Output window appear with the results of the run. 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. finally decided to make this an almost instantaneous process. Jason Diamond - Saturday, August 9, 2008 - Verifying JavaScript with JSLint and Visual Studio
Since I do the majority of my work on Windows machines, I’m fortunate enough to have a built-in scripting engine that can run JavaScript without having to install any extra tools. Check Use Output Window and click OK. You should see your Output window appear with the results of the run. 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. finally decided to make this an almost instantaneous process. It’s too simple, though. Jason Diamond - Saturday, August 9, 2008 - Maurice de Beijer: Querying RavenDB databases
In my original online example you might have noticed that the books aren't ordered. 5: var books = session.Query (). 7: ToList(); 8: 9: return View(books); 10: }. 5: var books = from book in session.Query (). 7: select book; 8: 9: return View(books.ToList()); 10: }. Just want books from an author starting with “A”? The following view search for books where the title or author starts with the passed string. 5: var books = session.Query (). 8: ToList(); 9: 10: return View( "Index" , books); 11: }. 11: }. 11: }. The Problem Solver - Monday, December 17, 2012 - WCF Duplex Messaging
ve read books that tell me that in their ‘which binding should I use?’ This is because your client is probably a Rich Client GUI based application (Windows Forms or WPF). I am one of the moderators of the MSDN WCF Forum. One of the main areas of questions on the forum is duplex messaging – particularly using the WSDualHttpBinding. So instead of typing long messages repeating the same thing in answer to these questions I’ve decided to write this blog post to give a bit of background about duplex messaging and then discuss the options for bindings and common problems people have. .NET Meanderings - Tuesday, June 9, 2009 - The NoSQL Movement, LINQ, and MongoDB - Oh My!
This is free, open-source database which runs on Windows, Linux, and Mac OS X systems. Michael Dirolf also has a great book in the works. You can catch a preview of it on Safari Books Online. It appears at first that you have to run MongoDB in a console window. But you can register it as a Windows Service: Here’s some helpful advice on installing MongoDB as a Windows Service (there is a small bug you have to work around): [link]. Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. Insanity!” Flat files? Ok, ok. Michael C. Kennedy's Weblog - Thursday, April 22, 2010 %>
| | |