09 2011 档案
摘要:来源:http://www.amazedsaint.com/2010/11/top-6-coding-standards-guideline.htmlSome time back, I collated a list of 7 Must Read, Free EBooks for .NET Developers, and a lot of people found it useful. So, I thought about putting together a list of Coding Standard guidelines/checklists for .NET /C# develop
阅读全文
摘要:来源:http://www.amazedsaint.com/2010/02/top-5-common-programming-mistakes-net.htmlSome time back, I asked a question in Stackoverflow.com, about common programming mistakes .NET developers must avoid. The response was awesome, to say the least. I’m just listing down the top 5 developer crimes I picked
阅读全文
摘要:来源:http://dotnet.dzone.com/news/you-are-doing-scrum-scrum文章里面讲到一些Scrum Master的职责、Scrum Maste与项目经理的区别。不错的文章,收藏以后简单翻译一下。Ultimately the Scrum Master should never tell the Development Team what to do and they should make sure that the Development Team has both the knowledge and the skills to work things
阅读全文
摘要:意译:http://dotnet.dzone.com/news/using-html-5-data-attributesHTML 5的data属性是一种在DOM元素中存储数据的方式,例如我们有一个用户列表,为客户端以后使用想存储用户Id。1 <ul>2 <li data-id=”4” data-role=”admin”>thorsteinsson</li>3 <li data-id=”23” data-role=”user”>john</li>4 </ul> public class User{ public int Id
阅读全文