摘要:
开源界的5大开源许可协议详解越来越多的开发者与设计者希望将自己的产品开源,以便其他人可以在他们的代码基础上做更多事,开源社区也因此充满生机。在我们所能想到的应用领域, 都有开源软件存在(象 WordPress,Drupal 这些开源CMS)。然而很多人对开源许可并不了解,本文介绍开源领域常用的几种许可协议以及它们之间的区别。 什么是许可协议? 什么是许可,当你为你的产品签发许可,你是在出让自己的... 阅读全文
摘要:
1. 更多的UML drawing tools. Prefer UMLet for now. Martin Fowlerlikes UMLGraph (I don't have feeling about it now). And Two very suggested UML tools by a guy who have practiced with many UML tools (let's ... 阅读全文
摘要:
1. 首先,要根据使用场合,设置不同的密码。推荐下面这种分类:(如何管理并设计你的口令)对我来说,我通常会有几组组帐号和密码, 一个帐号/密码是用于一些大的可以依赖的站点,如:MSN,gmail,linkedin,facebook,hotmail等,因为我相信这些站点应该可以足够信任不会出卖用户信息,也有足够的能力不会让用户信息和口令外泄。 一个帐号/密码用于一些国内的一些大的网站,如:QQ,开心... 阅读全文
摘要:
项目马上要开始了。manager一天突然安排会议,说是接到了第一步的任务:quickly give out a prototype of the project for further verification and evaluation.从这个事情上我学到了两点:1. Task breakdown / PlanTask breakdown在各个任务层次上需要的考虑是不一样的。比如,一个task... 阅读全文
摘要:
放松的集中的注意力。你想要的是沉浸到一种宽松的思维状态中,在这里你可以意识到自己和你的情境,不用做出任何判断和回应。这就是所谓的内观冥想。那一刻你意识到某些事情,但是没有额外的思考。顺其自然。为何人紧张或注意力被其他事情分散了会导致会做的事情不会做或做不好了?就是因为大脑的部分思维被其他事情分散掉了。每天至少花10分钟在早上起床前,在睡觉前10分钟做想象,因为这两个时间段是输入潜意识的最好时段。所以如果你渴望成功、爱情、婚姻等等,请在这两个时段尽情想象吧!你的潜意识渐渐让你通过想象达致产生信心,从而引领你得到你想要的。[职业生涯]详细制定自己软件开发专业知识学习计划,并注意及时修正和调整(软件 阅读全文
摘要:
以下的,都在线了:UML diagram IDE (http://www.coderun.com/ide/)Code Run (http://codepad.org/, where you can just paste your code in and run it to get result for list of languages) 阅读全文
摘要:
1. How to programatically create a bitmap by filling in existing images.Steps: a. Create an empty bitmap with you wanted size and get graphics from it. b. Create TextureBrushes with intended to fill i... 阅读全文
摘要:
I met VS IDE TOO SLOW issue for some time. Loading solution and F5 to debug took so long time! Finally I figured out the reason: I put my project source code and 3rd parties onto C: while my VS is liv... 阅读全文
摘要:
Metadata is information about the data -- that is, information about the types, code, assembly, and so forth -- that is stored along with your program.Attributes are a mechanism for adding metadata, s... 阅读全文
摘要:
1. Can I use typedefs in C#?No, C# has no direct equivalent of the C++ typedef. C# does allow an alias to be specified via the using keyword:but the alias only applies in the file in which it is decla... 阅读全文