提示:This Android SDK requires Android Developer Toolkit version 21.1.0 or above. Current version is 21.0.1.2012-12-6-2-58. Please update ADT to the lat...
分类:
移动开发 时间:
2015-09-16 15:38:04
阅读次数:
146
按时间删除命令:删除当前目录下30天以前的所有文件:find . -type f -ctime +30 -exec rm -fr {} \; 删除当前目录下30天以前的所有目录:find . -type d -ctime +30 -exec rm -fr {} \; 删除/oracle/123目录下...
分类:
系统相关 时间:
2015-09-16 15:37:42
阅读次数:
180
1 //递归删除目录 2 3 function deldir($path){ 4 5 //不是目录 6 if(!is_dir($path)){ 7 return NULL; 8 } 9 10 $db = opendir($path);11 ...
分类:
其他好文 时间:
2015-09-16 15:38:49
阅读次数:
155
iOS企业账号申请(299美金)2015-07-16 20:36:24http://my.oschina.net/u/732202-可齐-点击数:372一、简述 近期做了一次iOS企业账号申请,关于过程中需要用到的链接,做一个简单记录 二、邓白氏编码申请 首先,我们需要为机构申请一个邓白氏编...
分类:
其他好文 时间:
2015-09-16 15:39:00
阅读次数:
177
1、测试数据库1.1 数据库数据 1.2 数据库结构 1.3 数据库脚本DROP TABLE IF EXISTS `school`.`student`;CREATE TABLE `school`.`student` (`id` int(11) NOT NULL default '0',`name.....
分类:
数据库 时间:
2015-09-16 15:36:21
阅读次数:
465
参考链接:http://www.cnblogs.com/lufy/archive/2012/09/12/2681972.html http://zhidao.baidu.com/question/69214815.html对于文字的水平居中,text-align:center可以解决,垂直居中情况较...
分类:
Web程序 时间:
2015-09-16 15:37:00
阅读次数:
134
最近用html5 写个webAPP 用到html5+(plus)的barcode控件,遇到了一个问题。默认情况下varscan=new plus.barcode.Barcode('bcid');//bcid为div的ID这样直接去扫任何条形码,此时的识别率,二维码,EAN13码等的识别速度很快,co...
分类:
Web程序 时间:
2015-09-16 15:38:39
阅读次数:
416
When debuging in the eclipse with Tomcat, i meet these error:Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds. If the serv...
分类:
系统相关 时间:
2015-09-16 15:37:39
阅读次数:
190
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace 线程池判断结束综合演示{ class Program { public...
分类:
编程语言 时间:
2015-09-16 15:35:06
阅读次数:
156
在node.js中,有了cheerio模块、request模块,抓取特定URL页面的数据已经非常方便。 一个简单的就如下var request = require('request');var cheerio = require('cheerio');request(url,function(...
分类:
Web程序 时间:
2015-09-16 15:38:03
阅读次数:
264
AJAX即“AsynchronousJavascriptAndXML”(异步JavaScript和XML),是指一种创建交互式网页应用的网页开发技术。先创建两个文件,一个作为服务器端页面文件,一个作为web端页面文件。分别是ajax.php,ajax.html.ajax.phpajax.html无标...
分类:
Web程序 时间:
2015-09-16 15:36:24
阅读次数:
121
Question:http://poj.org/problem?id=1001 1 #include 2 using namespace std; 3 #define max 1000 4 char a[max]; 5 char b[max]; 6 char c[max]; 7 int main(....
分类:
其他好文 时间:
2015-09-16 15:36:35
阅读次数:
180
SSIS提供的日志记录功能,Sql Server 2012有三种配置方式:在Package上进行配置,在Package发布的Server上配置,在Job Agent上New step时配置logging。一,在Package上配置日志,记录的是SSIS的Event Log选择将log存在的Sql s...
分类:
其他好文 时间:
2015-09-16 15:35:24
阅读次数:
727
If you are running a kernel that you built and installed "by hand", rather than by installing a package from a distribution, you can follow these step...
分类:
其他好文 时间:
2015-09-16 15:34:35
阅读次数:
140
1. 什么是RunLooprunLoop是一个与线程相关的机制,可以简单理解为一个循环。 在这个循环里面等待事件,然后处理事件。而这个循环是基于线程的。 在Cocoa中每个线程都有它的runLoop. 通过runLoop这样的机制,线程能够在没有事件需要处理的时候休息,有事情的时候运行。减轻CPU压...
分类:
其他好文 时间:
2015-09-16 15:37:03
阅读次数:
103
Swift 是一个类型安全(type safe)的语言。类型安全的语言可以让你清楚地知道代码要处理的值的类型。如果你的代码需要一个String,你绝对不可能不小心传进去一个Int。由于 Swift 是类型安全的,所以它会在编译你的代码时进行类型检查(type checks),并把不匹配的类型标记为错...
分类:
其他好文 时间:
2015-09-16 15:35:53
阅读次数:
136
转载自http://www.cnblogs.com/tommyli/archive/2011/12/14/2287614.html1.Redis是什么?十五分钟介绍 Redis数据结构Redis系统性介绍一个很棒的Redis介绍PPT强烈推荐!非同一般的Redis介绍Redis之七种武器锋利的Red...
分类:
其他好文 时间:
2015-09-16 15:35:31
阅读次数:
279