This is delphi6th blog !

致开发团队中的文档编写者

       因为是土生土长的原因,文档的编写一直是我存在的弱项,找来此篇文章和大家分享一下这方面的经验.谢谢ZDNet

       一般情况下,每一个开发小组都拥有一个或者更多的专业技术文档编写者,这些编写者负责为他们的产品编写出相关的技术文档。然而,并不是所有的公司能拥有专职的技术文档编写者。如果你必须编写出和你的软件产品联系在一起的技术文档的时候,你应该在你的脑子里记住下面的这些必须进行的事情。

» 阅读全文

ImagickDraw, more complex drawing

Here is an example of a bit more complex drawing operation using ImagickDraw. This example extends the ImagickDraw class to create a custom shape, in this case a flower. That flower is then rendered to a canvas.

效果图:

» 阅读全文

正则表达式30分钟入门

有很多朋友认为正则表达式一直是难过的一个坎,为什么总是学了又忘记,忘记了又学呢.最终的答案其实是你并没有真正掌握它.零散的知识堆砌在脑袋里,想要的时候却怎么也找不到.有机会我再写点正则方面的心得.现在就随便找了一篇写得还不错的正则表达式30分钟入门.自己编译了一下.有需要的同学就拿去看看.

» 阅读全文

我为英语狂Mad About English

第一次看到这个视频我笑翻了.太精典了.大家仔细听最后一个CT说的话.
这个应该是试看版本,到时候有正式版本了一定要去搞来看看.
《我为英语狂Mad About English》 2008年出版,导演来自Lian Pek 新加坡,本片主要记录了4个中国人关于英语的梦想,他们分别是想在英语大赛上崭露头角某小盆友;一位退休的奥运自愿者;一位出租车司机,他将要在奥运前学会一些简单的英语;还有那个李阳疯狂英语。

» 阅读全文

Artistic effects: polaroid image

Here is an example of how to create a polaroid style effect on an image. This effect is available if you have compile Imagick against ImageMagick 6.2.8 or newer:

Here is the original image:


And here is the image with the polaroid effect:

» 阅读全文

怎么用英文形容“马屁精”

虽然“良药苦口利于病,忠言逆耳利于行”的道理大家懂,但现实生活中我们都喜欢听顺耳的话。有些话是衷心的赞美,有些则是另有目的的恭维。下面是两个形容马屁精的习惯用语。

» 阅读全文

50个句子记完的7000单词——俞敏洪

相信通过这个50个句子,您的英语水平又可以提升一个档次。
学无止尽加油!

» 阅读全文

Creating a simple line graph

This example demonstrates how Imagick can be used to create graphs. This graphing class itself is mostly a demonstrative example. There are also some hardcoded values in the graph (like the steps in the values on the left hand side) but it should not be hard to refine it into a more elegant graphing solution.

The graph is generated using the ImagickDraw drawing features. Since the ImagickLineGraph class extends the ImagickDraw class the instance of it can be passed directly to the Imagick::drawImage method.

The ImagickDraw class behaves a little like a ”drawing stack”; you can perform multiple operations on the object and then render the operations on a canvas. Operations like rotate and translate take affect on all drawing operations executed after them.

Here is the generated graph:

» 阅读全文