码迷,mamicode.com
首页 > 2015年08月27日 > 全部分享
常用的第三方库
MBProgressHud 可以展示进度条,正在联网等信息 https://github.com/jdg/MBProgressHUD/ Masonry 自动布局
分类:其他好文   时间:2015-08-27 15:36:43    阅读次数:168
使用setup.py安装python包和卸载python包的方法
记录安装后文件的路径 python?setup.py?install?--record?files.txt 删除这些文件 cat?files.txt?|?xargs?rm?-rf
分类:编程语言   时间:2015-08-27 15:38:05    阅读次数:149
解决 iBooks 无法显示 epub 电子书本身的 thumbnail
原来显示是这样子的: 使用其他的 epub 阅读器(比如BookReader.app)默认始终打开,打开几个 epub 电子书测试一下,然后再选择默认使用 iBooks 默认始终打开epub 电子书,重启 Finder,就会看到 epub 图书的 th...
分类:其他好文   时间:2015-08-27 15:36:56    阅读次数:1137
Am I all right?
原文 While John Gilbert was in hospital, he asked his doctor to tell him whether his operation had been successful, but the doctor refused to do so. The following day, the patient asked for a bedsi...
分类:其他好文   时间:2015-08-27 15:36:54    阅读次数:127
shell中的变量功能
本地变量: ????set VARNAME=VALUE:作用域为整个bash进程 局部变量: ????local VARNAME=VALUE:作用域为当前代码段 环境变量: ????export VARNAME=VALUE 或者??? VARNAME=VALUE?????????...
分类:系统相关   时间:2015-08-27 15:37:07    阅读次数:178
程序的量变
记录一些由程序中的量的堆积所引起的质的变化的几个问题: 关于自动代码生成: 一些人手工写的代码中不会遇到的问题,在用代码生成工具生成时就可能发生。 比如之前就遇到过的一个:Lua 在一个函数里默认不能超过...
分类:其他好文   时间:2015-08-27 15:38:37    阅读次数:126
从NDK在非Root手机上的调试原理探讨Android的安全机制
最近都在忙着研究Android的安全攻防技术,好长一段时间没有写博客了,准备回归老本行中--Read the funcking android source code。这两天在看NDK文档的时候,看到一句话“Native debugging ... does n...
分类:移动开发   时间:2015-08-27 15:37:03    阅读次数:386
PC-Lint的安装详细配置过程(以VC++6.0环境为例)
本文主要介绍了PC-Lint安装后针对VC++6.0开发环境进行配置的详细过程,总共分为三部分,下面依次对这三部分进行说明。 一、???首先下载PC-Lint,然后开始安装,一路“下一步”直到安装完成。此时会弹出一个对话...
分类:编程语言   时间:2015-08-27 15:37:54    阅读次数:901
Java 的 PermGen 概念的认识,以及相关问题的处理方法
PermGen space的全称是Permanent Generation space,是指内存的永久保存区域OutOfMemoryError: PermGen space从表面上看就是内存益出,解决方法也一定是加大内存。说说为什么会内存益出:这一部分用于存放Class和M...
分类:编程语言   时间:2015-08-27 15:35:15    阅读次数:235
更新UI
1、Handler+sendMessage+Thread方法 public?class?UpdateUIActivity?extends?Activity { private?TextView?mTextView; @Override protected?void?onCreate(Bundle?savedInstanceState) { super....
分类:其他好文   时间:2015-08-27 15:35:54    阅读次数:159
device eth0 does not seem to be present, delaying
vmlite虚拟机启动出错,就把这个虚拟机删除掉重新建立,系统虚拟硬盘使用之前的,启动系统后不能上网,通过ifconfig查看网卡没启动,遂启动网卡服务,但是出错,就是:device eth0 does not seem to be present, ...
分类:其他好文   时间:2015-08-27 15:36:39    阅读次数:152
tomcat启动报错
tomcat启动报错 ? 错误信息:SEVERE: The web application [/escm] appears to have started a thread named [FileWatchdog] but has failed to stop it. This is very likely to create a memory leak. 1、修改...
分类:其他好文   时间:2015-08-27 15:35:18    阅读次数:196
Linux系统搭建Apache+SVN(CentOS6.5)
SVN安装部署在前几篇博客中有 1.安装软件 ????#?yum?install?httpd ????#?yum?install?mod_dav_svn ? ??#?yum?install?subversion 2.测试是否成功 ????#?httpd?-version ????#?s...
分类:Web程序   时间:2015-08-27 15:36:53    阅读次数:179
AssetUtil工具类
public class AssetsUtil { public static byte[] getAssertsFileInBytes(String assetsFileName) { InputStream is; try { is = DpApp.getContext().getResources().getAssets(...
分类:其他好文   时间:2015-08-27 15:34:05    阅读次数:269
zabbix监控系统中nginx的配置
http 段的配置: include ???mime.types; default_type??application/octet-stream; log_format??main??‘$remote_addr?-?$remote_user?[$time_local]?"$request"?‘ ??????????‘$status?...
分类:其他好文   时间:2015-08-27 15:34:20    阅读次数:177
MySql 开发实用笔记 2015-08-27
--?RTRIM(LTRIM(file_id)) ?去除字符串两边的空格 --?2015-08-27 select *, RTRIM(LTRIM(file_id)) AS fileId from edu_train_lesson where ?title=‘汽车电气设备‘...
分类:数据库   时间:2015-08-27 15:36:49    阅读次数:186
PostgreSQL的并发控制
9.3中文文档:http://58.58.27.50:8079/doc/html/9.3.1_zh/mvcc.html 参考博客:中文:http://www.zlovezl.cn/articles/postgresql-concurrency-with-mvcc/ ? ? ? ? ? ? ? ? 英文:https://devcenter.her...
分类:数据库   时间:2015-08-27 15:34:31    阅读次数:4505
2455条   上一页 1 ... 59 60 61 62 63 64 65 ... 145 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!