Alex
Name: Alex
Score: 10,283.57
Last Seen: 743 days, 7 hours, 38 minutes ago
Member Since: 8 February, 2009
DotNetShoutout
atom rss
8
Shouts

Browser Power Consumption—Leading the Industry with Internet Explorer 9 - IEBlog

published 810 days, 14 hours, 35 minutes ago posted by iftekharahmedamitiftekharahmedamit 813 days, 12 hours, 56 minutes ago
Friday, April 01, 2011 10:22:51 PM GMT Wednesday, March 30, 2011 12:02:40 AM GMT
Power consumption is an important consideration in building a modern browser and one objective of Internet Explorer 9 is to responsibly lead the industry in power requirements. The more efficiently a browser uses power the longer the battery will last in a mobile device, the... (more)
category: How To | clicked: 0 | 2 comments | | source: blogs.msdn.com
tags: Internet Explorer 9, IE 9, IE9, Internet Explorer, IE
8
Shouts

Scaffolding Actions and Unit Tests with MvcScaffolding - Steve Sanderson’s blog

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 813 days, 4 hours, 30 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 8:28:04 AM GMT
This blog post is part of a series about the MvcScaffolding NuGet package:Introduction: Scaffold your ASP.NET MVC 3 project with the MvcScaffolding packageStandard usage: Typical use cases and optionsOne-to-Many RelationshipsThis post: Scaffolding Actions and Unit TestsComing soon: Customizing the T4 templates* Coming soon: Creating entirely new scaffolders with custom PowerShell logic* * Yes, I know those last two have been long delayed. There have been some changes to the extensibility mechanism and ... (more)
category: Web Dev | clicked: 1 | 1 comment | | source: blog.stevensanderson.com
tags: ASP.NET MVC 3, Unit Tests, MVC, ASP.NET
5
Shouts

CLI Built-In Value Types in Managed Code

published 812 days, 15 hours, 51 minutes ago posted by KodefuGuruKodefuGuru 813 days, 1 hour, 25 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 11:33:38 AM GMT
The common language infrastructure has many built-in value types with special encoding directly supported by the virtual execution system. Many are frequently used in common managed languages such as C#. The following chart will help you determine the size of each... (more)
category: How To | clicked: 1 | comment | | source: www.kodefuguru.com
tags: CLI, Types
6
Shouts

My 10 tips for designing phone apps - Alex Knight

published 810 days, 14 hours, 35 minutes ago posted by StevesSteves 812 days, 23 hours, 58 minutes ago
Friday, April 01, 2011 10:22:51 PM GMT Wednesday, March 30, 2011 12:59:47 PM GMT
I have been designing apps for a while now, including apps that target lots of different devices and form factors. I thought it would be good to write a list of the top 10 things I keep in mind when designing and building phone applications. Most of these apply to any application in some way though. These points cover both the design of the experience and some visual tricks that help to make usable apps.1. Considering the user. This might seem like an obvious point, but it's probably the most important ... (more)
category: UX | clicked: 2 | comment | | source: silverzine.com
tags: Silverlight, Windows Phone 7, Windows Phone, phone, Windows Phone 7 Series
5
Shouts

Silverlight, HttpWebRequest, HTTP Stacks and the UI Thread - Mike Taulty's Blog

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 23 hours, 36 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:22:06 PM GMT
This one comes from a customer who thought that they were seeing an issue in using the browser HTTP stack in Silverlight to make lots of HTTP requests. The issue seemed to be that the stack was blocking the UI thread and causing the UI to stutter. The suspicion was that the blocking was occurring while data was being read from the stream that is handed back to you when you’re reading an HTTP response. I thought I’d see if I could reproduce this behaviour myself and so I set out to put something togethe... (more)
category: Metro | clicked: 3 | comment | | source: mtaulty.com
tags: SL, Silverlight
5
Shouts

Enabling dynamic compression (gzip, deflate) for WCF Data Feeds, OData and other custom services in IIS7 - Scott Hanselman

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 23 hours, 33 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:24:53 PM GMT
I'm working on a thing that uses an HttpWebRequest to talk to a backend WCF Data Service and it'd be ideal if the traffic was using HTTP Compression (gzip, deflate, etc). On the client side, it's easy to just add code like thisrequest.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate or more manuallyvar request = HttpWebRequest.Create("http://foofoo"); request.Headers["Accept"] = "application/json"; request.Headers["Accept-Encoding"] = "gzip, deflate"; However, you n... (more)
category: Web Dev | clicked: 23 | 1 comment | | source: www.hanselman.com
tags: IIS7, Compression, WCF, OData
5
Shouts

An Exploration of Dynamic in .NET 4 - Bobby Johnson

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 23 hours, 28 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:30:16 PM GMT
In my spare time I have been working on a Simple.Data provider for Sqlite. Simple.Data is a lightweight ORM written by Mark Rendle that leans heavily on dynamic types and metaprogramming techniques to create an api that is the closest to Ruby’s Active Record that I have ever seen in .NET. I have been using this project as a way to explore the new dynamic features introduced into C# and .NET with version 4. I have discovered some interesting things and wanted to share them. Before we dive too deeply into... (more)
category: How To | clicked: 0 | comment | | source: iamnotmyself.com
5
Shouts

Optimizing Regex Performance, Part 3 [Ron Petrusha] - BCL Team Blog

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 23 hours, 31 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:27:26 PM GMT
Regular expressions in the .NET Framework support a number of grouping constructs, which allow a regular expression pattern to be grouped into one or more subexpressions. Grouping constructs are essential for creating backreferences, as well as for defining a subexpression to which a quantifier is applied. The Performance Impact of Capturing Groups The most commonly used grouping constructs in the .NET Framework regular expression language are (subexpression), which defines a numbered capturing group, a... (more)
category: How To | clicked: 3 | comment | | source: blogs.msdn.com
tags: Performance, Regex
5
Shouts

TFS Build Service Dependencies - Bryan Group

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 23 hours, 26 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:32:23 PM GMT
Anyone who has had to deal with services failing to start (i.e. logon permissions, setting recovery responses [run a program], verifiying dependencies, etc.) knows what a real PITA it can be to track down the culprit of the failure. Having said that I recently had an issue with the "Visual Studio Team Foundation Build Service Host" service. A message box that stated “Cannot start service TFSBuildServiceHost on computer ‘contoso.na.microsoft.net'. (The dependency service or group failed to start)” was pro... (more)
category: How To | clicked: 5 | comment | | source: blogs.msdn.com
tags: TFS
5
Shouts

Rounding Corners using CSS3 - Kirupa Chinnathambi

published 812 days, 15 hours, 51 minutes ago posted by iftekharahmedamitiftekharahmedamit 812 days, 22 hours, 36 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 2:22:34 PM GMT
Every few years, something gets added to HTML or its related technologies that starts off as being cool and trendy. After massive overuse, that "something" ends up being despised and mocked. This cycle of going from adulation to derision repeats itself all the time. For example, two additions that people once loved but pretend never existed are the blink and marquee tags. (Admit it - you know you used them at some point! ) In CSS3, one recent addition is the ability to natively specify rounded corners. ... (more)
category: How To | clicked: 0 | comment | | source: www.kirupa.com
tags: css3, CSS 3, CSS
8
Shouts

Edulinq - the e-book - Jon Skeet

published 813 days, 22 hours, 5 minutes ago posted by iftekharahmedamitiftekharahmedamit 816 days, 1 hour, 41 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 11:17:41 AM GMT
I'm pleased to announce that I've made a first pass at converting the blog posts in the Edulinq series into e-books. I'm using Calibre to convert to PDF and e-book format. I still have a way to go, but they're at least readable. The Kindle version (MOBI format) is working somewhat better than the PDF version at the moment, which surprises me. In particular, although hyperlinks are displaying in the PDF, they don't seem to be working - whereas at least the internal links in the Kind... (more)
category: How To | clicked: 2 | 1 comment | | source: msmvps.com
tags: Ebook, e-Book, Linq
8
Shouts

Producing and Consuming OData in a Silverlight and Windows Phone 7 application. (Part 2 )

published 813 days, 22 hours, 5 minutes ago posted by mbcrumpmbcrump 814 days, 22 hours, 10 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Monday, March 28, 2011 2:48:01 PM GMT
This article is Part 2 of the series “Producing and Consuming OData in a Silverlight and Windows Phone 7 application.”Producing and Consuming OData in a Silverlight and Windows Phone 7 application. (Part 1) – Creating our first OData Data Source and querying data through the web browser and LinqPad.Producing and Consuming OData in a Silverlight and Windows Phone 7 application. (Part 2 ) – Consuming OData in a Silverlight Application.Producing and Consuming OData in a Silverlight and Windows Phone 7 appli... (more)
category: Metro | clicked: 0 | comment | | source: michaelcrump.net
7
Shouts

Metro In Motion Part #2 – ‘Peel’ Animations | Colin Eberhardt's Adventures in WPF

published 812 days, 15 hours, 51 minutes ago posted by FantasticMrFishFantasticMrFish 815 days, 5 hours, 21 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Monday, March 28, 2011 7:37:06 AM GMT
This blog post is part #2 of my Metro In Motion series. In this post I demonstrate how to implement the animated ‘peel’ effect seen when native Windows Phone 7 applications exit. In my previous blog post I discussed how the Metro Design Language that heavily influences the Windows Phone 7 style is not just about static graphics, it is also about fluid transitions. In that post I demonstrated a technique for making items within lists slide gracefully as the user moves between pivot pages. The post was ... (more)
category: Metro | clicked: 4 | comment | | source: www.scottlogic.co.uk
tags: Windows Phone 7, metro
7
Shouts

LightSwitch Beta 2 Content Rollup - Beth Massi

published 813 days, 22 hours, 5 minutes ago posted by iftekharahmedamitiftekharahmedamit 816 days, 1 hour, 36 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 11:21:51 AM GMT
Well it’s been 10 days since we released Visual Studio LightSwitch Beta 2 and we’ve been working really hard to get all of our samples, “How Do I” videos, articles and blog posts updated to reflect Beta 2 changes. Yes, that’s right. We’re going through all of our blog posts and updating them so folks won’t get confused when they find the posts later down the road. You will see notes at the top of them that indicate whether the information only applies to Beta 1 or has been updated to Beta 2 (if there’s n... (more)
category: How To | clicked: 1 | comment | | source: blogs.msdn.com
tags: Visual Studio LightSwitch, Beta, LightSwitch Beta 2, beta 2, LightSwitch
7
Shouts

Lessons Learned developing a Windows Phone 7 App - Cameron Skinner's Blog

published 813 days, 22 hours, 5 minutes ago posted by iftekharahmedamitiftekharahmedamit 816 days, 1 hour, 34 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 11:24:18 AM GMT
Quite a few folks have been playing with the Windows Phone 7 platform, creating all kinds of crazy games, utilities, etc. for this new platform. I am no different. I simply couldn’t help myself, so once I had my new Samsung Focus in hand ( November of last year I believe ), I set out to build a game that I knew I would miss terribly after replacing my iPhone 4. This post is really less about the game however, and more about the various issues I found as I built the game and got it up on the marketplace. ... (more)
category: Smart Client | clicked: 0 | comment | | source: blogs.msdn.com
tags: Windows Phone 7, Windows Phone 7 Development, Windows Phone, Windows Phone 7 Development Tools
7
Shouts

Comparing MVC 3 Helpers: Using Extension Methods and Declarative Razor @helper Syntax - Jon Galloway

published 813 days, 22 hours, 5 minutes ago posted by iftekharahmedamitiftekharahmedamit 816 days, 1 hour, 27 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 11:31:08 AM GMT
HTML Helpers provide a clean way to encapsulate view code so you can keep your views simple and markup focused. There are lots of built in HTML Helpers in the System.Web.Mvc.HtmlHelper class, but one of the best features is that you can easily create your own helpers. While you've been able to create your own helpers since MVC 1 using extension methods, the Razor view engine gives you a new option to create helpers usi... (more)
category: Web Dev | clicked: 12 | 1 comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3, ASP.NET MVC, Extension Methods, Razor Syntax, MVC 3, Helpers, MVC, ASP.NET
6
Shouts

C l e m e n s | VS2010 ALM MTLM usages patterns for Windows Azure hosted application development

published 813 days, 22 hours, 5 minutes ago posted by ClemensReijnenClemensReijnen 814 days, 4 hours, 40 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Tuesday, March 29, 2011 8:18:07 AM GMT
The deck of my presentation covering VS2010 ALM MTLM usages patterns for Windows Azure hosted application development and the handout/ talk through (in the table below, not a real handout. I’m busy changing it to a more paper style document. But thought I better could start sharing it to gather some early feedback.) (more)
category: Architecture | clicked: 0 | comment | | source: www.clemensreijnen.nl
tags: ALM, VS2010, mtlm, Azure
11
Shouts

Entity Framework 4.1 Release Candidate with Go-Live (with Final Release to follow in a month) - Scott Hanselman

published 823 days, 9 hours, 30 minutes ago posted by iftekharahmedamitiftekharahmedamit 825 days, 21 hours, 38 minutes ago
Sunday, March 20, 2011 3:27:49 AM GMT Thursday, March 17, 2011 3:19:45 PM GMT
I was in Redmond this last week and talked to Jeff Derstadt, the Lead Developer on Entity Framework Code First (or, as I say, EF Magic Unicorn). What's the deal with this new feature in Entity Framework? What about the bad rap that EF got back in the day? What's new in EF4 and how does EF Code First sit on that? Which is the right choice, Model First, Database First or Code First? All of this plus demos in this off-the-cuff interview. There's lots of good info in this video including some insight into mu... (more)
category: Architecture | clicked: 4 | comment | | source: www.hanselman.com
tags: EF, Entity Framework, EF 4.1, Entity Framework 4.1, Entity Framework 4.1 Release Candidate
9
Shouts

New EF4 & EF4.1 content on MSDN - Julie Lerman

published 824 days, 21 hours, 44 minutes ago posted by iftekharahmedamitiftekharahmedamit 825 days, 21 hours, 33 minutes ago
Friday, March 18, 2011 3:14:29 PM GMT Thursday, March 17, 2011 3:24:52 PM GMT
I’ve been busily writing and recording screencasts about Entity Framework 4 and 4.1 for MSDN and some of the fruits of my labor are finally online. Although there is much more to come. 1) Drag & Drop Databinding with the Entity Framework and WPF Learn how developers can use the Entity Framework to easily build WPF windows or even master detail windows with WPF with little or even no code at all. 2) Building an MVC 3 App with Code First and Entity Framework 4.1 In this whitepaper... (more)
category: Architecture | clicked: 10 | comment | | source: thedatafarm.com
tags: EF 4.1, EF 4.0, MSDN
9
Shouts

ADO.NET Entity Framework Performance Tips - Wriju's Blog

published 824 days, 21 hours, 44 minutes ago posted by iftekharahmedamitiftekharahmedamit 825 days, 21 hours, 23 minutes ago
Friday, March 18, 2011 3:14:29 PM GMT Thursday, March 17, 2011 3:34:47 PM GMT
Over a period of time I have been working with ADO.NET Entity Framework and I am flattered with its amazing usability. I am a big fan of EF and especially with EF4 release a lot more avenues are open. I love to talk about this technology in any forum and given a chance I would love to work on any implementation and migration. While doing all of these stuffs I found one big question which always comes to our mind is performance and it is quite obvious that for any data access technology performance is a b... (more)
category: Architecture | clicked: 4 | comment | | source: blogs.msdn.com
tags: ADO.NET, Entity Framework, Performance
Previous 1 2 3 4 5 6 7 8 9 10 ... 45 46 Next