2012年7月18日 随笔档案 -凯发k8网页登录

生活、程序、未来
   :: 凯发k8网页登录首页 ::  ::  :: 聚合  :: 管理

2012年7月18日


很久没有更新博客,没想到更新是搬迁公告。这个博客累计的访问量突破百万,是我建立的时候完全没有想过的事情。博客对我来说更多是记录、记忆的地方,我时常因为想不起某个东西,来翻自己的博客,查找旧知,发现新知。阅读很多人的博客,也是我跟踪、学习新知的主要方式。虽然微博兴起,不过博客作为更系统性的记录的地方,不会过时。

非常感谢blogjava提供这么优秀的平台。只是我今年给自己的一个目标是建立自己的博客,因此现在要搬迁,加上其实现在也写的少,其实搬迁不搬迁,意义也不大了。算是一个通告,有兴趣的可以订阅我的新博客,没兴趣的请自行略过,谢谢大家。

新博客地址:
rss地址:

新博客的第一篇记忆是《》,从现在开始,这个博客将不再发布任何新的文章,已有的也不会删除,部分可能会导到我的知识库上去。

最后,祝福blogjava越办越好。

posted @ 2012-12-10 01:24 dennis 阅读(11764) | 评论 (6)编辑 收藏

it's my weekend project——node-shorten: url shortener just like t.cn,goo.gl etc.

is is written in ,using  for mvc framework,and using mysql for storage and redis for caching.

a demo online:

the project is at

feel free to modify and use it.have fun.

posted @ 2012-11-25 20:31 dennis| 编辑 收藏

很久没写博客,一是工作忙,二是没有太多的事情可说。

最近在公司大佬的支持下,建立了一个clojure语言中文方面的博客和问答网站,欢迎任何对clojure这门基于jvm之上的函数式语言感兴趣的童鞋贡献原创文章或者资料,申请帐号请看。

博客地址:  
问答网站:  

欢迎转发和注册使用,谢谢。

邮件列表仍然使用google group:

posted @ 2012-09-25 12:51 dennis 阅读(12021) | 评论 (4)编辑 收藏

home: 

a clojure library designed to render velocity template for ring in clojure.

usage

adds dependency in leiningen project.clj:

  [ring.velocity "0.1.0-snapshot"] 

create a directory named templates in your project directory to keep all velocity templates.

create a template templates/test.vm:

  hello,$name,your age is $age. 

use ring.velocity in your namespace:

  (use '[ring.velocity.core :only [render]]) 

use render function to render template with vars:

  (render "test.vm" :name "dennis" :age 29) 

the test.vm will be interpreted equals to:

  hello,dennis,your age is 29. 

use ring.velocity in :

  (defroutes app-routes      
(get "/" [] (render "test.vm" :name "dennis" :age 29))
(route/not-found "not found"))

use ring.velocity in :

  (use '[ring.util.response])   
(response (render "test.vm" :name "dennis" :age 29))

custom velocity properties,just put a file named ring-velocity.properties to your classpath or resource paths.the default velocity properties is in .

license

凯发天生赢家一触即发官网 copyright © 2012 dennis zhuang[killme2008@gmail.com]

distributed under the eclipse public license, the same as clojure.

home: 

posted @ 2012-07-18 00:07 dennis 阅读(9418) | 评论 (0)编辑 收藏

网站地图