摘要: 一个简单清晰的单例模式例子。转自:http://pratapreddypilaka.blogspot.com/2011/12/singleton-pattern-load-balancer.htmlSingleton Pattern : Load Balancer DemonstrationSingleton Pattern : This is a pattern which is widely used when there is a situation to create only one instance of a class.Lets demonstrate the pattern u阅读全文
posted @ 2011-12-29 16:02 Net205 Blog 阅读(7) 评论(0)  编辑
摘要: http://plentyoffish.wordpress.com/2011/12/27/32-billion-images-a-month/December 27, 2011 at 4:46 am 发表:In November plentyoffish got nearly 6 billion pageviews and served out nearly 32 billion images in addition to that our IM servers handle about 30 billion pageviews a month.另外网上资料说(转自:http://www.it阅读全文
posted @ 2011-12-29 15:18 Net205 Blog 阅读(24) 评论(0) 编辑
摘要: ASP.NET Search Engine Keyword Logging with an HttpModule:http://www.eggheadcafe.com/tutorials/aspnet/4df8feb4-3240-4545-9c36-a8aecf336bf5/aspnet-search-engine-keyword-logging-with-an-httpmodule.aspxIntegrating BrowserId with ASP.NET Membership, Roles, Profile and Forms Authentication:http://www.eggh阅读全文
posted @ 2011-10-09 15:13 Net205 Blog 阅读(11) 评论(0)  编辑
摘要: Scale ASP.NET Apps Through Distributed Caching:http://visualstudiomagazine.com/Articles/2011/09/01/pfint_Distributed-Caching.aspx阅读全文
posted @ 2011-09-29 19:35 Net205 Blog 阅读(10) 评论(0)  编辑
摘要: 来源:http://www.amazedsaint.com/2010/04/6-cool-vs2010-quick-tips-you-should.html http://www.visiblox.com/blog/2010/04/ten-cool-things-you-didnt-know-about-visual-studio-20106 Cool #VS2010 Quick Tips you should know when working with Visual Studio 2010Visual Studio 2010 is super cool. Here are few fea.阅读全文
posted @ 2011-09-15 02:52 Net205 Blog 阅读(47) 评论(0)  编辑
摘要: 来源:http://www.amazedsaint.com/2010/05/tasks-1-2-3-parallel-extensions-in-net.htmlWith those multi core processors everywhere, support for parallelism is an already implicit requirement for any new application. This post explores how easily you can implement parallel features in your application, wit阅读全文
posted @ 2011-09-15 02:49 Net205 Blog 阅读(19) 评论(0)  编辑
摘要: 来源: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阅读全文
posted @ 2011-09-15 02:08 Net205 Blog 阅读(37) 评论(0) 编辑
摘要: 来源: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阅读全文
posted @ 2011-09-15 02:04 Net205 Blog 阅读(30) 评论(0) 编辑
摘要: 来源: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阅读全文
posted @ 2011-09-15 01:23 Net205 Blog 阅读(31) 评论(0) 编辑
摘要: 意译: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阅读全文
posted @ 2011-09-15 01:11 Net205 Blog 阅读(112) 评论(0) 编辑