DotNetShoutout - Stories tagged with DimeCasts.net
9
shouts

Setting Up Fluent NHibernate for your project

published 5 days, 12 hours, 30 minutes ago posted by derikwhittakerderikwhittaker 7 days, 5 hours, 52 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 7:55:13 PM GMT
Taking a look at how to use setup and configure Fluent NHibernate for usage. We will focus on how to setup your database settings as well as how to get your Fluent NHibernate mappings registered into the system. (more)
category: Screencast | clicked: 44 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Fluent NHibernate
8
shouts

DimeCasts.Net Details for # 162 - Learning how to use a Web Cam with Silverlight

published 35 days, 14 hours, 17 minutes ago posted by derikwhittakerderikwhittaker 36 days, 11 hours, 53 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Wednesday, February 10, 2010 1:54:09 PM GMT
Taking a look at how you can setup and use a web camera in Silverlight. We will walk you though how to capture both the raw video as well as how to take snap shots of the video. (more)
category: Screencast | clicked: 31 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Silverlight
8
shouts

DimeCasts.Net Details for # 161 - A deeper look into AutoMapper: Custom Type Resolvers

published 42 days, 14 hours, 27 minutes ago posted by derikwhittakerderikwhittaker 43 days, 13 hours, 40 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 12:07:58 PM GMT
AutoMapper is a framework which uses a convention-based matching algorithm to match up source to destination values. In this episode we are going to learn how to use type resolvers. Type resolvers allow you to perform custom value mapping in a very simple and elegant way with very little code. (more)
category: ASP.NET | clicked: 56 | comment | | source: www.dimecasts.net
tags: AutoMapper, DimeCasts.net
9
shouts

DimeCasts.Net Details for # 159 - Working with Partials in Spark: Part 2

published 57 days, 16 hours, 6 minutes ago posted by derikwhittakerderikwhittaker 58 days, 12 hours, 53 minutes ago
Wednesday, January 20, 2010 9:41:33 AM GMT Tuesday, January 19, 2010 12:54:16 PM GMT
We continue to take look at how to use Partials within the Spark View Engine. In this episode we will take a deeper look at partials and learn more about their undocumented features. We will also be learning how partials will allow us to create clean, compartmentalized and well organized code. (more)
category: Screencast | clicked: 46 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, MVC, Spark
11
shouts

DimeCasts.Net Details for # 158 - Exploring Operator Overloading in C#

published 63 days, 14 hours, 13 minutes ago posted by derikwhittakerderikwhittaker 65 days, 13 hours, 55 minutes ago
Thursday, January 14, 2010 11:34:36 AM GMT Tuesday, January 12, 2010 11:52:15 AM GMT
Taking a look at how create overloaded operators for your objects. Operator overloading permits user-defined operator implementations to be specified for operations where one or both of the operands are of a user-defined class or struct type. When creating your own operators there are many different operators which can be overloaded. +, -, *, /, %, &, |, <<, >> All C# binary operators can be overloaded +, -, !, ~, ++, –, true, false All C# unary operators can be overloaded ==, !=, <, >, &l... (more)
category: Screencast | clicked: 30 | comment | | source: www.dimecasts.net
tags: C#, DimeCasts.net, Operator
9
shouts

DimeCasts.Net Details for # 156 - Learning how to use Named Content Areas w/ Spark

published 77 days, 12 hours, 20 minutes ago posted by derikwhittakerderikwhittaker 79 days, 7 hours, 58 minutes ago
Thursday, December 31, 2009 1:27:34 PM GMT Tuesday, December 29, 2009 5:49:19 PM GMT
Taking a look at the how to setup and use Named Content Areas w/ the Spark view Engine. Named Content areas allow for an easy and simple way to organize the content or structure of you website. (more)
category: Screencast | clicked: 42 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Spark
13
shouts

DimeCasts.Net Details for # 155 - Exploring .Net 4 Features - Tuples

published 89 days, 15 hours, 33 minutes ago posted by derikwhittakerderikwhittaker 91 days, 14 hours, 38 minutes ago
Saturday, December 19, 2009 10:14:29 AM GMT Thursday, December 17, 2009 11:10:01 AM GMT
Taking a look at some of the new features which are part of .Net 4. We will be focusing this episode on Tuples. Tuples allow you to return multiple values from a method with simplicity and ease by allowing you to dynamically create a return object which is typed for your specific needs. (more)
category: Screencast | clicked: 77 | comment | | source: www.dimecasts.net
tags: C# 4.0 .NET, DimeCasts.net, Tuple
11
shouts

DimeCasts.Net Details for # 154 - How to host a WCF Service inside your Windows Service

published 98 days, 11 hours, 8 minutes ago posted by derikwhittakerderikwhittaker 100 days, 13 hours, 31 minutes ago
Thursday, December 10, 2009 2:39:31 PM GMT Tuesday, December 08, 2009 12:16:26 PM GMT
Taking a look how to host your WCF service inside your Windows Service. In many situations hosting WCF inside of IIS may not be the best solution for you or your team. When this is the case hosting inside a windows service may be the best solution and in this episode we will take a look at how you can accomplish this. (more)
category: Screencast | clicked: 78 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, WCF, Windows service
11
shouts

DimeCasts.Net Details for # 153 - Exploring .Net 4 Features - Named and Optional Parameters

published 113 days, 16 hours, 56 minutes ago posted by derikwhittakerderikwhittaker 114 days, 13 hours, 8 minutes ago
Wednesday, November 25, 2009 8:51:18 AM GMT Tuesday, November 24, 2009 12:39:47 PM GMT
Taking a look at some of the new features which are part of .Net 4. We will be focusing this episode on Named and Optional Parameters. Optional Parameters all you to default values for your methods which can reduce the need to for overloading methods. Named parameters allow you to specify the exact parameter by Name when calling a method (more)
category: Screencast | clicked: 58 | comment | | source: www.dimecasts.net
tags: .net 4, DimeCasts.net
11
shouts

DimeCasts.Net Details for # 152 - Introduction to MEF, Getting rolling with basic usage

published 120 days, 14 hours, 13 minutes ago posted by derikwhittakerderikwhittaker 121 days, 12 hours, 20 minutes ago
Wednesday, November 18, 2009 11:34:28 AM GMT Tuesday, November 17, 2009 1:27:27 PM GMT
Taking a quick look at the new plugin framework from Microsoft the Managed Extensibility Framework (MEF for short). In this episode we will explore how to setup your first MEF based plug-in system and show how easy it can be (more)
category: Screencast | clicked: 63 | 1 comment | | source: www.dimecasts.net
tags: DimeCasts.net, MEF
14
shouts

DimeCasts.Net Details for # 151 - Introduction to NCover, setting up for analysis

published 127 days, 8 hours, 51 minutes ago posted by derikwhittakerderikwhittaker 128 days, 13 hours, 24 minutes ago
Wednesday, November 11, 2009 4:56:09 PM GMT Tuesday, November 10, 2009 12:23:07 PM GMT
Taking a quick look at how to setup and use the NCover code coverage and analysis tool. Having the knowledge of the state of your code, is key to understanding the potential success and failures in your code. If having this knowledge is key to you, NCover is a great tool to help you better gain this knowledge (more)
category: Screencast | clicked: 49 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, NCover
15
shouts

DimeCasts.Net Details for # 150 - Adding IoC Support to your WCF Services

published 134 days, 15 hours, 51 minutes ago posted by derikwhittakerderikwhittaker 135 days, 14 hours, 15 minutes ago
Wednesday, November 04, 2009 9:56:34 AM GMT Tuesday, November 03, 2009 11:32:19 AM GMT
Taking 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. (more)
category: Screencast | clicked: 46 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, StructureMap, WCF
12
shouts

DimeCasts.Net Details for # 147 - Abstracting away Dependencies for Simpler code

published 155 days, 17 hours, 3 minutes ago posted by derikwhittakerderikwhittaker 156 days, 13 hours, 21 minutes ago
Wednesday, October 14, 2009 8:44:41 AM GMT Tuesday, October 13, 2009 12:26:38 PM GMT
Taking a look at the pain points around having direct knowledge of a web service can bring for not only testing, but in running your application. Once we understand the pain points we will take a look at how to abstract them away with the adapter pattern. (more)
category: Screencast | clicked: 69 | comment | | source: www.dimecasts.net
tags: Design Pattern, DimeCasts.net
12
shouts

DimeCasts.Net Details for # 145 - Getting started with Lucene.Net Search Library

published 167 days, 11 hours, 7 minutes ago posted by derikwhittakerderikwhittaker 168 days, 14 hours, 7 minutes ago
Friday, October 02, 2009 2:40:46 PM GMT Thursday, October 01, 2009 11:40:43 AM GMT
Taking a look at the Lucene.Net Search Engine Library. Lucene.Net is a source code, class-per-class, API-per-API and algorithmatic port of the Java Lucene search engine to the C# and .NET platform utilizing Microsoft .NET Framework. In this episode we will learn the basics needed to simply get Lucene.net up and running. (more)
category: Screencast | clicked: 59 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Lucene.NET, Search
9
shouts

DimeCasts.Net Details for # 144 - Learning the Iterator Pattern

published 169 days, 15 hours, 57 minutes ago posted by derikwhittakerderikwhittaker 170 days, 15 hours, 19 minutes ago
Wednesday, September 30, 2009 9:50:06 AM GMT Tuesday, September 29, 2009 10:28:46 AM GMT
Taking a look at how using the Iterator Pattern can help you abstract the way in which you interact with a collection of data. This is helpful when you are working with various formats but you would like to create a constant way to work with each format. (more)
category: Screencast | clicked: 34 | comment | | source: www.dimecasts.net
tags: Design Patterns, DimeCasts.net
9
shouts

DimeCasts.Net Details for # 143 - Performing Static Page Checking in MVC

published 174 days, 17 hours, 30 minutes ago posted by derikwhittakerderikwhittaker 175 days, 15 hours, 14 minutes ago
Friday, September 25, 2009 8:17:46 AM GMT Thursday, September 24, 2009 10:33:49 AM GMT
Taking a look at how you can setup Static Type checking within your ASP.Net MVC web project. Having static checking is a great asset as it can reduce the chances of run time errors due to refactoring. Static checking will also allow the compiler to verify all your strongly typed objects are being called correctly. (more)
category: Screencast | clicked: 33 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, MVC
9
shouts

DimeCasts.Net Details for # 141 - Learning Nant: Creating Token Driving Configuration Files

published 181 days, 11 hours, 11 minutes ago posted by derikwhittakerderikwhittaker 182 days, 2 hours, 22 minutes ago
Friday, September 18, 2009 2:36:38 PM GMT Thursday, September 17, 2009 11:26:04 PM GMT
Taking a look at how we can create dynamic config files by putting tokens in your files and letting Nant replace those tokens for each user based on their unique settings. (more)
category: Screencast | clicked: 27 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, NAnt
9
shouts

DimeCasts.Net Details for # 140 - Using Reflection to Invoke members

published 184 days, 10 hours, 50 minutes ago posted by derikwhittakerderikwhittaker 184 days, 15 hours, 20 minutes ago
Tuesday, September 15, 2009 2:57:24 PM GMT Tuesday, September 15, 2009 10:27:34 AM GMT
Taking a look at how to use the reflection to invoke members on an object. Reflection can allow you to call methods, properties, etc of any scope on an object. This can be a very, very useful tool for the tool-belt for the times this is needed. (more)
category: Screencast | clicked: 103 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Reflection
8
shouts

DimeCasts.Net Details for # 139 - Learning the Specification Pattern

published 189 days, 18 hours, 38 minutes ago posted by derikwhittakerderikwhittaker 190 days, 1 hour, 12 minutes ago
Thursday, September 10, 2009 7:09:09 AM GMT Thursday, September 10, 2009 12:35:44 AM GMT
Taking a look at how to use the specification pattern. Business logic is the heartbeat of our application. It is what makes your application worth something to the business. In this episode we will explore the Specification Pattern and see how this simple pattern take your complex business logic and turn it into a more manageable and readable piece of art. (more)
category: Screencast | clicked: 51 | comment | | source: www.dimecasts.net
tags: Design Patterns, DimeCasts.net
7
shouts

DimeCasts.Net Details for # 138 - Isolation Frameworks: Mocking Out/Ref Arguments

published 195 days, 23 hours, 9 minutes ago posted by derikwhittakerderikwhittaker 196 days, 13 hours, 8 minutes ago
Friday, September 04, 2009 2:38:09 AM GMT Thursday, September 03, 2009 12:39:54 PM GMT
Continuing our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests. In this episode we are going to focusing on how to setup you mocks when you need to mock a class with either Out or Ref arguments (more)
category: Screencast | clicked: 18 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, Rhino Mocks
Previous 1 2 3 4 5 6 7 Next