<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://raincitystudios.com" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
 <title>Blogs &amp; Pods</title>
 <link>http://raincitystudios.com/cn/blogs-and-pods</link>
 <description>Blogs and Pods collection</description>
 <language>cn</language>
<item>
 <title>第六次上海Drupal用户聚会回顾、总结、内容分享</title>
 <link>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/diliucishanghaidrupalyonghujuhuihuigu%E3%80%81zongjie%E3%80%81neirongfenxiang</link>
 <description> &lt;p&gt;很高兴，第六次上海Drupal用户聚会能够赶在八月末顺利举行。这次的总共有15个人参加了聚会，虽然人不多，但是气氛相当好。
&lt;img src=&quot;http://farm3.static.flickr.com/2207/2820286156_52e6354945.jpg&quot; width=&quot;200&quot; height=&quot;150&quot; align=&quot;right&quot;&gt;
&lt;br&gt;在报名点人到了差不多的时候，我们抓紧时间开始了这册的聚会。
&lt;br&gt;聚会的第一部分是由&lt;a href=&quot;http://www.raincitystudios.com&quot;&gt;Raincity Studios&lt;/a&gt;的开发工程师，&lt;a href=&quot;http://raincitystudios.com/about/team/mike-yao&quot;&gt;Mike Yao&lt;/a&gt;，为大家进行主题为“AHAH，Drupal的动态表单”的讲演。作为聚会的组织者，在每一次的聚会活动之前，我们都会在SHDUG的&lt;a href=&quot;http://groups.google.com/group/shdug?hl=zh-CN&quot;&gt;google group&lt;/a&gt;或是&lt;a href=&quot;http://drupalchina.org&quot;&gt;drupalchina&lt;/a&gt;的上海板块中发帖，征集大家对聚会主题的&lt;br&gt;想法建议等，并针对最多人想听的主题找合适的Drupal开发工程师进行讲演。希望通过这种讲演的方式，让更多的人了解drupal，掌握drupal的更多功能；也希望这样能够帮助更多人解决平时Drupal实际运用时遇到的种种问题。目前，因为还没有人愿意自告奋勇在聚会中为我们做演讲，所以我们都是请&lt;a href=&quot;http://www.raincitystudios.com&quot;&gt;Raincity Studios&lt;/a&gt;的工程师们为大家讲演一些平时工作中总结的Drupal使用经验。但我们一直希望并鼓励RCS以外的朋友加入到主题演讲的行列中，为我们带来更多不同的演讲主题。&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;以下是周六聚会时Mike的讲义，感兴趣的朋友可以分享一下:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;p&gt;1.What&#039;s AHAH?
&lt;br&gt;Same  Ajax, but simpler than Ajax&lt;/p&gt;

&lt;p&gt;2.What&#039;s the purpose of AHAH in Drupal?
&lt;br&gt;Just one purpose for dynamic form&lt;/p&gt;

&lt;p&gt;3.AHAH basic requirement
&lt;br&gt;main form
&lt;br&gt;dynamic sub form
&lt;br&gt;define a html element wrapperDrupal 6 AHAH forms: The easy way | Nick Lewis: The Blog&#039;
&lt;br&gt;AHAH form property
&lt;br&gt;&#039;#ahah&#039; = array(
  array(
    &#039;event&#039; =&gt; click or change,
    &#039;wrapper&#039; =&gt; html element id,
    &#039;path&#039; =&gt; callback function,
  ),
),
&lt;br&gt;AHAH process function&lt;/p&gt;

&lt;p&gt;4.example
&lt;br&gt;$form[&#039;wrapper&#039;] = array(
   &lt;br&gt;&#039;#type&#039; =&gt; &#039;item&#039;,
    &lt;br&gt;&#039;#prefix&#039; =&gt; &#039;&lt;div id=&quot;ahah-wrapper&quot;&gt;&#039;,
    &lt;br&gt;&#039;#suffix&#039; =&gt; &#039;&lt;/div&gt;&#039;,
  &lt;br&gt;);
  &lt;br&gt;$form[&#039;new&#039;] = array(
    &lt;br&gt;&#039;#type&#039; =&gt; &#039;submit&#039;,
    &lt;br&gt;&#039;#value&#039; =&gt; &#039;New&#039;,
    &lt;br&gt;&#039;#ahah&#039; =&gt; array(
      &lt;br&gt;&#039;path&#039; =&gt; &#039;ahah_test/execute&#039;,
     &lt;br&gt; &#039;wrapper&#039; =&gt; &#039;ahah-wrapper&#039;,
     &lt;br&gt; &#039;method&#039; =&gt; &#039;append&#039;,
      &lt;br&gt;&#039;event&#039; =&gt; &#039;click&#039;,
   &lt;br&gt; ),
 &lt;br&gt; );
&lt;br&gt;function ahah_test_execute() {
  &lt;br&gt;$form_state = array();
  &lt;br&gt;$form_build_id = $_POST[&#039;form_build_id&#039;];
&lt;br&gt;  $form = form_get_cache($form_build_id, $form_state);
  &lt;br&gt;$num = $form[&#039;num&#039;][&#039;#default_value&#039;];
  &lt;br&gt;$num++;
 &lt;br&gt; $form[&#039;num&#039;][&#039;#default_value&#039;] = $num;
 &lt;br&gt; $form[&#039;ahah_sub_form&#039;] = array(
  &lt;br&gt;  &#039;#tree&#039; =&gt; TRUE,
  &lt;br&gt;);
  &lt;br&gt;$form[&#039;ahah_sub_form&#039;] += ahah_sub_form($num);
 &lt;br&gt; form_set_cache($form_build_id, $form, $form_state);
 
&lt;br&gt;  $form = form_builder(&#039;ahah_main_form&#039;, $form, $form_state);
  &lt;br&gt;$output = drupal_render($form[&#039;ahah_sub_form&#039;]);
 &lt;br&gt; print drupal_to_js(array(&#039;status&#039; =&gt; TRUE, &#039;data&#039; =&gt; $output));
}
&lt;/p&gt;

&lt;p&gt;5.AHAH properties list
&lt;br&gt;&#039;#ahah&#039; = array(
  &lt;br&gt;&#039;effect&#039;
&lt;br&gt;  &#039;event&#039;
 &lt;br&gt; &#039;method&#039;
  &lt;br&gt;&#039;path&#039;
 &lt;br&gt; &#039;process&#039;
 &lt;br&gt; &#039;wrapper&#039;
)&lt;/p&gt;
http://api.drupal.org/api/file/developer/topics/forms_api_reference.html/6#ahah&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;在Mike30分钟左右的讲演之后，大家针对这次的演讲主题中的一些问题进行了一番讨论，之后就是大家自由讨论的时间。有好些朋友趁这个机会将自己建站时遇到的问题提了出来，希望能够得到大家都帮助，当然大家也都是很踊跃地出谋划策，交流自己的drupal经验，相信这些有备而来的朋友没有空手而回吧！&lt;/p&gt;

&lt;p&gt;其实，这也正是我们组织meetup的一大目的。我们想通过每月一次的meetup为上海的Drupal用户提供一个交流的平台，交流各自使用时的得失、经验、技巧，就像“人人为我，我为人人”，我想这也正是开源的意义所在吧。所以，建议以后参加聚会的朋友可以事先将自己平时遇到的问题整理一下，在聚会时提出来，这种面对面且实际操作的交流效果肯定好过自己一个人的苦思冥想。&lt;img src=&quot;http://farm4.static.flickr.com/3060/2819443329_e91890fb5f.jpg&quot; width=&quot;400&quot; height=&quot;300&quot;  align=&quot;center&quot;&gt;&lt;/p&gt;

&lt;p&gt;这次聚会见到了久未露面的transdonkey，每次活动前都看到他很积极的报名，但都没有露面，这次终于得以一见。还有一直支持我们聚会活动，常来参加的李彦、赵亮、韩韬，这次也都来了，另外还有些新朋友是第一次参加我们的聚会活动，不知道大家对这次聚会的印象如何，但还是希望大家能够继续支持上海 Drupal用户聚会的活动，以后常来参加我们的活动。&lt;/p&gt;

&lt;p&gt;如果大家想在meetup上演讲，可以直接与我联系：&lt;email mailto=&quot;peggy@raincitystudios.com&quot;&gt;peggy@raincitystudios.com&lt;/email&gt;，或者任何一个你认识的&lt;a href=&quot;http://www.raincitystudios.com&quot;&gt;Raincity Studios&lt;/a&gt;上海办公室的工作人员，直接在我们发布的帖子下评论跟贴回复也可以。&lt;/p&gt;

&lt;div align=&quot;center&quot;&gt;&lt;object width=&quot;400&quot; height=&quot;340&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.tudou.com/v/GTU83pT_FrY&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.tudou.com/v/GTU83pT_FrY&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;400&quot; height=&quot;340&quot; allowFullScreen=&quot;true&quot; wmode=&quot;transparent&quot; allowScriptAccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt; </description>
 <comments>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/diliucishanghaidrupalyonghujuhuihuigu%E3%80%81zongjie%E3%80%81neirongfenxiang#comments</comments>
 <category domain="http://raincitystudios.com/cn/topics/communication">communication</category>
 <category domain="http://raincitystudios.com/cn/topics/web-2.0/content-management-systems/drupal">Drupal</category>
 <category domain="http://raincitystudios.com/cn/topics/meetup">Meetup</category>
 <category domain="http://raincitystudios.com/cn/topics/%5Bterm%5D-3">Shanghai</category>
 <category domain="http://raincitystudios.com/cn/topics/technology">Technology</category>
 <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://raincitystudios.com/cn/crss/node/2797</wfw:commentRss>
 <pubDate>Mon, 01 Sep 2008 04:56:34 -0400</pubDate>
 <dc:creator>Peggy Xie</dc:creator>
 <guid isPermaLink="false">2797 at http://raincitystudios.com</guid>
</item>
<item>
 <title>国内SNS网站抢占Facebook大陆市场</title>
 <link>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/guoneisnswangzhanqiangzhanfacebookdalushichang</link>
 <description> &lt;p&gt;&lt;a href=&quot;http://www.xiaonei.com&quot;&gt;校内网&lt;/a&gt;和&lt;a href=&quot;http://www.kaixin001.com&quot;&gt;开心网&lt;/a&gt;都是时下中国国内IT人群里挺爱玩的社区网站（SNS）。它们就像是&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;的中国版，从网站风格到功能都不同程度的模仿了&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;，较为不同的就是他们的用户基本都是中国人。但是&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;中文版的出现，想必对这几个网站带来了一定的冲击。面对这种挑战，&lt;a href=&quot;http://www.xiaonei.com&quot;&gt;校内网&lt;/a&gt;率先发布了开放平台，登陆&lt;a href=&quot;http://www.xiaonei.com&quot;&gt;校内网&lt;/a&gt;的时候，会发现上面新增了组件功能，其中的组件居然有数百种，“买卖好友”“占车位”还有很多热门小游戏。虽然&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;一早就向用户提供了很多组件功能供娱乐，但是对于中国国内的SNS网站而言，&lt;a href=&quot;http://www.xiaonei.com&quot;&gt;校内网&lt;/a&gt;、&lt;a href=&quot;http://www.kaixin001.com&quot;&gt;开心网&lt;/a&gt;等站点的这一动作还算是比较紧跟国际潮流的。
&lt;br&gt;现在几家组件比较多的如&lt;a href=&quot;http://www.kaixin001.com&quot;&gt;开心网&lt;/a&gt;、&lt;a href=&quot;http://www.xiaonei.com&quot;&gt;校内网&lt;/a&gt;都吸引了越来越用户，人们对SNS开始关注起来，以前人们总是把社区网站当成概念炒作，现在更多人参与进去。那么，为什么SNS最近开始火爆呢？
&lt;!--break--&gt;

&lt;img src=&quot;http://farm4.static.flickr.com/3275/2802073271_0a23399e1d.jpg?v=0&quot;&gt;
&lt;br&gt;（校内网的组件（微件）的数量数以千计，让人目不暇给）

&lt;p&gt;我想，在这些网站上，“可添加的组件”无疑是最受用户欢迎的，这也是美国的&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;如此受到青睐的原因。所以，我认为，这种可添加组件的社区网站和传统意义的社区交友网站有着本质的不同，我们不妨将其做个比较：&lt;/p&gt;

&lt;li&gt;内容聚合&lt;/li&gt;
传统的门户网站聚合的是内容，如新浪搜狐腾讯，他们依靠的是编辑的劳动，把大量优秀的文章聚合到一起，形成了特色的内容产品，从而吸引了大量用户。这些网站编辑的价值，是网站的核心价值。WEB2.0的内容网站和传统门户的区别在于，不仅仅聚合了编辑挑选的内容，而且聚合了草根博客的原创内容；而且不仅仅体现了编辑挑选的价值，而且也体现了网民DIGG(挖掘)的价值，例如DIGG。
&lt;li&gt;用户聚合&lt;/li&gt;
传统意义上社区网站，如果连客户端也算上，腾讯是最大的社区网站。这类网站聚合的是用户。当这个网站拥有海量用户的时候，用户关系聚合成一个庞大的网络，一个关系价值网络。任何一个加入这个网站的人，马上能享受到这个网络带来的价值。
&lt;li&gt;技术聚合&lt;/li&gt;
&lt;p&gt;最近流行的真人网络。Myspce、facebook，MSN 即时通讯，国内的51.com也是凭借用户的真实用户的聚合，快速成长起来。
而&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;能快速超越&lt;a href=&quot;http://www.myspace.com&quot;&gt;Myspace&lt;/a&gt;的原因，不仅仅在于聚合了真实的用户，而是开放平台API，这里面不仅仅聚合了内容和用户，不单单是真实用户的价值，更是一种技术的聚合。&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;开放平台后，很多程序员早已在后深受其益。在这个开放平台上，网站与开发者分享用户，而开发者为网站提供各种应用，不仅能够帮助网站提升流量、赢得竞争力，而且还能够帮助开发者实现收入、开辟一番新的互联网事业。&lt;/p&gt;

&lt;p&gt;另一方面，在中国，相对于&lt;a href=&quot;http://www.facebook.com&quot;&gt;facebook&lt;/a&gt;，校内网等国内SNS网站凭借其本土化的优势，似乎更能吸引国内用户的眼球，毕竟大多数中国网民还是习惯于使用中文网站。以刚成立不久的&lt;a href=&quot;http://www.kaixin001.com&quot;&gt;开心网&lt;/a&gt;为例，在它刚成立的短短几个月内，我就接连收到了好几个人向我推荐这个网站。在我注册了帐号后，又接连不断地能够收到朋友同学们加我为好友的请求。现在，我MSN上的联系人差不多有80%都是开心网的用户了。&lt;br&gt;集合了交友、相册、日记等多种功能的SNS网站，正在以迅猛的发展势头替代web1.0时代的校友录、blog网站等单一的互联网产品。&lt;/p&gt;
&lt;img src=&quot;http://farm4.static.flickr.com/3140/2802864568_4bd938fee9.jpg&quot;&gt;（我在开心网上的首页）

&lt;p&gt;除了上述两个网站外，目前中国市场上比较主流的SNS网站还有海内网、若邻网、聚友网。&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.hainei.com&quot;&gt;海内网&lt;/a&gt;：基本功能同校内网、开心网都差不多，最近他们的“停车大战”游戏很受欢迎，不少会员为了在游戏中一饱购车瘾，不断地邀请朋友加入网站，以此赚取虚拟货币用来买车。在会员获得乐趣的同时，也为网站增加了更多的流量及新会员。
&lt;img src=&quot;http://farm4.static.flickr.com/3234/2802864628_c50a57997f.jpg&quot;&gt;
&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.myspace.cn&quot;&gt;聚友网&lt;/a&gt;：myspace的中文版，借着myspace的名气，也吸引了大量的中国用户，目前拥有500万中国会员。
&lt;img src=&quot;http://farm4.static.flickr.com/3031/2802017451_9d039337ba.jpg&quot;&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.www.wealink.com&quot;&gt;若邻网&lt;/a&gt;：号称全球最大的中文商务人脉网，专注于商务人士的交友社区。该网的功能设置相对于以上几个偏向于娱乐方面的网站而言，商务型更强。通过求职招聘、个人公告的功能，帮助会员拓展事业上的人脉
&lt;img src=&quot;http://farm4.static.flickr.com/3268/2802920242_1921bea351.jpg?v=0&quot;&gt;&lt;/p&gt;

&lt;p&gt;比较这五家在中国比较知名的SNS网站近一个月内的PV，结论如下：
&lt;img src=&quot;http://farm4.static.flickr.com/3133/2802073225_3a4474d71d.jpg?v=0&quot;&gt;&lt;/p&gt;

 </description>
 <comments>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/guoneisnswangzhanqiangzhanfacebookdalushichang#comments</comments>
 <category domain="http://raincitystudios.com/cn/topics/sns">SNS</category>
 <category domain="http://raincitystudios.com/cn/topics/%5Bterm%5D-10">web2.0</category>
 <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://raincitystudios.com/cn/crss/node/2792</wfw:commentRss>
 <pubDate>Wed, 27 Aug 2008 10:36:29 -0400</pubDate>
 <dc:creator>Peggy Xie</dc:creator>
 <guid isPermaLink="false">2792 at http://raincitystudios.com</guid>
</item>
<item>
 <title>奥运之夜，我们一起BBQ，一起GEEKOUT</title>
 <link>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/aoyunzhiye%EF%BC%8Cwomen%E4%B8%80qibbq%EF%BC%8C%E4%B8%80qigeekout</link>
 <description>        &lt;p&gt; &lt;img src=&quot;http://farm4.static.flickr.com/3269/2761640329_ff165f16d7.jpg?v=0&quot; align=right&gt;080808，一组令人疯狂的数字，一个让人激动的日子。8在大多数中国人眼中是个非常吉祥的数字，代表财富和好运。在这个日子里，我们迎来了举世瞩目的 2008北京奥运会；成百上千对新婚夫妇选择这个日子作为自己的结婚纪念日；连医院里的产妇也迫不及待地想让自己的baby在这一天降临人世。很幸运的，我们的第二次弄堂BBQ GEEKOUT也在这天晚上顺利举行。

       &lt;p&gt; 原本以为这个特殊的日子，大家都会躲在家里看电视直播。没有想到的是，还是有很多人在看到了活动邮件或是帖子的时候愿意过来和大家一起分享这个重要时刻，加入到我们的BBQ中来，和 更多的朋友一起喝着啤酒，吃着烤肉，看着这场气势恢弘的奥运开幕式。独乐乐始终还是不如众乐乐啊，很感谢这些前来参加活动的朋友们。&lt;/p&gt;
&lt;!--break--&gt;
       &lt;p&gt;当然，我们也没有让各位来宾失望。足量的鸡翅、肉串、牛肉、香肠、新鲜的虾肉、蔬菜、整瓶的啤酒和可乐随便吃喝（烧烤的活当然是自己动手，丰衣足食啦），一台连上了网络电视的37英寸宽屏液晶电视，我想这样的软硬件准备应该可以满足大多数人的需求了吧！&lt;/p&gt;

&lt;img src=&quot;http://farm4.static.flickr.com/3163/2761626105_5bd8bac59f.jpg?v=0&quot;&gt;
&lt;img src=&quot;http://farm4.static.flickr.com/3048/2762473424_7b1e47a1dc.jpg?v=0&quot;&gt;

        &lt;p&gt;当中国国歌在开幕式会场上奏响的那刻，房间里正在观看节目的所有人都自觉的站了起来，并一起伴着乐声哼唱，我想这应该是整个晚上最令我感动的一刻了。&lt;/p&gt;

&lt;img src=&quot;http://farm4.static.flickr.com/3267/2761624381_25d28e706b.jpg?v=0&quot;&gt;

        &lt;p&gt;很高兴，在这次的BBQ上又认识了些朋友。比如做电脑硬件方面工作的IVY，很可爱的女生（我始终想着以后要买电脑的话可以联系她）；还有一对做游戏网站的夫妻。期待下一次的活动上依然能够见到他们的身影，也期待更多的朋友能够参加到我们每月一次的GEEKOUT中来。&lt;/p&gt;

&lt;p&gt;以下是来自RCS Shanghai特约记者Peggy为您在BBQ现场所做的采访：&lt;/p&gt;

&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/WowmmmQ4SNU&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/WowmmmQ4SNU&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;

 </description>
 <comments>http://raincitystudios.com/cn/blogs-and-pods/peggy-xie/aoyunzhiye%EF%BC%8Cwomen%E4%B8%80qibbq%EF%BC%8C%E4%B8%80qigeekout#comments</comments>
 <category domain="http://raincitystudios.com/cn/topics/bbq">BBQ</category>
 <category domain="http://raincitystudios.com/cn/taxonomy/term/1604">geekout</category>
 <category domain="http://raincitystudios.com/cn/topics/aoyun">奥运</category>
 <category domain="http://raincitystudios.com/cn/topics/jizhu">技术</category>
 <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://raincitystudios.com/cn/crss/node/2774</wfw:commentRss>
 <pubDate>Thu, 14 Aug 2008 04:44:32 -0400</pubDate>
 <dc:creator>Peggy Xie</dc:creator>
 <guid isPermaLink="false">2774 at http://raincitystudios.com</guid>
</item>
<item>
 <title>The Boris Speaks - Bryght, Drupal, Boot-up and Vancouver - Raincity Radio</title>
 <link>http://raincitystudios.com/cn/raincity-radio/the-boris-speaks-bryght-drupal-boot-and-vancouver-raincity-radio</link>
 <description> &lt;a href=&quot;http://www.flickr.com/photos/uncleweed/2742164333/&quot; title=&quot;boris mann by Uncleweed, on Flickr&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3022/2742164333_fbe6720ff5_m.jpg&quot; alt=&quot;boris mann&quot; class=&quot;fright&quot; width=&quot;240&quot; height=&quot;240&quot; /&gt;&lt;/a&gt;&lt;p&gt;On a sunny Vancouver patio with beers and mussels, Dave enjoys a long conversation with &lt;a href=&quot;http://bmannconsulting.com/&quot; title=&quot;Boris Mann Technology Consulting&quot;&gt;Boris Mann, technology consultant&lt;/a&gt;, &lt;a href=&quot;http://association.drupal.org/user/Boris_Mann&quot; title=&quot;Drupal Association permanent member &quot;&gt;Drupal board member&lt;/a&gt;, &lt;a href=&quot;http://foodlikethat.com/&quot; title=&quot;Food like that by Boris Mann&quot;&gt;noted foodie&lt;/a&gt;, &lt;a href=&quot;http://www.vinocamp.com/vinocamp&quot; title=&quot;Vino Camp&quot;&gt;vino-camper&lt;/a&gt;, and &lt;a href=&quot;http://raincitystudios.com/about/team/boris-mann&quot; title=&quot;Boris Mann of Raincity studios&quot;&gt;Raincity Studio&#039;s product guru&lt;/a&gt; (emeritus). 
&lt;/p&gt;
&lt;p&gt;
Mr. Mann discuss the history of Bryght, the personal motivations for the &lt;a href=&quot;http://raincitystudios.com/blogs-and-pods/raincitystudios-acquires-bryght&quot; title=&quot;Bryght Acquired by Raincity studios&quot;&gt;acquisition by Raincity Studios&lt;/a&gt;, the importance of robust hosting, the growth of &lt;a href=&quot;http://bootuplabs.com/&quot; title=&quot;Bootup Labs&quot;&gt;Boot-ups Labs&lt;/a&gt; (an incubator taking companies from zero to fundable), the nuances of the Vancouver tech scene, knowledge gaps, mobile ideas and much more.&lt;/p&gt; </description>
 <comments>http://raincitystudios.com/cn/raincity-radio/the-boris-speaks-bryght-drupal-boot-and-vancouver-raincity-radio#comments</comments>
 <category domain="http://raincitystudios.com/cn/topics/bootuplabs">bootuplabs</category>
 <category domain="http://raincitystudios.com/cn/topics/partners/bryght">Bryght</category>
 <category domain="http://raincitystudios.com/cn/topics/web-2.0/content-management-systems/drupal">Drupal</category>
 <category domain="http://raincitystudios.com/cn/topics/hosting">hosting</category>
 <category domain="http://raincitystudios.com/cn/topics/internet">internet</category>
 <category domain="http://raincitystudios.com/cn/topics/%5Bterm%5D-0">mobile</category>
 <category domain="http://raincitystudios.com/cn/topics/raincitystudios">raincitystudios</category>
 <category domain="http://raincitystudios.com/cn/topics/start">start-up</category>
 <category domain="http://raincitystudios.com/cn/topics/%5Bterm%5D-26">Vancouver</category>
 <enclosure url="http://raincitystudios.com/cn/audio/download/1669/The+Boris+Speaks+-+Bryght%2C+Drupal%2C+Boot-up+and+Vancouver.mp3" length="48769805" type="audio/mpeg" />
 <itunes:duration>50:46</itunes:duration>
 <itunes:author>Dave O for Raincity Studios</itunes:author>
 <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://raincitystudios.com/cn/crss/node/1669</wfw:commentRss>
 <pubDate>Thu, 07 Aug 2008 20:01:09 -0400</pubDate>
 <dc:creator>DaveO</dc:creator>
 <guid isPermaLink="false">1669 at http://raincitystudios.com</guid>
</item>
<item>
 <title>Note to Clients: Vancouver explosion causes Gastown power outage</title>
 <link>http://raincitystudios.com/cn/blogs-and-pods/daveo/note-clients-vancouver-explosion-causes-gastown-power-outage</link>
 <description> &lt;p&gt;[Update: All systems restored, status upgraded to normal]&lt;/p&gt;
&lt;p&gt;Raincity Studios&#039; Vancouver team is working decentralized today as much of Vancouver&#039;s downtown core is still without power since an underground utility explosion yesterday (July 14th) afternoon near Richards and Pender/Dunsmuir St.&lt;/p&gt;
&lt;p&gt;Despite the diligent efforts of the utility workers, power remains out at the office so the team are working from cafes and homes until restored. &lt;/p&gt;
&lt;p&gt;As such, your calls may go unanswered but we are available to assist you via email or other contact methods.&lt;/p&gt;
&lt;p&gt;This outage has no effect on web servers or other services so we anticipate no problems beyond larger than usual coffee bills.&lt;/p&gt;
&lt;p&gt;Here&#039;s more:&lt;br /&gt;
&lt;a href=&quot;http://www.nowpublic.com/world/electrical-fire-knocks-out-power-downtown-vancouver&quot;&gt;Electrical Fire Knocks out Power Downtown Vancouver&lt;/a&gt; on Now Public&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.bchydro.com/outages/orsTableView.jsp&quot;&gt;BC Hydro&lt;/a&gt; (utility company)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.canada.com/vancouversun/news/westcoastnews/story.html?id=375f134c-eaca-43d4-a5b9-486af52f44b0&quot;&gt;Power Outage Causes Chaos Downtown&lt;/a&gt; in the Vancouver Sun&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.nationalpost.com/news/story.html?id=656400&quot;&gt;Vancouver peaceful as blackout continues&lt;/a&gt; in the National Post&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20080714/BC_downtown_vancouver_080714/20080714?hub=CTVNewsAt11&quot;&gt;Power, traffic disrupted in downtown Vancouver&lt;/a&gt; via CTV.ca&lt;/p&gt;
&lt;p&gt;&lt;/p&gt; </description>
 <comments>http://raincitystudios.com/cn/blogs-and-pods/daveo/note-clients-vancouver-explosion-causes-gastown-power-outage#comments</comments>
 <category domain="http://raincitystudios.com/cn/topics/gastown">Gastown</category>
 <category domain="http://raincitystudios.com/cn/taxonomy/term/613">office</category>
 <category domain="http://raincitystudios.com/cn/topics/%5Bterm%5D-26">Vancouver</category>
 <wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://raincitystudios.com/cn/crss/node/1233</wfw:commentRss>
 <pubDate>Tue, 15 Jul 2008 13:37:38 -0400</pubDate>
 <dc:creator>DaveO</dc:creator>
 <guid isPermaLink="false">1233 at http://raincitystudios.com</guid>
</item>
</channel>
</rss>
