在开发项目的过程中会用到很多第三方库,比如AFNetWorking,SDWebImage,FMDB等,但一直都没去好好的研究一下,最近刚好项目不是太紧,闲下来可以给自己充充电,先研究一下SDWebImage的底层实现,源码地址:SDWebIm...
分类:
Web程序 时间:
2015-06-18 11:48:55
阅读次数:
207
随便什么地方加上一段代码就行了: OrientationEventListener mOrientationListener = new OrientationEventListener(this, SensorManager.SENSOR_DELAY_UI) {
public void onOrientationChanged(int orientatio...
分类:
移动开发 时间:
2015-06-18 11:48:06
阅读次数:
183
—– BEGIN LICENSE —– Andrew Weber Single User License EA7E-855605 813A03DD 5E4AD9E6 6C0EEB94 BC99798F 942194A6 02396E98 E62C9979 4BB979FE 91424C9D A45400BF F6747D88 2FB88078 90F5CC94 1CDC92DC 8...
分类:
其他好文 时间:
2015-06-18 11:46:45
阅读次数:
133
今天,数据库的操作越来越成为整个应用的性能瓶颈了,这点对于Web应用尤其明显。关于数据库的性能,这并不只是DBA才需要担心的事,而这更是我们程序员需要去关注的事情。当我们去设计数据库表结构,对操作数据库时...
分类:
数据库 时间:
2015-06-18 11:45:38
阅读次数:
168
在js中计算5/2,不会像在java中得到2,结果会是2.5,那如何得到整数2呢,整合下搜索结果,总共有以下几种方法:parseInt(5/2)Math.floor(5/2)5/2|0第三种特别说明下,‘|‘是位运算符,js中位运算之前会转为整数,与0位运算结果还是本身,所以也能达到取整数的目的。
分类:
Web程序 时间:
2015-06-18 11:45:24
阅读次数:
245
开发报捷:增加Lucene搜索引擎功能1.创建、初始化索引、统一搜索入口、搜索结果展现--内容、标题高亮、关键词搜索2.高级搜索:高级搜索增加多入口查询(精确查询、模糊查询、前缀查询等),每页显示条数自定义、索引结果数据设置、选择索引文档类型等)集成lucene搜索引擎:1...
分类:
编程语言 时间:
2015-06-18 11:46:28
阅读次数:
251
//首先在XML文件中配置一下
<TextView
android:id="@+id/textViewId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="数据"
/>
<Button
android:id="@+id/butid"
android:layout_width="match_parent"
android:layout..
分类:
移动开发 时间:
2015-06-18 11:45:13
阅读次数:
176
一:安装环境CentOS6.5内核版本:2.6.32-431.el6.x86_64VMware-Workstation二:xen的安装使用[root@node1~]#cat/proc/cpuinfo|grepflag
flags:fpuvmedepsetscmsrpaemcecx8apicsepmtrrpgemcacmovpatpse36clflushdtsacpimmxfxsrssesse2sssyscallnxrdtscplmconstant_tscuparch_per..
分类:
其他好文 时间:
2015-06-18 11:44:38
阅读次数:
263
maste.go
package main
import (
"fmt"
"os"
"runtime"
"test"
"time"
)
var x chan []int = make(chan []int, 1)
var Num int = 100
var WNum int = 100
func main() {
fmt.Println(time.Now())
var lis...
分类:
编程语言 时间:
2015-06-18 11:45:44
阅读次数:
152
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of...
分类:
其他好文 时间:
2015-06-18 11:43:55
阅读次数:
109
#import "XMPPData.h"
#import "XMPPFramework.h"
//导入花名册相关头文件
#import "XMPPRoster.h"
#import "XMPPRosterMemoryStorage.h"
#import "XMPPRosterCoreDataStorage.h"
@interface XMPPData()
@property(stron...
分类:
移动开发 时间:
2015-06-18 11:44:48
阅读次数:
242
在学习编程的时候,总会遇到这样那样的困难,笔者整理了编程学习各阶段的问题及心态分析。希望对广大编程爱好者有帮助。...
分类:
其他好文 时间:
2015-06-18 11:44:23
阅读次数:
109
高仿新浪新闻客户端,实现了大部分功能以及界面部分,自动获取新闻信息数据、定位当前位置获取气象信息数据并展示,有兴趣的可以看看。...
分类:
其他好文 时间:
2015-06-18 11:44:12
阅读次数:
121
内存基本处理工具:
STL有五个全局函数,作用于未初始化空间上,它们分别是:construct(), destroy(), uninialized_copy(), uninialized_fill()和uninialized_fill_n()。
前两个函数前面文章有介绍,下面介绍后三个函数。 uninitialized_copy()使我们能够将内存的配置与对象的构造行为分离开来。如果作...
分类:
其他好文 时间:
2015-06-18 11:45:02
阅读次数:
136
arcgis FLEXnet Licensing error:-42,147解决办法
问题如下:
提示信息为:
Provide your license server administrator with the following infomation:
Invalid parameter.
License path:@RJB-SCSUP;
FLEXnet Licensing er...
分类:
Web程序 时间:
2015-06-18 11:42:51
阅读次数:
374
在web上创建可视化的交互式数据javascript框架-JavaScript InfoVis Toolkit
源代码下载地址:http://www.zuidaima.com/share/1554696025099264.htm...
分类:
编程语言 时间:
2015-06-18 11:41:45
阅读次数:
192
我在昨天的文章中介绍了我设计的优酷Scope。在今天的练习中,我将对它的模版做一些小的改动,利用模版中的attributes项使得它的显示更加生动。...
分类:
系统相关 时间:
2015-06-18 11:43:08
阅读次数:
157