开发环境操作系统:windows开发工具:IntelliJ IDEA 14.1.1 需要安装scala插件编译环境:jdk 1.7 scala 2.10.4使用IDEA开发spark应用1:新建scala项目:2:选择scala版本,需要spark的scala版本对应点击上图Scala SDK的cr...
分类:
其他好文 时间:
2015-04-10 15:16:04
阅读次数:
147
You are the King of Byteland. Your agents have just intercepted a batch of encrypted enemy messages concerning the date of the planned attack on your island. You immedietaly send for the Bytelandian Cr...
分类:
编程语言 时间:
2015-04-08 09:19:02
阅读次数:
188
1、
/**
* 通过内容提供器来获取图片缩略图
缺点:必须更新媒体库才能看到最新的缩略图
* @param context
* @param cr
* @param Imagepath
* @return
*/
public static Bitmap getImageThumbnail(Context context, ContentResolver cr, S...
分类:
移动开发 时间:
2015-04-08 09:08:15
阅读次数:
162
One of the teams I have recently coached quickly got a grasp of how to phrase user stories but found it hard to relate to the concept of acceptance cr...
分类:
其他好文 时间:
2015-04-07 09:42:16
阅读次数:
322
1.终端启动MySQL:mysql-uroot-pxxxx2.查看所有的数据库名字:showdatabases;3.选择一个数据库操作:usedatabase_name;4.查看当前数据库下所有的表名:showtables;5.创建一个数据库:createdatabasedatabase_name;6.删除一个数据库:dropdatabasedatabase_name;7.创建一个表:cr..
分类:
数据库 时间:
2015-04-06 18:50:30
阅读次数:
208
如下脚本创建数据库yourdbname,并制定默认的字符集是utf8。CREATE DATABASE IF NOT EXISTS yourdbname DEFAULT CHARSET utf8 COLLATE utf8_general_ci;如果要创建默认gbk字符集的数据库可以用下面的sql:cr...
分类:
数据库 时间:
2015-04-02 14:42:00
阅读次数:
155
C语言转义字符
转义字符
意义
阿斯科马值( ASCII)(十进制)
\a
响铃BEL
007
\b
退格(BackSpace) ,将当前位置移到前一列(删除)
008
\f
换页(FF),将当前位置移到下页开头
012
\n
换行(LF) ,将当前位置移到下一行开头
010
\r
回车(CR) ,将当前位置移到本行...
分类:
其他好文 时间:
2015-03-31 22:19:01
阅读次数:
134
1.在并行队列执行任务中,如果想让某一个任务先执行完后再执行其后面的任务,此时可以用dispatch_barrier_async,下图是dispatch_barrier_async函数的处理流程。2.下面用代码体检一下 dispatch_queue_t queue=dispatch_queue_cr...
分类:
其他好文 时间:
2015-03-30 20:20:57
阅读次数:
129
package com.BFGJ.AES;import java.util.Random;import java.util.StringTokenizer;import javax.crypto.Cipher;import javax.crypto.SecretKey;import javax.cr...
分类:
编程语言 时间:
2015-03-30 18:11:00
阅读次数:
184
cocos2d-x之加速度传感器使用真机来调试1 //加速度的默认状态是关闭的,需要手动的开启2 Device::setAccelerometerEnabled(true);3 4 //auto listener = EventListenerAcceleration::cr...
分类:
其他好文 时间:
2015-03-29 10:42:18
阅读次数:
154