摘要: Use HttpApplication.CompleteRequest Instead of Response.End   HttpApplication.CompleteRequest is preferable to use for aborting a request in an ASP.NET application over Response.End, because it... 阅读全文
posted @ 2010-03-19 12:53 octoberfirst 阅读(387) 评论(0) 推荐(0) 编辑
摘要: A low-level Look at the ASP.NET Architecture Getting Low Level This article looks at how Web requests flow through the ASP.NET framework from a very low level perspective, from Web Server, through I... 阅读全文
posted @ 2010-03-19 11:18 octoberfirst 阅读(766) 评论(0) 推荐(0) 编辑
摘要: interesting post about bits operation http://www.coranac.com/documents/bittrick/ 阅读全文
posted @ 2010-03-18 14:35 octoberfirst 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 如何在程序中检测本系统的Endianess?可调用下面的函数来快速验证,如果返回值为1,则为Little Endian;为0则是Big Endian:int testendian() {int x = 1;return *((char *)&x);} 阅读全文
posted @ 2010-03-14 21:46 octoberfirst 阅读(330) 评论(0) 推荐(0) 编辑
摘要: long count_bits(long n) { unsigned int c; // c accumulates the total bits set in v for (c = 0; n; c++) n &= n - 1; // clear the least significant bit set return c;}http://gurmeetsingh.wordpress.co... 阅读全文
posted @ 2010-03-13 23:19 octoberfirst 阅读(168) 评论(0) 推荐(0) 编辑
摘要: The best method for counting bits in a 32-bit integer v is the following: http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel B[0] = 0x55555555 = 01010101 01010101 01010101 01010... 阅读全文
posted @ 2010-03-13 21:43 octoberfirst 阅读(311) 评论(0) 推荐(0) 编辑
摘要: The CAP theorem, postulated almost 10 years ago by Inktomi's Eric Brewer, states that of three highly desirable properties of distributed systems - consistency (C), availability (A), and partition-tol... 阅读全文
posted @ 2010-01-26 17:07 octoberfirst 阅读(186) 评论(0) 推荐(0) 编辑
摘要: http://www.youtube.com/watch?v=Kq4FpMe6cRs 阅读全文
posted @ 2009-10-14 11:15 octoberfirst 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 轻量级ESB解决方案引言企业应用的发展概述在介绍企业服务总线之前,有必要花一些笔墨来介绍企业应用架构的发展和变迁。企业级应用架构的发展经历了以下几个阶段:·        独立应用系统·        EAI 阶段... 阅读全文
posted @ 2009-04-08 20:23 octoberfirst 阅读(860) 评论(0) 推荐(0) 编辑
摘要: It is really a excellent and interesting article I have seen in recent days, it could not be more amazing. The author show you how to "inherit" from C++ class in C#, creative idea and damn cool.http:/... 阅读全文
posted @ 2008-12-11 23:44 octoberfirst 阅读(242) 评论(0) 推荐(0) 编辑