1. 生成patch: diff -ruN old new 比如: diff -urN old new > 1.patch  打补丁: 命令很简单: patch -p0 < 1.patch 但是怎么打还是问题: 1. 什么目录下打补丁?什么目录下可以打补丁? 2.在第几层打目录? 举几个例子来帮助理解一下: 在当前目录下创建如下的机构: $mkdir new $mkdir old $echo &quo ...

    阅读全文
  2. window bat批处理文件中常常有setlocal和endlocal,那它们的作用是什么呢? microsoft官方文档解释是 Setlocal creates a local scope and endlocal terminates the local scope. Any changes made within the setlocal and endlocal scope are discarded, thereby leaving the original envi ...

    阅读全文
  3. 50520

    QQ互联通过OAuth协议来实现,本文基于OAuth2.0整理。 QQ互联提供了OAuth协议的介绍:http://wiki.connect.qq.com/oauth2-0%E7%AE%80%E4%BB%8B OAuth2.0认证的过程大致如下: 用户在访问网站上点击QQ登录字样后,发起一个网站请求,网站跳转到QQ官方提供的一个oauth2.0认证的网址,格式如下: https://graph.qq.com/oauth2.0/authorize?response ...

    阅读全文
  4. 对动态编译的apache服务器来说可以通过apxs (Apache Extension Tool)来快速安装扩展模块。 如需要添加mod_deflate, 则可以通过下面的命令来实现 [apache2 home]/bin/apxs -i -c -a [apacheSRC]/modules/filters/mod_deflate.c [apache2 home] 为当前安装的apache目录 [apacheSRC]为安装apache的源文件目录 通过这个命令可以快 ...

    阅读全文
  5. 本文介绍Fiddler执行命令。 使用ALT+Q可以快速进入Exceution Command   Command 解释 Example screenshot/message #1 bold 对会话加粗。 bold ...

    阅读全文
  6. desktop电脑上访问页面可以很好的通过鼠标事件来实现drag & drop拖放功能,可是如何在触摸屏上来实现这个功能? 首先:有没有这个需求? 来自下面链接的讨论 http://stackoverflow.com/questions/3382393/html5-drag-and-drop-api-on-touch-screen-devices 有一种观点就是: 没有必要,至少不必须。最好的解决办法就是面向设备设计两套UI。 Touch and drag ...

    阅读全文
  7. 写断打字效果的js. html: <p class="typeIn">This is the text typed in manually.This is the text typed in manually.This is the text typed in manually. This is the text typed in manually.This is the text typed in manually.</p> ...

    阅读全文
  8. 通过apache来访问svn, 这样就可以通过http来访问svn了。jinkens里配置svn url。 使用Apache访问SVN的优缺点: There are some disadvantages of using Apache's http for your Subversion server: It's slower It's harder to setup Then, there are advantages: It uses ...

    阅读全文
  9. Wiring Components to Work Together This chapter describes service tables and how to wire particular Oracle Fusion Middleware components together. It contains the following sections: Understanding Service Tables Viewing Service ...

    阅读全文
4142