- 浏览: 20626 次
最新评论
文章列表
1、composer镜像
composer config -g repo.packagist composer https://p.staticq.com
composer config -g repo.packagist composer https://packagist.phpcomposer.com
1、设置本地连接
2、设置虚拟机的“虚拟网络编辑器”
3、进入Centos7操作系统,设置IP
执行
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
环境: Centos 7.2/64位 两台服务器 都为tracker 和 storage
10.100.0.1 storage tracker10.100.0.2 storage tracker
1 和 2安装配置类似, 下面以一台为例
1, 安装依赖包,添加fastDFS运行用户
yum install -y zlib zlib-devel pcre pcre-devel gcc gcc-c++ openssl openssl-devel libevent libevent-devel perl unzip
useradd -s /sbin/nologin fastdf ...
合并时提示如下信息:
Working copy and merge source not ready for reintegration
svn: Reintegrate can only be used if revisions 6129 through 8011 were previously merged from svn://x.x.x.x/sms/client to the reintegrate source, but this is not the case:
sms/branch/agent/client
Missing ranges: /sms/c ...
1、shell脚本deleteTempDirFiles.sh
查找目录下前一天创建的所有文件,然后执行删除
export TEMP_DIR=/home/freecall/tempDir
echo "Delete the tempfiles before 1 days..."
#rm -rf $TEMP_DIR/*
find $TEMP_DIR/ -mtime +1 -name "*" -exec rm -rf {} \;
echo "Delete the tempfiles successfully. " ...
sqlplus /nolog
connect /as sysdba
alter user sys identified by abc;
1、export.sh
#!/bin/bash
str=`date +%Y%m%d_%H%M%S`
outputfile=nec.dmp
rm -f /home/oracle/necDir/$outputfile
expdp nec/vnetoo DIRECTORY=necDir DUMPFILE=$outputfile SCHEMAS=nec logfile=logDir:nec_$str.log flashback_time=systimestamp
cp /home/oracle/necDir/$outputfile /home/oracle/backup/data/nec ...
select u.table_name 表名,u.column_name 字段名,a.DATA_TYPE 字段类型,a.DATA_LENGTH 字段长度,u.comments 注释 from user_col_comments u,all_tab_columns a
where u.table_name=a.TABLE_NAME and a.OWNER='XMUEDU' and u.column_name=a.COLUMN_NAME --and a.TABLE_NAME= 'BASIC_CODE'
order by u.table_name
一、 前言
二、 技术简介
三、 实施方案
3.1 备份目录的创建
3.2 expdp导出数据库
3.3 impdp导入数据库
你拿到你上个月的薪水了吗?如果拿到了,那不错。你能够自食其力了。你是搞程序的?对吗?ok,上个月的薪酬只是让你领先于世界上80%的打工仔,更不要说那些找不到工作的人。所以如果你下个月依然有薪水,那么说明你不是冒名顶替的。
如果你只是需要一份工作,能够并愿意接受计算机作为谋生的工具,那么你拥有保持信息时代运行的一切。
1、获取单元格中的值
public String getStringValue(HSSFCell cell) {
if (cell == null)
return "";
switch (cell.getCellType()) {
case HSSFCell.CELL_TYPE_BLANK:
return "";
case HSSFCell.CELL_TYPE_BOOLEAN:
return cell.getBooleanCellValue() + "";
case HSSFCell.CELL_TYPE_NUM ...
1、Math.min.apply(null, [1, 2, 3]) 获取数组中最小的值,等同于Math.min(1, 2, 3)
2、值在数组中位置$.inArray(val,arr)
3、getURL方式传递中文时,需要编码(需要编码两次encodeURI,如果只一次,linux环境还是会乱码,不知道啥情况),服务器端解码。
编码方式:encodeURI(encodeURI(string))
解码方式:URLDecoder.decode(string, "UTF-8")
4、
var getUrlParam = function(name, href, no ...
1、Myeclipse10安装svn。
打开http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
如图
下载site-1.8.22.zip后,解压到目录MyEclipse 10\dropins下,重启软件,就安装好了。
2、ext自动提示插件使用spket
http://www.cnblogs.com/maowang1991/archive/2013/02/05/2893142.html