<?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; 日经</title>
	<atom:link href="http://bruce.in/p/category/daily/feed" rel="self" type="application/rss+xml" />
	<link>http://bruce.in</link>
	<description>布珞阁 reloaded</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:56:43 +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>版本控制工具的历史</title>
		<link>http://bruce.in/p/2435</link>
		<comments>http://bruce.in/p/2435#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:07:03 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/2435</guid>
		<description><![CDATA[
Software Configuration Management (or source code management, for you real hard core coders) has been around for quite a few years, slowly moving from an almost manual-labor, dark prehistory to the shiny days of the DVCS (distributed version control system).
You’ve all used at least one of the SCMs on the following list, but are you [...]]]></description>
			<content:encoded><![CDATA[<p><html><head><meta content="text/html; charset=unicode" http-equiv=Content-Type><meta name=GENERATOR content="MSHTML 8.00.7600.16671"></head><body><span id="more-2435"></span>
<div class="post-body entry-content">Software Configuration Management (or source code management, for you real hard core coders) has been around for quite a few years, slowly moving from an almost manual-labor, dark prehistory to the shiny days of the DVCS (distributed version control system).</p>
<p>You’ve all used at least one of the SCMs on the following list, but are you aware of how long the system you’re using has been around? Do you know the big names? Ok, that’s what I’ll try to supply with this short compilation.</p>
<h2>The big picture</h2>
<p>Look at the following diagram to find some of the main names in SCM history. Yes, I must be missing a good number of them, so don’t be shy: post a comment and I’ll update the list with your favorite one I missed <img src='http://bruce.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_z6qpykplUvI/TOEcCn2EutI/AAAAAAAAA68/X9eL0yV8RsQ/s1600/scmhistory.png"><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/11/wpid-a7226485f0095814ca9abc96a4b6630d_scmhistory1.png"><IMG src="http://bruce.in/wp-content/uploads/2010/11/wpid-a7226485f0095814ca9abc96a4b6630d_scmhistory1.png" width="1024"  height="655" ></a></a></p>
<p>If you’re still feeling good about using really “old irons”, I’ve added some pictures of how “cell phones” looked like when the SCMs were released, so you feel older and bloody outdated <img src='http://bruce.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . So yes, if you’re using CVS and still think it’s ok, look at the cell phone directly below “CVS” in the diagram. Do you feel like Gordon Gecko (Michael Douglas) in “Wall Street, Money Never Sleeps”, getting his brick-sized cell phone back as he leaves jail?</p>
<h2>Prehistory</h2>
<p>There was a time when you stored your versions manually. Ok, for many of you this time wasn’t the 80s, but a few years back when you were at college naming your source-code archives exercise.zip, exercise-0.zip, exercise-good.zip, exercise-good-final.zip, and so on. Well, believe it or not, there was a time without real SCMs. It was always dark and people were living in caves.</p>
<h3>RCS</h3>
<p>Then 1982 came and RCS was released. RCS is not a huge piece of technology, but you can still find it around in Unix distros. It is simple and straight to the point.</p>
<p>One nice feature was that text changes were stored as deltas (pretty important, considering hard drives used to be small!). Deltas are still used nowadays by most SCMs.</p>
<p>Some RCS drawbacks worth mentioning:
<li>It is text only.
<li>There is no central repository; each version-controlled file has its own repo, in the form of an RCS file, stored near the file itself. For example, the RCS file for /usr/project/foo.c is /usr/project/foo.c,v &#8212; or a little better, in a subdirectory, /usr/project/RCS/foo.c,v.
<li>Developers make private workspaces by creating symbolic links to RCS subdirectories – say, a symlink from /usr/home/john/RCS to /usr/project/RCS.
<li>Naming of versions and branches is downright hostile. A version might be named 1.3, and a branch might be named 1.3.1, and a version on the branch might be named 1.3.1.7.</p>
<h2>The classic era</h2>
<p>In the SCM arena, the 90s are the classic era.</p>
<h3>CVS</h3>
<p>It all started with CVS (Concurrent Version System) in 1990. It was able to handle multiple versions being developed concurrently on different machines and stored on a central server. The client-server age was upon us and developers took major advantage out of it.</p>
<p>CVS was able to handle versions in a decent way. And it even supported branching and merging, though it wasn’t very good at doing it. That’s one of the reasons many people are scared about the “B” word and the “M” word.</p>
<p>CVS didn’t track directories or filename changes (no refactoring allowed here!) and heavily relied on locking the whole repository. It is outdated now, but it worked in the 90s! (If you have it, just walk away and go on to something else!)</p>
<h3>PVCS</h3>
<p>Polytron Version Control System (PVCS) was initially released in 1985 and then went through a series of mergers and acquisitions: Polytron, then Sage, Merant, and finally Serena.</p>
<p>It’s an old, outdated system (initially designed to avoid branching/merging, using file-locking instead), but it’s still supported by Serena Software.</p>
<h3>ClearCase</h3>
<p>In 1992, one of the major beasts in the SCM world was born. ClearCase was clearly ahead of its time and for some it is still the most powerful SCM ever built.<br />Outdated, slow moving, over priced, and overly complicated to administer (in the early days, you had to generate a new Unix kernel to run the beast!), good-old CC isn’t the cool guy anymore &#8212; you can hardly find anything positive about it on the net. But it’s still very good at branching and merging and still has unique features, such as its legendary “dynamic views”. While powerful, CC came from a time when disk space was scarce and networks were mostly LANs, with no concerns for things like latency or working through firewalls.</p>
<p>Atria (the developer of ClearCase) merged with Pure (which was run by Reed Hastings, now the head of Netflix), was purchased by Rational and then IBM. And lo, the powerful CC stopped evolving. Well, it did evolve towards UCM in the early 2000s, which basically got rid of all the good things and left the weak ones, together with a huge price. Not very good idea.</p>
<p>ClearCase is still one of the most-used SCMs in the corporate world, and certainly one of the revenue leaders.</p>
<h3>VSS</h3>
<p>All the systems on my list had their moment and their clear advantages over previous systems. All except Visual SourceSafe. VSS was a weak system from day one, forcing developers to work with a “locking” approach, discouraging parallel development and creating a huge “fear of merging”.</p>
<p>Slow, error prone, and utterly limited, VSS has been one of the most-used systems by Windows developers around the world. It is still in use, spreading pain and fear among good-hearted coders. But VSS was ahead of its time in one sense: it more properly belongs in the “dark SCM middle ages” (see below), instead of the classic era.</p>
<p>VSS was entirely graphical, which was probably one of the reasons why it was widely adopted (along with being closely tied in with Visual Studio distributions).</p>
<h3>Perforce</h3>
<p>Perforce (P4) is one of the independent vendors who are totally focused on SCM, battling for the SCM gold. It is still one of the market leaders among mid-range companies with huge teams, and it has a strong presence in some market niches, such as the gaming industry.</p>
<p>When it was released in the mid 90s, P4 was one of the most affordable and powerful systems to date. Worlds ahead of VSS and CVS, it was never at the level of Clearcase. But it was able to clearly beat CC in cost, performance, and ease of use.</p>
<p>Being centralized and not very good with branching and merging (branches are implemented as subdirectory trees – didn’t they ever hear of metadata?) P4 doesn’t seem to be the best option for the future, but it is rock solid, mature, and well established. That will help it keep growing. At the time of this writing, P4 is the biggest code repository inside Google. Cool!</p>
<h2>Enter the middle ages</h2>
<p>A time of darkness, when most of the previous advances were lost and a degraded environment emerged…</p>
<h3>Subversion</h3>
<p>Subversion (SVN) was conceived as “enhanced CVS” and its developers hit their target: it is better than CVS. Period.</p>
<p>Although systems like ClearCase were perfectly capable of branching and merging, SVN educated an entire developer generation on the following dogma: fear branching and merging at all cost! This caused environmental damage that persists to this day, only starting to be healed by the new DVCS generation.</p>
<p>SVN was close to P4 in features, and spread like crazy: more than 5 million developers around the world use SVN on a daily basis. Huge!</p>
<p>SVN is extremely simple to use and evangelized everyone on the “mainline development model”. Error-prone (break the build!) on non-toy projects, it helped developed techniques like “continuous integration” as a way to “avoid integrations”. While the idea is good, most of the surrounding concepts were clearly limited by the tool itself.</p>
<p>Linus himself raged against SVN when he first introduced Git back in 2006.<br />During 2009 and 2010, all major open-source projects on earth gravitated away from SVN. A good sign of how wrong SVN was. But it’s still big and won’t die for ages.</p>
<p>
<h3>AccuRev</h3>
<p>Born in an age of darkness, AccuRev was developed as an entirely new approach to source control. Its original way of doing things still seems new to lots of developers nowadays.</p>
<p>AccuRev has strong support for branching (“streams” in its jargon) and merging. It has played a valuable role in helping the community move away from ClearCase and older tools like CVS.</p>
<h2>Enter The Renaissance</h2>
<p>After an age of darkness, an entirely new generation of SCM systems broke the established status quo. “SCM is a mature market” was the analysts’ conventional wisdom, but the new generation broke onto the scene and blew everything apart.</p>
<p>Able to sever ties with the Internet and work unplugged (like cool rock stars), the new generation also excels at branching and merging, which was touted as the root of all evil during the “dark ages”. These new systems have successfully shifted the tide in the “branching/merging is good” direction.</p>
<p>
<h3>BitKeeper</h3>
<p>BitKeeper was one of the innovators in the DVCS field. Designed by Larry McVoy (who previously worked on TeamWare, Sun’s internal version control system, built on top of SCCS, long evolution story here…) it rose to fame in 2002 when the Linux kernel development team started using it. A huge flame war started, with some developers complaining about using commercial tools for the world’s premier open-source project. </p>
<p>Things only got worse in 2005 when fights with the core kernel developers grew even bigger. BitMover, the company behind the product, became concerned about people reverse-engineering their code. They discontinued support for open-source development and, ironically, thus prompted the creation of Git to fill the gap. <br />For more, see <a href="http://en.wikipedia.org/wiki/Bitkeeper">http://en.wikipedia.org/wiki/Bitkeeper</a>.</p>
<h3>Git</h3>
<p>Linus Torvalds, the father of Linux himself, designed and implemented the first version of Git (almost over a weekend, in pure-hacker style) to give his kernel developers an alternative to BitKeeper. Linus not only did the original design (simple, clean, genius), but helped promote the project with his unique style. (See <a href="http://codicesoftware.blogspot.com/2007/05/linus-torvalds-on-git-and-scm.html">http://codicesoftware.blogspot.com/2007/05/linus-torvalds-on-git-and-scm.html</a>.) </p>
<p>During his famous speech, he heavily criticized (ok, insulted) CVS, SVN, and Perforce: “Subversion has been the most pointless project ever started”, “If you like using CVS, you should be in some kind of mental institution or somewhere else” and finally “Get rid of Perforce, it is sad, but it is so, so true”. </p>
<p>You can love him or hate him, but he definitely made his point: the Middle Ages were over and now distributed systems were to rule the world, including removing the arcane fear of branching and merging, a key concept behind every DVCS.</p>
<p>During the next years, every major open-source project migrated away from Subversion towards Git (and www.github.com provided a really huge, huge hosting service), making it the strongest and coolest SCM on earth.</p>
<p>Git is based on a DAG structure (Directed Acyclic Graph), in which the main unit of change is the changeset. It implements full merge-tracking, but at the commit level instead of the individual file revision level (as, for instance, ClearCase does). It is extremely fast, with the only caveats being management of large binary files and the requirement to replicate repositories in their entirety.</p>
<p>Git is clearly influenced by its kernel roots, and it’s obviously not the easiest thing on earth to use . But it will definitely be the SCM of the next decade. Check out <a href="http://peepcode.com/products/git-internals-pdf">this awesome book</a>.</p>
<h3>Mercurial</h3>
<p>Mercurial (Hg) was first announced on April 2005, also rushing in after the BitMover decision to remove support for the free version. Hg is also one of the key open-source DVCSs, along with Git. They can even work together quite well: Scott Chacon, the Git evangelist and one of the best SCM tech writers ever, wrote a nice integration &#8212; see <a href="http://mercurial.selenic.com/wiki/HgGit">http://mercurial.selenic.com/wiki/HgGit</a>.</p>
<p>But Hg differs quite a bit from Git in terms of design. They share the concept of commit/changeset as the unit of change. Git implements this based on trees; each tree points to an older tree, and so on – hence the DAG. With Hg, every changeset is a flat list of files and directories, called a revlog.</p>
<p>(For more on Hg, including internals, see <a href="http://mercurial.selenic.com/wiki/Design">http://mercurial.selenic.com/wiki/Design</a> and <a href="http://mercurial.selenic.com/wiki/DeveloperInfo">http://mercurial.selenic.com/wiki/DeveloperInfo</a>.)</p>
<p>Mercurial provides very strong merging, but it’s a bit different from other SCMs in its branching model: it has “named branches” but the preference is to create a new repository as a separate branch instead of hosting “many heads” inside a single one.</p>
<p>Joel Spolsky has written an extremely good Hg tutorial (<a href="http://hginit.com/">hginit.com</a>), which will help a lot of new users. Spolsky’s company, Fog Creek Software, has recently released Kiln, a commercial wrapper around the Hg core.</p>
<h3>Darcs</h3>
<p>Darcs (Darcs Advanced Revision Control System) is another open source attempt to get rid of CVS and Subversion. It started in 2002 and has been continuously evolving since then, reaching version 2.5 in November 2010.</p>
<p>The major shortcomings of Darcs have been performance and its different way of handling history: instead of managing “snapshots” (commits or changesets) it manages patches, but in a way that makes traversing history difficult to understand. (a current status may have not been a real snapshot).</p>
<h3>Bazaar</h3>
<p>Bazaar (bzr) is another open-source DVCS, which tries to provide some fresh air to the SCM world. While less used than Git and Mercurial, Bazaar features interesting features, such as the ability to work in a centralized way, if needed. (The “pure” DVCSs didn’t include central servers in their original design.)</p>
<p>Bazaar was developed by Canonical (yes, the Ubuntu company!) and became GNU in early 2008.</p>
<h3>Plastic SCM</h3>
<p>Plastic is a DVCS system designed with commercial use in mind instead of open-source projects (unlike Git and Mercurial). Plastic was first released in late 2006, featuring strong branching and merging, including full merge tracking and rename support in merges. It provides a highly graphical working environment, with many data-visualization capabilities, including a 3D revision tree). This distinguishes it from DVCSs that are oriented toward the hard-core, CLI-oriented hacker community.</p>
<p>The motivation of Plastic’s developers (BTW, I’m one of them) is to target small and medium teams, closing the gap between expensive high-end systems like ClearCase and low-end ones like SVN.</p>
<p>Plastic is built around the concept of parallel development, encouraging use of the “branch per task” pattern (feature branches). It can handle thousands of branches without breaking a sweat. Plastic is also distributed, supporting disconnected development, pushing and pulling of changesets on branches, and conflict resolution.</p>
<p>A Community Edition of Plastic SCM was launched in November 2010.</p>
<h3>Team Foundation Server</h3>
<p>Microsoft, wanting to play a role in the SCM/ALM market, came up with Team Foundation Server (TFS). It’s an effort to heal the pain caused by its own VSS devil.<br />While TFS is not very strong as a source-control system (kind of a new guy on the block, but using previous-generation technology), it comes fully packaged with a huge set of tools, from issue tracking to test management, in the pure “corporate-huge-integrated-thing-style”.</p>
<p>You won’t be doing branching, merging, or DVCS if you go for it, but maybe your company already purchased it, along with an MSDN subscription.
<div style="CLEAR: both"></div>
</li>
</div>
<p />
<div><a title="Wiz，个人知识管理，PKM。" href="http://wiz.cn">通过Wiz发布</a></div>
<p />
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/2435/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>win7 无法打开 磁盘 管理，右键 管理 无法运行的修复解决方法</title>
		<link>http://bruce.in/p/2402</link>
		<comments>http://bruce.in/p/2402#comments</comments>
		<pubDate>Fri, 29 Oct 2010 02:55:26 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/2402</guid>
		<description><![CDATA[当你点击“管理”之后如果毫无反应，或Explorer异常退出时候，那么按以下的一个非常简单的解决方法，你就可以重新看到“管理”功能了：
1 点击WINDOWS 7(WIN7) &#8220;开始&#8221; ，选择 &#8220;运行&#8221; ，输入 REGEDIT，然后回车（运行注册表编辑器）
2 进入注册表编辑器之后，找到：[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Manage\command]
3 不管默认是什么，对着 &#8220;默认&#8221; 双击，然后修改为：[code]mmc.exe %windir%\system32\compmgmt.msc[code]
4 退出注册表管理程序（无需存盘，注册表管理程序一旦输入就会直接保存了）
5 重新在“计算机”右键点击鼠标，选择“管理”... 哈哈，出来了吧！

通过Wiz发布

]]></description>
			<content:encoded><![CDATA[<p><strong><font color=purple>当你点击“管理”之后如果毫无反应，或Explorer异常退出时候，那么按以下的一个非常简单的解决方法，你就可以重新看到“管理”功能了：</font></strong><span id="more-2402"></span></p>
<p>1 点击WINDOWS 7(WIN7) &#8220;开始&#8221; ，选择 &#8220;运行&#8221; ，输入 REGEDIT，然后回车（运行注册表编辑器）</p>
<p>2 进入注册表编辑器之后，找到：<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Manage\command]</p>
<p>3 不管默认是什么，对着 &#8220;默认&#8221; 双击，然后修改为：<br />[code]mmc.exe %windir%\system32\compmgmt.msc[code]</p>
<p>4 退出注册表管理程序（无需存盘，注册表管理程序一旦输入就会直接保存了）</p>
<p>5 重新在“计算机”右键点击鼠标，选择“管理”... 哈哈，出来了吧！
<p />
<div><a title="Wiz，个人知识管理，PKM。" href="http://wiz.cn">通过Wiz发布</a></div>
<p />
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/2402/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>上海路边很pp的花</title>
		<link>http://bruce.in/p/2219</link>
		<comments>http://bruce.in/p/2219#comments</comments>
		<pubDate>Fri, 28 May 2010 04:58:50 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/2219</guid>
		<description><![CDATA[世博会让上海变得很漂亮、干净，马路、高架桥全部都修好了，园林绿化也投入很大，至少比北京强多了。
 


]]></description>
			<content:encoded><![CDATA[<div>世博会让上海变得很漂亮、干净，马路、高架桥全部都修好了，园林绿化也投入很大，至少比北京强多了。</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-3e636c19122b84fcf3652953628dc8d6_52986051.jpg"> </div>
<p id=WizHtmlEditorFocusId><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-3e636c19122b84fcf3652953628dc8d6_53005052.jpg"></p>
<p><!--WizHtmlContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/2219/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>武汉公交使用板砖替换安全锤</title>
		<link>http://bruce.in/p/2210</link>
		<comments>http://bruce.in/p/2210#comments</comments>
		<pubDate>Fri, 14 May 2010 07:35:42 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/2210</guid>
		<description><![CDATA[
武汉有全国5最中的“公交车最多的城市”称号
自从成都公交自焚事件后，公交车都配备了安全锤，后来怕人手贱，都钉上了透明的塑料套
可最近一次报道中说，大部分都丢失了，公交公司买不起了
因此全部换成了板砖，一个车上有3-4个板砖，颜色倒是很醒目，还固定在地板上。

我就纳闷好事打架起来，这个板砖还是有一些杀伤力的

至于拿安全锤的市民，也是一些恶习，拿那锤子虽然没什么用，但总觉得占了便宜
前天亲眼看到一个市民，还是背着公文包的年轻人，在公交车地板捡到个安全锤，掂量了一下，试了试手感，然后很满意的塞进包中
真是见鬼了，他能不知道那个锤子是窗户上掉下来的？
&#160;

]]></description>
			<content:encoded><![CDATA[<div id=WizHtmlContentId><span class=label></span>
<p id=WizHtmlEditorFocusId>武汉有全国5最中的“公交车最多的城市”称号</p>
<p>自从成都公交自焚事件后，公交车都配备了安全锤，后来怕人手贱，都钉上了透明的塑料套</p>
<p>可最近一次报道中说，大部分都丢失了，公交公司买不起了</p>
<p>因此全部换成了板砖，一个车上有3-4个板砖，颜色倒是很醒目，还固定在地板上。</p>
<p><span id="more-2210"></span>
<p>我就纳闷好事打架起来，这个板砖还是有一些杀伤力的</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-7dbab19016ed00e358654bc17109e3a0_24234630.jpg"></p>
<p>至于拿安全锤的市民，也是一些恶习，拿那锤子虽然没什么用，但总觉得占了便宜</p>
<p>前天亲眼看到一个市民，还是背着公文包的年轻人，在公交车地板捡到个安全锤，掂量了一下，试了试手感，然后很满意的塞进包中</p>
<p>真是见鬼了，他能不知道那个锤子是窗户上掉下来的？</p>
<p>&nbsp;</p>
<p><!--WizHtmlContent--></div>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/2210/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010年5月13日 小亮蒸虾</title>
		<link>http://bruce.in/p/1944</link>
		<comments>http://bruce.in/p/1944#comments</comments>
		<pubDate>Thu, 13 May 2010 14:26:45 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1944</guid>
		<description><![CDATA[日期:2010年5月13日 &#160;&#160;&#160; 天气:阴雨
&#160;
今年第一次吃，涨价到50一盘了，味道还是原味
&#160;
今年学会了吃虾头的黄，去年不知道吃，都浪费了
&#160;


特色就是肌肉非美的特供小龙虾和蘸酱
&#160;
凉菜也都是用那种蘸酱

拍黄瓜
毛豆
花生
小龙虾
吃虾球
吃虾黄
美味蘸酱

&#160;
&#160;

]]></description>
			<content:encoded><![CDATA[<div><span class=label>日期:</span>2010年5月13日 &nbsp;&nbsp;&nbsp; <span class=label>天气:阴雨</span></div>
<div>&nbsp;</div>
<div>今年第一次吃，涨价到50一盘了，味道还是原味</div>
<div>&nbsp;</div>
<div>今年学会了吃虾头的黄，去年不知道吃，都浪费了</div>
<div>&nbsp;</div>
<p><span id="more-1944"></span>
<div><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_46568123.jpg"></div>
<div>特色就是肌肉非美的特供小龙虾和蘸酱</div>
<div>&nbsp;</div>
<div>凉菜也都是用那种蘸酱</div>
<div><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_46646732.jpg"></div>
<div>拍黄瓜</div>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_46779551.jpg"><br />毛豆</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_46922713.jpg"><br />花生</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_47414663.jpg"><br />小龙虾</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_47008124.jpg"><br />吃虾球</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_47070618.jpg"><br />吃虾黄</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_47120881.jpg"><br />美味蘸酱</p>
<p><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-c3bab526d10220444d449cec91d1ea53_47157386.jpg"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><!--WizHtmlContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1944/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>长安街英菲尼迪撞车事故后，我手机里多了2首春歌</title>
		<link>http://bruce.in/p/1934</link>
		<comments>http://bruce.in/p/1934#comments</comments>
		<pubDate>Thu, 13 May 2010 08:21:14 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1934</guid>
		<description><![CDATA[

http://news.qq.com/a/20100513/000024.htm 

&#160;
据说三轮车司机手机中有着2首春歌
&#160;


&#160;

]]></description>
			<content:encoded><![CDATA[<div><span class=label></span><!--StartFragment -->
<div><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-bd8bd65a0121be24158108981372616d_mjn17nvgr2ryxjeb9n_q_yv.jpg"></p>
<p><a href="http://news.qq.com/a/20100513/000024.htm">http://news.qq.com/a/20100513/000024.htm</a> </div>
<p><span id="more-1934"></span>
<div>&nbsp;</div>
<div>据说三轮车司机手机中有着2首春歌</div>
<div>&nbsp;</div>
</div>
<div><span class=label><img src="http://bruce.in/wp-content/uploads/2010/05/wpid-bd8bd65a0121be24158108981372616d_25537925.png"></span></div>
<div><span class=label></span><br />&nbsp;</div>
<p id=WizHtmlEditorFocusId><!--WizHtmlContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1934/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gumby VS. 海宝</title>
		<link>http://bruce.in/p/1916</link>
		<comments>http://bruce.in/p/1916#comments</comments>
		<pubDate>Sat, 24 Apr 2010 01:45:59 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1916</guid>
		<description><![CDATA[
姚明与潘长江
&#160;
&#160;

]]></description>
			<content:encoded><![CDATA[<div><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-98d5d6fec32c9d8377b5fc66ae150284_Gumby1.jpg" width=706 height=1000></span><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-98d5d6fec32c9d8377b5fc66ae150284_001032291.jpg"></span></div>
<div><span class=label>姚明与潘长江</span></div>
<div><span class=label></span>&nbsp;</div>
<div><span class=label></span>&nbsp;</div>
<p id=WizHtmlEditorFocusId><!--WizHtmlContent--></p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1916/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office2010初体验</title>
		<link>http://bruce.in/p/1911</link>
		<comments>http://bruce.in/p/1911#comments</comments>
		<pubDate>Sun, 18 Apr 2010 07:52:25 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1911</guid>
		<description><![CDATA[朋友提供了2010的试用版和key，却装不上；
老提示我以前装过beta版的office2010，我确实没有啊~
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;Setup Errors&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;Setup is unable to proceed due to the following error(s):Microsoft Office 2010 does not support upgrading from a prerelease version&#160;of Microsoft Office 2010. You must first uninstall any prerelease versions&#160;of Microsoft Office 2010 products and associated technologies.Correct the issue(s) listed above and re-run setup.&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;OK&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
在内部工具的帮助上，总算是装上了，原因是装过微软输入法2010，碰到这个问题的可以注意一下，先卸载微软拼音输入法2010再office2010。
初级评价是：
1、比office2007左上角极其丑陋的ribbon的圆Start部分回归了矩形，Win7中的画笔、记事本等与此相同
&#160;==&#62;
2：功能实在太多，ribbon琳琅满目，为Office专业人士使用
一般写写文档的还是用GoogleDoc罢了
3：1是掺杂个人情感在里面，2是没深入体验，无法继续评价
&#160;

截图如下
安装
开始菜单
很闪的启动
版本
Word
Excel
PowerPoint
Access
Outlook
OneNote
&#160;
]]></description>
			<content:encoded><![CDATA[<p><span class=label>朋友提供了2010的试用版和key，却装不上；</span></p>
<p><span class=label>老提示我以前装过beta版的office2010，我确实没有啊~</span></p>
<p><span class=label>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />Setup Errors<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<span id="more-1911"></span><br />Setup is unable to proceed due to the following error(s):<br />Microsoft Office 2010 does not support upgrading from a prerelease version<br />&nbsp;of Microsoft Office 2010. You must first uninstall any prerelease versions<br />&nbsp;of Microsoft Office 2010 products and associated technologies.<br />Correct the issue(s) listed above and re-run setup.<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />OK<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</span></p>
<p><span class=label>在内部工具的帮助上，总算是装上了，原因是装过微软输入法2010，碰到这个问题的可以注意一下，<font style="BACKGROUND-COLOR: #ffff00" color=#ff0000>先卸载微软拼音输入法2010再office2010</font>。</span></p>
<p><span class=label>初级评价是：</span></p>
<p><span class=label>1、比office2007左上角极其丑陋的ribbon的圆Start部分回归了矩形，Win7中的画笔、记事本等与此相同</span></p>
<p><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_77947989.jpg">&nbsp;==&gt;<img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_78045256.jpg"></span></p>
<p><span class=label>2：功能实在太多，ribbon琳琅满目，为Office专业人士使用</span></p>
<p><span class=label>一般写写文档的还是用GoogleDoc罢了</span></p>
<p><span class=label>3：1是掺杂个人情感在里面，2是没深入体验，无法继续评价</span></p>
<p><span class=label>&nbsp;</p>
<p></span>
<p><span class=label>截图如下</span></p>
<p><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_75465577.jpg"><br />安装</span></p>
<p><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_75515871.png"><br />开始菜单</span></p>
<p><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_75534935.jpg"><br />很闪的启动</span></p>
<p><span class=label><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_75767470.png"><br />版本</span></p>
<p><span class=label><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_77163570.png"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_77163570.png" width="800" height="493"></a><br />Word</span></p>
<p><span class=label><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76004607.png"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76004607.png" width="800" height="493"></a><br />Excel</span></p>
<p><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76161294.jpg"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76161294.jpg" width="800" height="493"></a><br />PowerPoint</p>
<p><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76957024.png"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76957024.png" width="800" height="493"></a><br />Access</p>
<p><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76218282.png"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76218282.png" width="800" height="493"></a><br />Outlook</p>
<p><a target="_blank" href="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76352630.jpg"><IMG src="http://bruce.in/wp-content/uploads/2010/04/wpid-fbb27ceb195a8aa51355746eb1818ce7_76352630.jpg" width="800" height="493"></a><br />OneNote</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1911/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010年4月12日 一个人的球赛</title>
		<link>http://bruce.in/p/1893</link>
		<comments>http://bruce.in/p/1893#comments</comments>
		<pubDate>Mon, 12 Apr 2010 12:26:04 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1893</guid>
		<description><![CDATA[日期:2010年4月12日 &#160;&#160;&#160; 天气:大风

&#160;
&#160;

]]></description>
			<content:encoded><![CDATA[<div id=WizHtmlContentId><span class=label>日期:</span>2010年4月12日 &nbsp;&nbsp;&nbsp; <span class=label>天气:大风</span><!--WizHtmlFieldWeather-->
<p><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-b74a42daffb69a2cc5d6607814120d0a_208932341.jpg"><span id="more-1893"></span><br /><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-b74a42daffb69a2cc5d6607814120d0a_209147701.jpg"><br /><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-b74a42daffb69a2cc5d6607814120d0a_209078982.jpg"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><!--WizHtmlContent--></div>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1893/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>在家用红蓝眼睛看3D阿凡达的</title>
		<link>http://bruce.in/p/1860</link>
		<comments>http://bruce.in/p/1860#comments</comments>
		<pubDate>Fri, 09 Apr 2010 00:53:51 +0000</pubDate>
		<dc:creator>bruce</dc:creator>
				<category><![CDATA[日经]]></category>

		<guid isPermaLink="false">http://bruce.in/p/1860</guid>
		<description><![CDATA[






&#160;
&#160;
Avatar.3D.DVDSCR.xViD-xSCR
QQ播放器自动找的字幕，得找个高亮的大电视看。
&#160;


附件列表

Avatar.3D.DVDSCR.xViD-xSCR.zip


&#160;
]]></description>
			<content:encoded><![CDATA[<div></div>
<div><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_2326240.jpg"></div>
<div><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_12347323.jpg"></div>
<div><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_2209254.jpg"></div>
<p><span id="more-1860"></span>
<div><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_2203638.jpg"></div>
<div><img src="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_2322776.jpg"></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>Avatar.3D.DVDSCR.xViD-xSCR</div>
<div>QQ播放器自动找的字幕，得找个高亮的大电视看。</div>
<div>&nbsp;</div>
<p><!--WizHtmlContent-->
<div>
<h3>附件列表</h3>
<ul>
<li><a href="http://bruce.in/wp-content/uploads/2010/04/wpid-1e595969ae0d2e76e6e35c7f228e39ed_Avatar.3D.DVDSCR.xViD-xSCR1.zip">Avatar.3D.DVDSCR.xViD-xSCR.zip</a></li>
</ul>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://bruce.in/p/1860/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

