摘要: 注:本文通过注册表删除右键,如果害怕无法恢复可以在删除之前备份:方法就是右键然后导出,恢复就是双击导出的reg文件。1、打开注册表:开始--运行--regedit(或者快捷键win键+R再输入regedit)按确定2、进入截图中红框位置,删除美图看看美图秀秀那个选项即可。3、如果还是出现则在注册表中... 阅读全文
posted @ 2014-09-22 17:20 我将一人成团 阅读(8565) 评论(0) 推荐(1)
摘要: 环境:linux,mysql5.5.21错误:Host is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'原因: 同一个ip在短时间内产生太多(超过mysql数据库max_connection_errors的最大值)中断的数据库连接而导致的阻塞;解决方法:1、提高允许的max_connection_errors数量(治标不治本): ① 进入Mysql数据库查看max_connection_errors:show variables like '%max_c 阅读全文
posted @ 2013-05-28 19:12 我将一人成团 阅读(170289) 评论(2) 推荐(8)
摘要: for(Map.Entry<String, List> entry : map.entrySet()) { System.out.println(entry.getKey()); List ls=entry.getValue(); }Iterator it = map.keySet().iterator();while(it.hasNext()){ String key = (String) it.next(); List value = map.get(key);} 阅读全文
posted @ 2013-04-27 15:22 我将一人成团 阅读(324) 评论(0) 推荐(0)
摘要: Exception in thread "Thread-27" org.jboss.netty.channel.ChannelException: Failed to bind to: /192.168.1.149:7100 at org.jboss.netty.bootstrap.ServerBootstrap.bind(ServerBootstrap.java:272) at com.netty.receive.ReceiveGatewayServer.run(ReceiveGatewayServer.java:63) at java.lang.Thread.run(T 阅读全文
posted @ 2013-04-09 20:47 我将一人成团 阅读(1421) 评论(0) 推荐(0)
摘要: function toHex(num){ var rs = ""; var temp; while(num/16 > 0){ temp = num%16; rs = (temp+"").replace("10","a").replace("11","b").replace("12","c").replace("13","d").replace("14","e&q 阅读全文
posted @ 2013-03-29 18:53 我将一人成团 阅读(4855) 评论(0) 推荐(0)
摘要: <script>function c1(){ var d = document.getElementsByName("s")[0].value; var b = (new Date(d)).getTime(); document.getElementsByName("s")[0].value = b; }function c2(){ var d = document.getElementsByName("d")[0].value; var b = new Date(d); b.setTime(d); document.ge 阅读全文
posted @ 2013-02-22 12:50 我将一人成团 阅读(1728) 评论(0) 推荐(0)
摘要: # Example MySQL config file for medium systems.## This is for a system with little memory (32M - 64M) where MySQL plays# an important part, or systems up to 128M where MySQL is used together with# other programs (such as a web server)## MySQL programs look for option files in a set of# locations whi 阅读全文
posted @ 2013-02-04 11:12 我将一人成团 阅读(328) 评论(0) 推荐(0)
摘要: 转载地址:http://www.oseye.net/question/96源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)。Configure是一个可执行脚本,它有很多选项,在待安装的源码路径下使用命令./configure –help输出详细的选项列表。其中--prefix选项是配置安装的路径,如果不配置该选项,安装后可执行文件默认放在/usr /local/bin,库文件默认放在/usr/local/lib,配置文件默认放在/usr/local/etc,其它的资源文件放在/usr /local/share,比较凌乱。如果配置--p 阅读全文
posted @ 2013-02-03 19:19 我将一人成团 阅读(1585) 评论(0) 推荐(0)
摘要: adv.表示副词prep.表示介词vi.不及物动词vt.及物动词其他有:prep = 介系词;前置词,preposition的缩写 pron = 代名词,pronoun的缩写 n = 名词,noun的缩写 v = 动词,兼指及物动词和不及物动词,verb的缩写 conj = 连接词 ,conjunction的缩写 s = 主词 sc = 主词补语 o = 受词 oc = 受词补语 vi = 不及物动词,intransitive verb的缩写 vt = 及物动词,transitive verb的缩写 aux.v = 助动词 ,auxiliary的缩写 a = 形容词,adjective的缩写 阅读全文
posted @ 2013-01-25 11:24 我将一人成团 阅读(276) 评论(0) 推荐(0)
摘要: 转载地址:http://www.2cto.com/kf/201211/170227.html判断是pc还是移动设备true:pcfunction IsPC(){ var userAgentInfo = navigator.userAgent; var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"); var flag = true; for (var v 阅读全文
posted @ 2013-01-14 18:13 我将一人成团 阅读(807) 评论(0) 推荐(0)