Use Google Calendar in Office
摘要:It's easy to use google calendar in Office.The help page is: http://www.google.com/support/calendar/bin/answer.py?answer=37648&query=ical&topic=0&type=fScreenshot:I'm using Office2007 Beta. And I thin...
阅读全文
posted @
2006-04-18 14:41
万俊峰Kevin
阅读(300)
推荐(0) 编辑
Thread-Safe的static data member初始化方法
摘要:对于static data member的initialization,如果是在multi-threading的环境下,可以采用如下方法初始化: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 if (s_data ==...
阅读全文
posted @
2006-04-18 12:01
万俊峰Kevin
阅读(765)
推荐(0) 编辑
C#中的ReaderWriterLock和LockFree Data Structure
摘要:前一阵在一个project中使用了ReaderWriterLock,发现了两个问题: Performance非常差 UpgradeToWriterLock并不是atomic的从ReaderLock转换到WriterLock,而是等同于"lock.ReleaseReaderLock(); lock.AcquireWriterLock();"。这样的semantics有一定的迷惑性,...
阅读全文
posted @
2006-04-18 11:55
万俊峰Kevin
阅读(2053)
推荐(1) 编辑
Office 2007初体验
摘要:上个礼拜在公司的机器上装上了Office 2007(code name: Office 12)的beta版,感觉界面美化了不少。word上面的toolbar增大了很多,觉得有点臃肿,不过带来的好处是功能增强,但对我这样的word低手来说,很多功能也就是一个摆设而已。出于公司policy的原因,不便在此贴上screenshot。
阅读全文
posted @
2006-04-17 10:05
万俊峰Kevin
阅读(783)
推荐(0) 编辑
Google今天叫——谷歌
摘要:Google今天叫——谷歌(组图)http://news.sohu.com/20060412/n242775102.shtml 好难听的名字啊!sigh,
阅读全文
posted @
2006-04-16 13:43
万俊峰Kevin
阅读(501)
推荐(0) 编辑
[转] 提高网站在Google中的排名—面向搜索引擎的网站设计
摘要:From http://cero.cn/weblog/8.html 车东写的关于面向搜索引擎的网站设计系列文章的一个长篇,虽然希望自己的BLOG更多是原创文章,不过如此好文与总结还是要转过来的收藏+共享的,我想,从事网站设计的人是必读的. 内容摘要: 目前中文网站在整个互联网中的影响还比较小,这主要是由于中文网站总体的水平(技术上,内容上)都还相对落后造成的,最主要的表现有: ...
阅读全文
posted @
2006-04-14 22:23
万俊峰Kevin
阅读(623)
推荐(0) 编辑
《C++程序设计语言(特别版)》忠告(advice)部分
摘要:Bjarne Stroustrup裘宗燕 译_________________________________________ 这里是一组在你学习C++的过程中或许应该考虑的"规则"。随着你变得更加熟练,你将能把它转化为某种更适合你的那类应用系统或者你自己的程序设计风格的东西。它们有意被写得很简单,因此都缺乏细节。请不...
阅读全文
posted @
2006-04-14 18:07
万俊峰Kevin
阅读(1471)
推荐(0) 编辑
typelist的实现
摘要:#include struct NullType; template struct typelist{ typedef T0 Head; typedef typelist Tail; enum { length = 1 + Tail::length };}; template struct typelist{ enum { length = 0 };}; template...
阅读全文
posted @
2006-04-14 18:05
万俊峰Kevin
阅读(795)
推荐(0) 编辑
Windows Live Academic Search launched!
摘要:Microsoft launched Windows Live Academic Search to compete with Google Scholar.http://academic.live.comIt implemented some features that allow users to get more information about a result before click...
阅读全文
posted @
2006-04-14 14:00
万俊峰Kevin
阅读(507)
推荐(0) 编辑
Google新玩法(转载)
摘要:From http://www.cnitblog.com/martin/archive/2006/04/13/9147.html搜索Google大家都用过吧?我们正是利用它强劲的搜索功能来突破封锁下载,Google搜索和限制下载有什么关系,没可能实现吧?不要不相信哦,往下看哦!http://www.google.com/intl/zh-CN/http://www.3721.com/...
阅读全文
posted @
2006-04-13 22:13
万俊峰Kevin
阅读(5542)
推荐(0) 编辑
[收藏] C#面试基础问题
摘要:C#面试基础问题http://dflying.cnblogs.com/archive/2006/04/01/364458.html
阅读全文
posted @
2006-04-13 17:39
万俊峰Kevin
阅读(529)
推荐(0) 编辑
google推出Calendar了
摘要:今天收到一封mail说google的Calendar已经release了,赶紧去尝了个鲜。。。http://www.google.com/calendar/沿袭了google一贯的风格,让用户长期使用BETA版。发现最大的问题是比较慢。并不是操作慢,而是同步比较慢,通知别人比较慢,share calendar比较慢。大部分操作比较方便,不过有些还是不习惯,比如单击就pop出event detail...
阅读全文
posted @
2006-04-13 16:52
万俊峰Kevin
阅读(409)
推荐(0) 编辑
Visual Studio 2005可以自动生成Class Diagram
摘要:自动生成Class Diagram是Visual Studio 2005中一个很cool的功能。你可以利用它快速对现有code的architecture有个大概的了解。使用方法如下:1,click下面图中的"View Class Diagram"按钮,2,然后会出现一个名字类似于ClassDiagram1.cd,如下图不过使用生成的.cd文件需要依赖于source code。另外可以直接把diag...
阅读全文
posted @
2006-04-13 16:05
万俊峰Kevin
阅读(1997)
推荐(0) 编辑
用std::set来保存char*/const char*
摘要:我们如何能在c++中使用set来保存char*/const char*呢?答案是提供定制的template argument -> Compare.#include #include struct strless : public std::binary_function{ bool operator()(const char* s1, const char* s2) const { ...
阅读全文
posted @
2006-04-12 18:07
万俊峰Kevin
阅读(1909)
推荐(0) 编辑
出租司机给我上的MBA课
摘要:from http://blog.csdn.net/psyl/archive/2006/03/17/627496.aspx 我要从徐家汇赶去机场,于是匆匆结束了一个会议,在美罗大厦前搜索出租车。一辆大众发现了我,非常专业的、径直的停在我的面前。这一停,于 是有了后面的这个让我深感震撼的故事,象上了一堂生动的MBA案例课。为了忠实于这名出租车司机的原意,我凭记忆尽量重复他原来的话。 “...
阅读全文
posted @
2006-04-12 13:53
万俊峰Kevin
阅读(637)
推荐(1) 编辑
微软面试题 之 "单词的划分"
摘要:Problem 有一个很长的由小写字母组成字符串。为了便于对这个字符串进行分析,需要将它划分成若干个部分,每个部分称为一个单词。 出于减少分析量的目的,我们希望划分出的单词数越少越好。你就是来完成这一划分工作的。 Input 第一行为一整数T,表示有T组测试数据。 每组测试数据第一行为一字符串。(长度小于256) 第二行为一整数N。(1#include #include #include ...
阅读全文
posted @
2006-04-11 16:07
万俊峰Kevin
阅读(1046)
推荐(0) 编辑
微软面试题 之 "Longest Common Sequence"
摘要:求两个string的最长公共子序列如:"abcdef", "aabacfe" => "abce""swew", "wews" => "wew"code:#include #include #include #include enum { MAX_LEN = 100 };void LCS_Aux(const char* s1, int l1, const char* s2, int l2, char...
阅读全文
posted @
2006-04-10 22:17
万俊峰Kevin
阅读(1165)
推荐(0) 编辑