官方资料:http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html#resetting-permissions-unix
还有一个值得参考的mysql安装,与python-mysql安装博客http://hearrain.com/2011/01/498
据官方文档说,
For example, if you r...
分类:
数据库 时间:
2014-07-27 23:37:59
阅读次数:
295
LeetCode: Reverse Words in a StringGiven an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky...
分类:
其他好文 时间:
2014-07-27 23:33:19
阅读次数:
173
在这里对单元测试的使用,主要介绍两种方法,1、手动添加配置信息,然后编写测试类。2、通过Eclipse创建测试项目 1、手动添加配置信息,然后编写测试类: 待测试的类:/src/com/example/unittest/UnitTestDemo1.java package com.example.u...
分类:
移动开发 时间:
2014-07-27 23:05:39
阅读次数:
333
关于Quartz的基本知识,这里就不再多说,可以参考Quartz的example。这里主要要说的是,个人在Quartz和Spring集成的过程中,遇到的问题和个人理解。首先来说说个人的理解:1、Quartz的运行原理Quartz的重要组成部分就是,线程池和Trigger。而这些资源是被一个叫Stan...
分类:
编程语言 时间:
2014-07-27 22:34:19
阅读次数:
206
突然兴起想玩一下抠图,试着用自带的Example\video来改,花了一个中午做了个小样:分别是白色为底与黑色为底的效果,代码如下: 1 import processing.video.*; 2 int numPixels; 3 int[] backgroundPixels; 4 Capture v...
分类:
其他好文 时间:
2014-07-27 22:19:20
阅读次数:
320
ProgressWheel是github上一个开源的项目,为开发者提供一个扁平化的ProgressBar,并可以对其进行深度定制。效果如下:
下面介绍使用方式:
1.下面是ProgressWheel源码,拷到项目下。
package com.example.view;
import android.content.Context;
import android.conte...
分类:
移动开发 时间:
2014-07-27 11:47:43
阅读次数:
366
Description
A number is called a Mirror number if on lateral inversion, it gives the same number i.e it looks the same in a mirror. For example 101 is a mirror number while 100 is not.
Given two ...
分类:
其他好文 时间:
2014-07-27 11:10:22
阅读次数:
204
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2014-07-27 10:25:42
阅读次数:
179
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.For example, Given n = 3,You should return the followin...
分类:
其他好文 时间:
2014-07-27 10:21:02
阅读次数:
219
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.For example, Given the following matrix:[ [ 1,...
分类:
其他好文 时间:
2014-07-27 10:16:02
阅读次数:
135