<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>大鱼儿@Live</title>
	<atom:link href="http://blog.dayuer.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.dayuer.com</link>
	<description>Keep smiling and never give up,even when things get you down</description>
	<pubDate>Fri, 21 Nov 2008 15:45:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>今天Gmail的主题可以用了</title>
		<link>http://blog.dayuer.com/archives/2008/11/21/466.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/21/466.html#comments</comments>
		<pubDate>Fri, 21 Nov 2008 08:26:49 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=466</guid>
		<description><![CDATA[挺好看的，不知道为什么有人觉得难看呢
不过，要是google能公开主题的API就更爽了，个性化的Gmail将会有巨大的诱惑力，犹如WP的主题设计一样吸引众多高手；
设计、发布一条龙服务，也许会产生一条新的价值链。
PS：好像 有人对Gmail一直挂着一个beta很不满，不过，放眼看去，Gmail的bate不知道比那些所谓的1.0，2.0，N.0的正式版好多少……
beta对于Google，是一种改进的力量，而不是传统意义的版本序列。
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/21/466.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>与其说百度是搜索引擎，不如说是广告搜索引擎</title>
		<link>http://blog.dayuer.com/archives/2008/11/18/462.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/18/462.html#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:17:19 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=462</guid>
		<description><![CDATA[搜个关键字：挖掘机，看看效果，可以说没有什么网站的广告有如此之多了，上下右全是广告。
搜索结果是10条，其中有8条是广告，加上右栏的8条广告，一种16条广告；
正常搜索结果与广告的比例是  2：16，多么惊人的广告投放率；
可以说百度在某些关键字的页面，已经彻底变为纯广告投放了，跟那些专门制作来骗广告点击的网站没什么区别，或者说跟下三滥。

]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/18/462.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>用Zend Framework向Blogger发文章的简单类</title>
		<link>http://blog.dayuer.com/archives/2008/11/18/453.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/18/453.html#comments</comments>
		<pubDate>Tue, 18 Nov 2008 01:36:20 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=453</guid>
		<description><![CDATA[PLAIN TEXT
PHP:




&#38;lt;?php


require_once&#40;'Zend/Gdata.php'&#41;;


require_once&#40;'Zend/Gdata/Query.php'&#41;;


require_once&#40;'Zend/Gdata/ClientLogin.php'&#41;;


&#160;


//向 Blogger发送文章，可自定义Tag


class Blogger&#123;


private $gdClient;


private $blogID;


&#160;


public function __construct&#40;$mail, $password, $blogID&#41;&#123;


$service = 'blogger';


$client = Zend_Gdata_ClientLogin::getHttpClient&#40;$mail, $password, $service&#41;;


$this-&#38;gt;gdClient = new Zend_Gdata&#40;$client&#41;;


$this-&#38;gt;blogID = $blogID;


&#125;


&#160;


public function printAllBlogs&#40;&#41;&#123;


$query = new Zend_Gdata_Query&#40;'https://www.blogger.com/feeds/default/blogs'&#41;;


$feed = $this-&#38;gt;gdClient-&#38;gt;getFeed&#40;$query&#41;;


$this-&#38;gt;printFeed&#40;$feed&#41;;


&#125;


&#160;


public function printFeed&#40;$feed&#41;&#123;


$i = 0;


foreach&#40;$feed-&#38;gt;entries as $entry&#41; &#123;


print_r &#40;split&#40;'-', $entry-&#38;gt;id-&#38;gt;text&#41;&#41;;


$i++;


&#125;


&#125;


&#160;


public function createPublishedPost&#40;$title='Hello, world!', $content='I am blogging on the internet.', $category= '', $publish&#41;&#123;


$uri = 'https://www.blogger.com/feeds/' . $this-&#38;gt;blogID . '/posts/default';


$entry [...]]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/18/453.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>解决Blogger离线发布API被封的问题</title>
		<link>http://blog.dayuer.com/archives/2008/11/17/451.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/17/451.html#comments</comments>
		<pubDate>Mon, 17 Nov 2008 14:51:50 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<category><![CDATA[blogger]]></category>

		<category><![CDATA[Google研究]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=451</guid>
		<description><![CDATA[一直很郁闷blogger的离线API被伟大的GFW了，但是Google很强大，已经在不知不觉中推出了非常多的HTTP SSL服务
Gmail的访问地址已经从默认的http://gmail.com自动切换成https://gmail.com了，现在，谁还会说Gmail不稳定，老是无法连接呢？
受此启发，今天灵光突显的在blogger的离线API的url地址上加了一个s，然后，世界和平了～
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/17/451.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>网络公司知名度测试</title>
		<link>http://blog.dayuer.com/archives/2008/11/12/445.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/12/445.html#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:04:44 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=445</guid>
		<description><![CDATA[在1分钟内，回想脑子里记得住的在中国有业务的互联网公司的名称，要中文名；
想起来如下：
谷歌
腾讯
百度
新浪
网易
搜狐
微软
淘宝
优酷
六间房
天涯
猫扑
雅虎
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/12/445.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Picasa支持的分辨率</title>
		<link>http://blog.dayuer.com/archives/2008/11/11/443.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/11/443.html#comments</comments>
		<pubDate>Mon, 10 Nov 2008 19:27:53 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=443</guid>
		<description><![CDATA[



输出大小
是否可剪切
是否可嵌入
输出大小
是否可剪切
是否可嵌入


32
Yes
Yes
576
No
Yes


48
Yes
Yes
640
No
Yes


64
Yes
Yes
720
No
Yes


72
No
Yes
800
No
Yes


144
No
Yes
912
No
No


160
Yes
Yes
1024
No
No


200
No
Yes
1152
No
No


288
No
Yes
1280
No
No


320
No
Yes
1440
No
No


400
No
Yes
1600
No
No


512
No
Yes
d
No
No



]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/11/443.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>无聊中发现Google picasa首页的一个bug</title>
		<link>http://blog.dayuer.com/archives/2008/11/09/438.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/09/438.html#comments</comments>
		<pubDate>Sun, 09 Nov 2008 08:01:12 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=438</guid>
		<description><![CDATA[闲得无聊，顺手看了一下picasa首页的html代码，居然发现个好玩的bug。
http://picasaweb.google.com/lh/explore

红色框里的地方，这个位置应该是指定 width，却被错误的设成了图片地址，看来是变量用花眼了。
在google的帮助里找了一下，没找到在哪里报告bug，作罢，懒得理了，google也是人嘛，呵呵，权作一笑。
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/09/438.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google News改版</title>
		<link>http://blog.dayuer.com/archives/2008/11/06/436.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/06/436.html#comments</comments>
		<pubDate>Wed, 05 Nov 2008 18:00:34 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=436</guid>
		<description><![CDATA[更加的清爽
很好很强大
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/06/436.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google In Quotes 非常有趣</title>
		<link>http://blog.dayuer.com/archives/2008/11/03/433.html</link>
		<comments>http://blog.dayuer.com/archives/2008/11/03/433.html#comments</comments>
		<pubDate>Sun, 02 Nov 2008 16:18:50 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=433</guid>
		<description><![CDATA[十分方便的观点对比，各类人物的言论都可以被随时方便的对比。
现在可对比的范围还太窄，不过对比美国两位总统候选人的言论，已经可以看出很好玩的东西了。
不知道什么时候能开放中国领导的人言论对比。
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/11/03/433.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>垃圾回复最近越来越多</title>
		<link>http://blog.dayuer.com/archives/2008/10/30/431.html</link>
		<comments>http://blog.dayuer.com/archives/2008/10/30/431.html#comments</comments>
		<pubDate>Thu, 30 Oct 2008 15:31:46 +0000</pubDate>
		<dc:creator>大鱼儿</dc:creator>
		
		<category><![CDATA[随便说说]]></category>

		<guid isPermaLink="false">http://blog.dayuer.com/?p=431</guid>
		<description><![CDATA[是不是因为经济形势不好，大家都缺钱花了，拼了命的发垃圾回复，推广网站。
可惜，我们有Akismet，不管你怎么伪装，一样的拦下，拒之门外。
奉劝这些垃圾制造者，消停吧，小心生孩子没屁眼。
]]></description>
		<wfw:commentRss>http://blog.dayuer.com/archives/2008/10/30/431.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
