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.

37 Articles match "Sample"

  • Related DevelopMentor Courses

    37 Results found
    Showing page 1 of 2   Next >

  • HTML5 Slides and Samples
    The slides and samples from the HTML5 talk I did yesterday at the DevelopMentor office in London. HTML5 from Maurice Beijer Enjoy! Futures HTML5 Modernizr WebSockets WebWorkers Video IE
    The Problem Solver - Thursday, October 18, 2012
  • Brock Allen: CORS support in WebAPI, MVC and IIS with Thinktecture.IdentityModel
    Many other sample implementations only emit the Access-Control-Allow-Origin header, but there’s more to it than that. My second contribution to the Thinktecture.IdentityModel security library is a full-featured CORS implementation. The implementation in Thinktecture.IdentityModel follows the W3C Working Draft 3 from April 2012. There is a rich configuration API to control the various settings that are
    DevelopMentor Courses - Thursday, June 28, 2012
  • Mark Smith: DevWeek slides and samples
    It was an exhausting but fun week in London where I presented a bunch of Windows 8 material – thanks to everyone who attended! I had far more sessions than I had prepared for due to a colleague hurting … Continue reading →
    DevelopMentor Courses - Wednesday, March 13, 2013
  • Understanding Map - Reduce
    Running the sample code produces output like this. Quite a few people seem to be intimidated by the concept of Map-Reduce. As it turns out Map-Reduce is actually quite simple and straightforward when you get to understand the basic principle. Basic principle The basic Map-Reduce consists of two steps. guess you are not going to be very surprised when I tell you that these steps are called Map and Reduce. Simple right? And the Reduce process takes the output of the Map process and combines/discards data to produce the result. Again pretty simple right? simple example. 3: public Order().
    The Problem Solver - Monday, December 3, 2012
  • Building Scalable and Secure WCF Services
    The sample project contains the necessary binding configurations for both SOAP and REST style endpoints. The key to building scalable WCF services is to eliminate binding configurations that could result in server affinity. For this reason you should avoid bindings that establish a session with the service, such as NetTcpBinding or WsHttpBinding with secure conversation enabled. Both BasicHttpBinding and WebHttpBinding, however, are sessionless and allow you to call a service multiple times without concern for which physical server responds to the call. allowCookies = " false ". Enjoy.
    DevelopMentor Courses - Monday, June 18, 2012
  • Certificate Validation and Setting up Service Bus 1.0 Beta for Windows Server
    With these in place the Getting Started / Brokered Messaging / QueuesOnPrem sample should work fine.NET;Azure;ServiceBus;WCFMicrosoft recently announced the beta of Service Bus 1.0 for Windows Server. This is the on-premise version of the Azure Service Bus that so many have been asking for. There is a good walkthrough of the new beta in the MSDN documentation here including how to install it. So why this blog post? First a little background into why there is an issue. In fact the issuer of the issuer must also be trusted. In fact the issuer of the issuer of the issuer must be trusted.
    DevelopMentor Courses - Wednesday, July 25, 2012
  • Use Common Instance Factory to Abstract Away the Dependency Injection Container
    Download the Common Instance Factory from NuGet , or get the source code and samples from the CodePlex site. Download the Common Instance Factory with WCF Extensions here and is also available on NuGet. while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. They key to making it all work is the use of Dependency Injection , also known as Inversion of Control, to delegate creation of types to an external container. Ah, but there’s a problem.
    DevelopMentor Courses - Wednesday, May 23, 2012
  • What’s new in ApprovalTests.Net v.20?
    Here’s an example var urls = new [] { "/Home/Index/Hello" , "/" }; AspApprovals.VerifyRouting(MvcApplication.RegisterRoutes, urls); In the sample above, the delegate (MvcApplication.RegisterRoutes) will be invokes against a mock route collection, and then fed the URLs provided. sample output would look like this: /Home/Index/Hello = > [[controller, Home], [action, Index], [id, Hello]] / = > [[controller, Cool], [action, Index], [id, ]] Event approvals Similar to the example above, another aspect of code which is often hidden (or implicit) is which events are wired-up to your form.
    DevelopMentor Courses - Thursday, August 9, 2012
  • 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
  • Lynn Langit: Understanding Excel Mashups
    It’s called an ‘Excel Mashup’ and information about it, including a live sample can be found … Continue reading → So, what’s this now? I ran into an interesting implementation of Excel, that I not only used, but wanted to share with my readers.
    DevelopMentor Courses - Sunday, August 5, 2012
  • Testing Views in Asp.Mvc
    created a short video tutorial, and Jim Counts put together a fabulous 3 part blog + Sample Code. For many years, the views (the html returned from an rendered MVC controller) were an extremely difficult thing to test. Like many unreachable things, they were declared “not worth it” and ignored. Until now, with ApprovalTests we have created a “simple” way to test the rendered output of a view. say “simple” because there is a fair amount of overhead for the 1st test, which means we wanted to give you some resources to get it working for yourself.
    DevelopMentor Courses - Saturday, May 19, 2012
  • What’s New in Java ApprovalTests V 0.12
    Here’s a sample of how to do that: SmartMapper mapper = new MapperWrapper(new WordCountMap(), LongWritable.class, Text.class, Text.class, LongWritable.class); Once you do this, you will no longer need to wrap all your inputs in the writable classes, HadoopApprovals will wrap primitives into the appropriate context for you In this release of ApprovalTests ( available here ), we’ve only added one thing, but it’s a big thing. Specifically, it’s a big data thing. My thanks go out to John Heintz for helping me to create this. Let’s look into the parts. Do not make it null. Fair point.
    DevelopMentor Courses - Wednesday, September 19, 2012
  • Modern Web Development
    The PowerPoint and samples from my presentation at the QNH DevDays in Arnhem. Modern web development from Maurice Beijer SignalR demo Other demos Enjoy! HTML5 WebSockets Knockout SignalR TypeScript
    The Problem Solver - Saturday, November 10, 2012
  • Decouple WCF Services from their DI Container with Common Instance Factory
    To see examples of using CIF with WCF extensions, download samples and source code from the CIF CodePlex site. In my last blog post I introduced the Common Instance Factory , which I built as an alternative to Common Service Locator to reduce coupling between an application and a Dependency Injection (DI) container. Unlike the Common Service Locator (CSL), the Common Instance Factory (CIF) discourages the service location anti-pattern by using the abstract factory design pattern. null ) { disposable.Dispose(); } } } } }. To get CIF, download the NuGet CIF packages. Enjoy.
    DevelopMentor Courses - Saturday, May 26, 2012
  • Brock Allen: Integrating Claims and OAuth2
    I just created a sample library that illustrates how Claims can be easily integrated when using OAuth2 identity providers for authentication. created the OAuth2 library from scratch (it was quite straightforward). In this library I wanted to hide as much of the OAuth2 protocol and claims mapping as possible so that a consuming application
    DevelopMentor Courses - Friday, October 26, 2012
  • Lynn Langit: MongoDB MapReduce vs. SQL Server group by – Which is faster?
    I decided to try out a well-written sample on the MongoVue site to compare just how MapReduce with MongoDB vs. good old T-SQL group by really work. I had to make a couple of tweaks to what they had written … Continue reading →
    DevelopMentor Courses - Thursday, May 24, 2012
  • Simple MVVM Toolkit for Silverlight 5.0, Windows Phone 7.1
    You still get all the source code, supporting libraries, and an abundance of samples. I’ve just upgraded my Simple MVVM Toolki t to support Silverlight 5.0 and Windows Phone 7.1 ! You can download the latest version here and take it for a spin – or get it from the Visual Studio Extensions Gallery by opening Visual Studio and selecting Extensions Manager from the Tools menu. You can still use the toolkit to develop MVVM apps for Silverlight 4 if you wish, and the Visual Studio project templates include versions for both Silverlight versions – 4 and 5. Enjoy
    DevelopMentor Courses - Friday, March 2, 2012
  • Streaming XML using LINQ to XML (continued)
    The code sample below will load nodes from an arbitrary XML files and yield them to the caller as they’re read from file: static IEnumerable Load( string filename, string elementName). {. Richard Blewett reminded me that the XmlReader.ReadSubtree method makes it even easier to use LINQ to XML with a streaming approach. XmlReaderSettings settings = new XmlReaderSettings(); settings.IgnoreWhitespace = true ; using (XmlReader reader = XmlReader.Create(filename, settings)). {. while (reader.ReadToFollowing(elementName)). {. // build element from subtree. NET LINQ
    DevelopMentor Courses - Tuesday, November 1, 2011
<< 1 2 >>
%>