pinaldave

Stories kicked by friends of pinaldave

Telerik RadControls for Windows Phone – Article #8 – RadHubTile(windowsphonerocks.com)

submitted by isenthilisenthil(2309) 23 hours, 6 minutes ago

The RadHubTile control which is a part of the Telerik RadControls for Windows Phone suite brings the Windows Phone home screen experience to your App . read more...

add a comment |category: |Views: 0

tags: another

Using ASP.NET MVC 4, ApiControllers and SQL Server 2012(galratner.com)

submitted by galratnergalratner(334) 4 days, 21 hours ago

ASP.NET MVC continues to innovate and in its current version (4) it offers support for Web APIs. Today we are going to examine a real life scenario of using Web APIs along with MVC 4 as we are utilizing the Google Earth plug-in to mark a defined area and SQL Server 2012 geography type to help us persist and calculate GIS data. In our example we are going to mark an area on the globe using a polygon, calculate the center of the area, find all of the coffee shops closest to the center of the area and arrange them by distance. We are going to mark them on the map as well as show a full list including ranking. read more...

add a comment |category: |Views: 180

tags: another

Developer Productivity Tools and Visual Studio Extensions(www.mehdi-khalili.com)

submitted by dpetersondpeterson(4397) 6 days, 3 hours ago

Mehdi Khalili shares what's in his toolbox for Visual Studio. It's a curated list of some of the best productivity boosters available. read more...

1 comment |category: |Views: 405

tags: another

Code First Approach using Entity Framework 4.1, Inversion of Control, (dotnetslackers.com)

submitted by akhilmittal20akhilmittal20(66) 6 days, 11 hours ago

Code First Approach using Entity Framework 4.1, Inversion of Control read more...

2 comments |category: |Views: 205

tags: another

How to find if the Application is returning from Dormant or Tombstoned(windowsphonerocks.com)

submitted by isenthilisenthil(2309) 8 days, 22 hours ago

Windows Phone Mango, when the App is deactivated, it puts the App into the dormant state. This state provides the Fast Switching support read more...

add a comment |category: |Views: 2

tags: another

C#/.NET Little Wonders: Select() and Where() with Indexes(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 9 days, 16 hours ago

We’ve talked about the Select() and Where() LINQ extension methods before. The Select() method lets you project from the source type to a new type, and the Where() method lets you filter the list of items to the ones you are interested in. Most people know of these methods in their simplest form, where they simply take a projection and predicate respectively that operates on just an element. However, there are overloads for both of these methods that take a delegate that operates on both the element and the index of the element. read more...

1 comment |category: |Views: 284

tags: another

Basic HTTP authentication in ASP.NET Web API using membership provider(www.piotrwalat.net)

submitted by pwalatpwalat(44) 9 days, 17 hours ago

Blog pos showingt how to provide Basic HTTP authentication in ASP.NET Web API with support for membership and role providers by extending framework’s AuthotrizeAttribute. read more...

1 comment |category: |Views: 260

tags: another

Towards more secure password hashing in ASP.NET(www.dotnetnoob.com)

submitted by klingsklings(50) 10 days, 7 hours ago

A lot can be done to increase security of how password hashes are created and stored in ASP.NET applications. This article explains more about the PBKDF2 algorithm found in the framework, and how to configure it for more secure password hashing. read more...

add a comment |category: |Views: 198

tags: another

Implementing message handlers to track your ASP.NET Web API usage(www.strathweb.com)

submitted by fdubfdub(281) 10 days, 18 hours ago

Using DelegatingHandlers, building a functionality that checks for an API key on an incoming API request and then logs all requests and responses, thus allowing you to track the usage of your API. read more...

1 comment |category: |Views: 157

tags: another

Ten features I like about Coffeescript(openmymind.net)

submitted by dpetersondpeterson(4397) 11 days, 3 hours ago

Karl Seguin shares ten features he likes in Coffeescript. A great list for anyone learning Coffeescript, or anyone who isn't yet familiar with Coffeescript. read more...

1 comment |category: |Views: 199

tags: another

EF5 Release Candidate Now Available(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 11 days, 3 hours ago

The release candidate for Entity Framework 5.0 is now available on Codeplex. There have been several new improvements since beta 2. read more...

4 comments |category: |Views: 276

tags: another

Consuming RSS feeds in ASP.NET(www.keivansadra.com)

submitted by techiemaetechiemae(64) 11 days, 13 hours ago

RSS (Really Simple Syndication) is an incredibly easy way to display content from other websites in all types of industries. You can also publish your own RSS feeds so that people can display your content on their website with incredible ease. I plan on showing both methods in this article. read more...

1 comment |category: |Views: 111

tags: another

Creating Type Aliases in C#(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 11 days, 18 hours ago

The using directive of the C# programming language is often used to create namespace aliases, allowing types with matching names that appear in separate namespaces to be easily accessed. A lesser known use of the directive is to create aliases for types. read more...

2 comments |category: |Views: 266

tags: another

Fix for IntelliSense feature in SSMS 2008 R2 may stop working ...(www.ginktage.com)

submitted by isenthilisenthil(2309) 14 days, 5 hours ago

Today , i encountered a wiered thing in my SQL Server Management Studio 2008 R2 where the intellisense was somehow not working in SSMS 2008 R2 read more...

add a comment |category: |Views: 9

tags: another

Output caching in ASP.NET Web API(www.strathweb.com)

submitted by fdubfdub(281) 14 days, 6 hours ago

Caching output of the ASP.NET Web API Controllers' actions using a custom ActionFilterAttribute read more...

add a comment |category: |Views: 180

tags: another

Creating a Centralized NuGet Packages Folder(www.chrispoulter.com)

submitted by chrispoulterchrispoulter(105) 15 days, 2 hours ago

I would imagine most people by now will have discovered and use the NuGet Visual Studio extension (http://www.nuget.org/). It is a great way of adding and maintaining 3rd party code libraries in your projects. One problem I find though is that every time I create a new project or solution I end up installing the same old NuGet packages. By default NuGet downloads the source code for these packages into a new "packages" folder in your project/solution root directory. This means I have the same source code downloaded multiple times, in multiple locations. This can easily be fixed as you can... read more...

1 comment |category: |Views: 156

tags: another