原文地址:http://blog.csdn.net/androiddevelop/article/details/8130416以下都是ADB连接问题,可以通过尝试如下步骤,由简单度排序1. 插拔下USB连接线2. 关闭USB模式再打开3. 执行以下命令[plain]view plaincopypr...
分类:
移动开发 时间:
2015-07-30 13:02:58
阅读次数:
719
nginx并发调优压缩调优gzip on;gzip_min_length 1k;gzip_buffers 4 16k;gzip_http_version 1.0;gzip_comp_level 2;gzip_types text/plain application/x-java...
分类:
其他好文 时间:
2015-07-30 11:03:13
阅读次数:
108
Lua的表本质其实是个类似HashMap的东西,其元素是很多的Key-Value对,如果尝试访问了一个表中并不存在的元素时,就会触发Lua的一套查找机制,也是凭借这个机制,才能够实现“面向对象”的。举例说明:[plain]view plaincopyprint?tempTable={}print(t...
分类:
其他好文 时间:
2015-07-29 15:29:45
阅读次数:
113
一.建立示例程序hello world 1.编写asdf 文件hello.asd [plain]?view plaincopy <span?style="font-size:18px;">(defpackage?:hello-system?(:use?#:asdf?#:cl))?? ?? (in-package?:hello-system)??...
分类:
其他好文 时间:
2015-07-28 11:11:34
阅读次数:
359
http://blog.csdn.net/felix9/article/details/9619313在实际开发中,发现使用Block有着比delegate和notification更简洁的优势。于是在目前的项目中大量的使用block。 在我的头文件我是这样声明使用block的。[plain]vi....
分类:
其他好文 时间:
2015-07-27 10:52:15
阅读次数:
121
解决Spring MVC ResponseBody 乱码问题 ????@RequestMapping(value="qxyjqyresult",produces?=?"plain/text;?charset=UTF-8")? ???? @ResponseBody?? ????? public?String?getQxyjqyResult...
分类:
编程语言 时间:
2015-07-24 19:02:15
阅读次数:
134
Sublime Text 3 Plugins(**)packet control:plugin包管理器
(**)netuts-fetch:
(**)markdown editing:Markdown编辑器
(**)plain tasks:事务管理
(**)snippets-C++:
(**)Ctags:函数定义跳转等
(**)BracketHighlighter:高亮显示匹配的括号、引号...
分类:
其他好文 时间:
2015-07-23 00:45:04
阅读次数:
193
问题:对于’1,2,3,4,5’这样的字符串输出采用,分隔开的12345特征:在字符串中没有空格解决方法1:[plain]view plaincopy#!/bin/bashvar=’1,2,3,4,5’var=${var//,/}#这里是将var中的,替换为空格forelementin$vardoe...
分类:
系统相关 时间:
2015-07-21 16:43:56
阅读次数:
135
昨天在使用adb卸载程序,结果死活卸载不了。我输入的命令和系统提示如下:[plain]view plaincopyarthur@arthur-laptop:~$adbuninstallcom.hase.bclm.client-2.apkFailure后来发现原来卸载程序时,只adb uninstal...
分类:
数据库 时间:
2015-07-21 16:36:30
阅读次数:
129
1.将数据库的数据保存到文本文件中:context.Response.ContentType = "text/plain";//增加另存为功能//增加Content-Disposition是告诉浏览器,这个返回的内容是"附件形式",要给用户保存,filename是建议的文件名context.Resp...
分类:
其他好文 时间:
2015-07-21 12:31:08
阅读次数:
121