http://kazimanzurrashid.myopenid.com/
Name: http://kazimanzurrashid.myopenid.com/
Score:
Last Seen: 478 days, 23 hours ago
Member Since: 19 November, 2008
DotNetShoutout
atom rss
9
Shouts

Xaml color scheme generator

published 1270 days, 12 hours, 31 minutes ago posted by http://rickrat.myopenid.com/http://rickrat.myopenid.com/ 1272 days, 23 hours, 25 minutes ago
Sunday, December 27, 2009 2:06:50 PM GMT Friday, December 25, 2009 3:12:51 AM GMT
I’ve made a xaml color scheme generator that works with http://colorschemedesigner.com/ It generates a resource dictionary and xaml demo source. In the color scheme generator site, just export to xaml, and save to a file. In the generator, browse for that file, and click convert. (more)
category: UX | clicked: 4 | 1 comment | | source: blogs.compdj.com
3
Shouts

NUnit 2.5.3 and SetUICulture

posted by robashtonrobashton 1279 days, 12 hours, 6 minutes ago
Friday, December 18, 2009 2:31:21 PM GMT
SetUICulture doesn't appear to be working right, so here is a work-around for now. (more)
category: Architecture | clicked: 0 | comment | | source: codeofrob.com
tags: NUnit
4
Shouts

That is testability, not Test Driven Development!

Saturday, December 19, 2009 11:51:04 PM GMT
These are reflections on the blog post on the ADO.Net team blog Walkthrough: Test-Driven Development with the Entity Framework 4.0.. I talk a bit about testability versus Test Driven Development to avoid some of the confusion that seems to be growing around the two topics. (more)
category: Architecture | clicked: 0 | comment | | source: geekswithblogs.net
tags: Design, TDD, Testability, unit testing
12
Shouts

ASP.NET MVC - Prevent Image Leeching with a Custom RouteHandler

published 1268 days, 13 hours, 8 minutes ago posted by MikesdotnettingMikesdotnetting 1272 days, 4 hours, 4 minutes ago
Tuesday, December 29, 2009 1:29:13 PM GMT Friday, December 25, 2009 10:33:07 PM GMT
ASP.NET MVC - Prevent Image Leeching with a Custom RouteHandler   Have you ever noticed an unusually high number of requests in your web server log files for image files? It may well be that someone is linking to your images from their own site, and basically stealing your bandwidth. Here's how to implement a custom RouteHandler within an ASP.NET MVC application to prevent people leeching your images.   To begin with, I'll start by reviewing the flow of execution when a request comes ... (more)
category: Web Dev | clicked: 5 | comment | | source: www.mikesdotnetting.com
tags: ASPNETMVC
10
Shouts

Visual Studio 2010 and .NET 4 Update - Scott Guthrie

published 1277 days, 10 hours, 53 minutes ago posted by jantujantu 1279 days, 15 hours, 34 minutes ago
Sunday, December 20, 2009 3:44:28 PM GMT Friday, December 18, 2009 11:04:01 AM GMT
In October we shipped the public Beta 2 release of Visual Studio 2010 and .NET 4.  The feedback on the new features in VS 2010 and .NET 4 has been really great.  I’ve been working on a blog series about some of them (lots more posts to go!) and have also had a chance to present them to a broad range of audiences – and it has been great hearing the excitement people have about them. At the same time, though, we’ve also received feedback that the performance and virtual memory usage of VS 2010 Beta 2 is n... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, Visual Studio, ScottGu, Community News
13
Shouts

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

published 1278 days, 16 hours, 23 minutes ago posted by derikwhittakerderikwhittaker 1280 days, 15 hours, 28 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: 1 | 1 comment | | source: www.dimecasts.net
tags: C# 4.0 .NET, DimeCasts.net, Tuple
7
Shouts

VistaDB 4.1 Announcement with Microsoft Sync Framework Support

published 1281 days, 14 hours, 54 minutes ago posted by http://vistadb.myopenid.com/http://vistadb.myopenid.com/ 1282 days, 5 hours, 50 minutes ago
Wednesday, December 16, 2009 11:43:56 AM GMT Tuesday, December 15, 2009 8:47:51 PM GMT
We are finally ready to unveil some of the things we have been hard at work on since the release of VistaDB 4.0.  One of the largest announcements is that we are going to support two way sync through the Microsoft Sync Framework ( Version 2 ).  Sync has been a huge source of time wasted for us in the past through Sync 1, but it finally appears Microsoft has stabilized the API in Version 2 and is shipping it with Visual Studio 2010. Two Tier Sync using Sync Framework V2 (more)
category: Data | clicked: 17 | comment | | source: www.vistadb.net
tags: VistaDB, SQL, Sync Framework 2.0
9
Shouts

Pluralcast | .NET Podcast

published 1280 days, 16 hours, 11 minutes ago posted by meagonmeagon 1282 days, 4 hours, 24 minutes ago
Thursday, December 17, 2009 10:26:45 AM GMT Tuesday, December 15, 2009 10:13:58 PM GMT
Pluralsight, a global leader in Microsoft .NET training, today announced the launch of the Pluralcast podcast series. Pluralsight launched Pluralcast as another avenue to inform customers and prospects about innovations, developments and thinking in the .NET developer space, and to update customers, prospects and partners on the latest training movements and industry trends from a variety of industry perspectives. For more information, please visit http://www.pluralsight.com/main/pluralcast/default.aspx.... (more)
category: Podcast | clicked: 6 | comment | | source: www.pluralsight.com
11
Shouts

SQL SERVER – Difference TempTable and Table Variable – TempTable in Memory a Myth « Journey to SQL Authority with Pinal Dave

published 1280 days, 16 hours, 11 minutes ago posted by pinaldavepinaldave 1282 days, 8 hours, 9 minutes ago
Thursday, December 17, 2009 10:26:45 AM GMT Tuesday, December 15, 2009 6:28:19 PM GMT
Recently, I have been conducting many training sessions at a leading technology company in India. During the discussion of temp table and table variable, I quite commonly hear that Table Variables are stored in memory and Temp Tables are stored in TempDB. I would like to bust this misconception by suggesting following: Temp Table and Table Variable — both are created in TempDB and not in memory. Let us prove this concept by running the following T-SQL script. /* Check the difference between Temp Table... (more)
category: Data | clicked: 0 | comment | | source: blog.sqlauthority.com
tags: SQL, SQLServer, pinaldave, SQLAuthority
8
Shouts

Demystifying LINQ Aggregates

published 1282 days, 14 hours, 56 minutes ago posted by http://jkolpack.myopenid.com/http://jkolpack.myopenid.com/ 1284 days, 6 hours, 33 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Sunday, December 13, 2009 8:04:23 PM GMT
This post aims to dissect the power that exists in the Aggregate LINQ operator. I have realized that most programmers use it sparingly and have decided to put a couple of examples to clarify how you can use the Aggregate operator to perform a few tricks. The screenshot below relates to the small examples that follow. The aggregate operator is interesting in that it enables accumulation of items to form some result. This comes in handy when we need to create new data items from others. In my exampl... (more)
category: How To | clicked: 1 | comment | | source: geekswithblogs.net
tags: Linq
7
Shouts

Windows Ribbon for WinForms, Part 21 – SizeDefinition - Arik Poznanski's Blog

published 1282 days, 14 hours, 56 minutes ago posted by arikarik 1284 days, 4 hours, 25 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Sunday, December 13, 2009 10:12:31 PM GMT
Windows Ribbon for WinForms, Part 21 – SizeDefinition After reviewing the MSDN documentation for the Windows Ribbon Framework I’ve discovered there is only one subject I haven't covered in my ribbon posts. This post comes to rectify this issue. This post is about how to define custom size definitions for ribbon group elements. The post is entirely about ribbon markup, so no changes to the Windows Ribbon for WinForms library. Nevertheless, I’ve uploaded a new sample “18-SizeDefinition” to the project s... (more)
category: UX | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: .NET, Ribbon, Windows 7, C#
11
Shouts

Mindscape LightSpeed 3.0 Released!

published 1281 days, 14 hours, 54 minutes ago posted by traskjdtraskjd 1283 days, 1 hour, 43 minutes ago
Wednesday, December 16, 2009 11:43:56 AM GMT Tuesday, December 15, 2009 12:54:24 AM GMT
Mindscape have released LightSpeed 3.0 - the third version of their .NET O/R Mapper with Visual Studio Integration. LightSpeed 3.0 includes a new migrations framework baked into the visual designer to save developers writing SQL schema migrations, improved querying and LINQ capabilities, testing enhancements and much more. (more)
category: How To | clicked: 1 | comment | | source: www.mindscape.co.nz
tags: LightSpeed, Linq, ORM, migrations, Mindscape
10
Shouts

Mindscape LightSpeed 3 domain modeling and persistence framework

published 1281 days, 14 hours, 54 minutes ago posted by http://vistadb.myopenid.com/http://vistadb.myopenid.com/ 1283 days, 3 hours, 44 minutes ago
Wednesday, December 16, 2009 11:43:56 AM GMT Monday, December 14, 2009 10:53:29 PM GMT
Mindscape has announced a new version of their dot net ORM tool named Mindscape LightSpeed 3.  Version 3 includes support for VistaDB 4 and a lot of other new features.  Priced at only $199 per developer (source is available for an extra fee) LightSpeed is a very cost effective tool to add to any developers tool belt.  There is also a free version available for databases with less than eight tables if you just want to take the product for a test drive. We recently spoke with John-Daniel Trask of Minds... (more)
category: Data | clicked: 0 | comment | | source: www.vistadb.net
tags: VistaDB, Visual Studio, Database, LightSpeed, ORM
7
Shouts

Introducing Slex - Silverlight Experimental Hacks – Now you’ve a PropertyTrigger, EventTrigger, InvokeCommandAction etc.

published 1282 days, 14 hours, 56 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 1283 days, 7 hours, 34 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Monday, December 14, 2009 7:03:25 PM GMT
Slex is built on top of System.Windows.Interactivity framework, and supports a couple of interesting Triggers and Actions. This includes EventTrigger, PropertyTrigger, InvokeCommandAction, InvokeMethodAction etc. This is the intro screen of the related demo, and I’ll explain a bit on each item. The download link ... (more)
category: Metro | clicked: 0 | 1 comment | | source: amazedsaint.blogspot.com
tags: .NET, Silverlight, Blend, Visual Studio
6
Shouts

Battleship - Open Source Silverlight Game.

published 1282 days, 14 hours, 56 minutes ago posted by http://ailon.livejournal.com/http://ailon.livejournal.com/ 1283 days, 14 hours, 34 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Monday, December 14, 2009 12:03:55 PM GMT
Here's an open source Silverlight Battleship game. Sources are released under Ms-PL. (more)
category: Metro | clicked: 7 | comment | | source: games.ailon.org
tags: Silverlight, Game
7
Shouts

BDD with MSpec and Rhino Auto Mocks (part 3) « Tell don't ask

posted by http://telldontask.wordpress.com/http://telldontask.wordpress.com/ 1283 days, 16 hours, 18 minutes ago
Monday, December 14, 2009 10:19:18 AM GMT
November 29, 2009BDD with MSpec and Rhino Auto Mocks (part 3)Filed under: BDD, MSpecs, RhinoMocks — telldontask @ 7:09 pm Tags: Agile, BDD, MSpecs, RhinoMocks In part 1 and part 2 we covered setting up MSpec, writing our specifications and then implementing one of those specifications. So far we’ve covered very simple tests for code which has no external dependencies and does very little. Now we’ll turn our attention to those tests which (on the face of it) are more complicated and cover code whic... (more)
category: Agile | clicked: 3 | comment | | source: telldontask.wordpress.com
tags: MSpec, ASP .NET, BDD, MVC
6
Shouts

HanselMinutes - Show #192 - The Spark View Engine for ASP.NET MVC with Louis DeJardin

posted by mithumithu 1284 days, 7 hours, 53 minutes ago
Sunday, December 13, 2009 6:44:05 PM GMT
Scott chats with new Microsoft employee and ASP.NET team member about his open source ASP.NET MVC ViewEngine called "Spark." It's a totally new DSL (Domain Specific Language) that might make your MVC Views more fun to write! (more)
category: Podcast | clicked: 0 | comment | | source: www.hanselminutes.com
tags: ASP.NET MVC, ASP .NET, Microsoft, DSL, HanselMinutes, MVC
7
Shouts

HerdingCode - Episode 65: Scott Hanselman on His Secret Ninja Squad and Jon’s new job (bonus: netbook operating system install clinic!)

posted by mithumithu 1284 days, 7 hours, 43 minutes ago
Sunday, December 13, 2009 6:54:08 PM GMT
In this episode, we talk to Scott Hanselman about Jon’s new job with Microsoft, how (if at all) that affects this podcast, and running Ubuntu on a Dell Mini 9. Scott H talks about how, other than the obvious request to get Scott Koon removed from the show, there’s no need to fear any changes to Herding Code. Scott H bemoans the fact that people are so quick to attribute opinions to “working for the man”. The group discusses whether Scott’s demonstration of a datagrid in Scott Guthrie’s PDC keynote cons... (more)
category: Podcast | clicked: 0 | comment | | source: herdingcode.com
tags: ASP.NET MVC, ASP .NET, HerdingCode, PDC, MVC
9
Shouts

Dependency Injection with Ninject

published 1288 days, 8 hours, 56 minutes ago posted by poweredbyaltnetpoweredbyaltnet 1289 days, 23 hours, 42 minutes ago
Wednesday, December 09, 2009 5:41:50 PM GMT Tuesday, December 08, 2009 2:55:14 AM GMT
Basic dependency injection with Ninject (more)
category: Architecture | clicked: 2 | comment | | source: poweredbyalt.net
tags: Ninject, dependency injection
8
Shouts

dnrTV - Show #161 - Rocky Lhotka on the MVVM Pattern in CSLA .NET 3.8

published 1287 days, 11 hours, 58 minutes ago posted by mithumithu 1289 days, 21 hours, 1 minute ago
Thursday, December 10, 2009 2:39:31 PM GMT Tuesday, December 08, 2009 5:36:39 AM GMT
Rocky Lhotka has released a new version of CSLA .NET that supports the MVVM pattern. Rocky shows us the details of what he has added and goes through a few intriguing demonstrations. (more)
category: Screencast | clicked: 4 | 1 comment | | source: www.dnrtv.com
tags: CSLA .NET 3.8, CSLA.NET, dnrTV, MVVM
Previous 1 2 ... 4 5 6 7 8 9 10 11 12 13 Next