CCCC “Syntax errors”

14 九月 2011 In: JAVA, CPlusPlus, 软件行业
I have a short describe of CCCC in the preceding post, let’s have a review it: CCCC is a C++/C static code analysis tool. CCCC is an open source project hosted in source forge. The latest ... [更多]

C++ static checking tool comparison

9 八月 2011 In: JAVA, CPlusPlus, 软件行业
The target of this topic is find out tools to support generate following indicators of C++ source code quality (all of those metrics are digested from http://scrumalliance.org/articles/300-the-land-th... [更多]

ZT: Metrics of Moment

15 七月 2011 In: 软件行业, JAVA, DotNet, CPlusPlus
Because uncle Bob's blog is inaccessible now, so I digest it: Posted by Uncle Bob Mon, 08 Jun 2009 16:26:51 GMT There are two metrics that I think are quite useful in the pursuit of clean code. One ... [更多]
来自 http://www.iplaysoft.com/appstore-survival.html 处于对作者的尊重,我只摘抄一点点: 一个是做大,认认真真地投资,雇人,搞公关,做广告,把牌子打出来。另一个是找技术门槛。能够申请专利的最好(但是美国专利很贵),或者至少技术难度要高到别人很难山寨。但是,我们做软件的,不要一边骂顾客用盗版,一边自己侵权(商标,版权,专利)。这种做法更加是只... [更多]
首先递出一个很简单的规则KISS: Keep it Simple&Stupid,有人在扯最后的一个S应该是Standard,也许吧,是什么并不是很重要,关键是规则自己本身的第一句话 Keep it Simple. 维基百科上面 http://fr.wikipedia.org/wiki/KISS-principe (法语,自己找英文和中文哦)对于最后一个S也是很纠结,但是真的很重要吗? 问... [更多]
jQuery: http://jquery.com/ jQuery EasyUI: http://jquery-easyui.wikidot.com/ jQuery EasyUI Docs:http://jquery-easyui.wikidot.com/document jQuery与DOM的转换:http://www.cnblogs.com/tiwlin/archive/2009/1... [更多]

自己编译MySQL源代码

27 四月 2010 In: CPlusPlus, 软件行业
在这个大环境下,Win的用户貌似不受MySQL欢迎,V5.5.4 M3怎么都没得WIn的现成的安装,所以没得办法,只能自己去弄一个源代码包来编译了。 首先从dev.mysql.com上下载源代码包 从CMake - Cross Platform Make下载CMAKE可执行程序 解压源代码包到特定目录,找到Win目录下的build-vs9.bat,修改唯一的一行有效代码的cmake的路径为安装的C... [更多]
In C++, FlexeLint is a good tool for static analysis source code, but unfortunately, the reports generated by FlexeLint are formatted in plain text. As there were always a lot of “error” ,"warning” an... [更多]
We received a bug about can not receive any notification but the notification channel can be built successfully. After a long investigation, we found this issue was caused by the network environment... [更多]

代码文摘20090604

3 六月 2009 In: DotNet, 软件行业, CPlusPlus
http://parandroid.com/8-online-css-optimizer/ http://www.codeproject.com/KB/cs/KeepAliveWeakReference.aspx http://www.codeproject.com/KB/threads/MultiThreadingWrapper.aspx http://www.codeproj... [更多]
目前算得上有一份稳定的工作,而且比以前轻松了许多,所以业余时间大部分都是我自己的,我也在准备开始继续报表的开发,算起来已经搁浅了将近3个月了。在开发之前我想弄一份报表源代码授权,在选择GPL/LGPL和BSD之后,我还是看上了BSD。原因是: 对于代码的所属问题上,我一直比较含糊,如果要开源,那就开一个彻底,否则开源做什么? 对于代码的修改权限,我看的更淡,每个人都有自己的看法... [更多]
很少用在C++下面的XML,虽然买了一本书,但是尘封数年了,没看。大多数都是用JDOM之类非常简单明快的东西——嗯,最近受到Websphere的XML解析器的困扰,我已经开始自己抽取一份XML解析器了。所以在C++上的SAX,多少熟悉一些,但是代码却有些陌生,尤其是那个转义的XMLCh,令人有些哭笑不得。 问题出自于一个在用的系统,原先的XML节点中的字符串都... [更多]

文摘2009-04-29

29 四月 2009 In: CPlusPlus, DotNet, JAVA, 软件行业, 似水年华, 网页开发
数据库 SQL Server恢复只有MDF的数据库: http://www.cnblogs.com/Anper/archive/2009/04/28/1445100.html Dot Net: Winform嵌入控制台程序 http://www.cnblogs.com/gster/archive/2009/04/28/1444745.html 娱... [更多]

Make VC2008 to support HH as header files

18 二月 2009 In: CPlusPlus, 软件行业
Quite a lot of program blocks of my company use TAO as default IDL compiler, and the tool output *.hh as C++ header. I encountered a embarrassed situation when I using Visual C++ 2008 to navigate an... [更多]

JAVA泛型之痛

5 一月 2009 In: 软件行业, JAVA, DotNet, CPlusPlus, SQLReport
JDK1.5出台这么长时间,真正在项目中用的时候非常少,原因是项目大都是大型系统,局限于Application Container, 例如WebSphere,折腾了很长时间才懒洋洋的支持JDK1.5,而另外则是很过JSP编译器不支持泛型,所以比较难处理。 我将 SQLReport 的定位为自己的一个练手的项目,所以在脱离了实际的生产环境之后,毫不犹豫的转型到了JDK1.5, 当然这也带来了大量的... [更多]

C++指针使用方法解惑(ZT)

19 十二月 2008 In: CPlusPlus, 软件行业
The original article is here from hangwire. ----------- 在下列函数声明中,为什么要同时使用*和&符号?以及什么场合使用这种声明方式?  void func1( MYCLASS *&pBuildingElement );      论坛中经常有人问到... [更多]

The ambiguousness of C++

15 十二月 2008 In: CPlusPlus, 软件行业
The Version of GCC bash-3.00$ g++ --version g++ (GCC) 3.4.5 20051201 (Red Hat 3.4.5-2) Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying... [更多]
I am upgrading my Blog from Blog Engine V1.3 to V1.4.5.0 and I am going to change the theme SilverLight to another good view one named “Dilectio”, some changes are needed to fit my opin... [更多]

C++ Exception Specification

27 十月 2008 In: CPlusPlus
Thanks Jeff. I'd like to share some tips with you guys, which including the answer for Question 1 that Jeff has mentioned in the prev-mail. The root cause of the core-dump of the process "... [更多]

The 13 Golden Rules of debugging

22 十月 2008 In: CPlusPlus, 软件行业
1. Understand the requirements. Make sure you understand the requirements before you begin to debug and fix anything. Is there a standards document or a specification to look at? Or other documentat... [更多]

About Jeason Zhao

Jeason,蜀人,才高三斗,学富一箱。自比子建,放荡不拘行迹,豪语难晓天高;不敢自诩风流,任人笑我痴狂。不欲仕途,个性使然。所到之处,三言不尽,五言难足,鸡飞狗跳盖矣。谓蜀者,鼠也!