Mark
Name: Mark
Score: 5,934.59
Last Seen: 637 days, 5 hours, 38 minutes ago
Member Since: 1 February, 2009
DotNetShoutout
atom rss
8
Shouts

Windows Touch Game Programming in DirectX 10 - Gus Class's Windows Developer Education Blog

published 818 days, 7 hours, 16 minutes ago posted by NickolayNickolay 818 days, 15 hours, 6 minutes ago
Tuesday, February 22, 2011 7:59:04 PM GMT Tuesday, February 22, 2011 12:09:30 PM GMT
In late 2009, Ian Backlund and I released a game we were working on that showcased Windows Touch. You can download the sample associated with this project on the Code Gallery page for Windows Touch Game Programming in DirectX 10. The following post is just a re-release of the documentation... (more)
category: Smart Client | clicked: 1 | comment | | source: blogs.msdn.com
tags: Game Programming, DirectX, Windows Touch
9
Shouts

NuGet 1.1 Released - Scott Guthrie's Blog

published 819 days, 8 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 825 days, 6 hours, 58 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Tuesday, February 15, 2011 8:17:05 PM GMT
This past weekend the ASP.NET team released NuGet 1.1.  Phil Haack recently blogged a bunch of details on the enhancements it brings, as well as how to update to it if you already have NuGet 1.0 installed.  It is definitely a nice update (my favorite improvement is that it no longer blocks the UI when downloading packages). Read Phil’s blog post about the NuGet 1.1 update and how it install it here.  NuGet is Not just for Web Projects NuGet is not just for ASP.NET projects – it supports any .NET proj... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: weblogs.asp.net
tags: Visual Studio, ASP.NET, NuGet
11
Shouts

WP7 Podcasts - Rudi Grobler in the Cloud

published 819 days, 8 hours, 51 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 823 days, 19 hours, 9 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Thursday, February 17, 2011 8:06:15 AM GMT
2 podcasts focused on WP7 (more)
category: Podcast | clicked: 28 | comment | | source: www.rudigrobler.net
tags: WP7
7
Shouts

Running Multiple Websites in a Windows Azure Web Role - Wade Wegner

published 819 days, 8 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 822 days, 9 hours, 31 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Friday, February 18, 2011 5:43:59 PM GMT
Prior to the release of the Windows Azure 1.3 SDK, Web roles hosted your application in IIS Hosted Web Core (HWC).  While there were certainly ways to extend HWC, for the most part you were stuck with a single application bound to no more than a single HTTP or HTTPS endpoint.  This model enabled only a minimal number of configurations, and prevented you from fully benefiting from the full capabilities of IIS.  Here’s what t... (more)
category: Architecture | clicked: 0 | comment | | source: www.wadewegner.com
tags: Windows Azure, HWC, Hosted Web Core, IIS, Azure
8
Shouts

Moonlight 4 (Preview) is here - Rudi Grobler in the Cloud

published 819 days, 8 hours, 51 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 823 days, 21 hours, 32 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Thursday, February 17, 2011 5:42:50 AM GMT
Mono project has released a preview of Moonlight 4 (Silverlight 4 support for linux) (more)
category: Metro | clicked: 1 | comment | | source: www.rudigrobler.net
tags: Mono, Silverlight, Silverlight 4, Moonlight 4
8
Shouts

Windows Phone 7 Silverlight Programming - Navigation between Pages

published 819 days, 8 hours, 51 minutes ago posted by sonukapoorsonukapoor 822 days, 7 hours, 11 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Friday, February 18, 2011 8:04:00 PM GMT
In this article, we will delve into how to perform navigation operations between pages as well as passing data in a Silverlight for Windows Phone application. (more)
category: Metro | clicked: 0 | comment | | source: dotnetslackers.com
tags: Silverlight, Windows Phone 7
7
Shouts

Refactoring to testability

published 819 days, 8 hours, 51 minutes ago posted by http://www.beletsky.net/http://www.beletsky.net/ 819 days, 18 hours, 22 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Monday, February 21, 2011 8:53:30 AM GMT
Suppose you are working on some web REST API adapter. It would be basically one class with bunch of methods. Each method would represent each supported API call. Through the implementation you would probably landed with something like this, public class ApiAdapter { private HttpClient _client; private RequestFormatHelper _requestFormatHelper; private ResponseFormatHelper _responseFormatHelper; // ... public ApiAdapter() { _client = new HttpClient(/* ... */); ... (more)
category: Agile | clicked: 0 | comment | | source: www.beletsky.net
tags: Refactoring, TDD
8
Shouts

Dean Hume - Selenium 2 - Get Number of Rows in a Table

published 819 days, 8 hours, 51 minutes ago posted by deanomachinodeanomachino 819 days, 18 hours, 17 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Monday, February 21, 2011 8:58:07 AM GMT
Selenium 2 - Get Number of Rows in a Table I was recently browsing through some of the questions on StackOverflow and came across this question. The question was around how you would count the number of rows in a table using Selenium 2 and Python. If you need a bit of a background to Selenium 2, I have written a little about it before. Now although the question was about the Python API, I wanted to try and get it working using the C# API. It was a pretty basic question and I wasn't really workin... (more)
category: Web Dev | clicked: 8 | comment | | source: deanhume.com
tags: C#, Selenium 2, Selenium
9
Shouts

Silverlight 4: Creating useful base classes for your views and viewmodels with PRISM 4 - Alex van Beek

published 819 days, 8 hours, 51 minutes ago posted by alexbalexb 819 days, 16 hours, 20 minutes ago
Monday, February 21, 2011 6:24:18 PM GMT Monday, February 21, 2011 10:54:44 AM GMT
When you are developing Silverlight applications following the MVVM pattern, you will eventually run into the fact that you’ll have to create a base class for your viewmodel classes. This post will show how to create a useful base class for your viewmodel classes and also how to create a base class for your view classes, which a lot of developers don’t do. In the end, I will show how to wire everything up. (more)
category: Metro | clicked: 4 | comment | | source: blogs.infosupport.com
tags: Silverlight, MVVM, Prism
6
Shouts

Extension methods and clean code

published 826 days, 6 hours, 44 minutes ago posted by http://www.beletsky.net/http://www.beletsky.net/ 830 days, 14 hours, 5 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Thursday, February 10, 2011 1:10:17 PM GMT
Extension methods is one of my favorite features of C# language. It appeared from version 3.0 and became very popular. The main goal of Extension Methods is to provide ability of extension of any class, without creating any derived classes, modifying original type or do "whatever" hacks. It is allowed to extend any type with any functionality in a very seamless fashion. What also great about Extension Methods is they allow to beautifully emulate behavior usually called pipelining (in F# or Bash) and i... (more)
category: Agile | clicked: 1 | comment | | source: www.beletsky.net
tags: .NET, clean code
5
Shouts

C#/.NET Little Wonders - All The Wonders In Their Glory

published 827 days, 16 hours, 47 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 830 days, 50 minutes ago
Sunday, February 13, 2011 10:28:02 AM GMT Friday, February 11, 2011 2:25:16 AM GMT
The Little Wonders series of posts are a collection of posts I've done that sing the praises of those lesser-known features of the .NET Framework. While they may not be headline grabbing, these little wonders help make our lives as developers easier by making our code more readable, maintainable, or performant. (more)
category: Web Dev | clicked: 0 | comment | | source: geekswithblogs.net
tags: .NET, Little Wonders, C#
7
Shouts

C#/.NET Little Wonders: The Concurrent Collections (1 of 3)

published 826 days, 6 hours, 44 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 830 days, 48 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Friday, February 11, 2011 2:26:44 AM GMT
C#/.NET Little Wonders: The Concurrent Collections (1 of 3) Once again we consider some of the lesser known classes and keywords of C#.  In the next few weeks, we will discuss the concurrent collections and how they have changed the face of concurrent programming. This week’s post will begin with a general introduction and discuss the ConcurrentStack and ConcurrentQueue. (more)
category: Web Dev | clicked: 3 | comment | | source: geekswithblogs.net
tags: .NET, Little Wonders, stack, C#, PTL, Threading, Concurrent Collections, queue
6
Shouts

Web.NET: .NET Reflector is becoming a paid-for product

published 826 days, 6 hours, 44 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 829 days, 6 hours ago
Monday, February 14, 2011 8:31:05 PM GMT Friday, February 11, 2011 9:15:02 PM GMT
As you may already have learned the famous .NET Reflector created by Lutz Roeder almost a decade ago that was always free to use is becoming a paid-for product thanks to Red Gate Software. The decision is confirming the worst suspicions many had when first heard about Lutz's agreement with the Red Gate and has already created a massive controversy in development communities. For those who do not remember the .NET Reflector was born in the beginning of 2000s and has quickly become one of the must-have... (more)
category: How To | clicked: 2 | comment | | source: blog.turlov.com
tags: Community, Reflector
6
Shouts

Left Outer Join in LINQ to Entities (for Entity Framework 4)

published 826 days, 6 hours, 44 minutes ago posted by ioannisioannis 828 days, 20 hours, 25 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Saturday, February 12, 2011 6:49:57 AM GMT
In this post we will explore the most practical ways of performing left outer joins in LINQ to Entities for Entity Framework 4. (more)
category: How To | clicked: 9 | comment | | source: www.progware.org
tags: linq left outer join, Linq To Entities, Entity Framework 4
8
Shouts

XNA for Silverlight developers: Part 3 - Animation (transforms)

published 827 days, 16 hours, 47 minutes ago posted by KMilKMil 831 days, 13 hours, 10 minutes ago
Sunday, February 13, 2011 10:28:02 AM GMT Wednesday, February 09, 2011 2:05:00 PM GMT
In this next article from his XNA series on SilverlightShow, Peter Kuhn discusses animation in general and how it is done in XNA in particular. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
tags: XNA, Animation
10
Shouts

Put Stuff in Your Windows Azure Junk Trunk – ASP.NET MVC Application « Composite Code

published 826 days, 6 hours, 44 minutes ago posted by http://compositecode.com/http://compositecode.com/ 830 days, 6 hours, 41 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Thursday, February 10, 2011 8:34:29 PM GMT
If you haven’t read Part 1 of this series, you’ll need to in order to follow along with the JunkTrunk Repository.  Open the solution up if you haven’t already and navigate to the Models Folder... (more)
category: Web Dev | clicked: 0 | 2 comments | | source: compositecode.com
8
Shouts

ASP.NET MVC 3 - Razor based blog engine with SQL CE 4.0

published 827 days, 16 hours, 47 minutes ago posted by danielpalmedanielpalme 831 days, 12 hours, 59 minutes ago
Sunday, February 13, 2011 10:28:02 AM GMT Wednesday, February 09, 2011 2:16:11 PM GMT
Implementation of a blog engine based on ASP.NET MVC 3, Entity Framework 'Code First' and SQL CE 4.0 (more)
category: Web Dev | clicked: 23 | 1 comment | | source: www.palmmedia.de
9
Shouts

Adding Rails like ActionController and RespondWith in ASP.NET MVC with RESTful way - Kazi Manzur Rashid

published 827 days, 16 hours, 47 minutes ago posted by iftekharahmedamitiftekharahmedamit 831 days, 5 hours, 2 minutes ago
Sunday, February 13, 2011 10:28:02 AM GMT Wednesday, February 09, 2011 10:13:12 PM GMT
In this post, I will again try to add some goodness from Rails into the ASP.NET MVC Framework, this time I will show you how you can create Rails like ActionController as well as add Rails3 respond_with feature in ASP.NET MVC. But before moving forward. let me give you a brief overview of the Rails def... (more)
category: Web Dev | clicked: 3 | 2 comments | | source: kazimanzurrashid.com
tags: ASP.NET MVC, Rails, RESTful
8
Shouts

MSDN Magazine: Windows Phone 7 Apps - Build Data-Driven Apps with Windows Azure and Windows Phone 7

published 895 days, 10 hours, 10 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 898 days, 4 hours, 37 minutes ago
Tuesday, December 07, 2010 5:04:41 PM GMT Saturday, December 04, 2010 10:38:11 PM GMT
The performance of data-driven Windows Phone 7 apps relies on both good UI coding practices and snappy access to data. We’ll cover some important design considerations for using Windows Azure effectively with Windows Phone apps. (more)
category: Metro | clicked: 1 | comment | | source: msdn.microsoft.com
tags: WindowsPhone7, WindowsPhone, Windows Phone 7, WP7, wp7dev, MSDN, Windows Phone, MVVM, MSDN Magazine, Azure
6
Shouts

MSDN Magazine: BDD Primer - Behavior-Driven Development with SpecFlow and WatiN

published 891 days, 10 hours, 27 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 898 days, 4 hours, 36 minutes ago
Saturday, December 11, 2010 4:47:49 PM GMT Saturday, December 04, 2010 10:39:33 PM GMT
Behavior-Driven Development techniques let you test and code in the language of your business scenario. We’ll explain how the BDD cycle wraps traditional Test-Driven Development techniques and walk you through an example BDD development cycle for an ASP.NET application. (more)
category: How To | clicked: 5 | comment | | source: msdn.microsoft.com
tags: TDD, MSDN, BDD, Behavior Driven Development, MSDN Magazine
Previous 1 2 3 4 5 6 7 8 9 10 11 12 ... 26 27 Next