Klugger
Name: Klugger
Score: 16,945.71
Last Seen: 472 days, 22 hours, 43 minutes ago
Member Since: 19 January, 2009
DotNetShoutout
atom rss
7
Shouts

SLARToolkit Preannouncement

published 1188 days, 4 hours, 16 minutes ago posted by http://kodierer.blogspot.com/http://kodierer.blogspot.com/ 1188 days, 19 hours, 37 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 7:57:33 PM GMT
Rene Schulte pre-announces: SLARToolkit - The Silverlight Augmented Reality Toolkit. The aim for SLARToolkit is to make Augmented Reality with Silverlight as easy as possible, fast and open source. With this everyone will be able to make Silverlight Augmented Reality applications. (more)
category: Metro | clicked: 1 | comment | | source: kodierer.blogspot.com
tags: webcam, Silverlight, AR, 3D, SLARToolkit
9
Shouts

Visual Studio 2010 RC first look and Windows Azure Tools

published 1187 days, 1 hour, 42 minutes ago posted by KhaledKhaled 1189 days, 1 hour, 18 minutes ago
Wednesday, February 17, 2010 1:51:42 PM GMT Monday, February 15, 2010 2:16:22 PM GMT
As promised in the previous post, here is a first look on Visual Studio 2010 RC.  i am sure many of you have downloaded the bits already so this is for those who are waiting yet.  VS 2010 RC is an upgrade to the Beta 2 that was shipped last year.  This build has been heavily focussed on implementing community feedback and fixing performance issues reported.  The start up screen looks as below.  A little darker compared to the Beta 2 build. (more)
category: How To | clicked: 0 | comment | | source: geekswithblogs.net
7
Shouts

ASP.NET MVC 2 Model Validation | MIKE

published 1188 days, 4 hours, 16 minutes ago posted by http://mchambaud.myopenid.com/http://mchambaud.myopenid.com/ 1188 days, 22 hours, 32 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 5:02:27 PM GMT
ASP.NET MVC 2 Model Validation In projects I usually work on, we always use a data validation framework. But now in ASP.NET MVC 2 you can do it just as you would using a framework. You need to write your model with the proper validation attributes. using System; using System.ComponentModel.DataAnnotations; namespace FunWithMvc2RC2 { public class Test { // StringLenght [StringLength(5, ErrorMessage = "Maximum 25 Characters")] public string StringLength { get; set; } ... (more)
category: Web Dev | clicked: 4 | comment | | source: helios.ca
tags: ASP.NET MVC 2.0, MVC 2 Model Validation, MVC 2
8
Shouts

HerdingCode - Episode 73: Daniel Plaisted on Model-Based Testing in Action on the MEF Team

published 1188 days, 4 hours, 16 minutes ago posted by mithumithu 1188 days, 22 hours, 19 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 5:15:21 PM GMT
This week on Herding Code, Jon leads a discussion with Daniel Plaisted about Model-Based Testing and the progressive practices of the MEF team. Daniel speaks of the primary development roles at Microsoft and how the MEF team addresses testing concerns. Guess what. Developers write tests, too. Daniel talks about Model-Based Testing and validation of transitions and states. Scott K is reminded of a presentation he attended at Northwest Python Day which spoke of protocol and framework testing. Daniel sha... (more)
category: Podcast | clicked: 1 | comment | | source: herdingcode.com
tags: MEF, HerdingCode
9
Shouts

HerdingCode - Episode 72: Questioning Uncle Bob, Clojure Magic, Mercurial Support at Codeplex, Thoughts About the iPad and Handerpants

published 1188 days, 4 hours, 16 minutes ago posted by mithumithu 1188 days, 22 hours, 23 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 5:10:48 PM GMT
This week on Herding Code, the gang discusses Uncle Bob’s self-titled blatherings about DI, IoC and Mocking, Clojure and polyglot programming, managed javascript, and recent support for Mercurial at Codeplex. The show finishes up with another K Scott Lightning Round with questions about the iPad and non-technical blog recommendations. Uncle Bob recently published two articles which are a little down on DI, IoC and Mocking. Was he merely trying to get a rise out of the community or was he sending a subt... (more)
category: Podcast | clicked: 1 | comment | | source: herdingcode.com
tags: iPad, ALT.NET, HerdingCode
7
Shouts

Top Reasons why HTML 5 is not ready to replace Silverlight

published 1188 days, 4 hours, 16 minutes ago posted by bartczernickibartczernicki 1188 days, 19 hours, 29 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 8:05:18 PM GMT
This article covers the top reasons why HTML 5 is not ready to replace Silverlight RIA technology to deliver rich web experiences. (more)
category: Metro | clicked: 0 | comment | | source: silverlighthack.com
6
Shouts

Patch for VS 2010 RC Intellisense Crash Issue Now Available - Scott Guthrie

published 1188 days, 4 hours, 16 minutes ago posted by iftekharahmedamitiftekharahmedamit 1188 days, 18 hours, 27 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 9:07:08 PM GMT
Last week I blogged about an intellisense crashing issue that is unfortunately in the VS 2010 RC.  Crash Symptom If you are encountering frequent VS 2010 crashes when you are typing in the editor while Intellisense is popping up and/or being dismissed then you are running into this issue.Patch Now Available This morning we made available a VS 2010 RC patch which fixes this iss... (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: VS2010 RC, VS 2010, VS2010, Intellisense, VS 2010 RC, ScottGu
7
Shouts

Reducing Complexity: WCF and AOP with Castle.DynamicProxy

posted by devstuff2devstuff2 1188 days, 18 hours, 35 minutes ago
Monday, February 15, 2010 8:58:40 PM GMT
Managing logging and exception handling in WCF applications can be very time-consuming. Cross-cutting concerns can become a great burden and generate a lot of work for us. Today, I played a little bit with AOP and Castle Dynamic Proxy (DP) library. If you’re not familiar with AOP please take a look at this. Before I even started with DP, I also considered PostSharp, but eventually I decided to go with DP. Reason: I just don’t like things integrated into VS and doing stuff I cannot fully control. It can... (more)
category: Architecture | clicked: 15 | comment | | source: www.reducingcomplexity.com
tags: AOP, Castle.DynamicProxy, WCF
7
Shouts

JEF CLAES ON .NET AND LIFE: Webforms lessons learned the hard way (Part 2)

published 1188 days, 4 hours, 16 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1188 days, 20 hours, 18 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Monday, February 15, 2010 7:16:31 PM GMT
If you missed part 1, you can find it here. Use the built-in goodies ASP.NET Webforms has a lot of good stuff built into it. Do your homework before you start building the next big Webforms thing! A perfect example of this is ASP.NET Membership. ASP.NET provides an out-of-box membership solution. I've seen people who were to lazy to do some research or thought they could do better and ended up with a solution which put its doors wide open to people with bad intentions. When a feature doesn't exa... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: WebForms, Best Practices
9
Shouts

Moses' Blog | KiGG Design And Architecture – Part 4 Inside Infrastructure

published 1200 days, 4 hours, 13 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1201 days, 15 hours, 40 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Tuesday, February 02, 2010 11:53:52 PM GMT
Introduction This is part 4 of this series which I don’t know when it will ends :o). In part 3 I started to to explore the Core of KiGG. In this part we are still inside the core, but we are going further deep to have a look inside the infrastructure. I’m going to talk about infrastructure for the next couple of posts or maybe more. Because actually it contains the heart of KiGG. Infrastructure Elements I’m going to explore 2 elements of Infrastructure in this post, Bootstrapper and Background Tasks.... (more)
category: Architecture | clicked: 8 | 1 comment | | source: mosesofegypt.net
tags: EF, ASPNETMVC, DotNetShoutout, entityframework, KiGG
10
Shouts

HerdingCode - Episode 71: James Avery and Rob Conery on NoSQL and a bunch of other stuff

published 1199 days, 6 hours, 25 minutes ago posted by mithumithu 1201 days, 20 hours, 21 minutes ago
Friday, February 05, 2010 9:09:01 AM GMT Tuesday, February 02, 2010 7:12:52 PM GMT
James and Rob invade this week’s show to discuss NoSQL, the ASP.NET MVC vs WebForms debate, TekPub and all kinds of other stuff. Object Databases and NoSQL, ORM are so last year James challenges the idea that all data must reside in a relational databases for everything Rob won’t go to the bar in an 18-wheeler. Graph databases, Object Databases, Document Databases Doesn’t an ORM abstract the database away already so what are we saving? James pimps TekPub Rob talks it bit about DDD and how we marry rel... (more)
category: Podcast | clicked: 0 | comment | | source: herdingcode.com
tags: VB, C#, DDD, MSDN, ASP .NET, HerdingCode, MVP
6
Shouts

Code outlining (folding) added to WPF syntax-highlighting code editor control

published 1200 days, 4 hours, 13 minutes ago posted by ActiproActipro 1201 days, 36 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 2:57:53 PM GMT
Check out details and some screenshots on the new code outlining (folding) features that were just added to our syntax-highlighting code editor control for WPF. Run-time functionality matches the outlining features you'll find in Visual Studio 2010. (more)
category: UX | clicked: 8 | 2 comments | | source: tr.im
5
Shouts

Silverlight 4 How to Command Control

published 1200 days, 4 hours, 13 minutes ago posted by KMilKMil 1201 days, 3 hours, 26 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 12:08:08 PM GMT
In this article, Joel Neubeck demonstrates how through the use of commanding and binding you can virtually eliminate all code behind and implement to a strong MVVM architectural pattern. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
5
Shouts

Using FullCalendar jQuery component with ASP.NET MVC

published 1200 days, 4 hours, 13 minutes ago posted by gpeipmangpeipman 1200 days, 22 hours, 4 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 5:30:39 PM GMT
I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. (more)
category: Web Dev | clicked: 69 | comment | | source: weblogs.asp.net
tags: fullcalendar, jQuery, MVC, ASP.NET
5
Shouts

DeepFriedBytes - Episode 43: Talking OData and SQL Modeling Services with Douglas Purdy

published 1200 days, 4 hours, 13 minutes ago posted by mithumithu 1200 days, 22 hours, 24 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 5:10:08 PM GMT
In this episode, Keith and Woody sit down at PDC 2009 with Microsoft’s Douglas Purdy to discuss all things data. Do you remember Oslo from the previous PDC event? Well Oslo has been rebranded to SQL Server Modeling Services to help developers store and manage models for the enterprise. Modeling Services enables you to more productive when building and managing data-driven applications. The guys also get the low down from Douglas on a new web protocol.... (more)
category: Podcast | clicked: 1 | comment | | source: deepfriedbytes.com
tags: SQL Server, developers, PDC 2009, DeepFriedBytes
6
Shouts

Favorite VS2010 Features: Dependency Graphs and DGML - Jason Zander

published 1200 days, 4 hours, 13 minutes ago posted by jantujantu 1201 days, 1 hour, 57 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 1:36:42 PM GMT
As we get closer to the launch of VS2010 I’m covering some of my favorite new feature areas for VS2010.  For this post I’m going to talk about Dependency Graphs and it’s underlying support, DGML.Generating Graphs At some point I’m sure you’ve joined a team (or inherited a code base) which you did not create.  I’m guessing there is a good chance you didn’t wind up getting a fantastic set of documentation or architecture for some of those projects.  W... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: Visual Studio, ALM
8
Shouts

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

published 1200 days, 4 hours, 13 minutes ago posted by derikwhittakerderikwhittaker 1201 days, 3 hours, 26 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: Web Dev | clicked: 2 | comment | | source: www.dimecasts.net
tags: DimeCasts.net, AutoMapper
8
Shouts

BlogEngine.NET 1.6 is Released

published 1200 days, 4 hours, 13 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 1201 days, 19 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 3:14:42 PM GMT
The team is proud to announce the release of BlogEngine.NET version 1.6.  With several new features and numerous improvements and bug fixes, this is a must upgrade version for current BlogEngine.NET users and those interested in entering the blog scene. For those who receive a steady dose of comment spam (and who doesn't!), a new powerful Comment Management and Comment Spam Filtering infrastruture has been added in version 1.6.  Comments across all posts can be viewed, edited, deleted or approved in o... (more)
category: Web Dev | clicked: 0 | comment | | source: code2code.info
9
Shouts

ASP.NET MVC View Model object using C# 4 dynamic and ExpandoObject - Shiju Varghese's Blog

published 1200 days, 4 hours, 13 minutes ago posted by ali62bali62b 1201 days, 8 hours, 37 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 6:57:21 AM GMT
In my last post, I have explained the use of View Model objects in ASP.NET MVC applications. In this post, let me discuss on view model objects by using the C# 4 dynamic and ExpandoObject. I do not recommending to use dynamic keyword for creating View Model objects that will loss the intellisense feature of Visual Studio.    publicActionResultList() {     dynamicviewModel = newExpandoObject();     viewModel.ContactGroup = contactRepository.ListGroups().ToSelectListItems(-1);     returnView(viewMode... (more)
category: Web Dev | clicked: 3 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, dynamic, C# 4.0, ViewModel
11
Shouts

Innovation Showcase : Controlling Your Testing Costs with Windows Azure

published 1199 days, 6 hours, 25 minutes ago posted by wzackwzack 1200 days, 11 hours, 10 minutes ago
Friday, February 05, 2010 9:09:01 AM GMT Thursday, February 04, 2010 4:23:54 AM GMT
Controlling Your Testing Costs with Windows Azure Windows Azure is based on an Operating Expense (OPEX) billing model as opposed to a Capital Expenditure (CAPEX) billing model. The implication of OPEX is that you do not have to expend capital to buy hardware and software or to pay for support staff to maintain it. That is the good news. The (potentially) bad news is that “In Windows Azure you are billed when you deploy, not when you run. (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com