`
文章列表
摘自《Data Mining - Concepts and Techniques》     The most popular data model for a data warehouse is a multidimensional model.Such a model can exist in the form of a star schema, a snowflake schema, or a fact constellation schema. Let’s look at each of these schema types. Star schema: The most com ...
摘自《Data Mining - Concepts and Techniques》     The most popular data model for a data warehouse is a multidimensional model.Such a model can exist in the form of a star schema, a snowflake schema, or a fact constellation schema. Let’s look at each of these schema types. Star schema: The most com ...
摘自《Data Mining - Concepts and Techniques》 A data cube allows data to be modeled and viewed in multiple dimensions. It is defined by dimensions and facts.
摘自: 《Data Mining - Concepts and Techniques》    According toWilliam H. Inmon, a leading architect in the construction of data warehouse systems, “A data warehouse is a subject-oriented, integrated, time-variant, and nonvolatile collection of data in support of management’s decisio ...
转自: http://hi.baidu.com/gacmotor/item/694bb5d144c459bf33db90cc   钩子脚本的具体写法就是操作系统中shell脚本程序的写法,请根据自己SVN所在的操作系统和shell程序进行相应的写作所谓钩子就是与一些版本库事件触发的程序,例如新修订版本的创建,或是未版本化属性的修改。每个钩子都会被告知足够多的信息,包括那是什么事件,所操作的对象,和触发事件的用户名。通过钩子的输出或返回状态,钩子程序能让工作继续、停止或是以某种方式挂起。默认情况下,钩子的子目录中包含各种版本库钩子模板。$ ls repos/hooks/
#转自: http://database.51cto.com/art/201010/229691.htm    MySQL日志是我们需要掌握的知识,下面就为您介绍几个最常见的MySQL日志类型,如果您对MySQL日志方面感兴趣的话,不妨一看。 1.错误日志   记录启动、运行或停止mysqld时出现的问题。My.ini配置信息:#Enter a name for the error log file.   Otherwise a default name will be used.#log-error=d:/mysql_log_err.txt 2.查询日志    记录建立的客户端连 ...
下载附件中的文件ctags58.zip,解压之后的目录是CTAGS_PATH(例如D:\Program Files\ctags58)。 并把%CTAGS_PATH%加到环境变量PATH的后面

配置vim(windows)

    博客分类:
  • vim
  "[start] 基本配置 "显示行号 set nu "取消备份 set nobk "设置历史记录步数 set history=100 "当文件在外部被修改,自动更新该文件 set autoread   "windows下可以解决vim打开utf-8文件出现中文乱码的问题 set fileencodings=utf-8,cp936,gb18030,gbk,gb2312,ucs-bom,latin-1  set tabstop=4 set shiftwidth=4 set is set ai s ...
#bootstrap 主页:http://twitter.github.com/bootstrap/index.html 中文帮助文档: http://wrongwaycn.github.com/bootstrap/docs/ 简介:Twitter推出的一个开源的用于前端开发的工具包。它由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架。    
#overlib.js overlib 是一个生成提示框与弹出菜单等页面效果的一段非常优秀的JS代码。 http://webstats.motigo.com/overlib/ 
转自: http://www.html5war.com/?p=354         随着Web2.0的兴起,前端开发工程师成为了一个专门的职业,笔者今天归纳整理了前端开发工程师都应该要掌握哪些知识技能: 【开发语言】:HTML、CSS、JavaScript、XML/JSON、Python/PHP等服务端脚本语言、                         FLex/ActionScript/AIR 【开发框架】:jQuery、YUI、Symfony/Zend、Django、SoundManager、ASTRA 【各种浏览器】:IE6/7/8/9/10、FireFox ...

extends(模版继承)

转自:http://gentwolf.sinaapp.com/index/detail/108.html    {extends}模板继承继承将OOP的理念带到了模板中,允许你定义一个或多个可以被子模板扩展的基模板,扩展意味着查以覆盖父模板中命名相同的区域块。1.继承可以是多级的,只要你想要,你可以从一个文件继承另一个文件,这个文件可以是从另另一个文件继承的2.子模板不能在{block}标签外定义内容,{block}这外的内容将会被忽略3.子模板与父模中的{block}标签内容可以使用append或prepend、{$smarty.block.parent}或{$smarty.block.c ...
转自: http://www.54chen.com/index.php?p=309  lighttpd插件开发步骤   插件架构说明 lighttpd的状态:为了便于理解lighttpd插件开发,需要了解lighttpd server在处理请求响应消息的过程中的11种状态,在这些状态中有如下重要函数需要被调用。对于这些状态,有的请求可能都会涉及到,有些请求可能只会经过部分状态。
转自:http://5ihack.diandian.com/post/2011-05-11/16787420  HTTP请求的方法HTTP/1.1协议中共定义了八种方法(有时也叫“动作”)来表明Request-URI指定的资源的不同操作方式: OPTIONS  返回服务器针对特定资源所支持的HTTP请求方法。也可以利用向Web服务器发送'*'的请求来测试服务器的功能性。 HEAD  向服务器索要与GET请求相一致的响应,只不过响应体将不会被返回。这一方法可以在不必传输整个响应内容的情况下,就可以获取包含在响应消息头中的元信息。 GET  向特定的资源发出请求。注意:GET方法不应当被用于产生“ ...

php重定向

一、使用location对象的href属性 <html> <head> <?php $new_url = "http://".$_SERVER['HTTP_HOST']."/a.php"; echo '<script>location.href="'.$new_url.'";</script>'; ?> </head> <body> </body> </html>  
Global site tag (gtag.js) - Google Analytics