<?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://lipeng.de/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://lipeng.de/blog</link>
	<description>My Endless Journey, now in Tübingen</description>
	<lastBuildDate>Sun, 04 Jul 2010 21:05:52 +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>解决 Snow Leopard 的 everybody 权限问题</title>
		<link>http://lipeng.de/blog/apple/842/</link>
		<comments>http://lipeng.de/blog/apple/842/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 21:05:52 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[Apple& more...]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=842</guid>
		<description><![CDATA[可能是一直选择直接升级覆盖安装的关系，自从10.5 Apple 引入 ACL 以来，我的 Mac系统文件权限就没正常过几天。表现是文件权限列表里出现莫名其妙的 “unknown” ，10.6 以后又多了个叫 &#8220;everybody&#8221; 的。这些不正常的权限设置导致系统速度也一直不太正常，时常无响应或者卡一下。上次受不了的时候新建了一个用户试试，发现 Snow Leopard 系统跑的像飞一样，因此下决心彻底解决这个问题。今天在 Macosxhints 上找到了解决办法，分享一下。
老外说话比较啰嗦，解决办法直接看3b部分即可。
The solution to the everybody user being twice is easy. Run the Terminal application and for your user directory and files in it, remove the permission to outside world users.
The following command solved it for me:
chmod -R o-rwx username
chmod -R [...]]]></description>
			<content:encoded><![CDATA[<p>可能是一直选择直接升级覆盖安装的关系，自从10.5 Apple 引入 ACL 以来，我的 Mac系统文件权限就没正常过几天。表现是文件权限列表里出现莫名其妙的 “unknown” ，10.6 以后又多了个叫 &#8220;everybody&#8221; 的。这些不正常的权限设置导致系统速度也一直不太正常，时常无响应或者卡一下。上次受不了的时候新建了一个用户试试，发现 Snow Leopard 系统跑的像飞一样，因此下决心彻底解决这个问题。今天在 <a href="http://forums.macosxhints.com/showthread.php?t=80606" target="_blank">Macosxhints</a> 上找到了解决办法，分享一下。<span id="more-842"></span></p>
<p>老外说话比较啰嗦，解决办法直接看3b部分即可。</p>
<blockquote><p>The solution to the everybody user being twice is easy. Run the Terminal application and for your user directory and files in it, remove the permission to outside world users.</p>
<p>The following command solved it for me:</p>
<p>chmod -R o-rwx username<br />
chmod -R g-rwx username</p>
<p>This got rid of both the &#8220;unknown&#8221; user and the 2nd &#8220;everyone&#8221; user.</p>
<p>The reason you get this everyone problem twice, is that there are actually 2 everyones. One seems to be a &#8220;group&#8221; named everyone, and one is outside world users. Thus, you see the name everyone twice.</p>
<p>As for getting rid of the ACL nightmare, the following worked for me.</p>
<p>1. What creates the ACL problem?<br />
You can see it in action by creating a new user account (admin access), and create some dummy files in it. Try to change the names of these files, and no problem you can do so easily. Now go to up one directory level to your user folder, open a Get Info window on the new account you just made. You will see several users in the permission section, most likely &#8220;user&#8221;, &#8220;staff&#8221;, and &#8220;everyone&#8221;.</p>
<p>Now use Get Info to apply a permission change to this new user account. For example, change the permission for &#8220;everyone&#8221; to Read Only. Then select &#8220;apply to enclosed items&#8221;. Now go back to your home directory and try to change the file name of items in that account, and you will find you can&#8217;t. Do a Get info on one of the files and in the permission section it says &#8220;You have custom access&#8221;, instead of &#8220;You have read and write access&#8221;.</p>
<p>You can also easily create the problem from the Terminal window, instead of the Get Info window. For example, go to your users folder using the Terminal application, and type the following in the terminal window.</p>
<p>chmod -R =rw,+X username</p>
<p>This will force Leopard to set the read and write permissions to the usual default to your user folder and to all files/folders recursively (this is what the -R is for) in your user folder (the +X will retain any execute permissions that are currently set). After doing this you will again create the problem.</p>
<p>2. What causes the problem?<br />
Run the Terminal application (you should be in your home directory) and type:</p>
<p>ls -le</p>
<p>This will list all your files and folders in your home directory, along with the ACL extensions to the file permissions. On my machine I get under each &#8220;permission affected&#8221; files or folders the following additional information.</p>
<p>0: group:everyone deny delete</p>
<p>So this &#8220;everyone&#8221; person is not allowed to delete any files (or rename them). And this &#8220;everyone&#8221; person is a &#8220;group&#8221; that includes EVERYONE including the user as well. Thus, since &#8220;everyone&#8221; can&#8217;t change files, neither can the user. This part is confusing at first to realize what is going on since in Unix terminology normally &#8220;everyone&#8221; only refers to the outside world, and not the user himself. I believe Apple tried to use the ACL extension to prevent certain files/folder that Leopard would not want the user to rename/delete (i.e. Pictures directory), but for some reason Leopard is applying this to all files, folder, and contents of folders.</p>
<p>3. The solution the solution is simple. Remove this ACL condition for all files or folders in your home directory.</p>
<p>3a. You typically can easily do this from the user folder level in Terminal, since the affected account also has the same ACL condition applied to it. Type ls -le to see if this condition is present for the affected user folder account itself. If it is, then all you have to do is type is:</p>
<p>chmod -R -a# 0 username</p>
<p>This will remove the ACL condition (numbered 0) from the user account folder, and all files or folders in it (the -R condition causes this recursive fix of all contents of all folders).</p>
<p>3b. You may not be able to do this from the user folder level in Terminal if the user folder itself does not have this ACL condition. In this case, simply go to your home directory in Terminal, and fix to each file or folder within your home directory individually, and do this recursively to all contents of folders so you don&#8217;t have to do it for the contents of the folders in your home directory. Type ls -le, and find which files/folders are affected, and for each affected file/folder type the following to remove their ACL condition:</p>
<p>chmod -R -a# 0 file_or_folder_name</p>
<p>After doing this, if you type &#8221; ls -le &#8221; in Terminal window you will see that the ACL condition is gone from every fixed file or folder. Also, if you do a Get Info in Finder on any fixed file/folder you will see in the permission section the phrase &#8220;You can read and write&#8221;.</p>
<p>Should the permission problem be fixed this way by canceling the ACL conditions, I am not sure. But it is now fixed on my machine (not solved, but fixed) and I again have full access to all my files.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/apple/842/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Watching TV Damages Your IQ.</title>
		<link>http://lipeng.de/blog/life/835/</link>
		<comments>http://lipeng.de/blog/life/835/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 01:07:11 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[活.色.声.想]]></category>
		<category><![CDATA[IQ]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=835</guid>
		<description><![CDATA[And the evolution story of TV itself.


从“非诚勿扰”到“Wer wird Millionäre&#8221;
中外莫不如是。
]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;">And the evolution story of TV itself.</p>
<p style="text-align: right;"><span id="more-835"></span></p>
<p><a href="http://lipeng.de/blog/wp-content/uploads/2010/07/e2342424_003.jpg"><img class="alignnone size-full wp-image-836" title="e2342424_003" src="http://lipeng.de/blog/wp-content/uploads/2010/07/e2342424_003.jpg" alt="" width="442" height="479" /></a></p>
<p>从“非诚勿扰”到“Wer wird Millionäre&#8221;</p>
<p>中外莫不如是。</p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/life/835/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safari 5 插件推荐：AD Block 过滤广告</title>
		<link>http://lipeng.de/blog/apple/832/</link>
		<comments>http://lipeng.de/blog/apple/832/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 23:24:08 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[Apple& more...]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=832</guid>
		<description><![CDATA[自从前一阵子升级到 Safari 5，原有的过滤广告插件就不能用了。Safari Adblock 根本连面板整个失踪， Glimmerblocker 本来还不错但是不知是和 Little Snitch 冲突还是和我系统设置的代理服务器冲突，反正也停止工作了。今天抽出点时间搜索了一圈，发现一个过滤广告的 Extension, 名字是 AdBlock for Safari，短小精悍，打开 Safari 的扩展功能安装上，无需任何设置，广告飞来飞去的世界立刻又清净起来了。它的功能十分强大，过滤广告效果是我至今用过最好的，隆重推荐给在寻找 Safari 5 防广告插件的童鞋们。
Safari 5 自带的阅读器防广告效果也是一流，可惜支持这个功能的网站现在还是太少。
另外附上一个非常好用的插件：Invisible Status Bar 1.18 ，作用是模仿 Chrome 的状态栏，效果如下：

当然你得先手动关掉 Safari 本来的状态栏。
]]></description>
			<content:encoded><![CDATA[<p>自从前一阵子升级到 Safari 5，原有的过滤广告插件就不能用了。Safari Adblock 根本连面板整个失踪， <a href="http://glimmerblocker.org/" target="_blank">Glimmerblocker</a> 本来还不错但是不知是和 Little Snitch 冲突还是和我系统设置的代理服务器冲突，反正也停止工作了。今天抽出点时间搜索了一圈，发现一个过滤广告的 Extension, 名字是 <a href="http://safariadblock.com/" target="_blank">AdBlock for Safari</a>，短小精悍，打开 Safari 的扩展功能安装上，无需任何设置，广告飞来飞去的世界立刻又清净起来了。它的功能十分强大，过滤广告效果是我至今用过最好的，隆重推荐给在寻找 Safari 5 防广告插件的童鞋们。</p>
<p>Safari 5 自带的阅读器防广告效果也是一流，可惜支持这个功能的网站现在还是太少。</p>
<p>另外附上一个非常好用的插件：<a href="http://danielbergey.com/software/safari_extensions.php" target="_blank">Invisible Status Bar 1.18</a> ，作用是模仿 Chrome 的状态栏，效果如下：</p>
<p><a href="http://lipeng.de/blog/wp-content/uploads/2010/07/屏幕快照-2010-07-02-上午01.13.42.png"><img class="alignnone size-full wp-image-833" title="屏幕快照 2010-07-02 上午01.13.42" src="http://lipeng.de/blog/wp-content/uploads/2010/07/屏幕快照-2010-07-02-上午01.13.42.png" alt="" width="313" height="50" /></a></p>
<p>当然你得先手动关掉 Safari 本来的状态栏。</p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/apple/832/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>世界经典烂照片点评</title>
		<link>http://lipeng.de/blog/life/829/</link>
		<comments>http://lipeng.de/blog/life/829/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 09:10:22 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[活.色.声.想]]></category>
		<category><![CDATA[摄影 Photography]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=829</guid>
		<description><![CDATA[今天的相机技术相比几十年前当然不可同日而语。但是摄影本身呢？
小幽一默，猜猜大师们的作品放在今天会被如何评论吧。


天空过曝，腿部明显拍虚了，构图上主体太靠右，显得局促。
（摄影： HCB）

构图很好，但是前景繁杂，旗子拍虚了，需要更高的快门。人物脸部看不到，建议重拍。
（摄影：Rosethal）

简直是垃圾，不可能发表，明显是冲印有错误。建议重拍。
（摄影：Capa）

背景阴暗让人不适，模特看上去兴趣缺缺，长得也不美，建议找个年轻点的。
（摄影：Liebovitz）

都说过多少回了，边框很重要。建议广角镜。
（摄影：Korba）

 地平线不平，侧光过强，高光处细节丢失，还有让人分心的脚印。建议参考下图重拍。
（摄影：Armstrong）

这张好多了。记住，专业照片要好好做准备。
（摄影：Yazid Masa）
出处
]]></description>
			<content:encoded><![CDATA[<p>今天的相机技术相比几十年前当然不可同日而语。但是摄影本身呢？</p>
<p>小幽一默，猜猜大师们的作品放在今天会被如何评论吧。</p>
<p><span id="more-829"></span></p>
<p><img class="size-full wp-image-824 alignnone" title="cartier-bresson06" src="http://lipeng.de/blog/wp-content/uploads/2010/02/cartier-bresson06.jpg" alt="" width="241" height="360" /></p>
<p>天空过曝，腿部明显拍虚了，构图上主体太靠右，显得局促。</p>
<p>（摄影： HCB）</p>
<p><img class="size-full wp-image-827 alignnone" title="mn_rosenthal105" src="http://lipeng.de/blog/wp-content/uploads/2010/02/mn_rosenthal105.jpg" alt="" width="540" height="432" /></p>
<p>构图很好，但是前景繁杂，旗子拍虚了，需要更高的快门。人物脸部看不到，建议重拍。</p>
<p>（摄影：Rosethal）</p>
<p><img class="alignnone size-full wp-image-823" title="Capa,_D-Day1" src="http://lipeng.de/blog/wp-content/uploads/2010/02/Capa_D-Day1.jpg" alt="" width="300" height="190" /></p>
<p>简直是垃圾，不可能发表，明显是冲印有错误。建议重拍。</p>
<p>（摄影：Capa）</p>
<p><img class="size-full wp-image-825 alignnone" title="leibovitz does the queen" src="http://lipeng.de/blog/wp-content/uploads/2010/02/leibovitz-does-the-queen.jpg" alt="" width="400" height="267" /></p>
<p>背景阴暗让人不适，模特看上去兴趣缺缺，长得也不美，建议找个年轻点的。</p>
<p>（摄影：Liebovitz）</p>
<p><img class="size-full wp-image-822 alignnone" title="10" src="http://lipeng.de/blog/wp-content/uploads/2010/02/10.jpg" alt="" width="550" height="394" /></p>
<p>都说过多少回了，边框很重要。建议广角镜。</p>
<p>（摄影：Korba）</p>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><img class="size-full wp-image-828 alignnone" title="neil-armstrong-moon" src="http://lipeng.de/blog/wp-content/uploads/2010/02/neil-armstrong-moon.jpg" alt="" width="220" height="157" /></span></p>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> </span>地平线不平，侧光过强，高光处细节丢失，还有让人分心的脚印。建议参考下图重拍。</p>
<p>（摄影：Armstrong）</p>
<p><img class="size-full wp-image-826 alignnone" title="man_on_the_moon_1sfw" src="http://lipeng.de/blog/wp-content/uploads/2010/02/man_on_the_moon_1sfw.jpg" alt="" width="468" height="351" /></p>
<p>这张好多了。记住，专业照片要好好做准备。</p>
<p>（摄影：Yazid Masa）</p>
<p><a href="http://forums.dpreview.com/forums/readflat.asp?forum=1022&amp;thread=34532085" target="_blank">出处</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/life/829/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Adobe is Lazy&#8221;: 乔布斯为什么打 Adobe 的脸</title>
		<link>http://lipeng.de/blog/apple/819/</link>
		<comments>http://lipeng.de/blog/apple/819/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:10:43 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[Apple& more...]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[乔布斯]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=819</guid>
		<description><![CDATA[教主说：不要 Flash. 于是就没有了 Flash.

Apple , Adobe 还有 Google 可以算是时下 IT 界最有面子的几位老大了，但邪恶的苹果童鞋和另两位的 3P 关系却一直纠缠不清，时而热恋合作愉快过得如胶似漆你好他好我也好，时而横眉冷战互相拆台下腿绊口水鸡蛋飞来飞去。前一阵子，也就是乔不死教主隆重推出 iPad 之前几天，教主在评论其他两位的时候再出惊人之语：
说 Google: 你丫的“不做恶”口号就是 &#8220;bullshit&#8221;。
说 Adobe: 懒就一个字，Flash 去死 ， HTML5 当立。

On Google: We did not enter the search business, Jobs said. They entered the phone business. Make no mistake they want to kill the iPhone. We won’t let them, he says. Someone [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><em>教主说：不要 Flash. 于是就没有了 Flash.</em></p>
<p style="text-align: center;"><em><span id="more-819"></span></em></p>
<p>Apple , Adobe 还有 Google 可以算是时下 IT 界最有面子的几位老大了，但邪恶的苹果童鞋和另两位的 3P 关系却一直纠缠不清，时而热恋合作愉快过得如胶似漆你好他好我也好，时而横眉冷战互相拆台下腿绊口水鸡蛋飞来飞去。前一阵子，也就是乔不死教主隆重推出 <a href="http://www.apple.com/ipad/" target="_blank">iPad </a>之前几天，教主在评论其他两位的时候<a href="http://www.comparemacbook.com/TB/?P=746" target="_blank">再出惊人之语</a>：</p>
<p>说 Google: 你丫的“不做恶”口号就是 &#8220;bullshit&#8221;。</p>
<p>说 Adobe: 懒就一个字，Flash 去死 ， HTML5 当立。</p>
<blockquote>
<div id="_mcePaste"><em>On Google: We did not enter the search business, Jobs said. They entered the phone business. Make no mistake they want to kill the iPhone. We won’t let them, he says. Someone else asks something on a different topic, but there’s no getting Jobs off this rant. I want to go back to that other question first and say one more thing, he says. This don’t be evil mantra: “It’s bullshit.” </em></div>
<div><em><br />
</em></div>
<div id="_mcePaste"><em>About Adobe: They are lazy, Jobs says. They have all this potential to do interesting things but they just refuse to do it. They don’t do anything with the approaches that Apple is taking, like Carbon. Apple does not support Flash because it is so buggy, he says. Whenever a Mac crashes more often than not it’s because of Flash. No one will be using Flash, he says. The world is moving to HTML5.</em></div>
</blockquote>
<p>Google 这刚刚被天朝调戏过的纯情正太背景太复杂，这里暂且不谈。我们知道 <a href="http://en.wikipedia.org/wiki/Adobe_Systems#1992" target="_blank">阿都比</a> 当年可是和乔不死教主穿一条开裆裤长大的，后来虽然见钱眼开和开始小比尔勾勾搭搭，但是对教主也算是够意思，自家的好货比如Photoshop Dreamweaver 等等一直没断了苹果的份，水果教徒里面也一度有不少都是靠着阿都比的货混口饭吃的。这次为啥教主上来就直接打脸，还宣布支持Flash这件事我们“过去不会(iPhone)，现在不会(iPhone3.0)，将来一样不会(iPad)，你丫断了念想吧” , 一点面子都不给呢？</p>
<p>看看教主的训示是怎么说的：</p>
<blockquote><p><em>They have all this potential to do interesting things but they just refuse to do it.</em></p></blockquote>
<p>有点幽怨不是么，很有点恨铁不成钢的意思。</p>
<p>具体是什么事情引起的呢？上面那段里有两个词比较重要，一个是 Carbon, 一个是 buggy. 教主说话很简略，当然说话简略是教主们的习惯，要不咋西有 “圣经”，东有 “论语” 呢。教主把话说太白，让我们这样的普通教众不用琢磨就明白了，那多没面子。</p>
<p>不过这次脸打的这么狠，尽管自家教众纷纷表示在没有 Flash 的情况下保证一样情绪稳定，我们熟悉的那位“不肯透露名字的内部工作人员”还是出面公布了 <a href="http://www.9to5mac.com/adobe_v_apple_4567234?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+9To5Mac-MacAllDay+%289+to+5+Mac+-+Apple+Intelligence%29" target="_blank">阿杜比的几大罪状</a>：</p>
<p>讨伐书第一句就开宗明义，先把 阿杜比 和 罪恶的 小比尔 同学拉到一起。上帝欲使其灭亡，必先把其名声搞臭：</p>
<blockquote><p><em>就像微软一样， Adobe 已经成为了一个平庸保守的公司，他们丢掉了自己的目标 &#8211; 正在进退两难中。</em></p></blockquote>
<p>然后开始列罪状：</p>
<ul>
<li><em>首先是Cocoa程序框架,  Adobe 完全落伍了, 他们错过了转型期而且还试图继续把 Carbon 这个旧货继续用下去，给用户和 Apple 带来了一堆问题。他们现在刚刚开始转入 Cocoa 编程，然而 CS5 (Creative Suite 5) 的新版本仍然不完整也不稳定。<br />
</em></li>
<li><em>Adobe 对我们提交的 Bug 报告反应极其迟缓，特别是关于 Flash 的。我们给他们了 410 个重大程序错误的描述, 而他们到现在只修复了 25 处。<br />
</em></li>
<li><em>Flash 十分不稳定，当年我们本来打算在 iPhone 上支持的可是 Adobe 拿出来的货实在没法验收。<br />
</em></li>
<li><em>Adobe 的防盗版措施让我们很失望。这套系统强迫用户在线验证，为了阻止软件破解，它还要求直接访问 CPU 和内存进行底层操作，完全没有考虑到 Mac 内置的对系统资源的保护机制。这可能导致系统崩溃和内存碎片，并使 Mac 系统无法正常运行。尽管如此，在被破解了那么多次之后，每一次这套防盗版系统有改动或者升级，Adobe 都要求我们修改操作系统采取措施让它生效，同时还不能影响丫的稳定性。<br />
</em></li>
<li><em>还有，Adobe 在 Mac 上的升级操作又低效又浪费时间。我们注意到有的用户甚至把 CS 软件套装安在备用的二奶机上，因为它会使一号机崩溃。（消息未经 <a href="http://www.animetheme.com/eva/nerv.html" target="_blank">Nerv</a></em><em> 证实）<br />
</em></li>
<li><em>还有还有，我们觉得 Adobe 现在那些程序的界面实在太古老了，缺一个更友好的界面版本。<br />
</em></li>
<li><em>还有还有还有，CS 套装的价格实在贵的太离谱了，完全不符合苹果的定位。Adobe 还在到处公关媒体上那些对其高价格的批评声音。（注： Photoshop Mac版定价$699，在欧洲更是要价 <a href="http://www.idealo.de/preisvergleich/OffersOfProduct/1202798_-photoshop-cs4-11-0-mac-de-65014335-adobe.html" target="_blank">€859</a>。作为对比，Mac上和 Photoshop 功能相近界面更漂亮执行效率更高的 <a href="http://www.pixelmator.com/" target="_blank">Pixmator</a> 只卖 $59.）</em></li>
</ul>
<p>不用怀疑这些罪状言过其实，上面的各项均证据确凿，比如这次被揪出来的 Flash.</p>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> </span></p>
<p>Flash 插件在 Mac 平台上的确存在大问题，而且诚如 Apple 所说，不是一天两天了，详见 Adobe 官方的 Bug 报告页面： <a href="http://bugs.adobe.com/jira/browse/FP-890" target="_blank">1</a> <a href="http://bugs.adobe.com/jira/browse/FP-2111" target="_blank">2</a> 还有<a href="http://www.ccthere.com/bd/10004/article/2284080" target="_blank">网友的抱怨。</a></p>
<p>另外，PC 平台上的 Flash 效能也不是那么乐观，请看这个 Youtube <a href="http://www.youtube.com/watch?v=C71g8cmZsAE" target="_blank">video</a>. 一台硬件规格好于iPad 的 Win7 平板播放 Youtube 竟然卡的一塌糊涂，播放其他格式的视频则毫无问题。</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/C71g8cmZsAE&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/C71g8cmZsAE&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>这些理由好像是足够让教主不爽了。但是，打 Adobe 的脸真的完全是因为它不长进么？ 虽然无数生气勃勃的公司(比如当年Flash 和 Dreamweaver的东家Macromedia) 被 Adobe 收购以后从此石沉大海，但 Adobe 的死气沉沉毫无进取又不是虎年才有的，为啥教主选在这个时候发飙呢 ?</p>
<p>记得前阵子苹果“刚巧”露口风说打算开发自己的设计软件了。</p>
<p>hmm &#8230;</p>
<p>究竟 Apple Adobe 还有 Google 之间的这场大戏如何唱下去，还是让我们静观其变吧。</p>
<p>对了，如果你也恰好觉得 Youtube 在你的 Mac 上 CPU 占用过高的话，这个<a href="http://www.youtube.com/html5" target="_blank">链接</a>应该可以解决问题。HTML5 rules.</p>
<p>相关阅读：<a href="http://www.ccthere.com/article/2268334" target="_blank">Tech News Supermesh</a> by Allenkid</p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/apple/819/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>发一个 Inotia 2 有效版的地址，要求 iPod/iPhone OS 3.0 以上</title>
		<link>http://lipeng.de/blog/apple/816/</link>
		<comments>http://lipeng.de/blog/apple/816/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 11:27:07 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[Apple& more...]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=816</guid>
		<description><![CDATA[我的 iPod Touch 2G MB版自从拿到手后一直运行的是 2.1.3 完美越狱版，但是眼下 App Store 里要求 3.0 以上系统的软件越来越多，昨天连下几个软件都被提示版本过低，一怒之下决定升级。

昨晚为了装 Inotia 2  (中文名艾诺迪亚2：罗恩流浪者 ) 折腾我的 iPod Touch 到半夜，从版本 2.1.3 无比曲折地升级到 3.1.2 ，经过历次失败后终于成功但是付出的代价是全部资料丢失。一开始按照 weiphone 上的建议试图用网上已经越狱好的自定义固件升级，在 tba 下到了一个，结果 iTunes 提示升级失败，然后直接把 iPod Touch 从 2.1.3 越狱版恢复到了 3.1.2 半越狱状态。所谓半越狱是指桌面上没有 Cydia 无法使用第三方程序, 但是固件已经处于被修改过的状态所以无法使用越狱软件， 我分别试过了 PwnageTool , Blackra1n, redsn0w ，无一成功。最后干脆到网上重新下载了一个干净版的 Apple 官方 3.1.2 固件，在 iTunes 里 用 option + [...]]]></description>
			<content:encoded><![CDATA[<p>我的 iPod Touch 2G MB版自从拿到手后一直运行的是 2.1.3 完美越狱版，但是眼下 App Store 里要求 3.0 以上系统的软件越来越多，昨天连下几个软件都被提示版本过低，一怒之下决定升级。</p>
<p><span id="more-816"></span></p>
<p>昨晚为了装<a href="http://www.pocketgamer.co.uk/r/iPhone/Inotia:+A+Wanderer+of+Luone/review.asp?c=17232"> Inotia 2 </a> (中文名<a href="http://bbs.pockoo.com/thread-17256-1-1.html" target="_blank">艾诺迪亚</a><em><a href="http://bbs.pockoo.com/thread-17256-1-1.html" target="_blank">2</a></em><a href="http://bbs.pockoo.com/thread-17256-1-1.html" target="_blank">：罗恩流浪者</a> <strong><span style="font-weight: normal;">)</span> </strong>折腾我的 iPod Touch 到半夜，从版本 2.1.3 无比曲折地升级到 3.1.2 ，经过历次失败后终于成功但是付出的代价是全部资料丢失。一开始按照 weiphone 上的建议试图用网上已经越狱好的自定义固件升级，在 <a href="http://thepiratebay.org/" target="_blank">tba</a> 下到了一个，结果 iTunes 提示升级失败，然后直接把 iPod Touch 从 2.1.3 越狱版恢复到了 3.1.2 半越狱状态。所谓半越狱是指桌面上没有 Cydia 无法使用第三方程序, 但是固件已经处于被修改过的状态所以无法使用越狱软件， 我分别试过了 <a href="http://blog.iphone-dev.org/" target="_blank">PwnageTool</a> , <a href="http://blackra1n.com/" target="_blank">Blackra1n</a>, <a href="http://redsn0w.com/">redsn0w</a> ，无一成功。最后干脆到网上重新下载了一个<a href="http://www.felixbruns.de/iPod/firmware/">干净版的 Apple 官方 3.1.2 固件</a>，在 iTunes 里 用 option + 更新 大法把 iPod Touch 恢复到了未越狱的 3.1.2 状态，然后用 Blackra1n 一次搞定。</p>
<p>装好 Appsync 补丁（方法见<a href="http://www.redmondpie.com/appsync-for-iphone-3.1.2-jailbreak-firmware-ikp7989/" target="_blank">这里</a>）后，开始安装 Inotia 2. 从 Weiphone 连下了三个版本都是破解不完全，表现是可以运行但是一点击开始就跳出到 Safari 打开 App Store 页面，又搜索了很久找到几个破解版但不是rayforce链接就是纳米盘要么就是要求下载先注册速度还慢得要死。最后还是在国外某网站找到了 1.0.3 完美破解版的hotfile地址, 分享一下</p>
<h6><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; color: #000000;"><span style="text-decoration: none;"><a href="http://hotfile.com/dl/26793421/a6e0d3f/Inotia.2.A.Wanderer.of.Luone.v1.0.3.iPhone.iPod.Touch.Cracked-COREPDA.rar.html" target="_blank">Inotia 2 &#8211; A Wanderer of Luone v1.0.3</a></span></span><a href="http://hotfile.com/dl/26793421/a6e0d3f/Inotia.2.A.Wanderer.of.Luone.v1.0.3.iPhone.iPod.Touch.Cracked-COREPDA.rar.html" target="_blank"> Cracked-COREPDA</a></h6>
<p>这个文件下载后解压会生成几个zip文件，继续将zip解压会生成 partN.rar 格式的 rar 压缩包，然后解压 rar 就可以得到 ipa 文件了。双击 ipa 把它安装到 iTunes 里，然后同步即可。</p>
<p>以上是我升级 3.1.2 和安装 Inotia 2 的经验，写下来希望可以让碰到问题的同学少走点弯路。</p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/apple/816/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Carl Zeiss Jena Pancolar + SD14, 感受手动老镜头的魅力</title>
		<link>http://lipeng.de/blog/life/813/</link>
		<comments>http://lipeng.de/blog/life/813/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 22:38:05 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[活.色.声.想]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=813</guid>
		<description><![CDATA[近期在琢磨几只三四十年历史的老镜头，还在学习中，先上几张照片。

]]></description>
			<content:encoded><![CDATA[<p>近期在琢磨几只三四十年历史的老镜头，还在学习中，先上几张照片。</p>
<p><span id="more-813"></span></p>
[[点此开始播放幻灯片]]
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/life/813/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>生日快樂，中國</title>
		<link>http://lipeng.de/blog/mark/812/</link>
		<comments>http://lipeng.de/blog/mark/812/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 07:20:21 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[爪印]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=812</guid>
		<description><![CDATA[











]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><span id="more-812"></span></p>
<p style="text-align: center;"><a href="http://lipeng.de/blog/wp-content/uploads/2009/10/CHINA_60_1490074c.jpg"><img class="size-medium wp-image-811 aligncenter" title="CHINA_60_1490074c" src="http://lipeng.de/blog/wp-content/uploads/2009/10/CHINA_60_1490074c-300x187.jpg" alt="CHINA_60_1490074c" width="300" height="187" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/mark/812/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>图宾根快闪族纪念Michael Jackson, 2009.07.24, 内卡桥</title>
		<link>http://lipeng.de/blog/mark/806/</link>
		<comments>http://lipeng.de/blog/mark/806/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 00:26:46 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[爪印]]></category>
		<category><![CDATA[flashmob]]></category>
		<category><![CDATA[Michael Jackson]]></category>
		<category><![CDATA[StudiVZ]]></category>
		<category><![CDATA[Tübingen]]></category>
		<category><![CDATA[图宾根]]></category>
		<category><![CDATA[快闪族]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=806</guid>
		<description><![CDATA[7月24日21点，图宾根的快闪族在内卡桥来了一次集体的Beat It.
今天才在论坛上看到。活动发生在内卡桥头，基本上就是我家楼下呀。可7月24号我在干什么呢？好像在图书馆准备考试。。。太可惜了  
这个活动是通过StudiVZ（类似德国版的开心网）短时间内组织起来的，完全自发。至于那辆红牛宣传车为什么会出现，我只能说，红牛的广告意识还是很强的。 以下为youtube视频，看不到的朋友点这里。

另一个角度：从位置来看应该是第一个视频开头画面右上角那个哥们儿

]]></description>
			<content:encoded><![CDATA[<p>7月24日21点，图宾根的<a href="http://zh.wikipedia.org/wiki/快闪族">快闪族</a>在内卡桥来了一次集体的Beat It.</p>
<p><span id="more-806"></span>今天才在论坛上看到。活动发生在内卡桥头，基本上就是我家楼下呀。可7月24号我在干什么呢？好像在图书馆准备考试。。。太可惜了 <img src='http://lipeng.de/blog/wp-includes/images/smilies/lei.GIF' alt=':lei:' class='wp-smiley' /> </p>
<p>这个活动是通过<a href="http://studivz.de" target="_blank">StudiVZ</a>（类似德国版的开心网）短时间内组织起来的，完全自发。至于那辆红牛宣传车为什么会出现，我只能说，红牛的广告意识还是很强的。 以下为youtube视频，看不到的朋友点<a href="http://you.joy.cn/video/721429.htm" target="_blank">这里</a>。</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/I0VvZnvtXOs&amp;hl=zh_CN&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/I0VvZnvtXOs&amp;hl=zh_CN&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>另一个角度：从位置来看应该是第一个视频开头画面右上角那个哥们儿</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/eDMDK22vfQU&amp;hl=zh_CN&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/eDMDK22vfQU&amp;hl=zh_CN&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/mark/806/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OS X 10.6 Snow Leopard comes, roaaaaaarrr!</title>
		<link>http://lipeng.de/blog/apple/797/</link>
		<comments>http://lipeng.de/blog/apple/797/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 23:50:22 +0000</pubDate>
		<dc:creator>loewez</dc:creator>
				<category><![CDATA[Apple& more...]]></category>

		<guid isPermaLink="false">http://lipeng.de/blog/?p=797</guid>
		<description><![CDATA[
苹果的新系统“雪豹”终于放出官方消息：8.28 星期五上市。升级版价格29€   ，五人份的家庭版价格不过49€ ，平分之后每人还不到十欧元   。下面的任务就是在宿舍里拉人团购啦 wakaka   
苹果官方小雪豹大图版:
]]></description>
			<content:encoded><![CDATA[<p><span id="more-797"></span></p>
<p>苹果的新系统“雪豹”终于放出官方消息：8.28 星期五上市。升级版价格29€  <img src='http://lipeng.de/blog/wp-includes/images/smilies/lizhi.GIF' alt=':fafen:' class='wp-smiley' /> ，五人份的家庭版价格不过49€ ，平分之后每人还不到十欧元  <img src='http://lipeng.de/blog/wp-includes/images/smilies/heihei2.GIF' alt=':cool:' class='wp-smiley' /> 。下面的任务就是在宿舍里拉人团购啦 wakaka  <img src='http://lipeng.de/blog/wp-includes/images/smilies/haha.GIF' alt=':haha:' class='wp-smiley' /> </p>
<p>苹果官方小雪豹大图版:</p>
<div id="attachment_800" class="wp-caption alignnone" style="width: 310px"><a href="http://lipeng.de/blog/wp-content/uploads/overview_hero_20090824.jpg"><img class="size-medium wp-image-800" title="overview_hero_20090824" src="http://lipeng.de/blog/wp-content/uploads/overview_hero_20090824-300x128.jpg" alt="overview_hero_20090824" width="300" height="128" /></a><p class="wp-caption-text">984x422</p></div>
<div id="attachment_798" class="wp-caption alignnone" style="width: 310px"><a href="http://lipeng.de/blog/wp-content/uploads/hero_osx_20090824.jpg"><img class="size-medium wp-image-798" title="hero_osx_20090824" src="http://lipeng.de/blog/wp-content/uploads/hero_osx_20090824-300x169.jpg" alt="hero_osx_20090824" width="300" height="169" /></a><p class="wp-caption-text">980x554</p></div>
<div id="attachment_803" class="wp-caption alignleft" style="width: 330px"><a href="http://incp8w.bay.livefilestore.com/y1p8BlHhukIsPSZ3KoYcisPm7qOUo0_ePSVMbmWd8m32HfPvMAEK9n-uKsKkUa9nxDVVn3QaytSKjidj2VkYBYY8Q/Snow-Leopard.jpg"><img class="size-full wp-image-803    " title="Snow-Leopard" src="http://lipeng.de/blog/wp-content/uploads/Snow-Leopards.jpg" alt="Snow-Leopard" width="320" height="200" /></a><p class="wp-caption-text">2560x1600 1.3MB</p></div>
]]></content:encoded>
			<wfw:commentRss>http://lipeng.de/blog/apple/797/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
