<?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:trackback="http://madskills.com/public/xml/rss/module/trackback/"><channel><title>系统分类  文章</title><link>http://www.i170.com/cate/0/Rss</link><description>系统分类  文章</description><language>zh-cn</language><pubDate>Wed, 09 Jul 2008 19:01:15  +0800</pubDate><generator>i170.com</generator><image><title>系统分类  文章</title><url>http://www.i170.com/Config/images/cf_logo.gif</url><link>http://www.i170.com/cate/0/Rss</link></image> <item><link>http://www.i170.com/Article/108460</link><title><![CDATA[《地藏》和《悟空传》的海报]]></title><author>whq</author><category>我爱动画</category><pubDate>Wed, 09 Jul 2008 17:29:31  +0800</pubDate><description><![CDATA[<p>&nbsp;<img alt="" src=
"http://www.i170.com/Attach/178CEDAD-81EF-46E2-AFE0-542EFBB027F6"></p>
<p class="partingline">[separator]</p>
<p><u><img alt="" src=
"http://www.i170.com/Attach/B0F99814-7647-40F3-8383-7DAB4C83CA43"></u></p>
<p><u>　</u></p>
<p><u><img alt="" src=
"http://www.i170.com/Attach/A43F62EF-9D01-407E-B093-3027270F8359"></u></p>
<p class="partingline">[separator]</p>

]]></description><guid>http://www.i170.com/Article/108460</guid><trackback:ping>http://www.i170.com/Article/108460/trackback</trackback:ping><comments>http://www.i170.com/Article/108460#comment</comments><wfw:commentRss>http://www.i170.com/Article/108460/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108458</link><title><![CDATA[Running C and Python Code on The Web]]></title><author>catwork</author><category>杂谈</category><pubDate>Wed, 09 Jul 2008 15:51:12  +0800</pubDate><description><![CDATA[<div class="intro">
<p>Adobe的Scott
Petersen上周在Mozilla谈论了他创造的工具链（Toolchain）——不久后将开源——<a href=
"http://www.toolness.com/wp/?p=52"><u><font color=
"#800080">可以让C代码跑在Tamarin虚拟机上</font></u></a>(相关<a href=
"http://ria.richtechmedia.com/2008/07/08/run-cc-in-flash-again/"><u><font color="#0000FF">中文</font></u></a>描述)。工具链包含了许多其它方面的细节，如一个定制的POSIX系统调用API和C多媒体库，让程序运行在flash上。Petersen设计一个特别的byte
array去直接贴图到RAM，因此降低模拟时的耗损并提升效率，可以让游戏之类的应用跑起来飞快。这样做的好处能在flash中以可接受的速度执行任何基于C的代码，如php、ruby、perl、python甚至java与objective-c。Petersen演示了一个flash版的Quake游戏，以及在一个基于C的任天堂模拟器上跑Zelda，两者都完全可以玩，包括了音效和音乐。</p>
<p>&nbsp;</p>
<p>下面为原文：</p>
<table height="600" cellspacing="1" cellpadding="1" width="800"
border="1">
<tbody>
<tr>
<td>
<p>Last week, Scott Petersen from Adobe gave a talk at Mozilla on a
toolchain he’s been creating—soon to be open-sourced—that allows C
code to be targeted to the Tamarin virtual machine. Aside from
being a really interesting piece of technology, I thought its
implications for the web were pretty impressive.</p>
<p>Before reading this post, readers who aren’t familiar with
Tamarin may want to read Frank Hecker’s excellent <a href=
"http://hecker.org/mozilla/adobe-mozilla-and-tamarin"><u><font color="#0000FF">
Adobe, Mozilla, and Tamarin</font></u></a> post from 2006 for some
background on its goals and why it’s relevant to Mozilla and the
open-source community in general.</p>
<p>If I followed his presentation right, Petersen’s toolchain works
something like this:</p>
<ol>
<li>A special version of the GNU C Compiler—possibly <a href=
"http://llvm.org/cmds/llvmgcc.html"><u><font color=
"#0000FF">llvm-gcc</font></u></a>—compiles C code into instructions
for the <a href="http://en.wikipedia.org/wiki/Llvm"><u><font color=
"#0000FF">Low Level Virtual Machine</font></u></a>.</li>
<li>The LLVM instructions are converted into opcodes for a custom
Virtual Machine that runs in <a href=
"http://en.wikipedia.org/wiki/Actionscript"><u><font color=
"#0000FF">ActionScript</font></u></a>, a variant of ECMAScript and
sibling of JavaScript.</li>
<li>The ActionScript is automatically compiled into Tamarin
bytecode by Adobe Flash, which may be further compiled into native
machine language by Tamarin’s Just-in-Time (JIT) compiler.</li>
</ol>
<p>The toolchain includes lots of other details, such as a custom
POSIX system call API and a C multimedia library that provides
access to Flash. And there’s some things that Petersen had to add
to Tamarin, such as a native byte array that maps directly to RAM,
thereby allowing the VM’s “emulation” of memory to have only a
minor overhead over the real thing.</p>
<p>The end result is the ability to run a wide variety of existing
C code in Flash at acceptable speeds. Petersen demonstrated a
version of Quake running in a Flash app, as well as a C-based
Nintendo emulator running Zelda; both were eminently playable, and
included sound effects and music.</p>
<p>So, once Petersen’s modifications to Tamarin make their way into
the next version of Adobe Flash, we can expect to see older
commercial games running in the browser. Even more impressive,
though, is the <a href=
"http://www.ohloh.net/languages?query=&amp;sort=projects"><u><font color="#0000FF">
sheer volume of existing code</font></u></a> that can be made to
run inside the browser: Petersen showed us the C-compiled versions
of Lua, Ruby, Perl, and Python all running on the web in secure
Flash sandboxes.</p>
<p><strong>What this means for Python</strong></p>
<p>The potential implications this has for Python are particularly
interesting to me. The ability to run Python on the web is
exciting, to say the least; also interesting is the fact that by
sandboxing CPython in a virtual machine, we solve a lot of the
security issues that currently face the language when it comes to
running untrusted code.</p>
<p>Petersen’s work also resonates with a few goals of another
project called <a href=
"http://codespeak.net/pypy/dist/pypy/doc/home.html"><u><font color=
"#0000FF">PyPy</font></u></a>. I’m going to try to explain the idea
behind PyPy in a later post; for the time being, the <a href=
"http://www.toolness.com/arch/PyPyPresentation_Varma.pdf"><u><font color="#0000FF">
slides from my April 2007 ChiPy presentation on PyPy</font></u></a>
may serve as a passable introduction.</p>
<p>In a nutshell, the difference in mindset between PyPy and
Petersen’s work is that the former is radically innovative in scope
and mission, while the latter is pragmatic. PyPy’s goal is
essentially to move the canonical implementation of Python from C
to Python itself, and then use a pluggable toolchain to translate
the Python interpreter to any platform with a configurable set of
language and implementation features. In one fell swoop, this
modularizes the composition of the Python interpreter in such a way
that innovating and maintaining different ports and variants of
Python like <a href=
"http://en.wikipedia.org/wiki/Ironpython"><u><font color=
"#0000FF">IronPython</font></u></a>, <a href=
"http://en.wikipedia.org/wiki/Jython"><u><font color=
"#0000FF">Jython</font></u></a>, and <a href=
"http://en.wikipedia.org/wiki/Stackless"><u><font color=
"#0000FF">Stackless</font></u></a> no longer requires either
writing an entire copy of the same interpreter in a different
language or branching the CPython source code and making pervasive
changes to it.</p>
<p>Rather than focusing on innovation, Petersen’s work focuses on
code reuse. Instead of moving a canonical interpreter
implementation from C to a dynamic language, his strategy is to
simply compile the existing C code to run in a virtual machine
that’s implemented in a dynamic language. Both approaches aim to
obviate the necessity of “ports” of interpreters to different
platforms, and as such their purposes intersect at a common subset
of functionality. But Petersen’s work can’t be used to facilitate
the <em>innovation</em> of the Python language and its
implementation, while PyPy offers few or no tools to reuse existing
non-Python code. Perhaps it’s possible to combine the best of both
worlds by taking PyPy’s generated C interpreter and using
Petersen’s toolchain to allow it to be usable on the web and other
places that Tamarin runs.</p>
<p><strong>What this means for the Open Web</strong></p>
<p>To be honest, I’m not quite sure where the dividing line is
between what of Petersen’s work is Flash-specific and what can be
reused to benefit the Open Web. Since ActionScript is a sibling
language to JavaScript, it’s possible that the custom VM he created
can be run in a browser with relatively few modifications—albeit
much more slowly in Firefox at the time being, since
SpiderMonkey-Tamarin integration is not yet complete. Once that’s
further along, though, I imagine it should be possible to create C
“libraries” that can be used in the toolchain to allow sandboxed C
code to interact with web pages rather than Flash apps. Should this
be feasible, I think it will possibly be the ultimate in a
relatively recent string of <a href=
"http://labs.mozilla.com/2008/06/next-generation-javascripting/"><u>
<font color="#0000FF">next-generation Javascript virtual
machines</font></u></a> that allow existing code to run safely in
browsers.</p>
<p>Also, in the context of the web, download size is a significant
concern because applications are essentially streamed to clients.
While Petersen’s toolchain means that it’s possible to instantly
inherit most of CPython’s benefits on the web, it also means that
we get all of its flaws along with it—such as the fact that the
standard CPython distribution is a few megabytes large. But there’s
ways to get around this.</p>
<p>In any case, I’m really excited to see how both Petersen’s work
and PyPy proceed. I just hope I haven’t mis-represented either one
of them here due to a lack of understanding; I’ll try to correct
this blog post as I become aware of my mistakes</p>
</td>
</tr>
</tbody>
</table>
</div>

]]></description><guid>http://www.i170.com/Article/108458</guid><trackback:ping>http://www.i170.com/Article/108458/trackback</trackback:ping><comments>http://www.i170.com/Article/108458#comment</comments><wfw:commentRss>http://www.i170.com/Article/108458/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108457</link><title><![CDATA[《PCWorld》:Google到底要干什么？]]></title><author>catwork</author><category>Google</category><pubDate>Wed, 09 Jul 2008 15:43:49  +0800</pubDate><description><![CDATA[<p><span style=
"font-weight: bold">PCworld发表文章,讨论了Google最有意思的一些项目的进展情况,包括关于Android的一些细节、新能源开发、语言翻译还有新的面部识别搜索技术等.</span><br>

另外,文章还就网上流传着的一些Google的秘密项目,也向Google发言人进行了求证,从而探究Google到底在做什么.以下为全文内容:</p>
<p>高涨的股票、狂热的追捧、另外更重要的是真正有用的互联网产品,Google可谓是新千年后的科技明星.<br>
<br>
　　然而,Google太活跃了,以致于要想全面跟踪它所做的一切已经变得不那么容易.当你刚刚弄熟Google发布的一连串Web应用、
Google实验室的各项创新以及前瞻性搜索项目时,Google就像翻硬币一样又开始新的投资,尽管对一个有着1.9万名员工,市值1670亿美元的公司来说,转变并不是像翻硬币那么简单,但谁又能想到一个搜索公司会去参与铺设美国和日本之间的海底光缆呢?<br>

<br>
　　"整个Google帝国是从研究项目开始的,Google的核心理念是尝试并发现新事物并把他们变得有钱可赚,"
Jupiter研究公司的分析师Michael
Gartenberg说道,"当你拥有像Google那样的市值,拥有付费搜索这样的聚宝盆时,你就可以不停地去试验.往往,对于项目的实施,都需要必要的财政支持和人才支持,但对Google来说,这两者都不缺".<br>

<br>
<span style=
"font-weight: bold">　　Android:Google想让所有人都接入Google</span><br>
<br>
　　"GPhone"再也不会出现,取而代之的是"Andriod"——一个手机开源操作系统.Android已经成了Windows
Mobile的直接竞争对手,也是对开源开发的一次实验.最近,Google举办了一次竞赛,评出由第三方开发者为Android开发的最具创新的应用,共有1700多名程序员参加了这项竞赛.<br>

<br>
　　这些参赛应用包括那些基于全球定位系统GPS的各种应用.比如,其中一个应用是让用户基于他目前所在位置呼叫到出租车;还有一个应用是可以让用户找到朋友们的位置,了解他们在做什么并参与他们的计划,这些信息都可以实时跟踪.就目前看来,有些应用听起来过于理论化,毕竟Android平台和基于
Android的手机到今年下半年才能发布,但Google还是评选出了头一轮的前50名入围优胜者.<br>
<br>
　　Android产品经理Erick
Tseng说道,从让手机来规定你只能做什么到手机向任何类型的内容、服务、供应商和媒体开放,这将是个很大的转变.<br>
<br>
　　"这对整个手机生态系统来说有着明显的好处,不仅是对普通用户,而且也包括开发者、运营商还有内容供应商",Tseng说道,"不管你今天使用的是什么样的手机,想想你去获得内容的不便.但对Android来说,对内容的接入没有任何的羁绊.用Android,你永远都不必去关心内容的接入."<br>

<br>
　　然而,Android也不是一切都进行顺利.Forrester 研究公司的分析师Charles
Covin一直关心Android的进展,他说道,"我认为Android是一个长远的计划,要想在最近就看出Android带来的变化,那会让你失望.
Google的意图是要让所有的消费者都来使用Google,不管是用什么方式,所以这就很清楚,当移动互联网的发展还有所局限的时候,Google将会把Android作为它下一个和用户进行连接的地方."<br>

<br>
<span style=
"font-weight: bold">　　面部识别搜索:让图片搜索变得跟文字搜索</span><br style=
"font-weight: bold">
<br>
　　图像搜索是个新兴的、远未被开发的市场.今天,当你在Google上键入"巴黎希尔顿"的时候,你会发现一些标记了的巴黎希尔顿图片.然而,打标签是个很单调的过程.举个例子来说,在Flickr.com上,很多图片未被打上标签,所以就很难通过搜索找到它们.如果越多的图片没打标签,那就越难找到它们.<br>

<br>
　　在Google,一个新的面部识别技术将让那些未打标签的图片不再难以被找到.不像该技术用于生物识别领域那样,图片搜索技术就是为了让你找到你想要的信息.<br>

<br>
　　"那些Google对文本已经做到的搜索,我们希望能实现在图像上",Google的研究人员Shumeet
Baluja说道,"我们希望图像能和文本一样容易被搜索、被获得".<br>
<br>
　　想象一下这样的情景:五年后,你所有的数码照片都是在线存储,当你想要查找你祖母的照片时.通过Google的面部识别技术,你可以通过一张含有祖母眼睛距离,鼻子、耳朵、眼睛位置信息的照片,在几秒之内,你就可以找到所有你曾经上传的祖母的照片,尽管这些照片是在不同地方在线存储.<br>

<br>
<span style="font-weight: bold">　　语言翻译:让机器变成人</span><br>
<br>
　　作为搜索引擎的一部分,自动语言翻译已经出现很多年,比如Alta
Vista.Google在语言翻译上进展不小,可被翻译的语言包括俄语、阿拉伯语和最近增加的印地安语.另外一个革新是正在研究的基于语言文化现象规则进行的机器翻译,这需要大量的计算处理.<br>

<br>
　　"使用越多的规则,翻译的质量就越高",Google机器翻译研究人员Franz
Och说道,"比如,如果你想进行一次英语到印地语的翻译,当语种越小,机器翻译的重要性就越大.芬兰语由于其奇怪的语法而很难进行机器翻译,它的每一个词汇可能派生出很多的信息.其他的一些语言由于语言间的差别很大,使翻译变得非常复杂.那些有着相同词根或者相近的语言就比较容易翻译,比如从法语到英语".<br>

<br>
<span style="font-weight: bold">　　新能源探索:要做气候保护者</span><br>
<br>
　　Bill Weihl
负责整个Google公司的能效部分,他试图让Google成为提倡能效的领导者.Google总部的大部分建筑都有太阳能电池板,最高能提供近30%的能源.Google也让他的员工们短期使用那些停在车库靠吸收太阳能来存储能量的混合动力汽车.<br>

<br>
　　"在过去的一年里,我们和行业里的其他公司合作来推动提高PC和服务器使用的能效",Weihl说道,"我们已经和Intel、惠普以及星巴克共同启动一个名为'气候保护者'的倡议,.这不是个技术问题,而是需求问题".<br>

<br>
<span style="font-weight: bold">　　通用搜索:一次性搜到全部内容</span><br style=
"font-weight: bold">
<br>
　　当你在Google上进行搜索的时候,你就在使用"通用搜索",Google提供的搜索结果不仅仅是文本链接,还包括一些Web站点的混合,图片,视频,博客以及音频.通用搜索就是Google用来决定应该提供什么样的搜索结果,已经怎样去提供.通用搜索的目标就是根据搜索字段提供均衡的搜索结果,而不仅仅是文本网页链接.<br>

<br>
　　"当你搜索马丁路德?金的时候,你可能想到的是文本的结果,但我们会提供相关的视频结果",Google通用搜索高级软件工程师David
Bailey说道,"我们可以看到结果,然后进行比较和对比.有些人可能进行针对性的搜索,我们会提供'非文本的'搜索结果,可能会是博客的帖子或者博客的视频."<br>

<br>
<span style="font-weight: bold">　　Google回应几个传言:与政府合作很正常</span><br>
<br>
　　除了那些已经确认的项目以外,还有很多传言的项目.这里我们向Google进行了求证,让Google来评论一下一些主要的传言,来确认其真假.<br>

<br>
　　有传言说Google的数据中心遍布世界各地.<br>
<br>
　　Goolge回复:"快速、创新的产品是满足用户需求的关键,同时也需要大量的运算能力.因此,Google在技术设施上进行了大量的投资,而且也拥有大量包含很多计算机的基础设施.然而,出于商业竞争的考虑,我们不便透露确切的数目以及准确的设施位置."<br>

<br>
　　计划从微软收购Expedia(微软旗下的旅游网站):<br>
<br>
　　Google回复:不作评论.<br>
<br>
　　戴尔正在生产Google手机?<br>
<br>
　　Google回复:不作评论.<br>
<br>
　　Google和美国中央情报局有合作?<br>
<br>
　　Google回复:"对任何人来说,大部分的Google产品都可以在网上免费获得.我们也提供一些企业级解决方案给各个国家的公司、非盈利组织以及政府组织."<br>

<br>
　　Google在为Web互联网提供一个操作系统?<br>
<br>
　　Google回复:不作评论.<br>
<br>
　　Google正准备从eBay那里收购Skype的网络电话业务?<br>
<br>
　　Google回复:不作评论.<br>
<br>
　　Google正在为Wi-Fi二代(Wi-Fi 2.0)购买无线频谱?<br>
<br>
　　Google回复:"这是对这个问题的误解.我们,包括微软、戴尔、飞利浦以及其他科技公司,都主张将空闲的电视频谱无照开放,来作为互联网接入使用.'无照'意味着那部分的频道不被拍卖,而是对每个想使用它的人开放.目前,无照频谱仅仅被用在车库大门和Wi-Fi站上.所以说Google要'
买'下那部分频道是不准确的,我们认为那部分频谱不该被拍卖."</p>

]]></description><guid>http://www.i170.com/Article/108457</guid><trackback:ping>http://www.i170.com/Article/108457/trackback</trackback:ping><comments>http://www.i170.com/Article/108457#comment</comments><wfw:commentRss>http://www.i170.com/Article/108457/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108456</link><title><![CDATA[职业测试结果]]></title><author>bjcjgglmh</author><category>杂谈</category><pubDate>Wed, 09 Jul 2008 15:40:12  +0800</pubDate><description><![CDATA[<p class="STYLE11"><font size="3">才储分析：您的性格类型倾向是“
<strong>INFP</strong> ”(内向 直觉 情感 知觉)</font></p>
<p class="STYLE12"><font size=
"3">理想主义者，忠于自己的价值观及自己所重视的人。外在的生活与内在的价值观配合，有好奇心，很快看到事情的可能与否，能够加速对理念的实践。试图了解别人、协助别人发展潜能。适应力强，有弹性；如果和他们的
价值观没有抵触，往往能包容他人。</font></p>
<p class="STYLE12"><font size=
"3">INFP把内在的和谐视为高于其他一切。他们敏感、理想化、忠诚，对于个人价值具有一种强烈的荣誉感。他们个人信仰坚定，有为自认为有价值的事业献身的精神。
INFP型的人对于已知事物之外的可能性很感兴趣，精力集
中于他们的梦想和想象。他们思维开阔、有好奇心和洞察力，常常具有出色的长远眼光。在日常事务中，他们通常灵活多变、具有忍耐力和适应性，但是他们非常坚定地对待内心的忠诚，为自己设定了事实上几乎是不可能
的标准。
INFP型的人具有许多使他们忙碌的理想和忠诚。他们十分坚定地完成自己所选择的事情，他们往往承担得太多，但不管怎样总要完成每件事。虽然对外部世界他们显得冷淡缄默，但INFP型的人很关心内在。他们富
有同情心、理解力，对于别人的情感很敏感。除了他们的价值观受到威胁外，他们总是避免冲突，没有兴趣强迫或支配别人。INFP型的人常常喜欢通过书写而不是口头来表达自己的感情。当INFP型的人劝说别人相信他们的
想法的重要性时，可能是最有说服力的。
INFP很少显露强烈的感情，常常显得沉默而冷静。然而，一旦他们与你认识了，就会变得热情友好，但往往会避免浮浅的交往。他们珍视那些花费时间去思考目标与价值的人</font></p>

]]></description><guid>http://www.i170.com/Article/108456</guid><trackback:ping>http://www.i170.com/Article/108456/trackback</trackback:ping><comments>http://www.i170.com/Article/108456#comment</comments><wfw:commentRss>http://www.i170.com/Article/108456/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108453</link><title><![CDATA[挤兑]]></title><author>ntpicc</author><category>过好每一天</category><pubDate>Wed, 09 Jul 2008 14:33:56  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
国家也是的，奥运纪念钞就发行600万，怎么够兑换？还说是一人限兑换一张，中国有13亿人，600万，怎么换？</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
早上上班时候，看见工商银行门口排成了长队，那么热的天，那么毒辣的太阳。整个南通据说一共就8000张，6县一市，估计我也不想了。</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;看报纸说，南京昨天凌晨就有人排队了，晕死~~，关键是面值十元，专家说是可升值到两百，但看新闻说是淘宝要价已经过五百了。</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
以后国家会不会增加发行量呢？那样，或许我这样的人才有些些希望。</p>

]]></description><guid>http://www.i170.com/Article/108453</guid><trackback:ping>http://www.i170.com/Article/108453/trackback</trackback:ping><comments>http://www.i170.com/Article/108453#comment</comments><wfw:commentRss>http://www.i170.com/Article/108453/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108451</link><title><![CDATA[谁陷害了兔子罗杰]]></title><author>violet</author><category>电影留声</category><pubDate>Wed, 09 Jul 2008 14:14:30  +0800</pubDate><description><![CDATA[<p><font size="2"><img height="552" alt="" width="400" src=
"http://www.i170.com/Attach/55F111EC-C7A7-4CDD-A5FD-C1126C910D11"></font></p>
<p class="partingline">[separator]</p>
<p><font size="2">&nbsp;&nbsp;&nbsp;
《谁陷害了兔子罗杰》(1988年)这是一部充满独创精神与发明的影片，它由斯蒂芬斯皮尔伯格担任制片，首次将真人与动画结合在一起，著名影星鲍勃·霍金斯和一大群卡通人物搭档在同一个银幕空间演出。故事取自
1981 年加里·沃尔夫笔下的漫画小说《谁给兔子罗杰判了刑》——描述了 40
年代好莱坞一个“动画城”中的动画角色和真人雇主之间的纠纷。</font></p>
<p>&nbsp;</p>
<p><font size="2">&nbsp;&nbsp;&nbsp;
这部影片揽获四项奥斯卡大奖，背后有着上百名的动画制作人员，来自乔治卢卡斯“光魔”特效，同时包含了迪斯尼以及其他知名的工作室的心血结晶。幕后杰出的动画设计师们通过《谁陷害了兔子罗杰》而衍生了全新的动画技术：用全新的光影技术创造更为逼真的动画以及三维效果；大量的移动镜头以减少乏味的静止环境影像；努力使得卡通与真人在现实世界完美地结合。</font></p>
<p><font size="2">&nbsp;&nbsp;&nbsp;
作为一个现代童话，《谁陷害了兔子罗杰》以瑰丽奇幻的色彩和异想天开的创意引人入胜，影片编导以重新复制40年代处于黄金时期的迪斯尼卡通王国作为叙事策略，并采用80年代电影科技的最新手段，将真人与卡通角色巧妙地纠葛融汇到一起，从而赋予卡通电影以新的风貌、新的魅力，创造了卡通电影新的纪元。</font></p>

]]></description><guid>http://www.i170.com/Article/108451</guid><trackback:ping>http://www.i170.com/Article/108451/trackback</trackback:ping><comments>http://www.i170.com/Article/108451#comment</comments><wfw:commentRss>http://www.i170.com/Article/108451/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108444</link><title><![CDATA[``祝酒词]]></title><author>Duke</author><category>心情点点</category><pubDate>Wed, 09 Jul 2008 11:27:48  +0800</pubDate><description><![CDATA[<p>&nbsp;</p>
<p>一泓秋水一轮月，两处闲愁。零落孤鸥不自由。<br>
待到月落水痕收，白了人头。莫忘留时一杯酒。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>突然发现一首旧词，还是大过年写的, 找别扭&nbsp; = =b</p>
<p>虽然抽了点，还是扔上来了</p>
<p>青春真好, 嗷~~&nbsp;</p>
<p>&nbsp;</p>

]]></description><guid>http://www.i170.com/Article/108444</guid><trackback:ping>http://www.i170.com/Article/108444/trackback</trackback:ping><comments>http://www.i170.com/Article/108444#comment</comments><wfw:commentRss>http://www.i170.com/Article/108444/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108441</link><title><![CDATA[细心呵护自己的伙伴]]></title><author>baoshan1074</author><category>心情点点</category><pubDate>Wed, 09 Jul 2008 10:25:07  +0800</pubDate><description><![CDATA[<p><font color="#FF9900">&nbsp;&nbsp;&nbsp;
昨天看&lt;如何做创意&gt;一书,书中有一段话给我印像很深.书中提到做好的创意，与伙伴的合作很重要。提出了三点建意：</font></p>
<p><font color=
"#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
1、要谦虚的向你的伙伴提出你的建意。</font></p>
<p><font color=
"#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
因为否定别人的创意的同意，对对方来说，也是一种伤害。应该婉转的过度，给对方一个回转的余地。</font></p>
<p class="partingline">[separator]</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2、要适时的向你的伙伴让步。</p>
<p>&nbsp;</p>
<p><font color=
"#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;也许你在与你的伙伴的争执中已经赢得三分，可是当你赢得第四分的时候，你的伙伴再也不会像以前支持你一样与你搭档。</font></p>
<p><font color=
"#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3、要与你的伙伴荣辱与共。</font></p>
<p><font color=
"#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;无论做品成功与否，你和你的伙伴是一个整体。当一个作品完成时，好的合作伙伴会感觉“哦，我好像什么也没做，都是我的搭档做的”</font></p>
<p><font color="#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;
文中很重要的一层含意是，你可以失去一个作品，你可以失去一个客户，但你很难找到一个好的合作伙伴。什么也不能打乱你与伙伴之间的合作默契。</font></p>
<p><font color="#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;</font></p>
<p><font color="#FF9900">&nbsp;&nbsp;&nbsp;&nbsp;
这让我想到在一起生活的两口子，如果都能意识到这一点，生活应该都是幸福的。别人对一个工作上的合作伙伴都如此细心，为什么我们不能对我们的另一伴客气一呢？为要以为我们都这么熟了，一切都可以很随便，越是熟，越是看得清你的点点滴滴。也许你的每一次小小随便，都在伤他（她）的心。当他（她）的心伤的无法修复的时候，一切一切的挽救都是无力的~~~~一个好的伙伴难找，一个好的伴侣更是难寻，让我们能细心的呵护彼此！！！</font></p>

]]></description><guid>http://www.i170.com/Article/108441</guid><trackback:ping>http://www.i170.com/Article/108441/trackback</trackback:ping><comments>http://www.i170.com/Article/108441#comment</comments><wfw:commentRss>http://www.i170.com/Article/108441/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108427</link><title><![CDATA[花生莲藕炖猪尾]]></title><author>Maizero</author><category>我爱厨房</category><pubDate>Wed, 09 Jul 2008 01:56:50  +0800</pubDate><description><![CDATA[<p><font size="2">　　自己做的~</font></p>
<p align="center"><font size="2"><img height="480" width="640" alt=
"" src=
"http://www.i170.com/Attach/6C6D13CB-5D16-4CFC-90FB-E610AA7E6869"></font></p>

]]></description><guid>http://www.i170.com/Article/108427</guid><trackback:ping>http://www.i170.com/Article/108427/trackback</trackback:ping><comments>http://www.i170.com/Article/108427#comment</comments><wfw:commentRss>http://www.i170.com/Article/108427/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108426</link><title><![CDATA[为什么呢？]]></title><author>catwork</author><category>要充满爱</category><pubDate>Wed, 09 Jul 2008 01:48:08  +0800</pubDate><description><![CDATA[<p>关于对河南的争论偶见过很多了</p>
<p>一直米有什么概念</p>
<p>从小就在这里，至今米出去闯过</p>
<p>所以仅仅是听说对河南的歧视</p>
<p>地下这篇cnBeta消息倒是让小猫张见识了</p>
<p>倒不是说网站上有人歧视</p>
<p>而是低下跟的评论着实让小猫不解……</p>
<p>消息贴出：（评论就不贴了，影响社区空气环境）<font color=
"#FF6600">问一下：河南人在外面混的都很招人厌么？</font></p>
<table height="800" cellspacing="1" cellpadding="1" width="800"
border="1">
<tbody>
<tr>
<td>著名门户网站网易于2006年2月设计、制作了题为《任诚宇、李东照河南人名誉卫士》的专题网页。<br>
两年前，他告深圳龙岗警方歧视河南人，获得对方道歉；两年后，他再度以受到歧视为由，将网易公司等传媒告上法庭。他就是河南人李东照。<span style="font-weight: bold">同样因为受到歧视，李东照再一次提起诉讼，这一次的对象由深圳市公安局龙岗分局变为网易等网络传媒，而因他所起的“全国首例地域歧视案”已经变为“全国首例传媒歧视案”
。</span><br>
<br>
<p>&nbsp;</p>
<div style="text-align: center"><img height="412" alt="" src=
"http://chinaz.com/upimg/allimg/080708/1616140.jpg" width="428"
altsrc="http://chinaz.com/upimg/allimg/080708/1616140.jpg"></div>
<br>
2006年，曾引起全国广泛关注的全国首例地域歧视案，经郑州市高新区人民法院调解结案，被告深圳市公安局龙岗分局向原告河南籍公民李东照、任诚宇赔礼道歉。也正是因为此事，著名门户网站网易于2006年2月设计、制作了题为《任诚宇、李东照河南人名誉卫士》的专题网页。然而，李东照在浏览之后认为，网易公司持有偏见，以失真、捏造、歧视性、攻击性的旧闻为素材，网页上带有大量侮辱性言词，其行为侵犯了自己的生存健康。因此将其告上法庭，近日，北京市崇文区法院受理了此案。<br>

据了解，以传媒歧视为由提起诉讼，在全国尚属首例。<br>
<br>
<strong>“歧视案”的不了情</strong><br>
<br>
“这股火已经窝了两年多。”7月3日，记者联系到李东照时，他很平静的接受了采访，而在此前的两年中，他对网络传媒对他的歧视性报道满怀抱怨。<br>

<br>
2005年3月份，深圳市公安局龙岗分局龙新派出所在无任何证据证明在其辖区内存在“河南籍敲诈勒索团伙”的前提下，在辖区的怡丰路黄龙塘市场附近的大街上悬挂“坚决打击河南籍敲诈勒索团伙”和“凡举报河南籍团伙敲诈勒索犯罪、破获案件的，奖励500元”的横幅。这一明显带有地域歧视性质的横幅一挂出，当即招致不少市民的非议。当年4月15日，河南籍公民李东照和任诚宇以深圳市公安局龙岗分局的行为侵害了二人的名誉权为由，向郑州市高新区人民法院提起诉讼。此案引起了全国各地传媒的广泛关注，被称之为“全国首例地域歧视案”，2006年初，该案经郑州市高新区人民法院主持调解，双方当事人表示和解。<br>

<br>
在全国传媒广泛关注此案的背景下，2006年2月，著名新闻门户网站网易设计、制作、编辑题为《任诚宇、李东照河南人名誉卫士》专题，对此案进行了报道。李东照在浏览中发现，此网页持有偏见心态，使用失真、捏造、歧视、攻击性旧闻作为素材，该网页转载了解放日报报业集团下属某晚报的一篇报道，而这篇报道内容属恶意虚假捏造事实。该报道在互联网上广泛传播，国内数十家门户网站及数百家媒体对该内容进行报道及转载。<br>

<br>
两年来，忙于其他事务的李东照始终遭受着这个报道给其带来的创伤，2008年2月初，他终于向制作这个网页的网易公司北京分公司住所地的北京市崇文区法院提出诉讼，并于2008年6月18日顺利立案。<br>

<br>
“受理案件的法官告诉我，因为网络传媒歧视而诉讼的全国还无先例。”
李东照说，上次打得是“全国首例地域歧视案”，这次是“全国首例网络传媒歧视案”，都挑战的是中国法理的最前沿。<br>
<br>
<strong>和“歧视”较劲</strong><br>
<br>
7月3日，记者联系了北京市崇文区法院，得知李东照诉网易等单位的案件已经立案，目前正在进一步审理中，北京市法院网已经对此案刊发了消息。<br>

<br>
李东照表示，网易公司等四被告的行为已构成网络传媒歧视，违背了《宪法》所确立的“国家尊重和保障人权”的宪法基本原则，对原告及其家属精神上造成巨大的创伤，侵犯了自己的生存健康，要求法院认定以网易为首的四被告行为构成侵权。<br>

<br>
李东照在起诉状中提出，要求被告对原告公开赔礼道歉，在全国范围内消除影响，清除传媒页面，并就道歉内容在人民法院指定的国家级新闻媒体上视频公开播出。同时对四被告提出了90万元精神创伤赔偿金的要求。<br>

<br>
“这件事气得我发抖。”李东照说，因为“全国首例地域歧视案”，他承受了太多的压力，包括最后离开供职的律师事务所和对家人的伤害。而正在那时，网易的专题网页和上海传媒的报道给他“雪上加霜”。<br>

<br>
2005年4月，上海某报记者在电话采访李东照后，发表了一篇题为《中国首例地域歧视案立案
打官司只为教育河南老乡》的文章，文中有如下描述“李东照，河南郑州人，用他自己的话说，他没有什么文化……”<br>
<br>
李东照说，这篇文章的报道内容和采访他时的本意完全相反，文中很多话语是作者自己恶意捏造的虚假失实报道。而网易在转载此文章时没有审核把关，导致此文章在互联网上广泛传播，全国数十家门户网站及报纸对该内容进行报道和传播。他认为，这篇报道使用了大量侮辱性言辞，对他依法替河南人维权的行为和人格进行侮辱和贬损，其真实企图是因为他是河南人，报道才如此肆无忌惮、毫无顾忌地将歧视性的旧闻作为素材，从精神上对他进行歧视，这种行为已经构成了网络传媒歧视。<br>

<br>
“我容忍不了歧视，无论是对河南人还是我自己。”李东照说，虽然时隔两年，但是，这篇报道以及网易的专题网页的转载给他带来的伤害始终无法弥补，因此他才决定提起诉讼，和任何“歧视”现象斗争到底。<br>

<br>
<br>
<strong>传媒歧视，警钟该鸣了</strong><br>
<br>
7月3日，记者获知，网易北京公司法务部的工作人员则表示，他们至今还未收到法院的传票，因此无法发表看法。<br>
<br>
“案件目前还在程序上一步一步走，能立案本身就是胜利了。”李东照说，在起诉前，他已经查阅了资料，发现以网络传媒歧视而立案并无先例，他在向北京市崇文区法院递交诉状时，法官也表达了同样的意思。<br>

<br>
事实上，网络传媒歧视在法学界和新闻界并没有明确的概念，李东照说，按照自己的理解，网络传媒歧视，就是指网络等新闻传媒采取捏造信息，有意或者无意攻击弱势群体，不平等地对待报道对象，给报道对象造成伤害。<br>

<br>
李东照认为，在现实生活中，存在大量的网络传媒歧视现象。无论是网络还是报纸、杂志、电视，经常将自己的受众定位于公务员、专业人士或白领人士这些“主流群体”，这是对“非主流人群”的歧视，在今天大多数都市类或市民类新闻传媒中，有关弱势群体的宣传报道应该说仍占有相当的比重，但他们的整体形象却常常因为媒体有意无意的扭曲而变形，这些都是典型的传媒歧视。<br>

<br>
李东照说，很多人不愿意拿起法律的武器来对待歧视，也没有精力和能力对其进行诉讼，这种弱势的回避造成了网络传媒肆无忌惮地忽视这种“歧视”，这也是他这次决心要“较劲”的动力。“我背后站着一个庞大的群体，我们渴望社会的公平，期待能在《宪法》赋予的权利下，网络传媒尊重每一个人的尊严。”</td>
</tr>
</tbody>
</table>

]]></description><guid>http://www.i170.com/Article/108426</guid><trackback:ping>http://www.i170.com/Article/108426/trackback</trackback:ping><comments>http://www.i170.com/Article/108426#comment</comments><wfw:commentRss>http://www.i170.com/Article/108426/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108425</link><title><![CDATA[小伯爵冯德罗]]></title><author>Jabeck</author><category>要充满爱</category><pubDate>Wed, 09 Jul 2008 01:47:52  +0800</pubDate><description><![CDATA[<p>
老小就看过的一本小说，当时在阳明路的新华书店买的，小学，一起买的书还有格林童话。书是黑色封面的，原版最早出版于1905年。</p>
<p>&nbsp;</p>
<p>
很庆幸自己在小时候能看到这本书，至少这本书引导了我最原始的世界观、价值观。第一次阅读历时一周，其后反复阅读数次，至高中丢失。昨日购入2本，准备将一本送给昱华小朋友，另一本自藏。</p>
<p>&nbsp;</p>
<p>刚才又看了一遍，现在阅读的速度果然很神，1小时多就看完了 = =
这书的翻译和我以前看的那本是一样的，很多语句的风格都非常清晰。</p>
<p>&nbsp;</p>
<p>
很怀念小说的世界，做一个正直的人就可以赢得路人的脱帽致敬，做一个正直的人就会被广为传颂，现在的社会只向有钱人致敬，媒体播放的都是某某暴富屎，所以我们未必真的就比100年前更为人性化，更为进步。</p>
<p>&nbsp;</p>
<p>另外老觉得自己很委屈的人也可以看看，为什么自己老不会和人相处，说的每一句话都会错。</p>
<p>&nbsp;</p>
<p>我应该在种田的时候顺便开个马场的，骑马是人类最优雅的自然。</p>
<p>&nbsp;</p>
<p>真的很庆幸能读过这本书，白涅格夫人是有爱的人。</p>

]]></description><guid>http://www.i170.com/Article/108425</guid><trackback:ping>http://www.i170.com/Article/108425/trackback</trackback:ping><comments>http://www.i170.com/Article/108425#comment</comments><wfw:commentRss>http://www.i170.com/Article/108425/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/108424</link><title><![CDATA[百喻经001品]]></title><author>zcxiaofeng</author><category>绘本</category><pubDate>Wed, 09 Jul 2008 01:50:31  +0800</pubDate><description><![CDATA[<p><img alt="" src=
"http://www.i170.com/Attach/F2D48B40-A5FD-4EEC-A91D-4530054A491C"></p>

]]></description><guid>http://www.i170.com/Article/108424</guid><trackback:ping>http://www.i170.com/Article/108424/trackback</trackback:ping><comments>http://www.i170.com/Article/108424#comment</comments><wfw:commentRss>http://www.i170.com/Article/108424/commentRss</wfw:commentRss></item> </channel></rss>