码迷,mamicode.com
首页 > 2014年12月13日 > 全部分享
Android生命周期总结
1.当onStart方法被调用时,用户已经可以看到activity ,但是onResume很快就被调用并把onStart方法覆盖。并一直保持该状态,除非外力的改变2.Resume状态处于android生命周期金字塔的顶端,只有处于该状态,才是既可见又可操作(用户输入)的状态3.resume,paus...
分类:移动开发   时间:2014-12-13 06:06:55    阅读次数:172
ubuntu14.04通过 gvm 安装 go语言开发环境
最近用回了ubuntu ,所以打算安装golang学习当下比较火热的这个语言本来打算使用 sudo apt-get install golang的 安装后发现 是1.2.1不是最新版所以上网上搜了一下。在git上找到一个叫做 gvm的东东,是golang版本管理器地址:https://github....
分类:编程语言   时间:2014-12-13 06:08:51    阅读次数:2220
Leetcode-Read N Characters Given Read4
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
Discuz!自定义积分日志
转:http://www.mutoulee.cn/113.htmlhttp://www.xuephp.com/main/detail.php?cid=23045Discuz!自定义积分日志在有些项目中可能会遇到积分相关操作,同时需要将自己的积分操作加入积分日志,整理了一下。核心函数:PHP1upda...
分类:Web程序   时间:2014-12-13 06:07:40    阅读次数:1154
Leetcode-Longest Substring with At Most Two Distinct Characters.
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
HDU 2955 Robberies【01背包】
解题思路:给出一个临界概率,在不超过这个概率的条件下,小偷最多能够偷到多少钱。因为对于每一个银行都只有偷与不偷两种选择,所以是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
使用百度翻译开放API构建的python命令行词典
不多说,上代码: 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
分片(Sharding)的全局ID生成
前言数据在分片时,典型的是分库分表,就有一个全局ID生成的问题。单纯的生成全局ID并不是什么难题,但是生成的ID通常要满足分片的一些要求:不能有单点故障。以时间为序,或者ID里包含时间。这样一是可以少一个索引,二是冷热数据容易分离。可以控制ShardingId。比如某一个用户的文章要放在同一个分片内...
分类:其他好文   时间:2014-12-13 06:07:09    阅读次数:174
67jnbgmnb
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
67jtyn
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
hdu3485(递推)
题目链接: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
Leetcode-Missing Ranges
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的方法
默认安装完Windows Server 2008 R2后,从外面ping服务器的地址是ping不通的,原因是服务器防火墙默认关闭了ICMP的回显请求。需要按照如下方法打开:在服务器管理器中选择“配置”--“高级安全Windows防火墙”--“入站规则”,在中间的规则列表中选择“文件和打印机共享(回显...
分类:Windows程序   时间:2014-12-13 06:05:33    阅读次数:244
ubuntu kylin + apache2 + django 1.7.1 + python 2.7.6
按照教程使用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
MySQL使用与优化总结1
内容来自 http://my.oschina.net/u/142836/blog/169415使用与优化DB的优化建立合适的索引:尽量让所有查询都走索引,这个效果是很明显的。表空间优化在删除或更新比较频繁的表上,如果包含varchar,text之类的字段,需要定期地执行表空间优化,optimaize...
分类:数据库   时间:2014-12-13 06:04:22    阅读次数:194
The NoSQL System
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构建的项目中
前两天,谷歌发布了Android Studio 1.0的正式版,也有更多的人开始迁移到Android Studio进行开发。然而,网上很多的开源库,控件等还是以前的基于Eclipse进行开发,很多人不知道怎么导入到自己的基于Android Studi...
分类:移动开发   时间:2014-12-13 01:04:05    阅读次数:204
1141条   上一页 1 ... 59 60 61 62 63 64 65 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!