`
文章列表
node http://cnodejs.org/cman/   express http://www.csser.com/tools/express-js/express-guide-reference-zh-CN.html
Installing node.js As mine was a clean Ubuntu installation, I needed to install certain libraries first. sudo apt-get install g++ curl libssl-dev apache2-utils The easiest way is to download node.js is to get a git clone. For that I needed to install the git package. sudo apt-g ...
解决方法(在shell下运行以下命令): sudo a2enmod rewrite sudo vi /etc/apache2/sites-available/default 把所有 AllowOverride None 改成 AllowOverride All   sudo /etc/init.d/apache2 restart 再次运行,成功

yii学习笔记

    博客分类:
  • php
主要参考地址http://www.yiiframework.com/doc/guide/1.1/zh_cn/ 安装 1 首先是创建一个yii application YiiRoot/framework/yiic webapp WebRoot/guavayii 2 复制framework到刚刚创建的application里面 之后把index.php的第4 5行改为 $yii=dirname(__FILE__).'/framework/yii.php'; $config=dirname(__FILE__).'/protected/config/main.php'; 3 输入相应的地 ...
PHP Simple Comments Read/Write jSon data to text file A few days ago i had to build a simple comment form. First i thought about MYSQL etc, but this all seems to be too complicated. So i came up with a simple solution based on jSon and a TXT file. So that’s how it cooks: 1. Load the text fi ...
shpaml yii node.js
在项目中经常用到 DataTable, 如果 DataTable 使用得当,不仅能使程序简洁实用,而且能够提高性能,达到事半功倍的效果,现对 DataTable 的使用技巧进行一下总结。           一、 DataTable 简介                (1) 构造函数             DataTable()   不带参数初始化 DataTable
CORREL函数   http://office.microsoft.com/zh-cn/excel-help/HP005209023.aspx     分别对那10个点求导,得出斜率,比较斜率。 比较不错 目前我的想法是求16个点 梯度还是不错   用norm来衡量曲线的差异 matlab 下使用 corrcoef 范数如果不用 matlab,google wiki Pearson's correlation coefficient http://www.btsmth.com/show_snapshot.php?en_name=MathTools&gid= ...

Lp架构

    博客分类:
  • php
学习symfony 配置 yaml mvc orm Doctrine 模板 smarty  
public class CharResponseWrapper extends HttpServletResponseWrapper { private CharArrayWriter output; public String toString() {    return output.toString(); } public CharResponseWrapper(HttpServletResponse response){    super(response);    output = new CharArrayWriter(); } public PrintWrit ...
1.用户输入网址(假设是个html页面,并且是第一次访问),浏览器向服务器发出请求,服务器返回html文件(放在哪里呢); 2.浏览器开始载入html代码,发现<head>标签内有一个<link>标签引用外部CSS文件(其实也有js文件); 3.浏览器又发出CSS文件的请求,服务器返回这个CSS文件; 4.浏览器继续载入html中<body>部分的代码(也就是DOM准备好了?),并且CSS文件已经拿到手了,可以开始渲染页面了; 5.浏览器在代码中发现一个<img>标签引用了一张图片,向服务器发出请求。此时浏览器不会等到图片下载完,而是继续渲染后面的 ...
CATALINA_HOME=C:\work\tomcat-6.0.16 TOMCAT_HOME=C:\work\tomcat-6.0.16 CLASS_PATH=.;%JAVA_HOME%/lib/;%TOMCAT_HOME%/common/lib/;
完全放弃旧博客 把原先博客的WordPress主要文件副本下载到硬盘驱动,编辑wp-config.php文件以适应新服务器。 返回旧博客,在选项中把URL(WordPress地址和博客地址)改为新地址。 下载数据库(为以防万一,请保留旧数据库),上传这个新数据库和WordPress核心文件副本(包含已编辑的wp-config.php文件) 到新服务器。大功告成啦! from:http://www.wordpress.la/codex-%E8%BF%81%E7%A7%BBWordPress.html
删了 system lib 再添加默认的就可以了
我在Lucene与搜索引擎技术(index包详解)中,已经详细讲述了Lucene的倒排索引原 理,不过太详细了,看起来过于费劲。而下边要转载的文章,却以很小的篇幅,阐述的却很深刻,一篇好文,收藏了。 Lucene倒排 索引原理  Lucene 是一个高性能的java全文检索工具包,它使用的是倒排文件索引结构。该结构及相应的生成算法如下: 0)设有两篇文章1和2 文章1的内容为:Tom lives in Guangzhou,I live in Guangzhou too. 文章2的内容为:He once lived in Shanghai. 1)由于lucene是基于关键词索 ...
Global site tag (gtag.js) - Google Analytics