Zihao

Make small but daily progress

0%

统计某人的代码提交量,包括增加,删除:

1
git log –author=”$(git config –get user.name)” –pretty=tformat: –numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf ”added lines: %s removed lines : %s total lines: %s\n”,add,subs,loc }’  -
阅读全文 »

Solr 是基于 Lucene 的全文搜索服务器,通过使用Solr进行先序精准查询,可以避免业务数据库的大量查询。

阅读全文 »

PATH=$(getconf PATH),执行此命令将环境变量恢复到系统初始值。

实现目标

1.页面的跳转(前进后退,点击等)不重新请求页面
2.页面URL与页面展现内容一致(符合人们对传统网页的认识)
3.在不支持的浏览器下降级成传统网页的方式

阅读全文 »