Don't wanna be here? Send us removal request.
Link
In this episode, you'll pull Alamofire as a Git submodule. You'll add Alamofire to an existing Swift project. We'll also take a look at creating a simple Alamofire request and receive a JSON Response. And finally we'll use Alamofire to track upload/download progress
0 notes
Link
In this episode we will walk you through how to use the Ninject IoC (Inversion of Control) Container. This episode will also review the basics of the Strategy Pattern as it is critical to IoC.
By the end of this episode you should have a basic understanding of how to use Ninject in your application
0 notes
Link
In this episode we will walk you through how to use the Ninject IoC (Inversion of Control) Container for contextual binding.
Contextual binding is the ability to register more than one binding (object or interface) for a given type. You can then at runtime determine which type you would like by asking for that type.
0 notes
Link
In this episode we will review what Inversion of Control (IoC)/Dependancy Injection (DI) is and why they are important.
This is the first in a series that is meant to teach you how to use the Windsor Castle IoC container.
0 notes
Link
In this episode we take a deeper look into the Ninject IoC container.
We will review the various ways to set and determine a Types lifetime inside of Ninject. By the end of this episode you will be able to set your types lifetime to either Transient or Singleton.
0 notes
Link
In this episode we take a look at how to setup and configure StructureMap for dependency injection.
We will review how to configure your dependencies 2 different ways. First we will review how to use StructureMaps configuration Files and then we will review how to use the built in DSL syntax for wiring.
0 notes
Link
In this episode we take at how to use the Castle Windsor IoC Container. This is the first in a multi-part series were we will show you how to use and configure Windsor as your IoC Container.
The goal of this episode is to get you up to speed with what Windsor can do and how you can use it.
0 notes
Link
In this episode we take a look at how to setup an ASP.Net MVC website to use IoC for creating its controllers. We will learn how to replace the default ControllerFactory with our own implementation.
0 notes
Link
In this episode we take at how to Configure the Castle Windsor IoC Container. This is another part in a multi-part series were we will show you how to use and configure Windsor as your IoC Container.
The goal of this episode is to get you up to speed on the various ways you can configure Windsor for usage.
0 notes
Link
In this episode we will walk you though how to do contextual binding with StructureMap 2.5.
What is Contextual Binding? Contextual Binding is the ability to switch out different concrete implementations of a service (i.e. class) at runtime depending on the context in which they are used.
0 notes
Link
In this episode you will learn how to create convention based auto registration for our dependencies.
We will walk you though all the needed steps in order to create your own convention scanner for Windsor. Having these convention scanners will allow you to not have to manually wire future dependencies as long as they follow this pattern.
0 notes
Link
In this episode we are going to kickoff a new series were we will be exploring some of the features of StructureMap 2.5.
We are going to start off by looking at the simple use case and how to setup for Auto Registration. Auto Registration is where StructureMap can map your types for you, assuming you follow the standard convention where Foo implementes IFoo.
0 notes
Link
In this episode we are going to continue our series were we are exploring some of the features of StructureMap 2.5.
In this episode we are going to take a look at how to setup and use the Registry feature of StructureMap. This is a feature that will allow the IoC container to scan for and find a method in a single class which will setup your mappings for the associated assembly.
0 notes
Link
In this episode we are going to continue our series were we are exploring some of the features of StructureMap 2.5.
In this episode we are going to take a look at how to setup profiles to allow the container to dynamicly determine which objects to inject.
0 notes
Link
In this episode we are going to take a quick look at how to setup your WCF services to use an IoC Container.
When building out a set of services in WCF you still would like to follow the SOLID principles and in order to do this you may want to setup the ability to inject dependencies (via Structure Map) into your services at run time. With WCF extension points this is not only possible, but pretty easy
0 notes
Link
In this episode we take a how you can use the Strategy Design Pattern in your applications.
We will start off by looking at code which does not utilize this pattern and then take a look at how we can refactor the code base to utilize the Strategy Pattern.
0 notes
Link
In this episode we take a how you can use the Template Design Pattern in your applications.
The Template Design Pattern is perhaps one of the most widely used and useful design pattern. It is used to set up the outline or skeleton of an algorithm, leaving the details to specific implementations later. This way, subclasses can override parts of the algorithm without changing its overall structure.
0 notes