<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
 <channel>
  <title>伪美&生活</title>
  <link>http://avant-contra.blogbus.com</link>
  <description><![CDATA[“漂泊是穿越虚无的没有终点的旅行”，冷暖自知]]></description>
  <generator> by blogbus.com </generator>
  <lastBuildDate>Sun, 08 Jul 2007 19:18:12 +0800</lastBuildDate>
  <image>
									<url>http://www.blogbus.com/profile/3/4/3/1487343/avatar_1487343_96.jpg</url>
									<title>伪美&生活</title>
									<link>http://avant-contra.blogbus.com</link>
								</image>  <item>
   <title>请问百度知道不知道</title>
   <description><![CDATA[<p>小爷为了给麦咖啡续费，要充200百度币，又是扣了钱，可百度币为零。。。。</p><p>&nbsp;于是我给百度知道提了问题：百度币充值时，银行卡的钱扣了，可是百度币为0，怎么办？</p><p>这个问题百度知道到底知道不知道呢 ？</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23289723.html">hold on， my way</a> 2008-06-20</div><div><a href="http://avant-contra.blogbus.com/logs/20139705.html">天津一日吃</a> 2008-05-02</div><div><a href="http://avant-contra.blogbus.com/logs/17967441.html">安</a> 2008-03-31</div><div><a href="http://avant-contra.blogbus.com/logs/14330037.html">夜里真tm冷</a> 2008-01-23</div><div><a href="http://avant-contra.blogbus.com/logs/11674392.html">嗯</a> 2007-12-07</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F24075162.html&title=%E8%AF%B7%E9%97%AE%E7%99%BE%E5%BA%A6%E7%9F%A5%E9%81%93%E4%B8%8D%E7%9F%A5%E9%81%93">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/24075162.html</link>
   <author>Avant-Contra</author>
   <pubDate>Thu, 03 Jul 2008 23:15:03 +0800</pubDate>
  </item>
  <item>
   <title>flex与django/python通信，通过pyamf</title>
   <description><![CDATA[<p><a href="http://www.pyamf.org" target="_blank">pyamf官网</a>上推荐了一篇<a href="http://blog.eshangrao.com/index.php/2008/02/16/447-flexpyamfdjango" target="_blank">中文howto</a>（<a href="http://blog.eshangrao.com/index.php/2008/02/16/447-flexpyamfdjango" target="_blank">1</a>，<a href="http://blog.eshangrao.com/index.php/2008/02/19/449-flexpyamfdjangomysql" target="_blank">2</a>），介绍django与flex通信，通过pyamf（一个python的开源api，专门针对<a href="http://en.wikipedia.org/wiki/Action_Message_Format" target="_blank">amf</a>协议）。其中有个小问题，就是<strong>destination</strong>的设置。</p><p>共有三处会用到该属性（这篇中文howto只提到了两处），我的代码片段如下：</p><p><strong>1 flex：</strong>&lt;mx:RemoteObject<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; id=&quot;djangoService&quot;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <strong>destination</strong>=&quot;<strong>destinationFucker</strong>&quot;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; showBusyCursor=&quot;true&quot;/&gt;&nbsp;</p><p><strong>2 services-config.xml：</strong> &lt;<strong>destination </strong>id=&quot;<strong>destinationFucker</strong>&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;channels&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;channel ref=&quot;fuckChannel&quot;/&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/channels&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;  <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/destination&gt;</p><p><font color="#993300"><strong>3&nbsp; amfgateway.py:</strong>&nbsp;&nbsp;</font>  usersGateway = DjangoGateway({<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '<font color="#993300"><strong>destinationFucker</strong></font>.testFuck':testFuck,<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '<font color="#993300"><strong>destinationFucker</strong></font>.testArrayFuck':testArrayFuck&nbsp;  <br />&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; })</p><p>深红色的python部分，在原文中是没有<font color="#993300"><strong>destination</strong></font>的（当然原文中也没有fu*k）。 我不知道原文的example是如何测试的，至少我滴环境下（django自带server，无数据库）如果在python（或django）的方法前不加destination（即直接<font color="#993300">'testArrayFuck':testArrayFuck</font> ），flex是无法找到远程方法testArrayFuck的。</p><p>flex的RemoteObject，天生出来是与java后台相亲相爱的 ，在java中，destination对应的可以是该class名，即：<br />&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; class&nbsp; <font color="#993300"><strong>destinationFucker</strong></font><br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; public function&nbsp; testArrayFuck(){}<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; }&nbsp;</p><p>而在python中，至少这个example中米有class，所以必须在映射方法testArrayFuck时加上destination才能找到&ldquo;<font color="#993300"><strong>destinationFucker</strong></font>.testArrayFuck&rdquo;。</p><p>那么客户端flex及services-config中不写destination行不行涅？ <br />答案貌似是&ldquo;不行&rdquo;，如果在RemoteObject及services-config中去掉destination，运行时会找不到destination而报错。</p><p>那么客户端flex及services-config中destination id=&quot;&quot;行不行涅？ <br />
答案也貌似是&ldquo;不行&rdquo;，在services-config中destination的id不接受&quot;&quot;。至少在flex默认配置下这样是不行滴。</p><p>另外，上边举的那个java的例子，其实我猜的，因为从没用java试过 ^_&lt;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23867760.html">&quot;Put a Flex UI on your application&quot;</a> 2008-06-30</div><div><a href="http://avant-contra.blogbus.com/logs/17448591.html">惹火上身</a> 2008-03-22</div><div><a href="http://avant-contra.blogbus.com/logs/21753051.html">Flash Effect</a> 2008-05-27</div><div><a href="http://avant-contra.blogbus.com/logs/14578461.html">避风塘的cairgorm</a> 2008-01-27</div><div><a href="http://avant-contra.blogbus.com/logs/16642542.html">即兴 摄像头demo</a> 2008-03-08</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23916510.html&title=flex%E4%B8%8Edjango%2Fpython%E9%80%9A%E4%BF%A1%EF%BC%8C%E9%80%9A%E8%BF%87pyamf">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23916510.html</link>
   <author>Avant-Contra</author>
   <pubDate>Tue, 01 Jul 2008 14:50:26 +0800</pubDate>
  </item>
  <item>
   <title>&amp;quot;Put a Flex UI on your application&amp;quot;</title>
   <description><![CDATA[<p>测试了Bruce大师在&quot;<a href="http://www.adobe.com/devnet/flex/articles/flex_ui.html" target="_blank">Put a Flex UI on your application</a>&quot;中的例程，其中flex端在我的环境下需要个别改动才可运行，记录如下：</p><p><strong>&nbsp;1 </strong><code><strong>as3-rpclib库</strong>。直接使用</code><code>as3-rpclib.swc会报错，说XMLRPCObject覆盖错误。去掉.swc库文件，<strong>直接使用</strong></code><strong><code></code></strong><code><strong>as3-rpclib的源代码</strong>后跟踪调试，原来在</code><code>XMLRPCObject.as中两个重载函数&ldquo;setCredentials与setRemoteCredentials&rdquo;与基类中的原函数参数个数不一样，少了第三个&ldquo;charset:String=null&rdquo;。改动如下：</code></p><p><code><span style="background-color: #ffcc00">&nbsp;&nbsp;&nbsp; /*原：override public function setCredentials (username:String,password:String):void*/</span><br /><span style="background-color: #00ff00">&nbsp;&nbsp;&nbsp;&nbsp; override public function setCredentials(username:String,password:String,<strong>charset:String=null</strong>):void</span></code></p><p>2&nbsp; <strong>XMLRPCObject</strong>。原文中没有指定XMLRPCObject对象的destination，在我的环境（Flex SDK 3）下编译后&quot;destination&quot;值为&ldquo;null&rdquo;，于是gateway的url就变成了&ldquo;http://localhost:8000null&rdquo;。改动如下：</p><p style="background-color: #ffcc00">原：&lt;ak33m:XMLRPCObject id=&quot;server&quot; endpoint=&quot;http://localhost:8000&quot;/&gt;</p><p><span style="background-color: #00ff00">改： &lt;xmlrpc:XMLRPCObject id=&quot;server&quot; endpoint=&quot;http://localhost:9000&quot; <strong>destination=&quot;&quot;</strong>/&gt;</span></p><p>&nbsp;记录完毕。</p><p>&nbsp;另，集中注意力于前台flex， 用python做测试web server还真是方便高效。嗯，当然其他的语言php、java等其实还没有试过。。。。</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23916510.html">flex与django/python通信，通过pyamf</a> 2008-07-01</div><div><a href="http://avant-contra.blogbus.com/logs/17448591.html">惹火上身</a> 2008-03-22</div><div><a href="http://avant-contra.blogbus.com/logs/14578461.html">避风塘的cairgorm</a> 2008-01-27</div><div><a href="http://avant-contra.blogbus.com/logs/16642542.html">即兴 摄像头demo</a> 2008-03-08</div><div><a href="http://avant-contra.blogbus.com/logs/13357110.html">嗯，养个宠物</a> 2008-01-05</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23867760.html&title=%26quot%3BPut+a+Flex+UI+on+your+application%26quot%3B">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23867760.html</link>
   <author>Avant-Contra</author>
   <pubDate>Mon, 30 Jun 2008 19:17:14 +0800</pubDate>
  </item>
  <item>
   <title>peaceful</title>
   <description><![CDATA[<p>&nbsp;</p><object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="214" height="102"><param name="width" value="214" /><param name="height" value="102" /><param name="src" value="http://mp3.ge520.com/20080622/newdaoliansiquanjia_o0o1stop/a143/13.wma" /><param name="url" value="http://mp3.ge520.com/20080622/newdaoliansiquanjia_o0o1stop/a143/13.wma" /><param name="url" value="http://mp3.ge520.com/20080622/newdaoliansiquanjia_o0o1stop/a143/13.wma" /><embed type="application/x-mplayer2" width="214" height="102" src="http://mp3.ge520.com/20080622/newdaoliansiquanjia_o0o1stop/a143/13.wma"></embed></object><p>&nbsp;原来专辑里是伴奏曲</p><p>粮食<br />唱:幸福大街 吴虹飞<br /><br />哥你在黑黑黑黑的土地上<br />种出金色金色的粮食<br />你用金色金色的粮食<br />换回苍白苍白的我<br />哥我要坐在高高的粮食上<br />想象我的我的红嫁衣<br />我要守住金色的粮食<br />守住一生的幸福<br />我们用它来酿酒吧<br />阿哥用你的血我的骨头<br />我们守着一个承诺<br />阿哥看着我吧不要说话<br />其实他们他们都知道<br />我是你的你的女人<br />在酒酿成的那一天<br />我将死在你的怀里<br />啊~~</p><p><em>星光现场归来，可惜没找到&ldquo;再不相爱就老了&rdquo;几个字&nbsp;</em></p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23676453.html">“再不相爱就老了”</a> 2008-06-27</div><div><a href="http://avant-contra.blogbus.com/logs/23413884.html">20086月22日</a> 2008-06-22</div><div><a href="http://avant-contra.blogbus.com/logs/22502433.html">6月6 有一只鹿</a> 2008-06-08</div><div><a href="http://avant-contra.blogbus.com/logs/17904735.html">333</a> 2008-03-30</div><div><a href="http://avant-contra.blogbus.com/logs/15454845.html">说好下回一起照相_1</a> 2008-02-16</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23711403.html&title=peaceful">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23711403.html</link>
   <author>Avant-Contra</author>
   <pubDate>Sat, 28 Jun 2008 01:12:09 +0800</pubDate>
  </item>
  <item>
   <title>“再不相爱就老了”</title>
   <description><![CDATA[<p style="text-indent: 21pt" class="MsoNormal"><span style="font-family: 宋体"><font face="Verdana"><font face="Verdana">虽然不是飞丝，而且对吴虹飞更深的印象来自于她在万国马桶的文字，但看到这个副标题后，突然有些感动：</font></font></span></p><p style="text-indent: 21pt" class="MsoNormal"><span style="font-family: 宋体"><font face="Verdana"><font face="Verdana">《胭脂》：&ldquo;吴虹飞与幸福大街&rdquo;</font></font></span><span><font face="Verdana"><font face="Verdana">9</font></font></span><span style="font-family: 宋体"><font face="Verdana"><font face="Verdana">周年纪念演唱会</font></font></span></p>
<p style="text-indent: 21pt" class="MsoNormal"><span><span><font face="Verdana"><font face="Verdana">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></font></span></span><span style="font-family: 宋体"><font face="Verdana"><font face="Verdana">&mdash;&mdash;&ldquo;再不相爱就老了&rdquo;</font></font></span></p><p style="text-indent: 21pt" class="MsoNormal">今晚 星光现场&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23711403.html">peaceful</a> 2008-06-28</div><div><a href="http://avant-contra.blogbus.com/logs/23413884.html">20086月22日</a> 2008-06-22</div><div><a href="http://avant-contra.blogbus.com/logs/22502433.html">6月6 有一只鹿</a> 2008-06-08</div><div><a href="http://avant-contra.blogbus.com/logs/21420792.html">无题</a> 2008-05-23</div><div><a href="http://avant-contra.blogbus.com/logs/17904735.html">333</a> 2008-03-30</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23676453.html&title=%E2%80%9C%E5%86%8D%E4%B8%8D%E7%9B%B8%E7%88%B1%E5%B0%B1%E8%80%81%E4%BA%86%E2%80%9D">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23676453.html</link>
   <author>Avant-Contra</author>
   <pubDate>Fri, 27 Jun 2008 14:03:04 +0800</pubDate>
  </item>
  <item>
   <title>好吧我承认开始时有点想装b</title>
   <description><![CDATA[<p>上周末在美术馆看《合成时代》科技数码体验老少皆宜热闹非凡新媒体艺术展，休息时靠墙坐着茫然的看了半小时眼前流动的人群、跑来跑去的孩子、穿丝袜的老奶奶、暴露的想犯罪的美女，想了一点这些东西的受众，想了一点自己这几年追逐new media的动机，想了一点最近关注的方向，</p><p>好吧我觉悟了，突然意识到自己做new media的相当一部分动机是为了装酷或装b</p><p>嗯，我决定去掉这一部分动机，看看还剩下些什么 。</p><p>另，小鹿说也许可以做一些用传统艺术手法表现不出来的东西，engine说艺术和技术是可以相互促进的，这些话很受用，及时纠正了我近期来稍稍有些过分强调idea而不重技术的偏执。</p><p>peaceful&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/16728780.html">openFrameworks</a> 2008-03-10</div><div><a href="http://avant-contra.blogbus.com/logs/15985998.html">so, i'll go on my way</a> 2008-02-26</div><div><a href="http://avant-contra.blogbus.com/logs/15891198.html">well, I did it my way</a> 2008-02-24</div><div><a href="http://avant-contra.blogbus.com/logs/7915887.html">十全二百五</a> 2007-08-24</div><div><a href="http://avant-contra.blogbus.com/logs/6937820.html">《Persistent Data Confidante 永恒数据知己》</a> 2007-07-22</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23583165.html&title=%E5%A5%BD%E5%90%A7%E6%88%91%E6%89%BF%E8%AE%A4%E5%BC%80%E5%A7%8B%E6%97%B6%E6%9C%89%E7%82%B9%E6%83%B3%E8%A3%85b">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23583165.html</link>
   <author>Avant-Contra</author>
   <pubDate>Wed, 25 Jun 2008 22:01:06 +0800</pubDate>
  </item>
  <item>
   <title>20086月22日</title>
   <description><![CDATA[<p>老夫不就是刚剃了个越狱头外加提溜了个包吗，坐地铁就被查身份证！！@￥&hellip;&hellip;#%&hellip;&hellip;&amp;&nbsp;</p><p>&nbsp;</p><p>一只公迷鹿跑啊跑，越跑越快，于是它就变成高速公鹿了</p><p>&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/23711403.html">peaceful</a> 2008-06-28</div><div><a href="http://avant-contra.blogbus.com/logs/23676453.html">“再不相爱就老了”</a> 2008-06-27</div><div><a href="http://avant-contra.blogbus.com/logs/22502433.html">6月6 有一只鹿</a> 2008-06-08</div><div><a href="http://avant-contra.blogbus.com/logs/17904735.html">333</a> 2008-03-30</div><div><a href="http://avant-contra.blogbus.com/logs/15454845.html">说好下回一起照相_1</a> 2008-02-16</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23413884.html&title=20086%E6%9C%8822%E6%97%A5">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23413884.html</link>
   <author>Avant-Contra</author>
   <pubDate>Sun, 22 Jun 2008 23:00:11 +0800</pubDate>
  </item>
  <item>
   <title>hold on， my way</title>
   <description><![CDATA[<p>It is like a really hot baby.You have to give her what she wants before you can get what you want.为了生存我们必须先死去，为了欢笑我们必须先哭泣，为了有钱我们必须先破产，为了自由我们必须先抛弃。</p><p>扯淡的开头<br />最近不能说忙，因为忙已经融入日常生活主题了。晚上9点能到家，周末有半天休息，夜里1点前睡觉，这都开始让我感到不习惯，觉得是白降的甘霖。</p><p>最近做的有代表的扯淡事情：</p><p>颜色捕捉demo若干<br />弱弱的摄像头游戏demo若干<br />某娱乐节某作品技术实现<br />为了给自己贴艺术的金而去研究更深的技术<br />换掉了带了多年的眼镜框<br />继续为所选的路死去大量脑细胞<br />继续在所选的路上透支付出<br />一天不吃饭也不觉得饿了<br />酒量大量下降并且睡一夜后仍无法解酒<br />发大量短信<br />
开始迷鹿<br />懒得记了</p><p>刚才去北服遛了遛，今年的作品质量比去年提高了，很多本该常见的手段已经开始变得常见，这让我这个一直鼓吹开放与交流的一直想拿艺术贴金的伪艺术且其实技术也不行的青年感到了百分之八的紧张。</p><p>hold on， my way&nbsp;</p><p>&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/17967441.html">安</a> 2008-03-31</div><div><a href="http://avant-contra.blogbus.com/logs/15187047.html">换肤</a> 2008-02-10</div><div><a href="http://avant-contra.blogbus.com/logs/14932968.html">嗯，摆驾</a> 2008-02-04</div><div><a href="http://avant-contra.blogbus.com/logs/10014754.html">bug of bus</a> 2007-09-24</div><div><a href="http://avant-contra.blogbus.com/logs/7315136.html">所有的blog都下雨</a> 2007-08-02</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F23289723.html&title=hold+on%EF%BC%8C+my+way">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/23289723.html</link>
   <author>Avant-Contra</author>
   <pubDate>Fri, 20 Jun 2008 19:27:36 +0800</pubDate>
  </item>
  <item>
   <title>20080614</title>
   <description><![CDATA[<p>wish u happy</p><p>wish me too&nbsp;</p><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/22552656.html">好像有点超负荷了</a> 2008-06-09</div><div><a href="http://avant-contra.blogbus.com/logs/15891198.html">well, I did it my way</a> 2008-02-24</div><div><a href="http://avant-contra.blogbus.com/logs/14330037.html">夜里真tm冷</a> 2008-01-23</div><div><a href="http://avant-contra.blogbus.com/logs/10374845.html">about the plan of  Mahone</a> 2007-10-20</div><div><a href="http://avant-contra.blogbus.com/logs/10015154.html">Hey, Wish U Happy</a> 2007-09-25</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F22889157.html&title=20080614">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/22889157.html</link>
   <author>Avant-Contra</author>
   <pubDate>Sat, 14 Jun 2008 00:19:25 +0800</pubDate>
  </item>
  <item>
   <title>fade2art 之 遥控车演奏超级玛丽</title>
   <description><![CDATA[<div align="left"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="100" height="100"><param name="src" value="http://player.youku.com/player.php/sid/XMjQyNTQxNjQ=/v.swf" /><param name="width" value="100" /><param name="height" value="100" /><embed type="application/x-shockwave-flash" src="http://player.youku.com/player.php/sid/XMjQyNTQxNjQ=/v.swf" width="100" height="100"></embed></object></div><div align="left">&nbsp;</div><div align="left">技术不是目的，嗯嗯，fade to art&nbsp;</div><!--sp--><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://avant-contra.blogbus.com/logs/22063419.html">perfect woman 完美女人</a> 2008-06-01</div><div><a href="http://avant-contra.blogbus.com/logs/15548151.html">搞错了，我一定还是像潘总</a> 2008-02-17</div><div><a href="http://avant-contra.blogbus.com/logs/14191782.html">i'm a good egg</a> 2008-01-20</div><div><a href="http://avant-contra.blogbus.com/logs/13263384.html">两个傻瓜 ， 掐互联网， gcd与愤青</a> 2008-01-04</div><div><a href="http://avant-contra.blogbus.com/logs/7537232.html">秋之回忆之十三不靠</a> 2007-08-08</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Favant-contra.blogbus.com%2Flogs%2F22665720.html&title=fade2art+%E4%B9%8B+%E9%81%A5%E6%8E%A7%E8%BD%A6%E6%BC%94%E5%A5%8F%E8%B6%85%E7%BA%A7%E7%8E%9B%E4%B8%BD">Del.icio.us</a></span></div><br><br><div class="sysmsg"><b><a href="http://www.gov.cn/zwgk/2008-05/18/content_981560.htm">深切哀悼四川汶川大地震遇难同胞</a></b><br><br></div>]]></description>
   <link>http://avant-contra.blogbus.com/logs/22665720.html</link>
   <author>Avant-Contra</author>
   <pubDate>Wed, 11 Jun 2008 00:08:09 +0800</pubDate>
  </item>
 </channel>
</rss>
