2010年4月7日

摘要: Problem Microsoft products such as Windows Server Update Services (WSUS) 3.0 and Windows Sharepoint Services (WSS) 3.0 ship with SQL Server 2005 Embedded Edition. Now called the Windows Internal Datab... 阅读全文
posted @ 2010-04-07 18:49 hzwang 阅读(932) 评论(0) 推荐(0) 编辑

2010年4月6日

摘要: 首先我们要打两个补丁包 Microsoft Visual Studio 2008 Service Pack 1 Visual Studio Team System 2008 Service Pack 1 Forward Compatibility Update for Team Foundation Server 2010 剩下的连接工作相当简单,按照如下的格式填写Team Foundati... 阅读全文
posted @ 2010-04-06 16:35 hzwang 阅读(9335) 评论(2) 推荐(0) 编辑

2010年3月28日

摘要: 配置环境: 要用一种语言做开发,实际上我们只需要一个编译器就足够了。F#是.net平台下的语言,所以.net framework是必需的。我们可以在F#的官方网站上找到F#的编译器的下载:http://msdn.microsoft.com/en-us/fsharp/cc835251.aspx,这里我们可以下载独立的工具,或是下载VS2010,在VS2010里已经集成了F#。 如果安装独立的安装... 阅读全文
posted @ 2010-03-28 03:33 hzwang 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 去年的时候,听说erlang挺火的,正好我总想好好学学除了C#之外的语言,就买了本《erlang程序设计》。erlang是一门函数式语言,初看之下,它的编程范式和思维方式和命令式语言有着很大的区别,原生的支持并发编程,也曾被它的神奇所吸引。但是由于工作和erlang是八杆子打不着,耐着性子看了几章之后,也总不能深入。后来就渐渐的把书束之高阁了(什么事都不能持之以恒,惭愧),但是对这种编程范式一直很... 阅读全文
posted @ 2010-03-28 02:29 hzwang 阅读(397) 评论(0) 推荐(0) 编辑

2010年3月26日

摘要: When I'm troubleshooting HTTP traffic, I reach for the invaluable Fiddler trace utility. It shows me everything going on over HTTP. However, when you run Fiddler against a localhost URL you probably ... 阅读全文
posted @ 2010-03-26 15:50 hzwang 阅读(211) 评论(0) 推荐(0) 编辑

2010年3月25日

摘要: If you are a web developer, you probably are used to using the standard “class” attribute in your HTML. If you typically use ASP.NET Web Forms, you are probably used to using the CssClass property on ... 阅读全文
posted @ 2010-03-25 17:48 hzwang 阅读(1281) 评论(0) 推荐(0) 编辑

2010年3月3日

摘要: As required by David, my boss, I should write more technical blogs in English. In this way, I can practice my English well, also I can save the experience of my progress. I think, that is just like wh... 阅读全文
posted @ 2010-03-03 17:38 hzwang 阅读(195) 评论(4) 推荐(1) 编辑

2009年7月29日

摘要: 使用位逻辑运算来实现位向量,指的是实现位向量的设置、清零、探测三个操作。 代码如下: private const int bitsPerWord = 32;private const int shift = 5;private const int mask = 0x1F;private const int n = 10000000;private static readonly int[] a... 阅读全文
posted @ 2009-07-29 01:01 hzwang 阅读(2438) 评论(1) 推荐(2) 编辑

2009年2月13日

摘要: 基本概念: 值相等——表示比较的两个对象的数据成员按内存位分别相等,即两个对象类型相同,并且具有相等和相同的字段。 引用相等——表示两个引用指向同一对象实例,也就是同一内存地址。因此可以由引用相等推出其值相等,反之则不然。 object类中和判等相关的方法及其代码: // Returns a boolean indicating if the passed in object obj is// ... 阅读全文
posted @ 2009-02-13 00:21 hzwang 阅读(364) 评论(0) 推荐(0) 编辑

2009年2月8日

摘要: bcp全称是Command Prompt Utilities,主要用来在数据库和数据文件中导入导出数据。 用法如下: usage: bcp {dbtable | query} {in | out | queryout | format} datafile [-m maxerrors] [-f formatfile] [-e errfile] [-F firstrow] [-L lastrow] [... 阅读全文
posted @ 2009-02-08 19:12 hzwang 阅读(936) 评论(0) 推荐(0) 编辑

导航