<?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>一种精神 &#124; 冷雨飞竹 &#187; 软件及系统</title>
	<atom:link href="http://www.boofee.net/flyingbamboo/topics/software/feed" rel="self" type="application/rss+xml" />
	<link>http://www.boofee.net/flyingbamboo</link>
	<description>Just a personal blog - flyingbamboo</description>
	<lastBuildDate>Mon, 24 May 2010 03:03:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>redmine 配置 windows Active Directory LDAP认证</title>
		<link>http://www.boofee.net/flyingbamboo/archives/728</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/728#comments</comments>
		<pubDate>Mon, 24 May 2010 03:03:48 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[软件及系统]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Redmine]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/728</guid>
		<description><![CDATA[redmine是一款基于ruby的项目管理平台。
在处理多个系统用户统一认证的时候需要用到windows Active Directory认证
以下是官网的配置方式的LDAP认证：
Name = My Directory Host = host.domain.org Port = 389 LDAPS = no Account = MyDomain\UserName (or UserName@MyDomain depending on AD server) Password = &#60;password&#62; Base DN = CN=users,DC=host,DC=domain,DC=org On-the-fly user creation = yes Attributes Login = sAMAccountName Firstname = givenName Lastname = sN Email = mail 
重点是需要填入一个能访问AD的用户，辅助工具可有SysinternalsSuite工具集中的ADExplorer.exe
]]></description>
			<content:encoded><![CDATA[<p>redmine是一款基于ruby的项目管理平台。</p>
<p>在处理多个系统用户统一认证的时候需要用到windows Active Directory认证</p>
<p>以下是官网的配置方式的LDAP认证：</p>
<p><code>Name = My Directory <br />Host = host.domain.org <br />Port = 389 <br />LDAPS = no <br />Account = MyDomain\UserName (or UserName@MyDomain depending on AD server) <br />Password = &lt;password&gt; <br />Base DN = CN=users,DC=host,DC=domain,DC=org <br />On-the-fly user creation = yes <br />Attributes <br />Login = sAMAccountName <br />Firstname = givenName <br />Lastname = sN <br />Email = mail <br /></code></p>
<p>重点是需要填入一个能访问AD的用户，辅助工具可有SysinternalsSuite工具集中的ADExplorer.exe</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/728/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 安装 Redmine</title>
		<link>http://www.boofee.net/flyingbamboo/archives/724</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/724#comments</comments>
		<pubDate>Fri, 21 May 2010 14:41:26 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[软件及系统]]></category>
		<category><![CDATA[Redmine]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[安装]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/724</guid>
		<description><![CDATA[一条代码搞定
sudo apt-get install redmine
好像有问题 再看看
]]></description>
			<content:encoded><![CDATA[<p>一条代码搞定</p>
<p><code>sudo apt-get install redmine</code></p>
<p>好像有问题 再看看</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/724/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress 文章修订版本清理</title>
		<link>http://www.boofee.net/flyingbamboo/archives/638</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/638#comments</comments>
		<pubDate>Thu, 11 Feb 2010 05:04:36 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[修订版本]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/638</guid>
		<description><![CDATA[wordpress使用了时间长了，很多文章改过好多次，留下了一片的修订版本数据，所以得清理一下，假定数据前缀 wp_ ，使用sql语句：
DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) WHERE a.post_type = 'revision'
]]></description>
			<content:encoded><![CDATA[<p>wordpress使用了时间长了，很多文章改过好多次，留下了一片的修订版本数据，所以得清理一下，假定数据前缀 wp_ ，使用sql语句：</p>
<p><code>DELETE a,b,c FROM wp_posts a <br />LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) <br />LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) <br />WHERE a.post_type = 'revision'</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/638/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>drupal 6 views 教程 (二) 用户可筛选的页面 Exposed form</title>
		<link>http://www.boofee.net/flyingbamboo/archives/627</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/627#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:28:24 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[views]]></category>
		<category><![CDATA[教程]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/627</guid>
		<description><![CDATA[很多人对Exposed form 、暴露表单 不是很熟悉，现在我们来玩一下，制作一个可供用户筛选的页面。

注意：这是个页面！！
 
CCK中已经生成了相关的字段了，这些筛选的字段都是CCK中自定义字段。 首先我们配置展示，图片使用imagecache，附上标题，以表格形式展示

然后新增 页面(page) 页面设置(Page settings )中属于访问地址和相应的菜单位置。 
暴露表单，覆盖自定义设置(override)，然后选择yes，这样在区块中就会有新增的一个类似于Exposed form: index_products-page_1的区块了。不自定义就出来2个以上了。 
这样就能自定义自己的筛选按钮了。 过滤选项，一般我们使用为内部过滤，现在我们把想要让用户选择的字段暴露出来( exposed )，使用的时候注意一下，CCK中设置的字段，在views中会有多个不同类型显示，按需判断使用。

其他细节再设置一下保存后我们转到区块(block)，将区块放入适当位置就可展现出筛选表单了，一般我们会在themes中设置出node上方的区块。输入相应地址即可访问，此自定义页面使用page.tpl.php作为模板。
]]></description>
			<content:encoded><![CDATA[<p>很多人对<strong>Exposed form</strong> 、<strong>暴露表单</strong> 不是很熟悉，现在我们来玩一下，制作一个可供用户筛选的页面。</p>
<p><a href="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_013n1c91eb26.png" rel="lightbox"><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrtn_014pb1d8e28_tn.jpg" style="WIDTH: 400px; HEIGHT: 175px" height="175" width="400"/></a></p>
<p>注意：这是个页面！！</p>
<p> <span id="more-627"></span>
<p>CCK中已经生成了相关的字段了，这些筛选的字段都是CCK中自定义字段。 <br />首先我们配置展示，图片使用imagecache，附上标题，以表格形式展示</p>
<p><a href="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_017n1dd1ba00.png" rel="lightbox"><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrtn_018n60c7c217_tn.jpg" style="WIDTH: 400px; HEIGHT: 278px" height="278" width="400"/></a></p>
<p>然后新增 页面(page) 页面设置(Page settings )中属于访问地址和相应的菜单位置。 <br /><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_019pbd75508.png" height="66" width="185"/></p>
<p>暴露表单，覆盖自定义设置(override)，然后选择yes，这样在区块中就会有新增的一个类似于Exposed form: index_products-page_1的区块了。不自定义就出来2个以上了。 <br /><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_020n530159b2.png" height="336" width="311"/></p>
<p>这样就能自定义自己的筛选按钮了。 <br />过滤选项，一般我们使用为内部过滤，现在我们把想要让用户选择的字段暴露出来( exposed )，使用的时候注意一下，CCK中设置的字段，在views中会有多个不同类型显示，按需判断使用。</p>
<p><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_021p29780530.png" height="154" width="185"/></p>
<p>其他细节再设置一下保存后我们转到区块(block)，将区块放入适当位置就可展现出筛选表单了，一般我们会在themes中设置出node上方的区块。输入相应地址即可访问，此自定义页面使用page.tpl.php作为模板。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/627/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>drupal站点的测试及迁移</title>
		<link>http://www.boofee.net/flyingbamboo/archives/600</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/600#comments</comments>
		<pubDate>Wed, 10 Feb 2010 16:45:28 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[多站点]]></category>
		<category><![CDATA[迁移]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/600</guid>
		<description><![CDATA[在完成本地测试之后需要将drupal站点上传，很多时候测试域名和实际域名不一样(比如local0到boofee.net)，借助phpmyadmin的数据库导入导出功能可以方便的完成迁移工作。

首先确保服务器和本地测试环境差别不大，不然什么故障都可能出来。
然后访问/admin/settings/performance，清除缓存数据
使用phpmyadmin导出数据库
上传相关的文件夹，包括sites下面的文件夹local0改名为boofee.net上传
比对/sites/all中的相关模组，上传差异处，保证实际环境不缺失相关模组
建立并导入数据库
修改setting.php的数据库连接
访问phpmyadmin，搜索&#8221;local0&#8243;关键词，删除session和cache相关条目
访问实际环境的cron.php
修改站点模板，原来映射为local0，所以显示有问题
一般就可以没有问题的访问了

]]></description>
			<content:encoded><![CDATA[<p>在完成本地测试之后需要将drupal站点上传，很多时候测试域名和实际域名不一样(比如local0到boofee.net)，借助phpmyadmin的数据库导入导出功能可以方便的完成迁移工作。</p>
<ul>
<li>首先确保服务器和本地测试环境差别不大，不然什么故障都可能出来。</li>
<li>然后访问/admin/settings/performance，清除缓存数据</li>
<li>使用phpmyadmin导出数据库</li>
<li>上传相关的文件夹，包括sites下面的文件夹local0改名为boofee.net上传</li>
<li>比对/sites/all中的相关模组，上传差异处，保证实际环境不缺失相关模组</li>
<li>建立并导入数据库</li>
<li>修改setting.php的数据库连接</li>
<li>访问phpmyadmin，搜索&#8221;local0&#8243;关键词，删除session和cache相关条目</li>
<li>访问实际环境的cron.php</li>
<li>修改站点模板，原来映射为local0，所以显示有问题</li>
<li>一般就可以没有问题的访问了</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/600/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>打造本地多站点drupal测试平台</title>
		<link>http://www.boofee.net/flyingbamboo/archives/599</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/599#comments</comments>
		<pubDate>Wed, 10 Feb 2010 16:12:34 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[多站点]]></category>
		<category><![CDATA[测试]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/599</guid>
		<description><![CDATA[我们知道Drupal有个非常重要的功能就是 一个虚拟空间绑定多个域名实现多站点而不互相影响
现在飞竹就来写这方面的内容，工初学者学习使用。
本地测试Drupal
如果搭建多个drupal平台的话那核心，各个模块或者主题的更新将会非常的痛苦，所以最好的方式当然是一个站点核心，多个站点同时测试。完成此步需要这几个方面的测试。
 
apache虚拟主机
配置文件http.conf
# Virtual hosts Include conf/extra/httpd-vhosts.conf
配置文件httpd-vhosts.conf
&#60;VirtualHost *:80&#62; #目录 DocumentRoot "D:\htdocs\www0" #目录设定，可参考apache手册 &#60;Directory "D:\htdocs\www0"&#62; AllowOverride All Options Indexes FollowSymLinks Order allow,deny Allow from all &#60;/Directory&#62; #域名boofee.net ServerName boofee.net #其他域名 ServerAlias www.boofee.net ServerAlias knlg.boofee.net &#60;/VirtualHost&#62;
多个站点可以建多个虚拟主机配置文件
设置域名指向
win7用户请按窗口输入，notepad，ctrl+shift+enter以管理员身份打开记事本 打开&#8221;C:\Windows\System32\drivers\etc\hosts&#8221;文件，加入
127.0.0.1 www.boofee.net 127.0.0.1 boofee.net 127.0.0.1 knlg.boofee.net
以使域名指向本地，其实可以使用localhost1啊之类的不会和互联网冲突的域名命名的。
配置Drupal
好，现在我们有三个域名指向了同一个站点，通常情况下三个域名会访问相同的内容，所以祭出伟大的drupal，才能达到一个空间建立无限个站点，继续……
drupal的sites文件夹下面原有all和default文件夹 如果如果我们要访问knlg.boofee.net drupal会依次寻找 knlg.boofee.net, default 文件夹中的setting.php配置文件 如果如果我们要访问www.boofee.net 或者boofee.net drupal会依次寻找 www.boofee.net, boofee.net, default 文件夹中的setting.php配置文件
所以我们要见boofee.net 和 knlg.boofee.net的话相应的建立的在sites中建立这两个文件夹  [...]]]></description>
			<content:encoded><![CDATA[<p>我们知道Drupal有个非常重要的功能就是 <br /><strong>一个虚拟空间绑定多个域名实现多站点而不互相影响</strong></p>
<p>现在飞竹就来写这方面的内容，工初学者学习使用。</p>
<p>本地测试Drupal</p>
<p>如果搭建多个drupal平台的话那核心，各个模块或者主题的更新将会非常的痛苦，所以最好的方式当然是一个站点核心，多个站点同时测试。完成此步需要这几个方面的测试。</p>
<p> <span id="more-599"></span>
<p>apache虚拟主机</p>
<p>配置文件http.conf</p>
<p><code># Virtual hosts <br />Include conf/extra/httpd-vhosts.conf</code></p>
<p>配置文件httpd-vhosts.conf</p>
<p><code>&lt;VirtualHost *:80&gt; <br />#目录 <br />DocumentRoot "D:\htdocs\www0" <br />#目录设定，可参考apache手册 <br />&lt;Directory "D:\htdocs\www0"&gt; <br />AllowOverride All <br />Options Indexes FollowSymLinks <br />Order allow,deny <br />Allow from all <br />&lt;/Directory&gt; <br />#域名boofee.net <br />ServerName boofee.net <br />#其他域名 <br />ServerAlias www.boofee.net <br />ServerAlias knlg.boofee.net <br />&lt;/VirtualHost&gt;</code></p>
<p>多个站点可以建多个虚拟主机配置文件</p>
<p>设置域名指向</p>
<p>win7用户请按窗口输入，notepad，ctrl+shift+enter以管理员身份打开记事本 <br />打开&#8221;C:\Windows\System32\drivers\etc\hosts&#8221;文件，加入</p>
<p><code>127.0.0.1 <a href="http://www.boofee.net/">www.boofee.net</a> <br />127.0.0.1 boofee.net <br />127.0.0.1 knlg.boofee.net</code></p>
<p>以使域名指向本地，其实可以使用localhost1啊之类的不会和互联网冲突的域名命名的。</p>
<p>配置Drupal</p>
<p>好，现在我们有三个域名指向了同一个站点，通常情况下三个域名会访问相同的内容，所以祭出伟大的drupal，才能达到一个空间建立无限个站点，继续……</p>
<p>drupal的sites文件夹下面原有all和default文件夹 <br />如果如果我们要访问knlg.boofee.net <br />drupal会依次寻找 knlg.boofee.net, default 文件夹中的setting.php配置文件 <br />如果如果我们要访问<a href="http://www.boofee.net">www.boofee.net</a> 或者boofee.net <br />drupal会依次寻找 <a href="http://www.boofee.net">www.boofee.net</a>, boofee.net, default 文件夹中的setting.php配置文件</p>
<p>所以我们要见boofee.net 和 knlg.boofee.net的话相应的建立的在sites中建立这两个文件夹 <br /><img src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/02/zrclip_001p1c4c4af.png" height="83" width="222"/> <br />并复制default.settings.php到文件夹中，并改名为settings.php，这样以这两个不同的域名访问就可以分别安装drupal了。</p>
<p>Druapl的modules和themes</p>
<p>drupal搜索module和theme也是按照类似方式，所以我们可以把贡献的组件放置在all目录下，而站点私有的组件和主题放置在自己的文件夹下面。 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/599/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 6 是我看到的最傻的浏览器</title>
		<link>http://www.boofee.net/flyingbamboo/archives/528</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/528#comments</comments>
		<pubDate>Mon, 25 Jan 2010 18:08:59 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[win平台]]></category>
		<category><![CDATA[情绪]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/528</guid>
		<description><![CDATA[想当年我是怎么靠 ie 6 活下来的诶，其实想说的不是ie6傻 是还在使用ie6的人，我有一万个理由告诉你们使用ie6的坏处。
MD   全世界都在html5了 这里的ie6竟然还占80%以上的份额。
建议那些买不起电脑的人们使用ubuntu 不肯升级到win7的人 安装ie8  不肯装ie8的人使用最后一个版本的xp即 sp3。
就因为你们这帮愚民 害多少人放弃使用最优的设计方式去为了让你们能正常的看到网页。
]]></description>
			<content:encoded><![CDATA[<p>想当年我是怎么靠 ie 6 活下来的诶，其实想说的不是ie6傻 是还在使用ie6的人，我有一万个理由告诉你们使用ie6的坏处。</p>
<p>MD   全世界都在html5了 这里的ie6竟然还占80%以上的份额。</p>
<p>建议那些买不起电脑的人们使用ubuntu 不肯升级到win7的人 安装ie8  不肯装ie8的人使用最后一个版本的xp即 sp3。</p>
<p>就因为你们这帮愚民 害多少人放弃使用最优的设计方式去为了让你们能正常的看到网页。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/528/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[技巧]powerpoint 2007中修改母板背景图片</title>
		<link>http://www.boofee.net/flyingbamboo/archives/525</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/525#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:28:56 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[win平台]]></category>
		<category><![CDATA[powerpoint]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/archives/525</guid>
		<description><![CDATA[万恶啊，你会发现即使进入 [视图-&#62;幻灯片母板] 还是不能改这张背景图，只能选择隐藏，就是选不中他。
怎么办呢，得要在进入 [视图-&#62;幻灯片母板] 之后再选择 [视图-&#62;幻灯片母板]
就能编辑了
所以其实，powerpoint 2007添加模板背景的正确方法是
&#160;&#160;&#160;&#160;&#160;&#160; 进入 [视图-&#62;幻灯片母板] 之后再选择 [视图-&#62;幻灯片母板]

]]></description>
			<content:encoded><![CDATA[<p>万恶啊，你会发现即使进入 [视图-&gt;幻灯片母板] 还是不能改这张背景图，只能选择隐藏，就是选不中他。</p>
<p>怎么办呢，得要在进入 [视图-&gt;幻灯片母板] 之后再选择 [视图-&gt;幻灯片母板]</p>
<p>就能编辑了</p>
<p>所以其实，powerpoint 2007添加模板背景的正确方法是</p>
<blockquote><p>&#160;&#160;&#160;&#160;&#160;&#160; <strong>进入 [视图-&gt;幻灯片母板] 之后再选择 [视图-&gt;幻灯片母板]</strong></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/525/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 竟然还有“上帝模式”</title>
		<link>http://www.boofee.net/flyingbamboo/archives/502</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/502#comments</comments>
		<pubDate>Tue, 05 Jan 2010 09:40:15 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[win平台]]></category>
		<category><![CDATA[探索发现]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/?p=502</guid>
		<description><![CDATA[建立一个文件夹，然后将它命名为
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
上帝就出现了，用户可以在上帝模式中访问所有的系统设置

上帝模式中的菜单实际上是罗列了 几乎所有的Windows控制面板功能，熟练用户都能找到功能位置，所以其实特别适合初级用户了解使用。
不过微软并没有解释GodMode的用途（注：32位和64位的Windows 7、以及32位的Vista都可激活上帝模式，但64位的Vista会导致崩溃）。&#8221;
]]></description>
			<content:encoded><![CDATA[<p>建立一个文件夹，然后将它命名为</p>
<p>GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}</p>
<p>上帝就出现了，用户可以在上帝模式中访问所有的系统设置</p>
<p><a href="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/01/20100105.png" rel="lightbox"><img class="alignnone size-medium wp-image-504" title="20100105" src="http://www.boofee.net/flyingbamboo/wp-content/uploads/2010/01/20100105-300x183.png" alt="" width="300" height="183" /></a></p>
<p>上帝模式中的菜单实际上是罗列了 几乎所有的Windows控制面板功能，熟练用户都能找到功能位置，所以其实特别适合初级用户了解使用。</p>
<p>不过微软并没有解释GodMode的用途（注：32位和64位的Windows 7、以及32位的Vista都可激活上帝模式，但64位的Vista会导致崩溃）。&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/502/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google reader 快捷键</title>
		<link>http://www.boofee.net/flyingbamboo/archives/499</link>
		<comments>http://www.boofee.net/flyingbamboo/archives/499#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:46:24 +0000</pubDate>
		<dc:creator>飞竹</dc:creator>
				<category><![CDATA[软件及系统]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[快捷键]]></category>

		<guid isPermaLink="false">http://www.boofee.net/flyingbamboo/?p=499</guid>
		<description><![CDATA[●j/k&#8211;上一个条目/下一个条目
●空格键/上档键＋空格键&#8211;向下翻一页/向上翻一页＝PageDown/PageUp
●n/p&#8211;向下/向上选择（仅List查看模式）
●o&#8211;展开条目（仅List查看模式）
●回车键&#8211;展开条目（仅List查看模式）
●s&#8211;标记所选择的条目星号（取消标记）
●上档键＋s&#8211;共享所选择的条目 ●m&#8211;标记为已读或未读
●t&#8211;给一个条目设置Tag
●v&#8211;查看原文（即打开条目相应的链接）
●上档键＋a&#8211;标记所有条目为已读
●1&#8211;展开预览方式
●2&#8211;列表预览方式
●r&#8211;刷新
●上档键＋n/上档键＋p&#8211;向下/向上选择（左侧导航）
●上档键＋x&#8211;展开/收起导航
●上档键＋o&#8211;打开导航中的订阅
●gh&#8211;打开Google Reader首页
●ga&#8211;显示所有条目
●gs&#8211;显示已标记星号的条目
●gt&#8211;打开标签选择
●gu&#8211;打开已订阅的RSS
]]></description>
			<content:encoded><![CDATA[<p>●<strong>j/k</strong>&#8211;上一个条目/下一个条目<br />
●<strong>空格键/上档键＋空格键</strong>&#8211;向下翻一页/向上翻一页＝PageDown/PageUp<br />
●<strong>n/p</strong>&#8211;向下/向上选择（仅List查看模式）<br />
●<strong>o</strong>&#8211;展开条目（仅List查看模式）<br />
●<strong>回车键</strong>&#8211;展开条目（仅List查看模式）<br />
●<strong>s</strong>&#8211;标记所选择的条目星号（取消标记）<br />
●<strong>上档键＋s</strong>&#8211;共享所选择的条目 <span id="more-499"></span>●<strong>m</strong>&#8211;标记为已读或未读<br />
●<strong>t</strong>&#8211;给一个条目设置Tag<br />
●<strong>v</strong>&#8211;查看原文（即打开条目相应的链接）<br />
●<strong>上档键＋a</strong>&#8211;标记所有条目为已读<br />
●<strong>1</strong>&#8211;展开预览方式<br />
●<strong>2</strong>&#8211;列表预览方式<br />
●<strong>r</strong>&#8211;刷新<br />
●<strong>上档键＋n/上档键＋p</strong>&#8211;向下/向上选择（左侧导航）<br />
●<strong>上档键＋x</strong>&#8211;展开/收起导航<br />
●<strong>上档键＋o</strong>&#8211;打开导航中的订阅<br />
●<strong>gh</strong>&#8211;打开Google Reader首页<br />
●<strong>ga</strong>&#8211;显示所有条目<br />
●<strong>gs</strong>&#8211;显示已标记星号的条目<br />
●<strong>gt</strong>&#8211;打开标签选择<br />
●<strong>gu</strong>&#8211;打开已订阅的RSS</p>
]]></content:encoded>
			<wfw:commentRss>http://www.boofee.net/flyingbamboo/archives/499/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
