1. YUI Drag & Drop2013-11-20

    http://developer.yahoo.com/yui/dragdrop/  Drag and Drop API Document: http://yui.github.io/yui2/docs/yui_2.9.0_full/docs/module_dragdrop.html  The following configuration properties are currently supported via the contructor ...

    阅读全文
  2. 本文是简单介绍基于天翼云的Linux环境下,按照apache, php,  mysql官网源码编译手动安装的过程。 如果你期望通过已有的一些安装包快速安装的话,可以忽略本文。 第1部分 Apache 安装Apache 2.4.x。 选择官网下载源码编译的方法安装: Step1: 从官网提供的link下载httpd源码,并解压 wget http://archive.apache.org/dist/httpd/httpd-2.4.7.tar.gz gz ...

    阅读全文
  3. 原文:http://www.oracle.com/technetwork/articles/adf/part4-098813.html Oracle JDeveloper 11g makes it easy to compile applications, generate deployment artifacts (such as Java archives [JARs], Web application archives (WARs), and enterprise archive ...

    阅读全文
  4. connect by的使用来用解决树形结构的表查询。可以向上根节点查询,也可以下叶子节点查询。 最简单的语法如下: //从给定的pid开始向下查询,直到叶子节点 select * from table start with pid=:bindingPID connect by prior pid=id //从给的的id开始向上查询,直到根节点 select * from table start with id=:bindingPID connect by prior id= ...

    阅读全文
  5. 《mac 使用 pf 做端口转发》:https://www.jianshu.com/p/6052831a8e91 《MAC pf 防火墙OS 10.10 开启80(http)端口的方法》https://my.oschina.net/china008/blog/343049 《Mac 使用 Pfctl 来完成 Docker 的网络映射》https://toutiao.io/posts/d7ljnp/preview 遇到了局域网内无法访问mac电脑上的web app,于是参考了上文 ...

    阅读全文
  6. 102450

    如何定义一个HTTP响应呢?在RFC2616的第六章定义了HTTP Response的格式。请参考官网。 HTTP响应的定义格式: Response = Status-Line *(( general-header | response-header | entity-header ...

    阅读全文
  7. 错误现象: E:\test>gradle build :compileJava FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Could not find tools.jar 原因分析: 这个提示很明显是找不到JDK。所以需要设置一下JDK信息。 ...

    阅读全文
  8. 本文转自官方文档   https://mp.weixin.qq.com/debug/wxadoc/dev/framework/app-service/api.html https://mp.weixin.qq.com/debug/wxadoc/dev/api/   API 小程序开发框架提供丰富的微信原生 API,可以方便的调起微信提供的能力,如获取用户信息,本地存储,支付功能等。 说明: wx.on 开头的 API 是监听某个 ...

    阅读全文
  9. 41550

    http://www.artfulsoftware.com/mysqlbook/sampler/mysqled1ch20.html https://www.jianshu.com/p/6881b9ec1759 ...

    阅读全文
  10. Auxiliary verbs - 助动词 Auxiliary verbs - 助动词 助动词 have 和 be 主要用于构成各种时态。   例如: I have already eaten.   (我已经吃了。)   She is reading a book.   (她正在看书。) ...

    阅读全文
  11. 物料相关流程: 新物料申请流程 物料认定流程 物料信息变更申请流程 物料打样申请流程 流程离不开人员角色,先列出相关人员角色。不同的公司角色命名可能不太一样。不同的产品制造环境组织架构也会有很大的区别(ETO、ATO、MTO)的研发周期和流程也会有很大的区别。大批量生产和非标定制生产会有很大的区别。流程制造和离散制造会有很大的区别。 研发设计工程师 机械结构研发工程师 电气研发工程师 硬件工程师 工程部(产业化 ...

    阅读全文
  12. #!是特殊的表示符,其后面跟的是用来解释该脚本的shell的路径。 告诉操作系统, 此脚本的解释器为 /bin/sh 这个可执行文件 类似地, 如果你的脚本用 bash, ksh, 解释, 第一行就应该是 #!/bin/bash #!/bin/ksh 之类的 或者, 你自己定义一种脚本语言, 再自己写个解释器去执行它, 比如说叫 xshell,  放在 /usr/local/bin 下, 你的脚本第一行就应该是 #!/usr/local/bin/xshell ...

    阅读全文
  13. 根据spring guide写的sample project,从头到位自己试写一个。具体细节参考链接。     ...

    阅读全文
  14. 如何invoking a SOAP service from PLSQL? the call is timing out within 60 seconds no matter what the timeout value we set using set_transfer_timeout method, we are getting the following error.   "Error Occurred. Message: ORA-29273: HT ...

    阅读全文
  15. 使用load infile导入csv文件出现 ERROR 1366 (HY000):Incorrect string value: '\xBE\xAB\xC6\xB7' for column TYPE 百度网上解析: TYPE字段不能输入汉字,你输入了汉字 这是因为的你创建的表编码存在问题 可以尝试将每一个用到中文的字段charset改成uft8 collation改成utf8_unicode_ci ...

    阅读全文
  16. 这样URLConnection connection timeout一个问题: 代码: URL url= new URL(urlString); URLConnection conn=url.openConnection(); 异常问题: java.net.ConnectException: Connection timed out: connect at java.net.DualStackPlainSocketImpl.connect0(Native ...

    阅读全文
  17. apache的日志管理和配置。 LogFormat指令的语法 Description: Describes a format for use in a log file Syntax: LogFormat format|nickname [nickname] Default: LogFormat "%h %l %u %t \"%r\" %>s %b" Context: server config, virtual host S ...

    阅读全文
  18. AOP concepts2019-08-12

    Let us begin by defining some central AOP concepts and terminology. These terms are not Spring-specific... unfortunately, AOP terminology is not particularly intuitive; however, it would be even more confusing if Spring used its own terminology. ...

    阅读全文
  19. Apache Subversion是一个功能强大的版本控制系统(version control system)。设计初衷是希望成为更好的CVS。 Apache Subversion有很多“代名词“,简写SVN。这些代名词实质上就是不同的第三方提供的build。如 Windows下的build有 CollabNet (supported and certified by CollabNet; requires registration) SlikSVN ( ...

    阅读全文
  20. 1.进入工作复本 cd ~/test 2.查看仓库地址(URL) svn info       路径: .     URL: svn://192.168.1.16/web/www.kukaka.org     版本库根: svn://192.168.1.16/web/www.kukaka.org     版本库 UUID: da5e29 ...

    阅读全文