simonech

Stories submitted by friends of simonech

Setting up a CI server using Jenkins, MSBuild and GitHub on a Windows (mahdi.mp)

submitted by sharplifesharplife(4570) 19 days, 3 hours ago

In this post I've described how to use Jenkins, GirHub and MSBuild to setupa CI server on Windows Server. read more...

add a comment |category: |Views: 10

tags: another

Using jQuery to tidy up missing Images Part 3 - Final Post(www.siphilp.co.uk)

submitted by siphilpsiphilp(919) 3 months, 3 days ago

This is the last post in the series of using jQuery to tidy up missing Images. Previously we’ve seen how to replace the missing images with an image of our choice and then we allowed users to report missing images. For this final post I’m showing the user a summary box that shows all images that are missing. read more...

add a comment |category: |Views: 74

tags: another

Using jQuery to tidy up missing Images Part 2(www.siphilp.co.uk)

submitted by siphilpsiphilp(919) 3 months, 4 days ago

Next post in this 3 part series. Allowing users to report missing images with jQuery. read more...

3 comments |category: |Views: 48

tags: another

Using jQuery to tidy up missing Images(www.siphilp.co.uk)

submitted by siphilpsiphilp(919) 3 months, 6 days ago

Clean up missing images with a couple of lines of jQuery goodness. read more...

3 comments |category: |Views: 158

tags: another

F# 3.0 type providers – as if by magic…(www.mindscapehq.com)

submitted by traskjdtraskjd(3229) 8 months, 7 days ago

This post dives into one of the very cool new features that has emerged in the first drop of F# 3.0 that shipped with Visual Studio 2011 preview 1. Type providers in F# eliminate tedious boilerplate code by enabling users to create whole classes in a single line of code. read more...

add a comment |category: |Views: 19

tags: another

Customise Subtext Core Pages – Part 1(www.siphilp.co.uk)

submitted by siphilpsiphilp(919) 8 months, 13 days ago

I wanted to take time out from subtext themes for a moment and go over a topic that I think will be of some use to such webmasters that use subtext on a multi-blog platform. Customising Subtext core pages. read more...

add a comment |category: |Views: 11

tags: another

Learning how to use Value Converters in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 18 days ago

Taking a look at how to use and harness the power of Value Converters. A Value Converter (IValueConverter) allows for you to perform custom logic during Bind time in XAML based applications. With a value converter you can implement pretty much any type of complex logic you want (bool to visibility, changing styles, etc) at runtime and have this logic extracted away in a stand alone class. read more...

add a comment |category: |Views: 3

tags: another

Getting Started w/ NuGet(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 26 days ago

Learning how to use the NuGet Package Management System. We will start off by looking at how to install NuGet inside of Visual Studio. We will then learn how to use NuGet to install/uninstall packages. We will end the episode by looking at how to create our first NuGet Package. read more...

add a comment |category: |Views: 6

tags: another

Working with Advanced Aspects with Postsharp (dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 27 days ago

Taking a look at how to use the AOP (Aspect Orientated Programming) framework Postsharp. In this episode we will focus on how to use the OnMethodBoundry, MethodInterceptions, LocationInterception and EventInterception Aspects. We will look at how each of these can be used and how they can be used in conjuction with each other to build a better application. read more...

add a comment |category: |Views: 10

tags: another

Getting Started with AOP using Postsharp(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 27 days ago

Taking a look at how to implemented AOP (Aspect Orientated Programming) with PostSharp. We will be using the Postsharp library in this episode and we will take a look at how to create our first Aspect as well as how to use the metadata with the aspect to provide real business value in your application. read more...

1 comment |category: |Views: 29

tags: another

Learning how to use Behaviors in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 27 days ago

Taking a look at how to use and harness the power of Behaviors. A Behavior in Silverlight is a way to extend an existing UI element in order to add additional state or actions to it. We can create these Behaviors and attach them to pretty much any UI element you could hope for. read more...

add a comment |category: |Views: 1

tags: another

How to Implement 2-Step Verification in ASP.NET MVC(www.nayyeri.net)

submitted by keyvankeyvan(4086) 9 months, 16 days ago

In this post Keyvan walks through an example to show how to implement 2-step verification (with phone) in ASP.NET MVC applications. read more...

3 comments |category: |Views: 141

tags: another

Polyglot programming - combining functional, dynamic and imperative la(www.mindscapehq.com)

submitted by traskjdtraskjd(3229) 10 months, 5 days ago

A blog post from Mindscape about the development experience of creating the Web Workbench product for Sass, Less and CoffeeScript in Visual Studio 2010. Like most .NET projects, it contains a fair chunk of C#. But quite a bit of the core is written in F#, and it also invokes a large amount of external Ruby and JavaScript code. While using all these languages definitely made it far easier to develop the product, it did also throw up a few challenges and surprises. This post looks at those challenges and surprises. read more...

add a comment |category: |Views: 42

tags: another

WP7: Using Location Services (www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 10 months, 8 days ago

Taking a look at how to use the Location Services (GPS) built into the Windows Phone 7 platform. We will first take a look at how we can use the location servcies library on the phone to get the phones current GPS information. We will then take a look at how we can use that information in conjuction w/ the Bing Services to get the street address for the GPS coordinates read more...

add a comment |category: |Views: 8

tags: another

WCF: How to create Custom Message Interceptors(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 10 months, 8 days ago

Taking a look at how to extend WCF to create custom Message Interceptors We will first take a look at how we can create our custom interceptors and hook them into the WCF pipeline. We will then take a look at how we can intercept both inbound and outbound messages to allow us to perform some sort of actions agains the messages. read more...

add a comment |category: |Views: 18

tags: another

MVVM - How to create a ViewModelLocater(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 10 months, 8 days ago

Taking a look at how we can create a simple ViewModelLocator to inject our ViewModel into our DataContext at runtime via conventions. The ViewModelLocator Pattern will allow you to create a very flexable application because it will decouple your Views from your ViewModel. The approach in this episode will take a convention based approach to determine which ViewModel should go with a given View. read more...

add a comment |category: |Views: 6

tags: another