1.当onStart方法被调用时,用户已经可以看到activity ,但是onResume很快就被调用并把onStart方法覆盖。并一直保持该状态,除非外力的改变2.Resume状态处于android生命周期金字塔的顶端,只有处于该状态,才是既可见又可操作(用户输入)的状态3.resume,paus...
分类:
移动开发 时间:
2014-12-13 06:06:55
阅读次数:
172
最近用回了ubuntu ,所以打算安装golang学习当下比较火热的这个语言本来打算使用 sudo apt-get install golang的 安装后发现 是1.2.1不是最新版所以上网上搜了一下。在git上找到一个叫做 gvm的东东,是golang版本管理器地址:https://github....
分类:
编程语言 时间:
2014-12-13 06:08:51
阅读次数:
2220
The API: int read4(char *buf) reads 4 characters at a time from a file.The return value is the actual number of characters read. For example, it retur...
分类:
其他好文 时间:
2014-12-13 06:07:23
阅读次数:
209
转:http://www.mutoulee.cn/113.htmlhttp://www.xuephp.com/main/detail.php?cid=23045Discuz!自定义积分日志在有些项目中可能会遇到积分相关操作,同时需要将自己的积分操作加入积分日志,整理了一下。核心函数:PHP1upda...
分类:
Web程序 时间:
2014-12-13 06:07:40
阅读次数:
1154
Given a string, find the length of the longest substring T that contains at most 2 distinct characters.For example, Given s = “eceba”,T is "ece" which...
分类:
其他好文 时间:
2014-12-13 06:07:09
阅读次数:
137
解题思路:给出一个临界概率,在不超过这个概率的条件下,小偷最多能够偷到多少钱。因为对于每一个银行都只有偷与不偷两种选择,所以是01背包问题。这里有一个小的转化,即为f[v]代表包内的钱数为v的时候,小偷不被逮捕的概率,这样我们在用for(i=1;i=0;v--)f[v]=max(f[v],f[v-c...
分类:
其他好文 时间:
2014-12-13 06:06:08
阅读次数:
223
不多说,上代码: 1 #!/usr/bin/python 2 #-*- encoding=utf-8 -*- 3 4 import urllib 5 import urllib2 6 import json 7 8 keys=raw_input('input you word > ') 9 10.....
分类:
编程语言 时间:
2014-12-13 06:05:41
阅读次数:
221
前言数据在分片时,典型的是分库分表,就有一个全局ID生成的问题。单纯的生成全局ID并不是什么难题,但是生成的ID通常要满足分片的一些要求:不能有单点故障。以时间为序,或者ID里包含时间。这样一是可以少一个索引,二是冷热数据容易分离。可以控制ShardingId。比如某一个用户的文章要放在同一个分片内...
分类:
其他好文 时间:
2014-12-13 06:07:09
阅读次数:
174
http://www.seowhy.com/bbs/thread-20864139-1-1.htmlhttp://www.seowhy.com/bbs/thread-20863727-1-1.htmlhttp://www.seowhy.com/bbs/thread-20863766-1-1.html...
分类:
其他好文 时间:
2014-12-13 06:06:09
阅读次数:
182
http://www.seowhy.com/bbs/thread-20864139-1-1.htmlhttp://www.seowhy.com/bbs/thread-20863727-1-1.htmlhttp://www.seowhy.com/bbs/thread-20863766-1-1.html...
分类:
其他好文 时间:
2014-12-13 06:04:48
阅读次数:
215
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3485分析:a[i]表示长度为i,第i位为0的,符合情况的个数。 b[i]表示长度为i,第i位为1的,符合情况的个数。 c[i]表示符合情况的答案。#include #include #include #...
分类:
其他好文 时间:
2014-12-13 06:07:23
阅读次数:
187
Given a sorted integer array where the range of elements are [lower, upper] inclusive, return its missing ranges.For example, given [0, 1, 3, 50, 75],...
分类:
其他好文 时间:
2014-12-13 06:07:01
阅读次数:
223
默认安装完Windows Server 2008 R2后,从外面ping服务器的地址是ping不通的,原因是服务器防火墙默认关闭了ICMP的回显请求。需要按照如下方法打开:在服务器管理器中选择“配置”--“高级安全Windows防火墙”--“入站规则”,在中间的规则列表中选择“文件和打印机共享(回显...
按照教程使用wsgi来进行配置。但是出现了很多问题,主要关于 .wsgi 文件内的path = '/home/phoenix/django/expr/expr'if path not in sys.path: sys.path.append(path)#sys.path.append('/ho...
分类:
编程语言 时间:
2014-12-13 06:04:33
阅读次数:
317
内容来自 http://my.oschina.net/u/142836/blog/169415使用与优化DB的优化建立合适的索引:尽量让所有查询都走索引,这个效果是很明显的。表空间优化在删除或更新比较频繁的表上,如果包含varchar,text之类的字段,需要定期地执行表空间优化,optimaize...
分类:
数据库 时间:
2014-12-13 06:04:22
阅读次数:
194
Unlike most of the other projects in this book, NoSQL is not a tool, but an ecosystem composed of several complimentary and competing tools. The tools branded with the NoSQL monicker provide an alt...
分类:
数据库 时间:
2014-12-13 01:03:30
阅读次数:
257
前两天,谷歌发布了Android Studio 1.0的正式版,也有更多的人开始迁移到Android Studio进行开发。然而,网上很多的开源库,控件等还是以前的基于Eclipse进行开发,很多人不知道怎么导入到自己的基于Android Studi...
分类:
移动开发 时间:
2014-12-13 01:04:05
阅读次数:
204