<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>未完待续 &#187; GOOGLE</title>
	<atom:link href="http://ioio.name/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://ioio.name</link>
	<description>To Be Continued</description>
	<lastBuildDate>Thu, 09 Feb 2012 05:20:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Google URL Shortener官方API</title>
		<link>http://ioio.name/google-url-shortener-api.html</link>
		<comments>http://ioio.name/google-url-shortener-api.html#comments</comments>
		<pubDate>Sun, 03 Oct 2010 17:51:17 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[URL Shortener]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1583</guid>
		<description><![CDATA[Google终于正式推出自家的URL Shortener http://goo.gl/供用户使用了。那么接口自然会是有的，不再需要像之前一样需要自己hack才能从外部调用goo.gl压缩网址。 API地址 http://goo.gl/api/shorten 参数 security_token 和 url 未登录就将security_token值设置未null 以下是Python代码写的示例 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 #!/usr/bin/env python # encoding: utf-8 import urllib,httplib def test&#40;&#41;: url = 'goo.gl' [...]]]></description>
			<content:encoded><![CDATA[<p>Google终于正式推出自家的URL Shortener <a href="http://goo.gl/">http://goo.gl/</a>供用户使用了。那么接口自然会是有的，不再需要像之前一样需要自己hack才能从外部调用goo.gl压缩网址。</p>
<p><strong>API地址</strong> http://goo.gl/api/shorten<br />
<strong>参数</strong> security_token	和 url<br />
未登录就将security_token值设置未null</p>
<p>以下是Python代码写的示例</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #808080; font-style: italic;"># encoding: utf-8</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">urllib</span>,<span style="color: #dc143c;">httplib</span>
<span style="color: #ff7700;font-weight:bold;">def</span> <span style="color: #dc143c;">test</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
	url = <span style="color: #483d8b;">'goo.gl'</span>
	form_fields = <span style="color: black;">&#123;</span><span style="color: #483d8b;">'security_token'</span>:<span style="color: #483d8b;">'null'</span>,
	               <span style="color: #483d8b;">'url'</span>:<span style="color: #483d8b;">'http://google.com'</span><span style="color: black;">&#125;</span>
	params = <span style="color: #dc143c;">urllib</span>.<span style="color: black;">urlencode</span><span style="color: black;">&#40;</span>form_fields<span style="color: black;">&#41;</span>
	headers = <span style="color: black;">&#123;</span><span style="color: #483d8b;">'Host'</span>:<span style="color: #483d8b;">'goo.gl'</span>,
               <span style="color: #483d8b;">'User-Align'</span>:<span style="color: #483d8b;">'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.10'</span>,
               <span style="color: #483d8b;">'Content-Type'</span>:<span style="color: #483d8b;">'application/x-www-form-urlencoded; charset=UTF-8'</span>,
               <span style="color: #483d8b;">'Connection'</span>:<span style="color: #483d8b;">'Keep-Alive'</span>,
               <span style="color: #483d8b;">'Keep-Alive'</span>:<span style="color: #ff4500;">115</span>,
               <span style="color: #483d8b;">'X-Requested-With'</span>:<span style="color: #483d8b;">'XMLHttpRequest'</span>,
               <span style="color: #483d8b;">'Referer'</span>:<span style="color: #483d8b;">'http://goo.gl/'</span>,
               <span style="color: #483d8b;">'Accept'</span>:<span style="color: #483d8b;">'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'</span>,
               <span style="color: #483d8b;">&quot;Cookie&quot;</span>:<span style="color: #483d8b;">'authed=1'</span><span style="color: black;">&#125;</span>
	conn = <span style="color: #dc143c;">httplib</span>.<span style="color: black;">HTTPConnection</span><span style="color: black;">&#40;</span>url<span style="color: black;">&#41;</span>
	conn.<span style="color: black;">request</span><span style="color: black;">&#40;</span>method=<span style="color: #483d8b;">'POST'</span>,url = <span style="color: #483d8b;">'/api/shorten'</span>,body=params,headers=headers<span style="color: black;">&#41;</span>
	response = conn.<span style="color: black;">getresponse</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">print</span> response.<span style="color: black;">status</span>
&nbsp;
	res = response.<span style="color: black;">read</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">print</span> res
&nbsp;
	getheaders = response.<span style="color: black;">getheaders</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">for</span> head <span style="color: #ff7700;font-weight:bold;">in</span> getheaders:
	    <span style="color: #ff7700;font-weight:bold;">print</span> head<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>,<span style="color: #483d8b;">':'</span>,head<span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>
	conn.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">'__main__'</span>:
    <span style="color: #dc143c;">test</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

<p>需要注意的是请求header信息里面必须携带Content-Type信息，否则会得到Bad request的400错误信息。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/goo-gl-shortener-update-20100204.html" rel="bookmark" title="Permanent Link: goo.gl 短网址生成器升级">goo.gl 短网址生成器升级</a></li><li><a href="http://ioio.name/unofficial-google-url-shortener.html" rel="bookmark" title="Permanent Link: Unofficial Google URL Shortener">Unofficial Google URL Shortener</a></li><li><a href="http://ioio.name/google-ad-manager-to-dfp.html" rel="bookmark" title="Permanent Link: “Google 广告管理系统”升级为“DFP 广告管理系统标准版”">“Google 广告管理系统”升级为“DFP 广告管理系统标准版”</a></li><li><a href="http://ioio.name/wins-the-google-apps-for-your-domain-invitation.html" rel="bookmark" title="Permanent Link: 收到“Google Apps”邀请">收到“Google Apps”邀请</a></li><li><a href="http://ioio.name/google-notebook-download.html" rel="bookmark" title="Permanent Link: Google Notebook插件下载">Google Notebook插件下载</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/google-url-shortener-api.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/google-url-shortener-api.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/google-url-shortener-api.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>防跳转使用英文版 Google.com</title>
		<link>http://ioio.name/google-com-ncr.html</link>
		<comments>http://ioio.name/google-com-ncr.html#comments</comments>
		<pubDate>Mon, 12 Apr 2010 13:00:54 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1036</guid>
		<description><![CDATA[现在使用Google，只要是中国IP默认情况下都会被强制跳转到google.com.hk，要使用英文版Google的方法是点击页面下方的Google.com in English或者直接使用如下的网址访问： http://www.google.com/ncr -EOF- Related posts:“Google 广告管理系统”升级为“DFP 广告管理系统标准版”收到“Google Apps”邀请Google Notebook插件下载Google CalendarGoogle Reader中文版以及Google Presentation发布Copyright &#169; 2005~2011 &#124; Permalink &#124; 0 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p>现在使用Google，只要是中国IP默认情况下都会被强制跳转到google.com.hk，要使用英文版Google的方法是点击页面下方的<a href="http://www.google.com/ncr" target="_blank">Google.com in English</a>或者直接使用如下的网址访问：</p>
<blockquote><p><a href="http://www.google.com/ncr" target="_blank">http://www.google.com/ncr</a></p></blockquote>
<p>-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/google-ad-manager-to-dfp.html" rel="bookmark" title="Permanent Link: “Google 广告管理系统”升级为“DFP 广告管理系统标准版”">“Google 广告管理系统”升级为“DFP 广告管理系统标准版”</a></li><li><a href="http://ioio.name/wins-the-google-apps-for-your-domain-invitation.html" rel="bookmark" title="Permanent Link: 收到“Google Apps”邀请">收到“Google Apps”邀请</a></li><li><a href="http://ioio.name/google-notebook-download.html" rel="bookmark" title="Permanent Link: Google Notebook插件下载">Google Notebook插件下载</a></li><li><a href="http://ioio.name/google-calendar.html" rel="bookmark" title="Permanent Link: Google Calendar">Google Calendar</a></li><li><a href="http://ioio.name/google-presentation.html" rel="bookmark" title="Permanent Link: Google Reader中文版以及Google Presentation发布">Google Reader中文版以及Google Presentation发布</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/google-com-ncr.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/google-com-ncr.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/google-com-ncr.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>谷歌走了，我们还能用什么搜索引擎？</title>
		<link>http://ioio.name/search-engine-without-google.html</link>
		<comments>http://ioio.name/search-engine-without-google.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:59:13 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1001</guid>
		<description><![CDATA[不得不说，谷歌的无法访问对生活和工作还是带来了许多不便，特别是在查找资料的时候。良好的使用搜索引擎，可以提供工作效率，对于天天在电脑前的搜索引擎重度用户，在无法访问谷歌的时候，除了百度，我们还能用哪些搜索引擎呢？下面是一些除了用百度外中文做得比较好的搜索引擎。包括百度在内的这些搜索引擎，对英文的支持都不太好，对于经常搜索英文的朋友还是不太方便。目前可选的就必应和Yahoo! Search。 必应 http://www.bing.com/ 微软旗下搜索引擎。有自己的地图服务，有多语言版版本。 有道 http://www.youdao.com/ 网易旗下搜索引擎。第三方地图。 搜搜 http://www.soso.com/ 腾讯旗下搜索引擎。无地图服务。 搜狗 http://www.sogou.com/ 搜狐旗下搜索引擎。第三方地图。 中国雅虎 http://www.yahoo.cn/ YAHOO中国站点，现由阿里巴巴集团运营。 Yahoo! Search http://search.yahoo.com/ 美国Yahoo!搜索，英文界面，支持中文搜索。 -EOF- Related posts:App Engine SDK 1.3.4 ReleasedApp Engine SDK 1.35发布Google App Engine SDK 1.3.2Google App Engine 中文版入门指南Google App Engine 空间探针Copyright &#169; 2005~2011 &#124; Permalink &#124; 0 Comments &#124; Close To U 订阅 Twitter 域名优惠码 [...]]]></description>
			<content:encoded><![CDATA[<p>不得不说，谷歌的无法访问对生活和工作还是带来了许多不便，特别是在查找资料的时候。良好的使用搜索引擎，可以提供工作效率，对于天天在电脑前的搜索引擎重度用户，在无法访问谷歌的时候，除了百度，我们还能用哪些搜索引擎呢？下面是一些除了用百度外中文做得比较好的搜索引擎。包括百度在内的这些搜索引擎，对英文的支持都不太好，对于经常搜索英文的朋友还是不太方便。目前可选的就必应和Yahoo! Search。</p>
<p>必应 <a href="http://www.bing.com/" target="_blank">http://www.bing.com/</a><br />
微软旗下搜索引擎。有自己的地图服务，有多语言版版本。</p>
<p>有道 <a href="http://www.youdao.com/" target="_blank">http://www.youdao.com/</a><br />
网易旗下搜索引擎。第三方地图。</p>
<p>搜搜 <a href="http://www.soso.com/" target="_blank">http://www.soso.com/</a><br />
腾讯旗下搜索引擎。无地图服务。</p>
<p>搜狗 <a href="http://www.sogou.com/" target="_blank">http://www.sogou.com/</a><br />
搜狐旗下搜索引擎。第三方地图。</p>
<p>中国雅虎 <a href="http://www.yahoo.cn/" target="_blank">http://www.yahoo.cn/</a><br />
YAHOO中国站点，现由阿里巴巴集团运营。</p>
<p>Yahoo! Search <a href="http://search.yahoo.com/" target="_blank">http://search.yahoo.com/</a><br />
美国Yahoo!搜索，英文界面，支持中文搜索。</p>
<p>-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/app-engine-sdk-1-3-4-released.html" rel="bookmark" title="Permanent Link: App Engine SDK 1.3.4 Released">App Engine SDK 1.3.4 Released</a></li><li><a href="http://ioio.name/app-engine-sdk-1-3-5-released.html" rel="bookmark" title="Permanent Link: App Engine SDK 1.35发布">App Engine SDK 1.35发布</a></li><li><a href="http://ioio.name/google-app-engine-sdk-1-3-2.html" rel="bookmark" title="Permanent Link: Google App Engine SDK 1.3.2">Google App Engine SDK 1.3.2</a></li><li><a href="http://ioio.name/google-app-engine-chinese-guide.html" rel="bookmark" title="Permanent Link: Google App Engine 中文版入门指南">Google App Engine 中文版入门指南</a></li><li><a href="http://ioio.name/google-app-engine-os-environ-10-beta.html" rel="bookmark" title="Permanent Link: Google App Engine 空间探针">Google App Engine 空间探针</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/search-engine-without-google.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/search-engine-without-google.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/search-engine-without-google.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s SEO Report Card</title>
		<link>http://ioio.name/googles-seo-report-card.html</link>
		<comments>http://ioio.name/googles-seo-report-card.html#comments</comments>
		<pubDate>Sun, 07 Mar 2010 09:58:48 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=956</guid>
		<description><![CDATA[Googles&#8217; SEO Report Card ,就是Google出品的SEO内部测评报告，是Google在上前天放出来的，这个SEO内部测评报告囊括了超过100个不同的 Google 产品，测试过多余12种的普通优化分类，同时将来还会进一步做迭代，一遍更深入的了解 Google 的产品页面。同时对一些基本的SEO常识和常见问题都做出了很好的说明和举例，用很通俗易懂的方式向GF（Google Fans）们传递着Google对SEO的理念，也方便其他公司和各个网站管理员能更好的理解SEO。 报告是英文、PDF格式的。不过都是不太难的英文，而且配备得有图表和数据，不太懂英文的人也看得懂。 下载 Related posts:新身份证(mt) Media Temple国外域名主机服务商常用PHP程式介绍Copyright &#169; 2005~2011 &#124; Permalink &#124; 4 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p>Googles&#8217; SEO Report Card ,就是Google出品的SEO内部测评报告，是Google在上前天放出来的，这个SEO内部测评报告囊括了超过100个不同的 Google 产品，测试过多余12种的普通优化分类，同时将来还会进一步做迭代，一遍更深入的了解 Google 的产品页面。同时对一些基本的SEO常识和常见问题都做出了很好的说明和举例，用很通俗易懂的方式向GF（Google Fans）们传递着Google对SEO的理念，也方便其他公司和各个网站管理员能更好的理解SEO。<br />
     报告是英文、PDF格式的。不过都是不太难的英文，而且配备得有图表和数据，不太懂英文的人也看得懂。<br />
下载 <a class="downloadlink" href="http://ioio.name/downloads/10" title=" downloaded 272 times" >Google\'s SEO Report Card (272)</a></p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/new-id-card.html" rel="bookmark" title="Permanent Link: 新身份证">新身份证</a></li><li><a href="http://ioio.name/mt" rel="bookmark" title="Permanent Link: (mt) Media Temple">(mt) Media Temple</a></li><li><a href="http://ioio.name/domain-and-host-service.html" rel="bookmark" title="Permanent Link: 国外域名主机服务商">国外域名主机服务商</a></li><li><a href="http://ioio.name/commonly-used-programs-on-php.html" rel="bookmark" title="Permanent Link: 常用PHP程式介绍">常用PHP程式介绍</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/googles-seo-report-card.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/googles-seo-report-card.html#comments">4 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/googles-seo-report-card.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>“Google 广告管理系统”升级为“DFP 广告管理系统标准版”</title>
		<link>http://ioio.name/google-ad-manager-to-dfp.html</link>
		<comments>http://ioio.name/google-ad-manager-to-dfp.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:07:30 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=888</guid>
		<description><![CDATA[Google已经将”Google 广告管理系统”(Google Ad Manager)开始升级为“DFP 广告管理系统标准版”（DoubleClick for Publishers），一下是邮件通知原文： 有关 Google 广告管理系统帐户的重要更新 ***有关您的帐户的重要通知*** 您好！ 自 Google 在 2008 年 3 月收购 DoubleClick 以来，您可能已注意到 Google 广告管理系统进行了诸多改进，旨在更加便捷地管理广告资源和广告运作。新的”广告资源”和”系統管理”功能模块只是这些改进的一部分，更多改进即将精彩呈现。我们广泛采纳用户的反馈意见，根据 Google 广告管理系统的强大功能和来自 DoubleClick 的技术和洞察力，最终形成了这些改进。 今天，我们宣布推出新一代的发布商广告分发平台 &#8211; 由 Google 新近推出的 DFP 广告管理系统，充分利用 Google 和 DoubleClick 强强联合的优势。作为该公告的一部分，我们高兴地宣布所有 Google 广告管理系统发布商帐户都将升级至 DFP 广告管理系统标准版，这是新 DFP 平台的特别版，专为满足不断增长的发布商需求而设计。 在接下来的数周中，我们将把您的 Google 广告管理系统帐户 自动升级至 DFP 广告管理系统标准版。您将会看到新的名称和徽标，还将从全新设计的投放管理工作流中受益，使广告活动管理更为直观和有效。与之类似，Google 广告管理系统帮助中心、用户论坛和其他资源也将以 DFP 广告管理系统标准版重新出现。 作为 DFP [...]]]></description>
			<content:encoded><![CDATA[<p>Google已经将”Google 广告管理系统”(Google Ad Manager)开始升级为“DFP 广告管理系统标准版”（DoubleClick for Publishers），一下是邮件通知原文：</p>
<blockquote><p>
有关 Google 广告管理系统帐户的重要更新</p>
<p>***有关您的帐户的重要通知*** </p>
<p>您好！ </p>
<p>自 Google 在 2008 年 3 月收购 DoubleClick 以来，您可能已注意到 Google 广告管理系统进行了诸多改进，旨在更加便捷地管理广告资源和广告运作。新的”广告资源”和”系統管理”功能模块只是这些改进的一部分，更多改进即将精彩呈现。我们广泛采纳用户的反馈意见，根据 Google 广告管理系统的强大功能和来自 DoubleClick 的技术和洞察力，最终形成了这些改进。  </p>
<p>今天，我们宣布推出新一代的发布商广告分发平台 &#8211; 由 Google 新近推出的 DFP 广告管理系统，充分利用 Google 和 DoubleClick 强强联合的优势。作为该公告的一部分，我们高兴地宣布所有 Google 广告管理系统发布商帐户都将升级至 DFP 广告管理系统标准版，这是新 DFP 平台的特别版，专为满足不断增长的发布商需求而设计。 </p>
<p>在接下来的数周中，我们将把您的 Google 广告管理系统帐户 自动升级至 DFP 广告管理系统标准版。您将会看到新的名称和徽标，还将从全新设计的投放管理工作流中受益，使广告活动管理更为直观和有效。与之类似，Google 广告管理系统帮助中心、用户论坛和其他资源也将以 DFP 广告管理系统标准版重新出现。 </p>
<p>作为 DFP 广告管理系统标准版的用户，您仍然可以使用当前的用户名和密码登录，而广告交付和帐户数据也不会受此更改的影响。 </p>
<p>我们准备了一组在线材料，帮助您为即将到来的 Google 广告管理系统的改变作好准备： </p>
<p>通过新的 DFP 广告管理系统标准版网站熟悉相关内容，该网站将替代 Google 广告管理系统网站。 </p>
<p>再次感谢您的支持，期待我们的继续合作。 </p>
<p>此致，<br />
Google 广告管理系统（DFP 广告管理系统标准版）小组
</p></blockquote>
<p>PS：目前我的帐户还没有变化。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/g1-htc-dream-common-use-software.html" rel="bookmark" title="Permanent Link: G1常用软件">G1常用软件</a></li><li><a href="http://ioio.name/google-storage-for-developers-preview.html" rel="bookmark" title="Permanent Link: Google Storage for Developers初体验">Google Storage for Developers初体验</a></li><li><a href="http://ioio.name/google-devfest-invitation.html" rel="bookmark" title="Permanent Link: Google DevFest Invitation">Google DevFest Invitation</a></li><li><a href="http://ioio.name/wins-the-google-apps-for-your-domain-invitation.html" rel="bookmark" title="Permanent Link: 收到“Google Apps”邀请">收到“Google Apps”邀请</a></li><li><a href="http://ioio.name/google-notebook-download.html" rel="bookmark" title="Permanent Link: Google Notebook插件下载">Google Notebook插件下载</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/google-ad-manager-to-dfp.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/google-ad-manager-to-dfp.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/google-ad-manager-to-dfp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google官方博客群一览</title>
		<link>http://ioio.name/google-blog-directory-source.html</link>
		<comments>http://ioio.name/google-blog-directory-source.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 08:00:10 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=833</guid>
		<description><![CDATA[Google-wide The Official Google Blog Insights from Googlers into our products, technology, and the Google culture. http://googleblog.blogspot.com/ Public Policy Blog Google&#8217;s views on government, policy and politics. http://googlepublicpolicy.blogspot.com/ Mac Blog Macs inside Google. http://googlemac.blogspot.com/ Online Security Blog The latest news and insights from Google on security and safety on the Internet. http://googleonlinesecurity.blogspot.com/ Open Source Blog [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Google-wide</strong></p>
<p>The Official Google Blog<br />
Insights from Googlers into our products, technology, and the Google culture.</p>
<p>http://googleblog.blogspot.com/</p>
<p>Public Policy Blog<br />
Google&#8217;s views on government, policy and politics.</p>
<p>http://googlepublicpolicy.blogspot.com/</p>
<p>Mac Blog<br />
Macs inside Google.</p>
<p>http://googlemac.blogspot.com/</p>
<p>Online Security Blog<br />
The latest news and insights from Google on security and safety on the Internet.</p>
<p>http://googleonlinesecurity.blogspot.com/</p>
<p>Open Source Blog<br />
News about Google&#8217;s Open Source projects and programs.</p>
<p>http://google-opensource.blogspot.com/</p>
<p>Research Blog<br />
The latest news on Google Research.</p>
<p>http://googleresearch.blogspot.com/</p>
<p>Student Blog<br />
Google news and updates especially for students.</p>
<p>http://googleforstudents.blogspot.com/</p>
<p>Testing Blog<br />
If it ain&#8217;t broke, you&#8217;re not trying hard enough.</p>
<p>http://googletesting.blogspot.com/</p>
<p>google.org blog<br />
News and notes from Google&#8217;s philanthropic arm.</p>
<p>http://blog.google.org/</p>
<p>RechargeIT Blog<br />
Recharge a Car, Recharge the Grid, Recharge the Planet.</p>
<p>http://rechargeit.blogspot.com/</p>
<p><strong>Products</strong></p>
<p>Base: Google Base Blog<br />
The latest news, tips, and resources straight from the Google Base team.</p>
<p>http://googlebase.blogspot.com/</p>
<p>Blogger: Blogger Buzz<br />
The Official Buzz from Blogger.</p>
<p>http://buzz.blogger.com/</p>
<p>Book Search: Inside Google Book Search<br />
News from the Google Book Search Team.</p>
<p>http://booksearch.blogspot.com/</p>
<p>Checkout: The Official Google Checkout Blog<br />
News for sellers using Google Checkout.</p>
<p>http://googlecheckout.blogspot.com/</p>
<p>Chrome: Google Chrome Releases<br />
Announcements and release notes for the Google Chrome browser.</p>
<p>http://googlechromereleases.blogspot.com/</p>
<p>Custom Search Engine: Custom Search Blog<br />
Updates and tips from the Google Custom Search team.</p>
<p>http://googlecustomsearch.blogspot.com/</p>
<p>Desktop: Inside Google Desktop<br />
The official source of information from Google desktop.</p>
<p>http://googledesktop.blogspot.com/</p>
<p>Docs: The Official Google Docs Blog<br />
News and notes from the Google Docs team.</p>
<p>http://googledocs.blogspot.com/</p>
<p>Enterprise: The Official Google Enterprise Blog<br />
A blog about enterprise information, search, apps, and the users that live there</p>
<p>http://googleenterprise.blogspot.com/</p>
<p>Enterprise: Google Enterprise Superstars Blog<br />
A blog of success stories from Google&#8217;s Enterprise Search Superstars.</p>
<p>http://googleenterprisesuperstars.blogspot.com/</p>
<p>AdSense for Feeds<br />
Helping publishers analyze, publicize, and monetize their RSS feeds</p>
<p>http://adsenseforfeeds.blogspot.com/</p>
<p>Finance: Finance Blog<br />
News and views from the Google Finance Team.</p>
<p>http://googlefinanceblog.blogspot.com/</p>
<p>Gmail: The Official Gmail Blog<br />
News, tips and tricks from Google&#8217;s Gmail team and friends.</p>
<p>http://gmailblog.blogspot.com/</p>
<p>Map and Earth: Google LatLong Blog<br />
News and notes by the Google Earth and Maps team.</p>
<p>http://google-latlong.blogspot.com/</p>
<p>Mobile: Google Mobile Blog<br />
News and views from the Google Mobile team.</p>
<p>http://googlemobile.blogspot.com/</p>
<p>http://googlenewsblog.blogspot.com/</p>
<p>The official blog from the team at Google News.</p>
<p>http://googlenewsblog.blogspot.com/</p>
<p>Notebook: Google Notebook Blog<br />
News and tips from the Notebook team.</p>
<p>http://googlenotebookblog.blogspot.com/</p>
<p>Orkut: Orkut News and Notes<br />
Your official guide for staying beautiful on orkut.</p>
<p>http://en.blog.orkut.com/</p>
<p>Picasa: The Official Google Photos Blog<br />
News, tips and tricks from the Picasa team at Google.</p>
<p>http://googlephotos.blogspot.com/</p>
<p>Reader: The Official Google Reader Blog<br />
News, tips and tricks from the Google reader team.</p>
<p>http://googlereader.blogspot.com</p>
<p>Sites: Google Sites Blog<br />
News and notes from the Google Sites team.</p>
<p>http://googlesitesblog.blogspot.com/</p>
<p>SketchUp: SketchUpdate<br />
News and notes from the SketchUp folks.</p>
<p>http://sketchupdate.blogspot.com/</p>
<p>Social Web Blog<br />
News and updates about Google products that are helping to make the web more social.</p>
<p>http://googlesocialweb.blogspot.com/</p>
<p>Talk: Google Talkabout<br />
A blog about voice, IM and open communications with Google Talk.</p>
<p>http://googletalk.blogspot.com/</p>
<p>Video: Google Video Blog<br />
Showcasing cool new videos from across the web.</p>
<p>http://googlevideo.blogspot.com</p>
<p>Webmaster Tools: Google Webmaster Central Blog<br />
Official news on crawling and indexing sites for the Google index.</p>
<p>http://googlewebmastercentral.blogspot.com/</p>
<p>YouTube: YouTube Blog<br />
The Official YouTube Blog.</p>
<p>http://www.youtube.com/blog</p>
<p>Product Ideas Blog<br />
Updates from the Product Ideas team.</p>
<p>http://googleproductideas.blogspot.com/</p>
<p><strong>Ads</strong></p>
<p>Google Affiliate Network Blog<br />
News, views and product info for Google Affiliate Network advertisers and publishers.</p>
<p>http://googleaffiliatenetwork-blog.blogspot.com/</p>
<p>Google Analytics Blog<br />
The latest news, tips and resources straight from the Google Analytics team.</p>
<p>http://analytics.blogspot.com/</p>
<p>Consumer Packaged Goods Blog<br />
News and notes from Google&#8217;s CPG vertical (Consumer Packaged Goods).<br />
Show latest post-Subscribe</p>
<p>http://google-cpg.blogspot.com/</p>
<p>Google Grants Blog<br />
News and notes from the Google Grants Team.</p>
<p>http://googlegrants.blogspot.com/</p>
<p>Inside AdSense<br />
A look inside Google AdSense.</p>
<p>http://adsense.blogspot.com/</p>
<p>Inside AdWords<br />
Google&#8217;s official blog for news, information and tips on AdWords.</p>
<p>http://adwords.blogspot.com/</p>
<p>Traditional Media: Let&#8217;s Take it Offline<br />
The latest news from Google&#8217;s TV, Print and Audio Teams.</p>
<p>http://google-tmads.blogspot.com/</p>
<p>Website Optimizer Blog<br />
The most up-to-date product news, industry insights and testing strategies</p>
<p>http://websiteoptimizer.blogspot.com/</p>
<p>Conversion Room<br />
The place to visit for tips on tracking and improving conversions online</p>
<p>http://conversionroom.blogspot.com/</p>
<p><strong>Developer</strong></p>
<p>AdWords API Blog<br />
The official source of information about the AdWords API.</p>
<p>http://adwordsapi.blogspot.com/</p>
<p>AJAX Search API Blog<br />
Your official source on the AJAX Search API.</p>
<p>http://googleajaxsearchapi.blogspot.com/</p>
<p>Android Developers Blog<br />
An Open Handset Alliance Project.</p>
<p>http://android-developers.blogspot.com/</p>
<p>App Engine Blog<br />
News, notes, tips and tricks from the Google App Engine Team.</p>
<p>http://googleappengine.blogspot.com/</p>
<p>Code Blog<br />
News &#038; information about Google&#8217;s developer products.</p>
<p>http://google-code-updates.blogspot.com/</p>
<p>Data APIs Blog<br />
Your official source for news, tips and tricks for the Google Data APIs.</p>
<p>http://googledataapis.blogspot.com/</p>
<p>Desktop APIs Blog<br />
Your official source on the Google Desktop APIs.</p>
<p>http://googledesktopapis.blogspot.com/</p>
<p>Gadgets API Blog<br />
A blog for gadget developers.</p>
<p>http://googlegadgetsapi.blogspot.com/</p>
<p>Gears API Blog<br />
Keep up to date on Gears.</p>
<p>http://gearsblog.blogspot.com/</p>
<p>Geo Developers Blog<br />
undefined</p>
<p>http://googlegeodevelopers.blogspot.com/</p>
<p>iGoogle Developer Blog<br />
Your source for API improvements, changes to the sandbox, and developer events.</p>
<p>http://igoogledeveloper.blogspot.com/</p>
<p>Mashup Editor Blog<br />
The official source of information about the Google Mashup Editor.</p>
<p>http://googlemashupeditor.blogspot.com/</p>
<p>Open Source Blog<br />
News about Google&#8217;s Open Source projects and programs.</p>
<p>http://google-opensource.blogspot.com/</p>
<p>OpenSocial API Blog<br />
A blog for OpenSocial developers.</p>
<p>http://opensocialapis.blogspot.com/</p>
<p>orkut Developer Blog<br />
You&#8217;ve come to the right place to learn about APIs, changes and events related to the orkut developer platform.</p>
<p>http://orkutdeveloper.blogspot.com/</p>
<p>SketchUp API Blog<br />
The latest news from the SketchUp API team.</p>
<p>http://sketchupapi.blogspot.com/</p>
<p>Web Toolkit Blog<br />
News and note from the Google Web Toolkit Team.</p>
<p>http://googlewebtoolkit.blogspot.com/</p>
<p>YouTube API Blog<br />
Your official source for information on the YouTube API.</p>
<p>http://apiblog.youtube.com/</p>
<p><strong>Region</strong></p>
<p>Latin America Blog<br />
El blog oficial de Google en América Latina.</p>
<p>http://googleamericalatinablog.blogspot.com/</p>
<p>Africa Blog<br />
Google in Sub-Saharan Africa: news, stories and thoughts.</p>
<p>http://google-africa.blogspot.com/</p>
<p>Australia Blog<br />
News and notes from Google down under.</p>
<p>http://google-au.blogspot.com/</p>
<p>Brasil Blog<br />
O modo googler de ver notícias de tecnologia, novos produtos e nossa cultura.</p>
<p>http://googlebrasilblog.blogspot.com/</p>
<p>China Blog<br />
undefined</p>
<p>http://googlechinablog.com/</p>
<p>Czech Republic Blog<br />
The Official Google Blog for the Czech Republic.</p>
<p>http://google-cz.blogspot.com/</p>
<p>India Blog<br />
The Official Google Blog for India</p>
<p>http://googleindia.blogspot.com/</p>
<p>Italy Blog<br />
The Official Google Blog for Italy.</p>
<p>http://googleitalia.blogspot.com/</p>
<p>Japan Blog<br />
The Official Google Blog for Japan.</p>
<p>http://googlejapan.blogspot.com/</p>
<p>Korea Blog<br />
The Official Google Blog for Korea.</p>
<p>http://googlekoreablog.blogspot.com/</p>
<p>Poland Blog<br />
Technologia, produkty, kultura i informacje wewn?trz Google.</p>
<p>http://googlepolska.blogspot.com/</p>
<p>Russia Blog<br />
Insights from Google into our products, technology and the Google culture.</p>
<p>http://googlerussiablog.blogspot.com/</p>
<p>Ukraine Blog<br />
The Official Google Blog for Ukraine.</p>
<p>http://google-ukraine-blog.blogspot.com/</p>
<p>Germany Product Blog<br />
Product information from Google Germany.</p>
<p>http://google-produkt-kompass.blogspot.com/</p>
<p>via <a href="http://zzllrr.blogspot.com/2009/02/google.html" target="_blank">赠君玫瑰已往事</a>(需翻墙)<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/jaiku-is-open-source-now.html" rel="bookmark" title="Permanent Link: Jaiku 开放源代码">Jaiku 开放源代码</a></li><li><a href="http://ioio.name/google-code-prettify.html" rel="bookmark" title="Permanent Link: 语法高亮着色器prettify">语法高亮着色器prettify</a></li><li><a href="http://ioio.name/display-sub-dir-in-root-dir.html" rel="bookmark" title="Permanent Link: WordPress在根目录中显示子目录下的BLOG内容">WordPress在根目录中显示子目录下的BLOG内容</a></li><li><a href="http://ioio.name/static-site-generator.html" rel="bookmark" title="Permanent Link: Static Site Generator System">Static Site Generator System</a></li><li><a href="http://ioio.name/google-app-engine-i18n.html" rel="bookmark" title="Permanent Link: Google App Engine应用国际化(i18n)支持解决方案">Google App Engine应用国际化(i18n)支持解决方案</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/google-blog-directory-source.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/google-blog-directory-source.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/google-blog-directory-source.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unofficial Google URL Shortener</title>
		<link>http://ioio.name/unofficial-google-url-shortener.html</link>
		<comments>http://ioio.name/unofficial-google-url-shortener.html#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:53:37 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=760</guid>
		<description><![CDATA[几天前Google发布了自己的短网址goo.gl，但非常不幸的是并未开放给公众使用。根据工具栏的短网址产生形式，经过半个晚上的努力，偶终于写了一个接口用于通过WEB界面生成goo.gl的短网址。该工具托管在Google App Engine上，地址 http://googlshortener.appspot.com/，欢迎试用，多多提意见。 Related posts:goo.gl 短网址生成器升级Google URL Shortener官方API“Google 广告管理系统”升级为“DFP 广告管理系统标准版”收到“Google Apps”邀请Google Notebook插件下载Copyright &#169; 2005~2011 &#124; Permalink &#124; 7 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p>几天前Google发布了自己的短网址<a href="http://goo.gl/" target="_blank">goo.gl</a>，但非常不幸的是并未开放给公众使用。根据工具栏的短网址产生形式，经过半个晚上的努力，偶终于写了一个接口用于通过WEB界面生成goo.gl的短网址。该工具托管在Google App Engine上，地址 <a href="http://googlshortener.appspot.com/" target="_blank">http://googlshortener.appspot.com/</a>，欢迎试用，多多提意见。</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/goo-gl-shortener-update-20100204.html" rel="bookmark" title="Permanent Link: goo.gl 短网址生成器升级">goo.gl 短网址生成器升级</a></li><li><a href="http://ioio.name/google-url-shortener-api.html" rel="bookmark" title="Permanent Link: Google URL Shortener官方API">Google URL Shortener官方API</a></li><li><a href="http://ioio.name/google-ad-manager-to-dfp.html" rel="bookmark" title="Permanent Link: “Google 广告管理系统”升级为“DFP 广告管理系统标准版”">“Google 广告管理系统”升级为“DFP 广告管理系统标准版”</a></li><li><a href="http://ioio.name/wins-the-google-apps-for-your-domain-invitation.html" rel="bookmark" title="Permanent Link: 收到“Google Apps”邀请">收到“Google Apps”邀请</a></li><li><a href="http://ioio.name/google-notebook-download.html" rel="bookmark" title="Permanent Link: Google Notebook插件下载">Google Notebook插件下载</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/unofficial-google-url-shortener.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/unofficial-google-url-shortener.html#comments">7 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/unofficial-google-url-shortener.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>谷歌停止免费天气提醒</title>
		<link>http://ioio.name/google-stop-weather-notification.html</link>
		<comments>http://ioio.name/google-stop-weather-notification.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 11:59:55 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>
		<category><![CDATA[天气]]></category>

		<guid isPermaLink="false">http://blog.closetou.com/?p=34</guid>
		<description><![CDATA[开始看到新闻的时候还有点不相信，看来是真的了，天底下真没免费的午餐。 Related posts:终于可以消停竟无语凝噎“Google 广告管理系统”升级为“DFP 广告管理系统标准版”收到“Google Apps”邀请Google Notebook插件下载Copyright &#169; 2005~2011 &#124; Permalink &#124; 0 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p><a href="http://ioio.name/wp-content/uploads/2009/12/google_sms_weather.png"><img src="http://ioio.name/wp-content/uploads/2009/12/google_sms_weather-300x200.png" alt="google_sms_weather" title="google_sms_weather" width="300" height="200" class="alignnone size-medium wp-image-35" /></a><br />
开始看到新闻的时候还有点不相信，看来是真的了，天底下真没免费的午餐。</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/stop.html" rel="bookmark" title="Permanent Link: 终于可以消停">终于可以消停</a></li><li><a href="http://ioio.name/so-sad-can-not-crying.html" rel="bookmark" title="Permanent Link: 竟无语凝噎">竟无语凝噎</a></li><li><a href="http://ioio.name/google-ad-manager-to-dfp.html" rel="bookmark" title="Permanent Link: “Google 广告管理系统”升级为“DFP 广告管理系统标准版”">“Google 广告管理系统”升级为“DFP 广告管理系统标准版”</a></li><li><a href="http://ioio.name/wins-the-google-apps-for-your-domain-invitation.html" rel="bookmark" title="Permanent Link: 收到“Google Apps”邀请">收到“Google Apps”邀请</a></li><li><a href="http://ioio.name/google-notebook-download.html" rel="bookmark" title="Permanent Link: Google Notebook插件下载">Google Notebook插件下载</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/google-stop-weather-notification.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/google-stop-weather-notification.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/google-stop-weather-notification.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Azure &amp; Google App Engine</title>
		<link>http://ioio.name/windows-azure-google-app-engine.html</link>
		<comments>http://ioio.name/windows-azure-google-app-engine.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 08:06:46 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.closetou.com/?p=19</guid>
		<description><![CDATA[忘了啥时候拿到Windows Azure的邀请了，因为环境不好装的缘故，总是嫌麻烦一直没有试。看来还是古语说得好“欲知此事要躬行”，装好了Windows 7，装好了了VS 2008，Hello World!一把，跟Google App Engine有得一拼，Windows Azure也很帅的嘛（除了开发环境过于庞大外）。开发工具瘦瘦身，就更喜欢了。总之，又多了一个玩具。 -EOF- Related posts:Windows Azure云计算服务2月1日开始收费App Engine SDK 1.3.4 ReleasedApp Engine SDK 1.35发布Google App Engine SDK 1.3.2Google App Engine 中文版入门指南Copyright &#169; 2005~2011 &#124; Permalink &#124; 2 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p><a href="http://ioio.name/wp-content/uploads/2009/11/windows-azure-infographic.gif"><img src="http://ioio.name/wp-content/uploads/2009/11/windows-azure-infographic-300x164.gif" alt="windows-azure-infographic" title="windows-azure-infographic" width="300" height="164" class="alignnone size-medium wp-image-20" /></a><br />
忘了啥时候拿到<a href="http://www.azure.com/" target="_blank">Windows Azure</a>的邀请了，因为环境不好装的缘故，总是嫌麻烦一直没有试。看来还是古语说得好“欲知此事要躬行”，装好了Windows 7，装好了了VS 2008，<em>Hello World!</em>一把，跟<a href="http://appengine.google.com/" target="_blank">Google App Engine</a>有得一拼，Windows Azure也很帅的嘛（除了开发环境过于庞大外）。开发工具瘦瘦身，就更喜欢了。总之，又多了一个玩具。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/windows-azure-billing.html" rel="bookmark" title="Permanent Link: Windows Azure云计算服务2月1日开始收费">Windows Azure云计算服务2月1日开始收费</a></li><li><a href="http://ioio.name/app-engine-sdk-1-3-4-released.html" rel="bookmark" title="Permanent Link: App Engine SDK 1.3.4 Released">App Engine SDK 1.3.4 Released</a></li><li><a href="http://ioio.name/app-engine-sdk-1-3-5-released.html" rel="bookmark" title="Permanent Link: App Engine SDK 1.35发布">App Engine SDK 1.35发布</a></li><li><a href="http://ioio.name/google-app-engine-sdk-1-3-2.html" rel="bookmark" title="Permanent Link: Google App Engine SDK 1.3.2">Google App Engine SDK 1.3.2</a></li><li><a href="http://ioio.name/google-app-engine-chinese-guide.html" rel="bookmark" title="Permanent Link: Google App Engine 中文版入门指南">Google App Engine 中文版入门指南</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/windows-azure-google-app-engine.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/windows-azure-google-app-engine.html#comments">2 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/windows-azure-google-app-engine.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 7//Ubuntu 9.10//Google Wave</title>
		<link>http://ioio.name/windows-7-ubuntu-google-wave.html</link>
		<comments>http://ioio.name/windows-7-ubuntu-google-wave.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:17:26 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[GOOGLE]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.closetou.com/?p=17</guid>
		<description><![CDATA[(图是网上借来的，懒得截) Windows 7发布了，但是已经玩过了，偶尔闲余可以折腾下。Ubuntu 9.10也跟着发布了，当然没Win7轰动，下载回来试了下，登录界面我喜欢，那就删掉以前的旧版本装新的9.10吧，驱动比较全了，显卡能够认出来了不用再另外装了，悲剧的是无线网卡的有问题。 Google Wave玩了几天，现在觉得没多大意思了，相信玩过的人都会有这么感觉。遗憾的是邀请还没有，没法分享给跃跃欲试的同学。神奇的是Google Voice有了邀请，还剩一枚，有了邀请后这东西还需要翻墙加HACK才能搞定帐号的激活问题，需要的同学留言吧。 -EOF- Related posts:拿到Google Wave邀请电子科技大学Ubuntu源Windows Azure &#38; Google App EngineWindows Live 套件离线安装档Windows 2003单用户单会话登录远程桌面Copyright &#169; 2005~2011 &#124; Permalink &#124; 4 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p><a href="http://ioio.name/wp-content/uploads/2009/11/ubuntu-10-04-karmic-koala-login-screen.jpg"><img src="http://ioio.name/wp-content/uploads/2009/11/ubuntu-10-04-karmic-koala-login-screen-300x225.jpg" alt="ubuntu-10-04-karmic-koala-login-screen" title="ubuntu-10-04-karmic-koala-login-screen" width="300" height="225" class="alignnone size-medium wp-image-18" /></a><br />
(图是网上借来的，懒得截)</p>
<p>Windows 7发布了，但是已经玩过了，偶尔闲余可以折腾下。Ubuntu 9.10也跟着发布了，当然没Win7轰动，下载回来试了下，登录界面我喜欢，那就删掉以前的旧版本装新的9.10吧，驱动比较全了，显卡能够认出来了不用再另外装了，悲剧的是无线网卡的有问题。</p>
<p>Google Wave玩了几天，现在觉得没多大意思了，相信玩过的人都会有这么感觉。遗憾的是邀请还没有，没法分享给跃跃欲试的同学。神奇的是Google Voice有了邀请，还剩一枚，有了邀请后这东西还需要翻墙加HACK才能搞定帐号的激活问题，需要的同学留言吧。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/google-wave-invitation.html" rel="bookmark" title="Permanent Link: 拿到Google Wave邀请">拿到Google Wave邀请</a></li><li><a href="http://ioio.name/ubuntu-at-uestc.html" rel="bookmark" title="Permanent Link: 电子科技大学Ubuntu源">电子科技大学Ubuntu源</a></li><li><a href="http://ioio.name/windows-azure-google-app-engine.html" rel="bookmark" title="Permanent Link: Windows Azure &amp; Google App Engine">Windows Azure &amp; Google App Engine</a></li><li><a href="http://ioio.name/windows-live-offline-setup.html" rel="bookmark" title="Permanent Link: Windows Live 套件离线安装档">Windows Live 套件离线安装档</a></li><li><a href="http://ioio.name/windows-2003-mstsc-single-user-console.html" rel="bookmark" title="Permanent Link: Windows 2003单用户单会话登录远程桌面">Windows 2003单用户单会话登录远程桌面</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/windows-7-ubuntu-google-wave.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/windows-7-ubuntu-google-wave.html#comments">4 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/windows-7-ubuntu-google-wave.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

