<?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>遨游世界</title>
	<atom:link href="http://www.liujianfei.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.liujianfei.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 19 Jan 2012 14:34:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>三星galaxy平台电脑设置dns</title>
		<link>http://www.liujianfei.com/blog/archives/273</link>
		<comments>http://www.liujianfei.com/blog/archives/273#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:34:38 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=273</guid>
		<description><![CDATA[galaxy用的android系统但在wifi无线设定页面稍有不同，在设定->无线->wlan设置里按选项进入高级里无法更改ip设置。 在无线接入点里可以每个接入点分别指定ip，也许是android3.x与2.x的区别。 就是输入接入点密码的下方可以制定ip是dhcp或静态，选为静态ip后可以自定义ip，网关，dns。不过这里很容易被误导，因为输入ip的框里默认有淡显的192.168.1.x。让人认为是固定不能更改的。 根据不同的wifi接入点可以定义不同ip选项。]]></description>
			<content:encoded><![CDATA[<p>galaxy用的android系统但在wifi无线设定页面稍有不同，在设定->无线->wlan设置里按选项进入高级里无法更改ip设置。<br />
在无线接入点里可以每个接入点分别指定ip，也许是android3.x与2.x的区别。<br />
就是输入接入点密码的下方可以制定ip是dhcp或静态，选为静态ip后可以自定义ip，网关，dns。不过这里很容易被误导，因为输入ip的框里默认有淡显的192.168.1.x。让人认为是固定不能更改的。<br />
根据不同的wifi接入点可以定义不同ip选项。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/273/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>让NAS实现远程BT下载</title>
		<link>http://www.liujianfei.com/blog/archives/264</link>
		<comments>http://www.liujianfei.com/blog/archives/264#comments</comments>
		<pubDate>Sat, 17 Dec 2011 07:59:45 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[bt]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=264</guid>
		<description><![CDATA[LInux下BT的软件有不少，之前试过torrentflux和bittornado，但不太好用，对中文的种子支持也不好，后来找到utorrent也除了Linux版本，正好是daemon的版本，通过web来控制，主页为 http://www.utorrent.com 。 目前的utorrent仅支持32bit的系统，64位的需要安装 ia32-libs包才能运行（http://forum.utorrent.com/viewtopic.php?id=105620） 安装非常方便，下载.tar.gz包，解压到home目录，直接运行 ./utserver就开始了服务，浏览器打开http://IP:8080/gui/ 就可以了，全中文的界面。 为了使bt开机启动，可以进行如下设置（http://forum.utorrent.com/viewtopic.php?id=84120） 假定utorrent在/home/name/.utorrent 目录 sudo vim /etc/init/utorrent.conf 文件中内容为 description “utorrent startup script” author “Alanw” start on (local-filesystems and started dbus and stopped udevtrigger) stop on runlevel [016] script cd /home/yourusername/.utorrent exec su yourusername -c “/home/yourusername/.utorrent/utserver” end script 现在可以开启或关闭服务 sudo start utorrent sudo stop utorrent sudo ln -s /lib/init/upstart-job [...]]]></description>
			<content:encoded><![CDATA[<p>LInux下BT的软件有不少，之前试过torrentflux和bittornado，但不太好用，对中文的种子支持也不好，后来找到utorrent也除了Linux版本，正好是daemon的版本，通过web来控制，主页为 http://www.utorrent.com 。</p>
<p>目前的utorrent仅支持32bit的系统，64位的需要安装 ia32-libs包才能运行（<a href="http://forum.utorrent.com/viewtopic.php?id=105620">http://forum.utorrent.com/viewtopic.php?id=105620</a>）</p>
<p>安装非常方便，下载.tar.gz包，解压到home目录，直接运行
<div class="codesnip-container" >./utserver就开始了服务，浏览器打开http://IP:8080/gui/</div>
<p> 就可以了，全中文的界面。</p>
<p>为了使bt开机启动，可以进行如下设置（http://forum.utorrent.com/viewtopic.php?id=84120）</p>
<p>假定utorrent在/home/name/.utorrent 目录</p>
<div class="codesnip-container" >sudo vim /etc/init/utorrent.conf</div>
<p>文件中内容为</p>
<div class="codesnip-container" >description “utorrent startup script”<br />
author      “Alanw”</p>
<p>start on (local-filesystems and started dbus and stopped udevtrigger)<br />
stop on runlevel [016]</p>
<p>script<br />
        cd /home/yourusername/.utorrent<br />
        exec su yourusername -c “/home/yourusername/.utorrent/utserver”<br />
end script</p></div>
<p>现在可以开启或关闭服务</p>
<div class="codesnip-container" >sudo start utorrent<br />
sudo stop utorrent</div>
<p>sudo ln -s /lib/init/upstart-job /etc/init.d/utorren</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/264/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>实现远程电驴下载</title>
		<link>http://www.liujianfei.com/blog/archives/259</link>
		<comments>http://www.liujianfei.com/blog/archives/259#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:47:38 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[Amule]]></category>
		<category><![CDATA[电驴]]></category>
		<category><![CDATA[远程下载]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=259</guid>
		<description><![CDATA[此为NAS系列的一部分 为了使文件服务器同时具有下载机的功能，需要实现其他机器远程控制NAS下载文件，下面介绍电驴。 Amule是全平台的ed2k/kad客户端，官网是 http://www.amule.org/ 参考了如下资源： HowTo Compile aMuled linux命令行 字符界面下编译安装amule web为管理界面 Ubuntu的Amule wiki 通过系统Ubuntu安装的Amule是带有图形窗口的，因NAS一般不安装X Window，所以通过源代码编译安装。 1 先安装amule的依赖包wxall，从 http://www.wxWidgets.org 下载 ./configure &#8211;disable-gui &#8211;enable-unicode &#8211;without-subdirs &#8211;without-expat make sudo make install sudo ldconfig 2 amule 还需要crypto++包和zlib包 分别去官网下载安装 3 下载Amule，http://www.amule.org/files/files.php?cat=27 解压，安装是选择安装后台程序和web监控服务 ./configure &#8211;disable-monolithic &#8211;with-toolkit=base &#8211;enable-amule-daemon &#8211;enable-amulecmd &#8211;enable-webserver -–enable-optimize make sudo make install Amule安装好了。 4. 配置Amule 运行amuled &#8211;ec-config 配置连接 运行amuled，退出，产生配置文件 [...]]]></description>
			<content:encoded><![CDATA[<p>此为NAS系列的一部分</p>
<p>为了使文件服务器同时具有下载机的功能，需要实现其他机器远程控制NAS下载文件，下面介绍电驴。</p>
<p>Amule是全平台的ed2k/kad客户端，官网是 http://www.amule.org/</p>
<p>参考了如下资源：</p>
<p><a href="http://wiki.amule.org/index.php/HowTo_Compile_aMuled" target="_blank">HowTo Compile aMuled</a></p>
<p><a href="http://linux.chinaunix.net/techdoc/system/2008/08/26/1027861.shtml" target="_blank">linux命令行 字符界面下编译安装amule web为管理界面</a></p>
<p><a href="http://wiki.ubuntu.org.cn/index.php?title=Amule&amp;variant=zh-cn" target="_blank">Ubuntu的Amule wiki</a></p>
<p>通过系统Ubuntu安装的Amule是带有图形窗口的，因NAS一般不安装X Window，所以通过源代码编译安装。</p>
<p>1 先安装amule的依赖包wxall，从 http://www.wxWidgets.org 下载</p>
<div class="codesnip-container" >./configure &#8211;disable-gui &#8211;enable-unicode &#8211;without-subdirs &#8211;without-expat<br />
make<br />
sudo make install<br />
sudo ldconfig</div>
<p>2 amule 还需要crypto++包和zlib包</p>
<p>分别去官网下载安装</p>
<p>3 下载Amule，http://www.amule.org/files/files.php?cat=27</p>
<p>解压，安装是选择安装后台程序和web监控服务</p>
<div class="codesnip-container" >./configure &#8211;disable-monolithic &#8211;with-toolkit=base &#8211;enable-amule-daemon &#8211;enable-amulecmd &#8211;enable-webserver -–enable-optimize<br />
make<br />
sudo make install</div>
<p>Amule安装好了。</p>
<p>4. 配置Amule</p>
<p>运行amuled &#8211;ec-config 配置连接</p>
<p>运行amuled，退出，产生配置文件</p>
<div class="codesnip-container" >vim ~/.aMule/amule.conf</div>
<p>修改如下几项：修改以下各项:</p>
<div class="codesnip-container" >Password=（password的MD5值）</p>
<p>AcceptExternalConnections=1</p>
<p>[WebServer]</p>
<p>Enabled=1 #这里要改成1，否则WEB配置界面amuleweb不会启动</p>
<p>ECPassword= #这行是进入web界面的password，一样要输入MD5值，而不是直接输入字符.</p>
<p>Template=default #界面款式</p></div>
<p>更改server.met和nodes.dat的URL</p>
<p>下载各配置文件到~/.aMule/</p>
<p>5. 运行amuled，另一台机子打开 http://ip:4711 就可以远程控制下载了</p>
<p>网络截面如下</p>
<p><a href="http://www.liujianfei.com/blog/archives/259/amuleweb" rel="attachment wp-att-260"><img class="alignnone size-full wp-image-260" title="amuleweb" src="http://www.liujianfei.com/blog/uploads/2011/12/amuleweb.png" alt="" width="827" height="60" /></a></p>
<p>6.实现开机自动运行amule<br />
创建 /etc/init/amuled.conf 文件</p>
<div class="codesnip-container" >sudo vim /etc/init/amuled.conf</div>
<p>加入内容</p>
<div class="codesnip-container" >description “amuled startup script”</p>
<p>start on (local-filesystems and started dbus and stopped udevtrigger)<br />
stop on runlevel [016]</p>
<p>script<br />
        exec su yourusername -c “/usr/local/bin/amuled”<br />
end script</p></div>
<p>再运行</p>
<div class="codesnip-container" >sudo ln -s /lib/init/upstart-job /etc/init.d/amuled</div>
<p>再重启，amule就随机启动了<br />
也能用下列命令随时开启关闭</p>
<div class="codesnip-container" >sudo start amuled<br />
sudo stop amuled</div>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/259/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server的中文乱码</title>
		<link>http://www.liujianfei.com/blog/archives/256</link>
		<comments>http://www.liujianfei.com/blog/archives/256#comments</comments>
		<pubDate>Sat, 03 Dec 2011 16:31:55 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=256</guid>
		<description><![CDATA[安装server后在控制台中查看中文均为乱码,可通过下面方法 vim /etc/environment 改为LANG=”en_US.UTF-8&#8243; LANGUAGE=”en_US:en” sudo vim /var/lib/locales/supported.d/local 改为en_US.UTF-8 UTF-8 保存后 sudo locale-gen sudo vim /etc/default/locale 改为同/etc/environment 重起生效]]></description>
			<content:encoded><![CDATA[<p>安装server后在控制台中查看中文均为乱码,可通过下面方法<br />
vim /etc/environment</p>
<p>改为LANG=”en_US.UTF-8&#8243;</p>
<p>LANGUAGE=”en_US:en”</p>
<p>sudo vim /var/lib/locales/supported.d/local<br />
改为en_US.UTF-8 UTF-8<br />
保存后 sudo locale-gen<br />
sudo vim /etc/default/locale<br />
改为同/etc/environment<br />
重起生效</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/256/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>重装Ubuntu</title>
		<link>http://www.liujianfei.com/blog/archives/244</link>
		<comments>http://www.liujianfei.com/blog/archives/244#comments</comments>
		<pubDate>Sat, 03 Dec 2011 06:27:12 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=244</guid>
		<description><![CDATA[/home分区要单独一个分区，数据都会保留。 已安装的软件可以通过新立得软件 管理备份。 在重装Ubuntu之前，单击“系统” –> “系统管理” –> “新立得软件包管理器”，在“新立得软件包管理器”中单击菜单“文件” –> “保存标记的项目”，将文件保存在/home下。如果你用的Ubuntu源并非默认源，那么为了方便日后替换源，可以备份一下Ubuntu源： $sudo cp /etc/apt/sources.list ~/sources.list 现在可以重装Ubuntu了，格式化根目录/所挂载的分区，只是别格式化/home挂载的分区即可，重装完毕之后，先把源恢复一下： $sudo cp ~/sources.list /etc/apt/sources.list 然后再启动“新立得软件包管理器”，单击菜单“文件” –> “读取标记的项目”，打开存储在/home的备份文件，然后单击工具栏上的“应用”即可开始重装那些旧系统所安装的软件包了。]]></description>
			<content:encoded><![CDATA[<p>/home分区要单独一个分区，数据都会保留。<br />
已安装的软件可以通过新立得软件 管理备份。<br />
在重装Ubuntu之前，单击“系统” –> “系统管理” –> “新立得软件包管理器”，在“新立得软件包管理器”中单击菜单“文件” –> “保存标记的项目”，将文件保存在/home下。如果你用的Ubuntu源并非默认源，那么为了方便日后替换源，可以备份一下Ubuntu源：</p>
<p>$sudo cp /etc/apt/sources.list ~/sources.list</p>
<p>现在可以重装Ubuntu了，格式化根目录/所挂载的分区，只是别格式化/home挂载的分区即可，重装完毕之后，先把源恢复一下：</p>
<p>$sudo cp ~/sources.list /etc/apt/sources.list</p>
<p>然后再启动“新立得软件包管理器”，单击菜单“文件” –> “读取标记的项目”，打开存储在/home的备份文件，然后单击工具栏上的“应用”即可开始重装那些旧系统所安装的软件包了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/244/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>各品牌相机机型的自动ISO设定</title>
		<link>http://www.liujianfei.com/blog/archives/236</link>
		<comments>http://www.liujianfei.com/blog/archives/236#comments</comments>
		<pubDate>Sun, 24 Apr 2011 14:27:08 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=236</guid>
		<description><![CDATA[相机的自动ISO设定还是用处很大的，不像有些人说的手调才专业，有时没有试拍的机会。先分品牌 品牌 ISO上限 快门速度下限 尼康 可以 手动设定 徕卡 可以 手动设定（最高1/200s）,或焦距倒数 佳能及其他 不一 机器自动设定（一般默认为焦距倒数） 按型号 尼康的新款D7000、D90：自动iso的速度可从1s至1/4000s间的几档设定。档数多。 尼康的D5100：自动iso的快门速度可从1s至1/4000s间的几档设定。档数较少。 尼康的D80、D3000:自动iso的快门速度上限最快1/200s 松下的GF1配20/1.7镜头，自动iso的快门速度定位低于1/30s就提ISO，稍慢，有时会糊片。 松下的G2、GH2配变焦，自动iso的快门速度根据焦距于1/60s~1/80s间变化。 奥林巴斯的EPL2，自动iso的快门速度基本为等效焦距倒数 索尼的A33配18-55/NEX5c配18-55，自动iso的快门速度在18mm时为1/30s，在24mm时为1/40s，在35mm时为1/60s，在55mm时为1/80s,为等效焦距的倒数。且带防抖。设定合理。但配长焦镜头未试。 佳能5d2，近似为焦距的倒数，但有时偏向低速，如105mm的焦距速度有时会低于1/100s。]]></description>
			<content:encoded><![CDATA[<p>相机的自动ISO设定还是用处很大的，不像有些人说的手调才专业，有时没有试拍的机会。先分品牌<br />
品牌    ISO上限   快门速度下限<br />
尼康     可以           手动设定<br />
徕卡     可以           手动设定（最高1/200s）,或焦距倒数<br />
佳能及其他     不一           机器自动设定（一般默认为焦距倒数）</p>
<p>按型号<br />
尼康的新款D7000、D90：自动iso的速度可从1s至1/4000s间的几档设定。档数多。<br />
尼康的D5100：自动iso的快门速度可从1s至1/4000s间的几档设定。档数较少。<br />
尼康的D80、D3000:自动iso的快门速度上限最快1/200s</p>
<p>松下的GF1配20/1.7镜头，自动iso的快门速度定位低于1/30s就提ISO，稍慢，有时会糊片。<br />
松下的G2、GH2配变焦，自动iso的快门速度根据焦距于1/60s~1/80s间变化。</p>
<p>奥林巴斯的EPL2，自动iso的快门速度基本为等效焦距倒数</p>
<p>索尼的A33配18-55/NEX5c配18-55，自动iso的快门速度在18mm时为1/30s，在24mm时为1/40s，在35mm时为1/60s，在55mm时为1/80s,为等效焦距的倒数。且带防抖。设定合理。但配长焦镜头未试。</p>
<p>佳能5d2，近似为焦距的倒数，但有时偏向低速，如105mm的焦距速度有时会低于1/100s。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/236/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTPC兼NAS的方案</title>
		<link>http://www.liujianfei.com/blog/archives/237</link>
		<comments>http://www.liujianfei.com/blog/archives/237#comments</comments>
		<pubDate>Sat, 09 Apr 2011 14:00:35 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>
		<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=237</guid>
		<description><![CDATA[方案一：AMD基于山猫的APU系统，ITX主板加低功耗CPU 目前刚上市，有微星的主板集成，性能强于Intel的Atom，播放1080P没问题。 2011.04.09主板报价1299，镶嵌在主板上的APU：Zacate E350，全固态电容，4个STAT 6Gbps接口,7.1声道，千M网卡，借口包含PS2/USB 2.0/USB3.0/VGA/HDMI/光纤。 优点：低功耗18w 缺点：CPU性能一般，图形也一般。 方案二：Interl的i3 530CPU+H55主板 方案三：Intel的SandyBridge处理器Core i3 2100+H67 方案四：Intel的Atom 最初推出的Atom处理器功耗为4W/8W（单/双核），到后来将显示核心也一同封装到处理器中，功耗为8W/13W，而现在，最新款的Atom处理器的功耗已经低至2W。 图形性能很弱 &#160;]]></description>
			<content:encoded><![CDATA[<p>方案一：AMD基于山猫的APU系统，ITX主板加低功耗CPU</p>
<p>目前刚上市，有微星的主板集成，性能强于Intel的Atom，播放1080P没问题。</p>
<p>2011.04.09主板报价1299，镶嵌在主板上的APU：Zacate E350，全固态电容，4个STAT 6Gbps接口,7.1声道，千M网卡，借口包含PS2/USB 2.0/USB3.0/VGA/HDMI/光纤。</p>
<p>优点：低功耗18w</p>
<p>缺点：CPU性能一般，图形也一般。</p>
<p><a rel="attachment wp-att-238" href="http://www.liujianfei.com/blog/archives/237/%e5%be%ae%e6%98%9fe350ia-e45apu%e4%b8%bb%e6%9d%bf"><img class="alignnone size-full wp-image-238" title="微星E350IA-E45APU主板" src="http://www.liujianfei.com/blog/uploads/2011/04/微星E350IA-E45APU主板.jpg" alt="" width="500" height="375" /></a></p>
<p>方案二：Interl的i3 530CPU+H55主板</p>
<p>方案三：Intel的SandyBridge处理器Core i3 2100+H67</p>
<p>方案四：Intel的Atom</p>
<p>最初推出的Atom处理器功耗为4W/8W（单/双核），到后来将显示核心也一同封装到处理器中，功耗为8W/13W，而现在，最新款的Atom处理器的功耗已经低至2W。</p>
<p>图形性能很弱</p>
<p>&nbsp;</p>
<p><a rel="attachment wp-att-239" href="http://www.liujianfei.com/blog/archives/237/superpi"><img class="alignnone size-full wp-image-239" title="SuperPI" src="http://www.liujianfei.com/blog/uploads/2011/04/SuperPI.jpg" alt="" width="500" height="500" /></a></p>
<p><a rel="attachment wp-att-240" href="http://www.liujianfei.com/blog/archives/237/cine-bench"><img class="alignnone size-full wp-image-240" title="Cine Bench" src="http://www.liujianfei.com/blog/uploads/2011/04/Cine-Bench.jpg" alt="" width="500" height="500" /></a></p>
<p><a rel="attachment wp-att-245" href="http://www.liujianfei.com/blog/archives/237/aida64"><img class="alignnone size-full wp-image-245" title="AIDA64" src="http://www.liujianfei.com/blog/uploads/2011/04/AIDA64.jpg" alt="" width="500" height="500" /></a></p>
<p><a rel="attachment wp-att-246" href="http://www.liujianfei.com/blog/archives/237/3dmark-vantage"><img class="alignnone size-full wp-image-246" title="3DMark Vantage" src="http://www.liujianfei.com/blog/uploads/2011/04/3DMark-Vantage.jpg" alt="" width="500" height="500" /><a rel="attachment wp-att-249" href="http://www.liujianfei.com/blog/archives/237/%e5%be%85%e6%9c%ba%e5%8a%9f%e8%80%97"><img class="alignnone size-full wp-image-249" title="待机功耗" src="http://www.liujianfei.com/blog/uploads/2011/04/待机功耗.jpg" alt="" width="500" height="500" /></a><a rel="attachment wp-att-248" href="http://www.liujianfei.com/blog/archives/237/winrar"><img class="alignnone size-full wp-image-248" title="WinRAR" src="http://www.liujianfei.com/blog/uploads/2011/04/WinRAR.jpg" alt="" width="500" height="500" /></a><a rel="attachment wp-att-247" href="http://www.liujianfei.com/blog/archives/237/potoshop"><img class="alignnone size-full wp-image-247" title="PotoShop" src="http://www.liujianfei.com/blog/uploads/2011/04/PotoShop.jpg" alt="" width="500" height="500" /></a></a><a rel="attachment wp-att-250" href="http://www.liujianfei.com/blog/archives/237/%e9%ab%98%e6%b8%85%e6%92%ad%e6%94%be"><img class="alignnone size-full wp-image-250" title="高清播放" src="http://www.liujianfei.com/blog/uploads/2011/04/高清播放.jpg" alt="" width="500" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/237/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>央行2011年内二度加息</title>
		<link>http://www.liujianfei.com/blog/archives/234</link>
		<comments>http://www.liujianfei.com/blog/archives/234#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:25:32 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=234</guid>
		<description><![CDATA[清明节公布，一年期存贷款利率均提高0.25%，一接近2008年11月前水平。买房的压力更大了，已购房的明年元旦起就压力来了。]]></description>
			<content:encoded><![CDATA[<p>清明节公布，一年期存贷款利率均提高0.25%，一接近2008年11月前水平。买房的压力更大了，已购房的明年元旦起就压力来了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/234/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>尼康发布D5100</title>
		<link>http://www.liujianfei.com/blog/archives/230</link>
		<comments>http://www.liujianfei.com/blog/archives/230#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:16:19 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>
		<category><![CDATA[nikon]]></category>
		<category><![CDATA[尼康]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=230</guid>
		<description><![CDATA[在2011年3月11日日本大地震后不到一月，仙台工厂2011年3月30日刚刚复工尼康就发布了新款相机，让“尼康今年不再发布新相机”的传言破灭。 尼康公司荣幸地宣布推出新款DX格式数码单镜反光相机D5100。极具创新性的3英寸可翻转LCD显示屏、出色的1,620万有效像素成像品质、D-Movie（数码短片）功能以及特殊效果模式，使D5100能帮助用户轻松享受摄影的乐趣。 D5100具备强大的功能和简便的操作。对于数码单镜反光相机的入门用户，或者是希望提升摄影水平的用户，D5100都是理想的选择。 1,620万有效像素的尼康DX格式CMOS图像传感器 EXPEED 2数码图像处理器 标准感光度设置为ISO 100至ISO 6400，最高可增至Hi 2（相当于ISO 25600） 11点自动对焦系统 每秒约4幅连拍 3英寸约92万画点的可水平翻转LCD显示屏]]></description>
			<content:encoded><![CDATA[<p>在2011年3月11日日本大地震后不到一月，仙台工厂2011年3月30日刚刚复工尼康就发布了新款相机，让“尼康今年不再发布新相机”的传言破灭。</p>
<p>尼康公司荣幸地宣布推出新款DX格式数码单镜反光相机D5100。极具创新性的3英寸可翻转LCD显示屏、出色的1,620万有效像素成像品质、D-Movie（数码短片）功能以及特殊效果模式，使D5100能帮助用户轻松享受摄影的乐趣。</p>
<p>D5100具备强大的功能和简便的操作。对于数码单镜反光相机的入门用户，或者是希望提升摄影水平的用户，D5100都是理想的选择。</p>
<p><a rel="attachment wp-att-231" href="http://www.liujianfei.com/blog/archives/230/d5100_18_55"><img class="alignnone size-full wp-image-231" title="D5100_18_55" src="http://www.liujianfei.com/blog/uploads/2011/04/D5100_18_55.jpg" alt="" width="240" height="180" /></a></p>
<ul>
<li>1,620万有效像素的尼康DX格式CMOS图像传感器</li>
<li>EXPEED 2数码图像处理器</li>
<li>标准感光度设置为ISO 100至ISO 6400，最高可增至Hi 2（相当于ISO 25600）</li>
<li>11点自动对焦系统</li>
<li>每秒约4幅连拍</li>
<li>3英寸约92万画点的可水平翻转LCD显示屏</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/230/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>尼康发布AF-S尼克尔35mm f/1.4G和AF-S尼克尔200mm f/2G ED VR II</title>
		<link>http://www.liujianfei.com/blog/archives/217</link>
		<comments>http://www.liujianfei.com/blog/archives/217#comments</comments>
		<pubDate>Wed, 15 Sep 2010 08:52:00 +0000</pubDate>
		<dc:creator>blackcat</dc:creator>
				<category><![CDATA[摄影]]></category>
		<category><![CDATA[Nikkor]]></category>
		<category><![CDATA[尼克尔]]></category>

		<guid isPermaLink="false">http://www.liujianfei.com/blog/?p=217</guid>
		<description><![CDATA[AF-S尼克尔35mm f/1.4G镜头的光圈范围是F/1.4-F/16，包括1枚非 球面鏡片，数枚纳米结晶涂层镜片为0.2倍，9片光圈叶片，滤镜67mm。 AF-S尼克尔200mm f/2G ED VR II镜头光圈范围是F/2-F/22，包含3枚ED（超低色散）镜片和1枚超级ED镜片，并且采用采用纳米结晶涂层，可避免鬼影和眩光。最近对焦距离1.9m。]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-218" href="http://www.liujianfei.com/blog/archives/217/af-s%e5%b0%bc%e5%85%8b%e5%b0%9435mm-f-1-4g"><img class="alignnone size-full wp-image-218" title="AF-S尼克尔35mm f 1.4G" src="http://www.liujianfei.com/blog/uploads/2010/09/AF-S尼克尔35mm-f-1.4G.jpg" alt="" width="220" height="167" /></a></p>
<p>AF-S尼克尔35mm f/1.4G镜头的光圈范围是F/1.4-F/16，包括1枚非 球面鏡片，数枚纳米结晶涂层镜片为0.2倍，9片光圈叶片，滤镜67mm。</p>
<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<div id="attachment_219" class="wp-caption alignnone" style="width: 263px"><strong><strong><a rel="attachment wp-att-219" href="http://www.liujianfei.com/blog/archives/217/af-s%e5%b0%bc%e5%85%8b%e5%b0%94200mm-f-2g-ed-vr-ii"><img class="size-full wp-image-219" title="AF-S尼克尔200mm f 2G  ED VR II" src="http://www.liujianfei.com/blog/uploads/2010/09/AF-S尼克尔200mm-f-2G-ED-VR-II.jpg" alt="AF-S尼克尔200mm f/2G  ED VR II" width="253" height="161" /></a></strong></strong><p class="wp-caption-text">AF-S尼克尔200mm f/2G  ED VR II</p></div>
<p>AF-S尼克尔200mm f/2G  ED VR II镜头光圈范围是F/2-F/22，包含3枚ED（超低色散）镜片和1枚超级ED镜片，并且采用采用纳米结晶涂层，可避免鬼影和眩光。最近对焦距离1.9m。<strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.liujianfei.com/blog/archives/217/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

