<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[爱上你的微笑]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[做人晶莹剔透（诚信、光明），做事水滴石穿（用心、坚持）！]]></description>
<link>http://hi.baidu.com/loveyoursmile</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[windows平台php memcache配置dll下载]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/6a62d288e7312d9ea4c27224.html]]></link>
        <description><![CDATA[
		
		<strong>原文：</strong><a target="_blank" href="http://blog.eood.cn/archiver/?article-240.html">http://blog.eood.cn/archiver/?article-240.html</a><br>
<strong>作者：</strong>icerain<br>
<p><font color="#ff0000">php_memcache.dll</font>官方网站已经不能下载，特此编译放出。PHP版本为5.2</p>
<p>第一个为<font color="#ff0000">php_memcache.dll</font>&#160;&#160; php memcache扩展</p>
<p>第二个为<font color="#0000ff">memcached</font>服务器端</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/Php%20Manual">Php Manual</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/6a62d288e7312d9ea4c27224.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-13  11:00</pubDate>
        <category><![CDATA[Php Manual]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/6a62d288e7312d9ea4c27224.html</guid>
</item>

<item>
        <title><![CDATA[让调试利器zend debugger与zend Optimizer共存，和谐！]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/40bead01d803f60c1d95835a.html]]></link>
        <description><![CDATA[
		
		原文：<a href="http://www.zendstudio.net/archives/zend-debugger-and-zend-optimizer-are-peaceful/" target="_blank">http://www.zendstudio.net/archives/zend-debugger-and-zend-optimizer-are-peaceful/</a><br>
<br>
这是一篇纠正性文字，将很久以前在《服务器调试——Zend Debugger 的安装教程》中提到的zend debugger安装方法更新一下，因为那种方法不能够与zend Optimizer共存，即运行zend debugger就不能运行zend Optimizer，或者反之。后来，参考了网络上的资料以及xampp的启发，终于找到了完美的解决方案，其关键点就在于Zend Extension Manager，它被包含在zend Optimizer的发行包中，本文依然以windows为例，来看看怎么利用这个Zend Extension Manager来实现多个zend扩展的共存，和谐的运行。 <a href="http://hi.baidu.com/loveyoursmile/blog/item/40bead01d803f60c1d95835a.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/Php%20Manual">Php Manual</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/40bead01d803f60c1d95835a.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-07  09:15</pubDate>
        <category><![CDATA[Php Manual]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/40bead01d803f60c1d95835a.html</guid>
</item>

<item>
        <title><![CDATA[dns+javascript轮询|服务器负载平衡|服务器架设]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/6f0cd0076c1671c77a89477a.html]]></link>
        <description><![CDATA[
		
		1，dns轮询。如果是电信用户，则调用server1.js（电信服务器负载平衡脚本）。如果是联通用户，则调用server2.js（联通服务器负载平衡脚本）。<br>
<br>
2，server1.js和server2.js脚本：<br>
<font color="#0000ff">var serverurl1 = &quot;http://cnc1.yourdomain.com&quot;;<br>
var serverurl2 = &quot;http://cnc2.yourdomain.com&quot;;<br>
var serverurl3 = &quot;http://cnc3.yourdomain.com&quot;;<br>
var serverurl4 = &quot;http://cnc4.yourdomain.com&quot;;<br>
var serverurl5 = &quot;http://cnc5.yourdomain.com&quot;;<br>
<br>
<br>
var webServer = &quot;&quot;;<br>
var dt = new Date();<br>
var hr = dt.getSeconds();<br>
hr = hr%5;<br>
<br>
if(hr==4) {webServer=serverurl5; }<br>
if(hr==3) {webServer=serverurl4; }<br>
if(hr==2) {webServer=serverurl3; }<br>
if(hr==1) {webServer=serverurl2; }<br>
if(hr==0) {webServer=serverurl1; }<br>
var sPicServer = &quot;http://cncpic.yourdomain.com&quot;</font> <a href="http://hi.baidu.com/loveyoursmile/blog/item/6f0cd0076c1671c77a89477a.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B5%E7%C4%D4%CD%F8%C2%E7%BC%BC%CA%F5">电脑网络技术</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/6f0cd0076c1671c77a89477a.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-07  07:34</pubDate>
        <category><![CDATA[电脑网络技术]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/6f0cd0076c1671c77a89477a.html</guid>
</item>

<item>
        <title><![CDATA[FlowPlayer|开源的Flash视频播放器]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/f6d31fd5fa0450ce51da4bf8.html]]></link>
        <description><![CDATA[
		
		FlowPlayer是一个开源的Flash视频播放器。提供所有你可能需要的功能并且这些功能都可以通过JavaScript按你的实际需求进行配置。提供良好的用户体验，支持预加载，长时间播放，播放列表，全屏播放模式等。 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B5%E7%C4%D4%CD%F8%C2%E7%BC%BC%CA%F5">电脑网络技术</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/f6d31fd5fa0450ce51da4bf8.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-03  13:26</pubDate>
        <category><![CDATA[电脑网络技术]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/f6d31fd5fa0450ce51da4bf8.html</guid>
</item>

<item>
        <title><![CDATA[Install Anywhere ---打包软件]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/3e7b1438b04a76f8b211c758.html]]></link>
        <description><![CDATA[
		
		<strong>来源：</strong><a href="http://blog.csdn.net/80monkey/archive/2005/02/21/295667.aspx" target="_blank">http://blog.csdn.net/80monkey/archive/2005/02/21/295667.aspx</a><br>
<strong>作者：</strong>80monkey<br>
<br>
Install Anywhere<br>
时间：2004-03-31<br>
<br>
安装程序有三大软件，分别是Install Anywhere、InstallShield以及经典的Wise。<br>
两年前，在北京接触过InstallShield，不以为意；今天项目纳品，刚好项目组准备购买一款用于安装的软件，我用的是Wise。法不起来，要注意的事情还很多。<br>
小到一步步的安装界面UI设置，大到组件选择和必选条件，马虎不得。还是希望有机会试试跨平台的anywhere,Java做的页面看上去很舒服。<br>
<br>
于是又要感叹任何工作都不容易了。<br>
准备用一些时间把安装软件的脚本学学，另外下午看到微软的FC，找来替换了主页带广告的计数器。因为它简单，simple就是生活。 <a href="http://hi.baidu.com/loveyoursmile/blog/item/3e7b1438b04a76f8b211c758.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B5%E7%C4%D4%CD%F8%C2%E7%BC%BC%CA%F5">电脑网络技术</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/3e7b1438b04a76f8b211c758.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-03  10:57</pubDate>
        <category><![CDATA[电脑网络技术]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/3e7b1438b04a76f8b211c758.html</guid>
</item>

<item>
        <title><![CDATA[国外外包网站|接活网站|威客]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/2d1eb200d9ccbd8de950cd16.html]]></link>
        <description><![CDATA[
		
		<font color="#ff0000"><strong>来源：</strong></font><a href="http://mac.6.cn/topic/view/2582.html" target="_blank">http://mac.6.cn/topic/view/2582.html</a><br>
<br>
Odesk.com,Elance.com 之类的<br>
<br>
五个国外的接活网站<br>
<br>
* Elance.com<br>
排名：1,738<br>
说明：真正的大活所在地，全球第一接活网站。从身怀绝技的个人到上百人的外包公司都有从这里接活，体质完善，服务到位。不过对沟通要求高，我在这里接的那几个活客户很多都要求语音沟通，通过skype或电话。而且基本上需要你有国外的信用卡才能认证。会员费很高但也很灵活，网站提成固定在8%左右。E文扛的住的朋友一定要挖掘这片天空。这个网站上每月挣几万或十几万美元的人不在少数。<br>
<br>
* Getafreelancer.com<br>
排名：2,957<br>
说明：简称GAF，同样也是全球非常知名的接活网站。这里人个接活者居多，同时活的数额也相对少一些。一般在30-100$或100-300$左右，也是我最常接活的网站。对于想在国外接活的朋友来说，这里是第一片试验田。网站做的非常易用，结构简单，服务一流。会员分为免费会员，不需要会员费，接活的时候网站提成10%，而且基本上每月只能投15-20个标。同时也可成为金牌会员，会员费12$，接活的时候网站不提成，每月可以投150个标。推荐大家去这里发展。<br>
<br>
* Scriptlance.com<br>
排名：5,367<br>
说明：Scriptlance上网站开发和网站设计类的活居多。这个网站在美国本土很火，很受美国客户喜欢。网站也是有固定的提成费，接活的模式有一点不同。灵活性很高，客户在上面发项目也是非常灵活。这个网站个性鲜明，属于哪种你用过一次，觉得爽就会一直用，觉得不爽就再也不会理的哪种。<br>
<br>
* Getacoder.com<br>
排名：16,590<br>
说明：从这个网站的名字就能看出，这里开发类的项目居多。这个网站的模式感觉上就是抄Getafreelancer的，网站基本上差不多。不过，这个网站有一个最大的文化特色：这里的项目都很独特，大部分客户都没有具体的需要，都是有一些idea或一个大概的想法，想找coder来实现。所以项目本身需要你更多的参与讨论，来给客户出一个解决方案。这个网站的客户都很热情并且主动。这里的付费会员有大量的网站模板资源可以使用。有一点不太理想的就是这里项目更新并不快，沟通上不是很方便。<br>
<br>
* Ifreelance.com<br>
排名：32,611<br>
说明：这里的模式跟前面几个也不一样，发包者大多数是公司。网站结构上并不是像前面几个那么易用，接起活来有一点点麻烦。但是活更新比较快，大活小活都有。费用上不是特别明确，等待更多验证。<br>
<br>
<a href="http://djangogigs.com/" target="_blank">http://djangogigs.com/</a><br>
<strong><br>
国外最流行的几个外包接活平台简要介绍：</strong><br>
<a href="http://www.freelancer-life.cn/freelancer-websites/international-platform.html" target="_blank">http://www.freelancer-life.cn/freelancer-websites/international-platform.html</a> <a href="http://hi.baidu.com/loveyoursmile/blog/item/2d1eb200d9ccbd8de950cd16.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B5%E7%D7%D3%C9%CC%CE%F1%C9%B3%C1%FA">电子商务沙龙</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/2d1eb200d9ccbd8de950cd16.html#comment">查看评论</a>]]></description>
        <pubDate>2009-11-01  10:04</pubDate>
        <category><![CDATA[电子商务沙龙]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/2d1eb200d9ccbd8de950cd16.html</guid>
</item>

<item>
        <title><![CDATA[mysql中Table is read only的解决]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/58cb0cfa916a599d59ee90ee.html]]></link>
        <description><![CDATA[
		
		<strong>原文：</strong><a target="_blank" href="http://blog.163.com/song_0803/blog/static/46097597200982124352651/">http://blog.163.com/song_0803/blog/static/46097597200982124352651/</a><br>
<strong>作者：</strong>宋红光<br>
<br>
今天再我把数据库data 拷贝到linux 下运行程序 ”mysql中Table is read only的解决“&#160; 出现这样的问题，查询资料。<br>
<br>
运行flush tables后，read only问题解决。<br>
<br>
<font color="#ff0000"><strong>另：</strong></font><strong>mysql/data/sometable/下的文件可能是只读模式，需要修改为可写状态。</strong> <a href="http://hi.baidu.com/loveyoursmile/blog/item/58cb0cfa916a599d59ee90ee.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/Mysql%20Manual">Mysql Manual</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/58cb0cfa916a599d59ee90ee.html#comment">查看评论</a>]]></description>
        <pubDate>2009-10-29  16:07</pubDate>
        <category><![CDATA[Mysql Manual]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/58cb0cfa916a599d59ee90ee.html</guid>
</item>

<item>
        <title><![CDATA[XMLHttpReq.onreadystatechange传递参数 ajax javascript 参数的传递。]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/bb8e86265bc5641d8a82a108.html]]></link>
        <description><![CDATA[
		
		由于“xmlhttp.onreadystatechange= xx(123);”，这样使用回调函数是行不通的，因此要给回调函数传递参数应改成以下形式：<br>
<font color="#0000ff">xmlhttp.onreadystatechange= function(){xx(123)};</font><br>
或者<br>
<font color="#0000ff">xmlhttp.onreadystatechange= new Function(&quot;xx(123)&quot;);</font> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B5%E7%C4%D4%CD%F8%C2%E7%BC%BC%CA%F5">电脑网络技术</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/bb8e86265bc5641d8a82a108.html#comment">查看评论</a>]]></description>
        <pubDate>2009-10-27  18:31</pubDate>
        <category><![CDATA[电脑网络技术]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/bb8e86265bc5641d8a82a108.html</guid>
</item>

<item>
        <title><![CDATA[php 多线程编程]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/4eda5666a74f7d2eab184cef.html]]></link>
        <description><![CDATA[
		
		浅析php中实现多线程：<a target="_blank" href="http://www.alixixi.com/weBuild/subject2/20051213128043.html">http://www.alixixi.com/weBuild/subject2/20051213128043.html</a><br>
<br>
让php也实现多线程：<a target="_blank" href="http://www.chinaz.com/Program/PHP/11104402R008.html">http://www.chinaz.com/Program/PHP/11104402R008.html</a><br>
<br>
有人用过PHP5的threads库吗？可以让PHP像JAVA一样支持可控的多线程编程，实现高性能计算：<a target="_blank" href="http://topic.csdn.net/t/20041125/11/3586939.html">http://topic.csdn.net/t/20041125/11/3586939.html</a><br>
<br>
popen实现PHP并发方法：<a href="http://blog.csdn.net/binger819623/archive/2009/08/15/4449105.aspx" target="_blank">http://blog.csdn.net/binger819623/archive/2009/08/15/4449105.aspx</a><br>
<br>
Multithreaded PHP：<a href="http://www.wellho.net/course/php.html" target="_blank">http://www.wellho.net/course/php.html</a><br>
<br>
Multithreading/Parallel Processing with PHP：<a href="http://www.issociate.de/board/post/259248/Multithreading/Parallel_Processing_with_PHP.html" target="_blank">http://www.issociate.de/board/post/259248/Multithreading/Parallel_Processing_with_PHP.html</a><br>
<br>
Google Search：<a href="http://www.google.com/search?hl=en&amp;source=hp&amp;q=php+multithreading&amp;aq=f&amp;oq=&amp;aqi=g1g-s1g1g-m2" target="_blank">http://www.google.com/search?hl=en&amp;source=hp&amp;q=php+multithreading&amp;aq=f&amp;oq=&amp;aqi=g1g-s1g1g-m2</a> <a href="http://hi.baidu.com/loveyoursmile/blog/item/4eda5666a74f7d2eab184cef.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/Php%20Manual">Php Manual</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/4eda5666a74f7d2eab184cef.html#comment">查看评论</a>]]></description>
        <pubDate>2009-10-25  15:12</pubDate>
        <category><![CDATA[Php Manual]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/4eda5666a74f7d2eab184cef.html</guid>
</item>

<item>
        <title><![CDATA[PHP开发者：你GLAMMP了吗?]]></title>
        <link><![CDATA[http://hi.baidu.com/loveyoursmile/blog/item/d918bc0e609b26ed36d122cd.html]]></link>
        <description><![CDATA[
		
		<strong>原文：</strong><a target="_blank" href="http://news.csdn.net/a/20090525/211500.html">http://news.csdn.net/a/20090525/211500.html</a><br>
<br>
开发黄金组合LAMP（Linux+Apache+MySQL+PHP）已经流行了好几年。即LAMP之后，PHP社区最近开始推广起GLAMMP组合。这个组合在LAMP之上又加进来一个G和一个M。这新加进来的两个字母各是什么意思呢？&#160; Gearman 和 Memcached 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/loveyoursmile/blog/category/%B8%BA%D4%D8%C6%BD%BA%E2">负载平衡</a>&nbsp;<a href="http://hi.baidu.com/loveyoursmile/blog/item/d918bc0e609b26ed36d122cd.html#comment">查看评论</a>]]></description>
        <pubDate>2009-10-24  20:54</pubDate>
        <category><![CDATA[负载平衡]]></category>
        <author><![CDATA[江光明]]></author>
		<guid>http://hi.baidu.com/loveyoursmile/blog/item/d918bc0e609b26ed36d122cd.html</guid>
</item>


</channel>
</rss>