使用GitHub步骤: 1、申请GitHub帐户 xxx ,创建名为new-project的新Repository? 2、安装Git客户端(Linux) #yum install git git-gui???????????????? //我使用的是opensuse,直接在软件仓库搜...
分类:
其他好文 时间:
2014-07-22 09:06:05
阅读次数:
207
Power StringsTime Limit: 3000 MS Memory Limit: 65536 KB64-bit integer IO format: %I64d , %I64u Java class name: Main[Submit] [Status] [Discuss]Descrip...
分类:
其他好文 时间:
2014-07-22 09:00:03
阅读次数:
256
1 $("input[name='searchBean.con1']").keyup(function(){ //keyup事件处理 2 $(this).val($(this).val().replace(/\D|^0/g,'')); 3 }).bind("past...
分类:
Web程序 时间:
2014-07-22 08:37:34
阅读次数:
216
1.?? 创建 nginx 代理配置文件 命名为 proxy.conf (将给文件存放到 conf 的配置文件夹为例): proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remo...
分类:
其他好文 时间:
2014-07-22 08:34:34
阅读次数:
224
之前再做项目的时候下载了一个开源的程序,数据库在移植的时候通过exp/imp导入导出,结果程序在启动时报错,对比过后发现两个数据库表相差了十几个,再排查问题,发现少掉的十几个表全部是空表,查了一下oracle1...
分类:
数据库 时间:
2014-07-21 10:37:49
阅读次数:
243
1. 前言 ????也是前段时间工作上遇到过这样的问题:quartz定时任务没有在预期的时间执行。后来研究了下quartz的机制,查明了原因,这里做个记录和分享。 ? 2. 原因解释 ??? 先看一下spring quartz的大致机...
分类:
编程语言 时间:
2014-07-21 10:35:08
阅读次数:
400
#!/bin/bash
#auto?backup?mysql?every?database;
#date?2014.07.07
#author?firxiao
###mysql_config####
HOST="localhost"????????##mysql主机IP
USER="xxxx"?????????????##用户名...
分类:
数据库 时间:
2014-07-21 10:31:15
阅读次数:
223
CMake是干嘛的,我不详说。我只知道,我写一个程序要将多个文件组织起来并编译。从头写一个MakeFile太麻烦。CMake配置文件比MakeFile要简单很多。 从原理上讲,CMake只是在帮助我们自动生成MakeFile而己。我们编译...
分类:
其他好文 时间:
2014-07-21 10:29:31
阅读次数:
286
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
clock_t start,finish;
//先行后列
start=clock();
//执行内容
????//.......
finish=clock();
//tot...
分类:
编程语言 时间:
2014-07-21 10:18:31
阅读次数:
209
模块下载地址: MySQL-python 1.2.3 for Windows and Python 2.7, 32bit and 64bit versions http://www.codegood.com/archives/129 直接点击安装exe即可,如果缺少dll文件,可以百度下载相关dll文件。...
分类:
数据库 时间:
2014-07-21 10:12:16
阅读次数:
223