`
forhope
  • 浏览: 360104 次
  • 性别: Icon_minigender_1
  • 来自: 帝都
社区版块
存档分类
最新评论
文章列表
http://developer.51cto.com/art/201103/249694.htm http://www.jquery001.com/click%28%29-bind%28%29-live%28%29-delegate%28%29.html JSONP: 跨域共享资源 http://www.cnblogs.com/dowinning/archive/2012/04/19/json-jsonp-jquery.html 自动化测试工具: http://baike.baidu.com/view/1439275.htm 压力测试工具 http://baike.baidu.com/v ...
js的encodeUri的默认编码为unicode,此js重写了该方法,并转换为gbk编码

Redis相关资料

redis安装(windows + Linux) http://zheng12tian.iteye.com/blog/1471726 http://www.crazyant.net/2012/06/02/redis%E8%AF%A6%E7%BB%86%E5%AE%8C%E6%95%B4%E6%95%99%E7%A8%8B-windows%E4%B8%8B%E7%9A%84%E5%AE%89%E8%A3%85%E3%80%81%E6%B5%8B%E8%AF%95phpredismysql/ http://blog.phpwind.me/?p=152 http://blog.chinaunix.ne ...
Your post title shows that you want to change the current page programmatically using JavaScript but still having the HTTP referrer provided (from what I understood, using a <a> tag is just for a test case). You need to be aware of cross-browser issues:     The HTTP referrer header (HTTP-Refe ...
先说说自己对Memcache和Mongodb的一些看法,主要是抛砖引玉了,希望看到大家的意见和补充。 Memcache Memcache的优势我觉得总结下来主要体现在: 1) 分布式。可以由10台拥有4G内存的机器,构成一个40G的内存池,如果觉得还不够大可以增加机器,这样一个大的内存池,完全可以把大部分热点业务数据保存进去,由内存来阻挡大部分对数据库读的请求,对数据库释放可观的压力。 2) 单点。如果Web服务器或App服务器做负载均衡的话,在各自内存中保存的缓存可能各不相同,如果数据需要同步的话,比较麻烦(各自自己过期,还是分发数据同步?),即使数据并不需要同步,用户也可能因为数据 ...
软件目的 随着安卓应用开发的普及,手机项目演示时很不方便。安卓屏幕助手旨在解决此问题 软件简介 通过安卓屏幕助手,手机USB连接上电脑后,在电脑屏幕上同步显示手机的屏幕画面。 功能列表 实时同步显示手机屏幕,支持横屏竖屏切换。 实时记录屏幕影像保存为视频。 截取当前屏幕保存为图片。 软件截图 注意事项 软件正常使用前提:电脑安装了豌豆荚等助手软件,并开启。通过USB连接手机 其他说明:由于ADB接口的限制,传输效果达不到实时。 文件下载
http://jsgears.com/thread-63-1-1.html http://wandoulab.diandian.com/
php_mssql.dll只适用于sqlserver2000版本,2005以上需要下载dll,其中版本号对应了php的版本。 http://www.microsoft.com/en-us/download/details.aspx?id=20098 参考: http://blog.csdn.net/silentbalanceyh/article/details/4349790 http://technet.microsoft.com/zh-tw/subscriptions/dd794783.aspx http://msdn.microsoft.com/en-us/library/ee376 ...

MySQL优化

慢查询是记录查询超过mysql阀值的sql语句。默认2s。不建议设置过长 mysql> show variables like '%slow%'; +---------------------+-----------------------------------------------------------------------------------------------------+ | Variable_name | Value ...

安卓CMD

引用Android系统中的“CMD”,用命令行管理你的手机。 引用你是Geek?比起图形界面,你更喜欢用命令行? 那你一定要给你的爱机装上安卓CMD! 亲,有Root权限的手机支持更多的命令哦。 还等什么,赶快试试吧。 软件截图: http://www.apkbus.com/android-14263-1-1.html
引用 2. Static registering The advantage and the disadvantage of static registering is once a broadcast is registered, whenever an intent is fired, it will receive it, not matter if the application is dead or it hasn't started yet. To do it, include XML code in the Manifest file specifying the name of ...

并发线程

LinkedBlockingQueue适用于与生产者消费者模式,并可以限制Queue的大小。有以下特点: 1.在入队列时如果队列已满,则线程阻塞,直到队列有空位置。 2.在出队列时如果无数据,则线程阻塞,直到队列中有数据。 public class TestQueue { public static void main(String[] args) { LinkedBlockingQueue<Integer> queue = new LinkedBlockingQueue<Integer>(1); Producer producer1 = new ...
http://www.cnblogs.com/thu539/archive/2012/02/01/2334455.html

Google Drive

Google Drive云网络硬盘 修改C:\WINDOWS\system32\drivers\etc下的host文件,加入一下内容 203.208.46.146 drive.google.com  74.125.71.94 drive.google.com 访问http://drive.google.com
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE); WifiManager.MulticastLock multicastLock = wifiManager.createMulticastLock("multicastLock"); multicastLock.acquire(); <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" / ...
Global site tag (gtag.js) - Google Analytics