今天是我博客6周月纪念日。

在这6个月里,dddspace.cn输出了236 文章,输入了465评论,屏蔽了6141条Spam,PR由0->1->2。

Pv和IP比较低迷,大部分来源来自搜索引擎,还有一部分是这段时间认识的新朋友们。

这个博客完整记录了我大学最后一年的生活,并且会将继续陪伴我走下去。(咦?为什么日志存档从2008年开始?哈哈,那是因为我把Baidu Hi的一部分内容导入了!)

为了庆祝周庆,我重新部署了博客的插件,CodeColorer的Html编码问题已经被我彻底搞清楚。我现在已经切换到wp-syntax了。最大的麻烦:”WordPress编辑器空格在FireFox下面无法缩进“也被我用新的插件"Dean’s FCKEditor With pwwang’s Code Plugin For Wordpress"完美解决。

我现在就位于FCKEditor(CKEditor)下面进行编辑,世界第一的FCKEditor就是比世界第二的TinyMCE阉割版强。

上几张华丽的让我蛋疼的粘代码截图

插入代码

显示为Code

下面的一段Python代码就是我测试缩进用的,代码大意是…呃…哦,是输出一段XNML

0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding=utf-8
 
#!/usr/bin/env python
#
# Copyright 2007 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
 
import wsgiref.handlers
from google.appengine.ext import webapp
 
class MainHandler(webapp.RequestHandler):
 
    def head(self, *args):
        return self.get(*args) 
 
    def post(self):
        self.response.out.write('''<b>使用者的名称及其大中小三种头像:</b>
<div style="text-align: center;">图片: 		<xn:profile-pic uid="loggedinuser" linked="true" size="tiny"> 		<xn:profile-pic uid="loggedinuser" linked="true" size="normal"> 		<xn:profile-pic uid="loggedinuser" linked="true" size="main"> 	
 	姓名: 		<xn:name uid="loggedinuser" linked="true" shownetwork="true"> </xn:name></xn:profile-pic></xn:profile-pic></xn:profile-pic></div>''')
 
    def get(self):
        self.response.out.write('''<b>使用者的名称及其大中小三种头像:</b>
<div style="text-align: center;">图片: 		<xn:profile-pic uid="loggedinuser" linked="true" size="tiny"> 		<xn:profile-pic uid="loggedinuser" linked="true" size="normal"> 		<xn:profile-pic uid="loggedinuser" linked="true" size="main"> 	
 	姓名: 		<xn:name uid="loggedinuser" linked="true" shownetwork="true"> </xn:name></xn:profile-pic></xn:profile-pic></xn:profile-pic></div>''')
 
 
def main():
        application = webapp.WSGIApplication([('/.*', MainHandler)], debug=True)
        wsgiref.handlers.CGIHandler().run(application)
 
if __name__ == '__main__':
    main()

由于不可阻挡的原因DDD的一亩三分地已经更换域名为dddspace.com,之前的cn域名将逐渐废弃。最近alswl在加班加点整合新的主题,在2010年来临之际,“DDD的一亩三分地”将会以崭新的面貌出现在大家面前!

朋友们,赶紧修改你的Feed地址吧,新的地址为http://feed.dddspace.com

分享家:Addthis中国