-
Google Maps安卓6.5版 大幅提升分辨率
3月30日消息:谷歌地图是Google公司提供的电子地图。近日Google再次为Android手机上的Google Maps发放版本号为6.5的更新...
系统程序 2014-12-09 03:15:05 -
mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法
本文为大家讲解的是mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法,感兴趣的同学参考下。 错误描述: mysql> grant all on cactidb.* to dbuser@'localhost' identified by '123'; ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 解决方法: 先刷新一下权限表...
数据库操作教程 2014-12-09 03:09:06 -
Google+更新Hangouts 玩与工作两不误
3月30日消息:“Hangouts”是著名社交服务Google+的视频群聊功能。近日,Hangouts增加了几项功能,其已经脱离了只提供多人视讯通话的简单定位...
系统程序 2014-12-08 23:30:06 -
水墨中国风 Google清明主题搜索页上线
中国传统节日“清明节”即将到来,现在使用Chrome或其它支持HTML5的网页浏览器打开Google,搜索“清明”关键词,搜索结果页面(点击查看)会变得和以往有所不同。映入眼帘的是摇曳的柳枝,象征着春意昂然...
系统程序 2014-12-08 23:21:08 -
PHP下编码转换函数mb_convert_encoding与iconv的使用说明
本文为大家讲解的是PHP下的编码转换函数mb_convert_encoding与iconv的使用说明,感兴趣的同学参考下。 mb_convert_encoding这个函数是用来转换编码的...
PHP 2014-12-08 23:00:05 -
用PHP获取Google AJAX Search API 数据的示例
本文是一个用PHP实现的可以用来获取Google AJAX Search API 数据的代码示例,感兴趣的同学参考下。 http://code.google.com/apis/ajaxsearch/documentation/#fonje // This example request includes an optional API key which you will need to // remove or replace with your own key. // Read more about why it's useful to have an API key. // The request also includes the userip parameter which provides the end // user's IP address. Doing so will help distinguish this legitimate // server-side traffic from traffic which does...
PHP 2014-12-08 21:48:14 -
μTorrent推新版 支持Streaming流媒体
μTorrent又称为microTorrent或uTorrent是一个用C++编写,运行在Microsoft Windows和Apple Mac OS X系统下的免费BitTorrent客户端,提供了包含中文在内,多达54种的本地化语言支持。μTorrent堪称最轻量级、最小巧的BT客户端,μTorrent3.0的发布更是带来了不少新功能,支持Streaming流媒体、安全的远程访问、评级和评论、拖拽发送、便携模式等...
系统程序 2014-12-08 19:51:05 -
App Store的交易量是Google play的8倍
最近的应用市场分析报告显示:在今年1月,App Store的日均收入已经超过600万美金,而Google Play则为68万美金。虽然两者相差近8倍,但纵向来看,它们较起去年十二月的表现都有了喜人的增长...
系统程序 2014-12-08 18:18:05 -
制作 Google发安卓新应用
Google Maps是Google公司提供的电子地图服务,包括局部详细的卫星照片。Google地图目前具备一些大型商场和地区的室内定位功能,但是还仍然无法做到非常精确的定位...
系统程序 2014-12-08 12:27:07 -
mysql报错 ERROR 2006 (HY000) at line xx: MySQL server has gone away 解决方法
本文为大家讲解的是mysql报错 ERROR 2006 (HY000) at line xx: MySQL server has gone away 解决方法 ,感兴趣的同学参考下。 错误描述: mysql导入数据文件报错ERROR 2006 (HY000) at line xx: MySQL server has gone away 原因分析: 导入的数据文件太大 解决办法: 找到my.ini文件 修改my.cnf中的 wait_timeout 和 interactive_timeout变量 添加一句max_allowed_packet=16M,如果不行将16M再加大 加大wait_timeout也可起一定作用 例如: wait_timeout=2880000 interactive_timeout = 2880000 max_allowed_packet = 100...
数据库操作教程 2014-12-08 03:57:03 -
一个PHP的String类代码
本文是一个PHP String 类,暂时只有encode,decode方法,感兴趣的同学参考下。 使用方法: $s ='中国'; $os = new String( $s ); echo $os->decode('gbk') ,''; echo $os->decode('gbk')->encode('md5'),''; 代码 class String extends stdClass { private $_val =''; public function __construct( $str ='' ) { $this->_val = $str; } public function __toString() { return $this->_val; } public function encode( $coder ) { $coder ='enco...
PHP 2014-12-08 03:42:03 -
LendingClub模式适合中国吗?
刘D/文LendingClub即将上市,这给全球互联网金融特别是P2P行业打了一针兴奋剂。毕竟,即使在金融高度发达的美国,它也是第一家上市的P2P企业...
互联网 2014-12-08 03:18:11