DotNetShoutout - Stories tagged with DimeCasts
3
shouts

DimeCasts - Show #101 - Building a Nant Script - Part 4: Adding fxCop to your build script

posted by beebee 335 days, 14 hours, 59 minutes ago
Thursday, April 16, 2009 2:37:15 PM GMT
In this episode we will continue our series on how to create a build script using the NAnt build tool. In this episode we will take a look at how to add in the ability to run the fxCop static analysis tool to your build script. Having this ability can allow you to keep very close tabs on your code at any time. (more)
category: Screencast | clicked: 17 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, FxCop, NAnt, Screencast
4
shouts

DimeCasts - Show #100 - Learning the Template Pattern

posted by beebee 341 days, 14 hours, 46 minutes ago
Friday, April 10, 2009 2:49:36 PM GMT
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. (more)
category: Screencast | clicked: 2 | comment | | source: www.dimecasts.net
tags: Design Patterns, DimeCasts, DimeCasts.net, Patterns
9
shouts

Dimecasts - Episode #96 - Creating SOLID Code: Dependency Inversion Principle

published 355 days, 10 hours, 21 minutes ago posted by beebee 356 days, 12 hours, 36 minutes ago
Friday, March 27, 2009 7:15:28 PM GMT Thursday, March 26, 2009 4:59:36 PM GMT
This is the last episode in a 5 part series where we will explore the tenets of the S.O.L.I.D principles. In this episode we will take a look at the D (Dependency Inversion Principle) and see how following this principle can help us to create cleaner, more manageable code S - Sinlge Responsibility Principle O - Open/Closed Principle L - Liskov Substitution Principle I - Interface Segregation Principle D - Dependency Inversion Principle (more)
category: Screencast | clicked: 13 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, SOLID Principle
8
shouts

Dimecasts - Episode #95 - Building a Progressive Fluent Interface

published 357 days, 14 hours, 14 minutes ago posted by beebee 358 days, 6 hours, 31 minutes ago
Wednesday, March 25, 2009 3:22:03 PM GMT Tuesday, March 24, 2009 11:05:12 PM GMT
In this episode we take a look at how to build a progressive fluent interface A Progressive Fluent Interface is a DSL in which the options can and will change as you progress through the syntax. This is a useful form of a fluent interface if the want to be able to skillfully guide the user down only one path at a time. (more)
category: Screencast | clicked: 3 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, DSL, Fluent
7
shouts

Dimecasts - Episode #94 - Creating SOLID Code: Interface Segregation Principle

published 363 days, 6 hours, 35 minutes ago posted by beebee 363 days, 11 hours, 6 minutes ago
Thursday, March 19, 2009 11:00:53 PM GMT Thursday, March 19, 2009 6:30:02 PM GMT
This is the fourth in a 5 part series where we will explore the tenets of the S.O.L.I.D principles. In this episode we will take a look at the I (Interface Segregation Principle) and see how following this principle can help us to create cleaner, more manageable code S - Sinlge Responsibility Principle O - Open/Closed Principle L - Liskov Substitution Principle I - Interface Segregation Principle D - Dependency Inversion Principle (more)
category: Screencast | clicked: 12 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, SOLID Principles
9
shouts

Dimecasts - Episode #93 - Retrieving data from a REST based service using C#

published 364 days, 12 hours, 26 minutes ago posted by beebee 365 days, 14 hours, 12 minutes ago
Wednesday, March 18, 2009 5:10:31 PM GMT Tuesday, March 17, 2009 3:23:37 PM GMT
In this episode we take a look at how you can retrieve data frp, a REST based service in C#. We wll walk though the steps needed to build the build the connection and then connect to and retrieve the data from the remote service. In order to do this we will utilize the WebRequest and the WebResponse objects in C# (.net) (more)
category: Screencast | clicked: 1 | comment | | source: www.dimecasts.net
tags: C#, DimeCasts, DimeCasts.net, Web Services
6
shouts

Dimecasts - Episode #92 - Creating SOLID Code: Liskov Substitution Principle

published 369 days, 17 hours, 38 minutes ago posted by beebee 370 days, 12 hours, 17 minutes ago
Friday, March 13, 2009 11:57:48 AM GMT Thursday, March 12, 2009 5:18:48 PM GMT
This is the third in a 5 part series where we will explore the tenets of the S.O.L.I.D principles. In this episode we will take a look at the L (Liskov Substitution Principle) and see how following this principle can help us to create cleaner, more manageable code S - Sinlge Responsibility Principle O - Open/Closed Principle L - Liskov Substitution Principle I - Interface Segregation Principle D - Dependency Inversion Principle (more)
category: Screencast | clicked: 10 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, SOLID Principle
9
shouts

Dimecasts - Episode #91 - Posting data to a REST service using C#

published 372 days, 3 hours, 58 minutes ago posted by derikwhittakerderikwhittaker 372 days, 18 hours, 12 minutes ago
Wednesday, March 11, 2009 1:37:41 AM GMT Tuesday, March 10, 2009 11:24:26 AM GMT
A short overview on how you can post data to a REST based service using C#. (more)
category: Screencast | clicked: 12 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, Web Services
7
shouts

Dimecasts - Episode #89 - Learning to use Fluent NHibernate: Mapping with Composite Keys

published 378 days, 16 hours, 1 minute ago posted by beebee 379 days, 6 hours, 24 minutes ago
Wednesday, March 04, 2009 1:35:18 PM GMT Tuesday, March 03, 2009 11:12:19 PM GMT
In this episode we will continue our short series on how to use the FluentNHibernate library to create you NHibernate mapping files. We will walk you though how to create your mappings for tables which have Composite Keys. This is NOT meant to teach you how to use the NHibernate OR/M (more)
category: Screencast | clicked: 19 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, FluentNHibernate, NHibernate, ORM
1
shouts

Dimecasts - Episode #87 - Building a Nant Script -- Part 4: Running SQL Scripts w/ SqlCmd

posted by beebee 386 days, 18 hours, 14 minutes ago
Tuesday, February 24, 2009 11:22:06 AM GMT
In this episode we will continue our series on how to create a build script using the NAnt build tool. In this episode we will be building off our existing script to add the ability to run sql scripts using the SqlCmd tool. (more)
category: Screencast | clicked: 9 | comment | | source: www.dimecasts.net
tags: ASP .NET, DimeCasts, DimeCasts.net, MVC
14
shouts

Dime Casts.Net -- Inform and Educate in ~10 Minutes or Less

published 405 days, 5 minutes ago posted by ChadMoranChadMoran 405 days, 12 hours, 39 minutes ago
Friday, February 06, 2009 5:30:40 AM GMT Thursday, February 05, 2009 4:57:06 PM GMT
In this episode we will start a short series on how to use the FluentNHibernate library to create you NHibernate mapping files. We will walk you though creating very simple mappings and showing you how they work when using FluentNhibernate. This is NOT meant to teach you how to use the NHibernate OR/M (more)
category: Screencast | clicked: 1 | comment | | source: www.dimecasts.net
tags: DimeCast, DimeCast.net, DimeCasts, DimeCasts.net, Fluent, NHibernate
9
shouts

Building a Nant Script -- Part 3: Adding Code Coverage

published 406 days, 23 hours, 23 minutes ago posted by derikwhittakerderikwhittaker 407 days, 16 hours, 40 minutes ago
Wednesday, February 04, 2009 6:12:50 AM GMT Tuesday, February 03, 2009 12:56:04 PM GMT
Taking a look how to add code coverage (via NCover) to your NAnt build script. (more)
category: Screencast | clicked: 9 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, NAnt, NCover
11
shouts

Building a Nant Script -- Part 2: Adding NUnit tests

published 412 days, 8 hours, 30 minutes ago posted by derikwhittakerderikwhittaker 412 days, 18 hours, 6 minutes ago
Thursday, January 29, 2009 9:06:05 PM GMT Thursday, January 29, 2009 11:29:35 AM GMT
Taking a look at how to create a build script with Nant, learning how to add NUnit tests (more)
category: Screencast | clicked: 12 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, NAnt, Nunt, Testing
6
shouts

Replacing the default view engine in MVC w/ Spark

posted by derikwhittakerderikwhittaker 414 days, 15 hours, 56 minutes ago
Tuesday, January 27, 2009 1:40:32 PM GMT
Take a look at how you can easily swap out the default view engine within the MVC Framework. Once we learn how simple it is to swap view engines we will take a intro look at how to use the Spark View engine. (more)
category: Screencast | clicked: 18 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, MVC, Spark
11
shouts

Dimecasts # 79 - Learning how to use the XML Serializer

published 419 days, 10 hours, 48 minutes ago posted by derikwhittakerderikwhittaker 419 days, 18 hours, 39 minutes ago
Thursday, January 22, 2009 6:48:18 PM GMT Thursday, January 22, 2009 10:56:40 AM GMT
Taking a look at how you can simplify your coding efforts when you need to turn an object model into XML or your XML document into an object model. (more)
category: Screencast | clicked: 3 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, XML
6
shouts

Dimecasts #78 Building a Nant Script -- Part 1: Setting up the script

published 420 days, 14 hours, 57 minutes ago posted by derikwhittakerderikwhittaker 421 days, 9 hours, 39 minutes ago
Wednesday, January 21, 2009 2:39:26 PM GMT Tuesday, January 20, 2009 7:56:51 PM GMT
Learn how to setup your build script with Nant. You will learn the basics of using Nant to compile your application in this episode, which will be built upon in future episodes to build a more complex script. (more)
category: Screencast | clicked: 2 | comment | | source: dimecasts.net
tags: DimeCasts, DimeCasts.net, NAnt
7
shouts

Dimecasts - Episode #77 - Learn how to consume a WCF Service

published 422 days, 12 hours, 32 minutes ago posted by derikwhittakerderikwhittaker 426 days, 14 hours, 18 minutes ago
Monday, January 19, 2009 5:04:12 PM GMT Thursday, January 15, 2009 3:17:37 PM GMT
Walk you though step by step on how to setup your .net application to consume as WCF service. We will show you how you can Visual Studio to create your service proxy as well as how to use SvcUtil to create the proxy. (more)
category: Screencast | clicked: 3 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, WCF
10
shouts

DimeCasts - Show #76 - How to add ReCaptcha to your MVC Web Site

published 422 days, 12 hours, 32 minutes ago posted by mithumithu 428 days, 8 hours, 50 minutes ago
Monday, January 19, 2009 5:04:12 PM GMT Tuesday, January 13, 2009 8:45:49 PM GMT
In this episode we will show you how to implement ReCaptcha within your MVC Web site. We will walk you though the various steps needed in order to create a simple and easy MVC solution. (more)
category: Screencast | clicked: 5 | comment | | source: www.dimecasts.net
tags: ASP.NET, DimeCasts, DimeCasts.net, MVC
6
shouts

DimeCasts - Show #75 - Introdction to S#arp Architecture

published 423 days, 22 hours, 39 minutes ago posted by mithumithu 433 days, 17 hours, 3 minutes ago
Sunday, January 18, 2009 6:57:08 AM GMT Thursday, January 08, 2009 12:33:30 PM GMT
In this episode we will give you an introduction to the S#arp Architecture for the ASP.NET MVC Framework. This is a solid architectural foundation for rapidly building maintainable web applications leveraging the ASP.NET MVC framework with NHibernate. The primary advantage to be sought in using any architectural framework is to decrease the code one has to write while increasing the quality of the end product (more)
category: Screencast | clicked: 1 | comment | | source: www.dimecasts.net
tags: ASP.NET, DimeCasts, DimeCasts.net, MVC, NHibernate
7
shouts

DimeCasts - Show #74 - Becoming a ReSharper Samurai - Part 3

published 426 days, 8 hours, 29 minutes ago posted by mithumithu 435 days, 15 hours, 27 minutes ago
Thursday, January 15, 2009 9:07:02 PM GMT Tuesday, January 06, 2009 2:08:51 PM GMT
This is the third in a multi-part series were we will guide you through various features of ReSharper. In this episode we will focus on various ways to use ReSharper to navigate your code, we take a look at the following features. Navigate to file/type/member Go to definition/declaration Show list of implementers Find usages within code Quick Scrolling to methods/properties Display parameter information much, much more (more)
category: Screencast | clicked: 1 | comment | | source: www.dimecasts.net
tags: DimeCasts, DimeCasts.net, ReSharper
Previous 1 2 3 4 5 Next