19 January 2012 0 Comments

WCF Extensibility – Configuring the Endpoint for WCF RIA Services

This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . And we’re again taking a small detour over the normal flow of the series covering the “proper” WCF extensibility points

Tags: , , , , , , , , , , , ,
27 December 2011 0 Comments

TPL Dataflow and async/await vs CCR – part 5

I got a tip from a co-worker that your choice of waiting for a scatter gather operation as described in part 3 may have a huge performance impact. I made three version of the FibonacciAsync, one that awaits on the return statement, one that uses the Task.WaitAll method and one that just awaits each call as it is made

Tags: , , , , , , ,
12 November 2011 0 Comments

Список для чтения по языку C#

На сегодня всего лишь несколько интересных ссылок.

6 November 2011 0 Comments

Documentary Evidence

You’d think that, with only a couple of different letters, “documentary” and “documentation” were reasonably similar things.

26 October 2011 0 Comments

Top 10 SQL 2012 “Denali” Enhancements for SharePoint

From Joel Oleson’s post at http://www.sharepointjoel.com/Lists/Posts/Post.aspx?List=0cd1a63d-183c-4fc2-8320-ba5369008acb&ID=481 “1. Disaster Recovery and Resiliency Improvements – Always On – this was the big one.

11 October 2011 0 Comments

Sending Windows Phone 7 Notifications from Ruby

Windows Phone 7 supports push notifications that let you do things like send alerts to a WP7 application, or update the tile (icon) for an application.

2 October 2011 0 Comments

Problems with comments

I have heard from two readers that they tried to comment and were unable to, losing the comment upon trying to submit. That is a bummer.  I certainly would love to hear what anyone says, and if you want to just test the comment feature, post a “Hello, World” comment here. I’m sorry to hear of the problem and I’ve asked around and looked the settings

26 September 2011 0 Comments

SharePoint 2010 的 SAML 提醒 – 如果您在应用 SP1 之后应用六月累积更新

原文发布于 2011 年 7 月 20 日(星期三) 各位,对于只应用了 SharePoint 2010 SP1 而没有应用 2011 年 6 月累积更新的用户,有一个潜在问题最近浮出水面。您会发现这样做之后,人员选取器将不再适用于您的 SAML 声明用户。您仍然可以通过在键入控件中键入声明值并单击解析按钮来添加声明。但是,通过人员选取器输入的任何名称都 不 会解析。您可以通过应用六月累积更新恢复到正常的状态,此时,内置的 SAML 提供程序将可再次用于人员选取器。当然,如果您使用的是自定义声明提供程序而不是默认提供程序,则不受此问题影响。 我仍在研究在应用 SP1 之后出现的且六月累积更新未能修复的其他几个潜在问题;这些问题也与移动设备和编程访问中仅使用 SAML 身份验证的网站有关。在我了解到有关此问题的更多详细信息之后,我将根据之前的保证在该博客上发布结果。 这是一篇本地化的博客文章。请访问 SAML Alert for SharePoint 2010 – If You Apply SP1 Follow Up with June CU 以查看原文

12 September 2011 0 Comments

Is this a really bug with CreateWindowEx or am I just confused?

Somebody sent me email pointing out strange behavior in the MessageBox function if you fail a window creation by returning −1 from the WM_CREATE message.

11 August 2011 0 Comments

Kinect for Mankind

By Michelle Benedict                                                                             It’s amazing what a second pair of electronic eyes can do.  Besides selling 8 Million units in the first 60 days, the Microsoft Kinect for Xbox 360 has more of an altruistic feel than traditional gaming systems.  Perhaps it’s because all you need to be able to play is the ability to move your body and the system literally plays off you. It’s for this simplicity of game play, but complex design to mirror the player that the Kinect for Xbox 360 is already being used as a seeing aid, a rehabilitation device, a surgeon’s assistant and a developmental tool.  Here are a few of our favorite stories emerging about how Kinect users are making medical breakthroughs with this Microsoft technology.   Kinect to help the blind ‘see’ in augmented reality (Please visit the site to view this video) Designed by graduate students at the Universität Konstanz in Germany, this seeing-eye Kinect has been dubbed the NAVI, or Navigational Aids for the Visually Impaired.

9 August 2011 0 Comments

WCF Extensibility – QueryStringConverter

This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . Coming back to “proper” WCF extensibility, this week’s post is about the QueryStringConverter .

6 August 2011 0 Comments

CCR tips and tricks – part 24

Today I’ll show you an example of how can use the pattern used in part 23 to make the utilities from part 1 look a little different and also work for any number of branches in a choice.