| |
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.
|
10 Articles match "2011","Sample"
| Related DevelopMentor Courses | MORE | | Concepts and Architecture of the STL Participants will gain: An understanding of the architecture behind the STL, including its core components and concepts. Usage guidelines that explain how to avoid subtle STL correctness and performance traps. An understanding of the applications and limitations of STL allocators. Format: Lecture and question/answer. There are no hands-on exercises, but participants are welcome to use their computers to experiment with the course material as it is presented. C++'s Standard Template Library (STL) is uniquely powerful and extensible, and it facilitates the creation of very efficient code. DevelopMentor Courses - Tuesday, March 1, 2011 Effective STL Programming Training Participants will gain: Insights into the behavior of sequence, associative, contiguous-memory, and node-based containers, including new containers specified in TR1. Knowledge of techniques to use both containers and algorithms most efficiently. An understanding of the applications and limitations of STL allocators. The STL is revolutionary, but learning to use it well is a challenge. This seminar, based on Meyers' Effective STL , reveals the critical rules of thumb employed by the experts -- the things they almost always do or almost always avoid doing -- to get the most out of the library. DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (US) Training The interaction between Agile Development and these principles will be demonstrated using several code samples. C# : Leverage new features of C# including asynchronous methods from C# 5.0, dynamic typing from C# 4.0, and LINQ and lambda expressions from C# 3.0. WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 assuming Silverlight 5.0 beta is available after Mix 11). MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). and jQuery. REST-oriented features. DevelopMentor Courses - Tuesday, March 1, 2011 |
51 Articles match "2011","Sample"
| The Latest from DevelopMentor | MORE | | 2011 Recap thought I would start by taking a look back at 2011 and recapping some of my experiences, with a sneak peek at blogging topics I plan to cover in the next several weeks. On a personal level, we added a new member to our family: Kornelius Aaron Sneed, born February 8, 2011. From a professional standpoint, 2011 was also an interesting year. Then I spent the better part of the next four months adding features, putting together sample apps and documentation, writing an installer, and performing some screencasts. He is the youngest of our three children. Cheers, Tony. Tony and Zuzana's World - Tuesday, January 31, 2012 HTML5, Google Chrome Frame and older browsers And with a simple addition of the HTML header the sample starts working. Consider the following problem: You might be tempted to start working with HTML5 features in your web applications but you have to support older bowsers. So for many HTML5 features there are polyfills available that will let you make older browsers like Internet Explorer 7 or 8 work with the newer API. See a possible list of HTML5 polyfills here. However a number of these is JavaScript based and while that works in older browsers their JavaScript engine is often quite slow as well making it hard to work with. Enjoy! Maurice de Bejeir - Thursday, December 8, 2011 HTML5, Google Chrome Frame and older browsers And with a simple addition of the HTML header the sample starts working. Consider the following problem: You might be tempted to start working with HTML5 features in your web applications but you have to support older bowsers. So for many HTML5 features there are polyfills available that will let you make older browsers like Internet Explorer 7 or 8 work with the newer API. See a possible list of HTML5 polyfills here. However a number of these is JavaScript based and while that works in older browsers their JavaScript engine is often quite slow as well making it hard to work with. Enjoy! The Problem Solver - Thursday, December 8, 2011 | -
| The Best from DevelopMentor | MORE | - Access Control Service: Passive/Active Transition Sample
Here you can find my updated ACS2 sample. In addition to the existing front ends (web [WS-Federation], console [SOAP & REST], Silverlight [REST]) and error handling , it now also includes a WPF client that shows the passive/active transition with a SOAP service as illustrated here. All the ACS interaction is encapsulated in a WPF user control that: retrieves the JSON feed. displays a list of supported identity providers. triggers the sign in via a browser control. retrieves the token response. All you need to supply is the ACS namespace and the realm. Have fun! Azure IdentityModel www.leastprivilege.com - Thursday, June 23, 2011 - Peeling Back the Onion Architecture
The sample application (which you can download here ) provides a reference architecture based on these principles. To use it you’ll need to download our good old friend, the Northwind sample database. Download the code for this article. recently started a consulting project as an architect on an ASP.NET MVC application and quickly found myself immersed in the world of N* open source tools. MVC (which stands for Model-View-Controller) lends itself to an Agile development methodology where TDD and BDD (Test-Driven and Behavior-Driven Development) are important components. The Web.Ui Tony and Zuzana's World - Saturday, October 8, 2011 - Simple MVVM Toolkit Improvements: Documentation, Features, Sample Apps
I’ve released a new version of my Simple MVVM Toolkit for Silverlight that has improved documentation, a bunch of new features and additional sample applications. And many of those other toolkits are woefully lacking in the way of documentation and code samples. Sample applications with step-by-step instructions. have spent quite a bit of time fleshing out documentation for the toolkit, and the download includes several sample applications. Other sample apps demonstrate features such as enum lists, associated properties, and async support. Tony and Zuzana's World - Sunday, January 23, 2011 - Building rich HTML 5 clients using REST services
You can download the slide from my session on Building rich HTML 5 clients using REST services here and the sample application using the WCF Web API here. The slides are also available on SlideShare. Enjoy! www.TheProblemSolver.nl www.dotnetevents.nl.NET WCF webcast ASP.NET REST dotnetmag HTML5 The Problem Solver - Wednesday, October 26, 2011 - Easier Async for Silverlight Apps using MVVM
Check out the sample app by downloading the Simple MVVM Toolkit and opening the SimpleMvvm-Async project. It makes sense to execute long-running tasks on a background thread, in order to keep the UI responsive by not tying up the main thread. However, as is the case with other UI frameworks such as Windows Forms or WPF, you should not touch UI elements from worker threads. This has to do with how Windows apps process messages, which are always handled on the thread that created the visual element. Windows Forms has the Control.InvokeRequired / Control.BeginInvoke API. Tony and Zuzana's World - Saturday, January 29, 2011 - 2011 Recap
thought I would start by taking a look back at 2011 and recapping some of my experiences, with a sneak peek at blogging topics I plan to cover in the next several weeks. On a personal level, we added a new member to our family: Kornelius Aaron Sneed, born February 8, 2011. From a professional standpoint, 2011 was also an interesting year. Then I spent the better part of the next four months adding features, putting together sample apps and documentation, writing an installer, and performing some screencasts. He is the youngest of our three children. Cheers, Tony. Tony and Zuzana's World - Tuesday, January 31, 2012 - HTML5, Google Chrome Frame and older browsers
And with a simple addition of the HTML header the sample starts working. Consider the following problem: You might be tempted to start working with HTML5 features in your web applications but you have to support older bowsers. So for many HTML5 features there are polyfills available that will let you make older browsers like Internet Explorer 7 or 8 work with the newer API. See a possible list of HTML5 polyfills here. However a number of these is JavaScript based and while that works in older browsers their JavaScript engine is often quite slow as well making it hard to work with. Enjoy! The Problem Solver - Thursday, December 8, 2011 %>
| | |