<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>纵坐标的幻</title>
  <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/" />
  <link rel="self" href="http://www.hifar.com/blog/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-12-01T18:12:12.6875+08:00</updated>
  <author>
    <name>gynow</name>
  </author>
  <subtitle>THINKING, CREATING</subtitle>
  <id>http://www.hifar.com/blog/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>Silverlight 2 released</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/10/15/Silverlight2Released.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,3fc443fd-f79d-4380-befc-6bef5172ba7f.aspx</id>
    <published>2008-10-15T09:50:17.414+08:00</published>
    <updated>2008-12-01T18:12:12.6875+08:00</updated>
    <category term="MS技术" label="MS技术" scheme="http://www.hifar.com/blog/CategoryView,category,MS%e6%8a%80%e6%9c%af.aspx" />
    <category term="RIA" label="RIA" scheme="http://www.hifar.com/blog/CategoryView,category,RIA.aspx" />
    <category term="Web 技术" label="Web 技术" scheme="http://www.hifar.com/blog/CategoryView,category,Web%2B%e6%8a%80%e6%9c%af.aspx" />
    <category term="互动技术" label="互动技术" scheme="http://www.hifar.com/blog/CategoryView,category,%e4%ba%92%e5%8a%a8%e6%8a%80%e6%9c%af.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
MS 终于发布了Silverlight 2的正式版， <a href="http://silverlight.net" target="_blank">http://silverlight.net</a> 从和
Silverlight 1 比较中看, Silverlight 2 增加了诸多新特性： 
</p>
        <p>
Support for Visual Basic.NET and C#; Common Language Runtime (CLR) based languages   
<br />
Support for IronPython, IronRuby, Managed JScript, and other Dynamic Language Runtime
(DLR) based languages   
<br />
Rich Core Framework (e.g. Generics,  collections)   
<br />
MultiThreading   
<br />
Layout controls including StackPanel and Grid   
<br />
Full suite of Controls (TextBox, RadioButton, Slider, Calendar, DatePicker, DataGrid,
ListBox, TabControl, and others)   
<br />
Managed Control Framework   
<br />
Templating Model   
<br />
Visual State Manager   
<br />
Isolated Storage   
<br />
Deep Zoom Technology   
<br />
Media – DRM Powered by PlayReady   
<br />
Media  Windows Media Audio 10 Professional support   
<br />
Media  MediaStreamSource for managed code media file parser and protocol extensibility   
<br />
High quality resizing   
<br />
Media  Basic SSPL Support   
<br />
Cross Domain Network Access   
<br />
Easy access to serverside data via Web Services   
<br />
Direct access to TCP sockets   
<br />
Interoperability with SOAP and REST services, including support for XML, JSON, RSS
and Atom data formats   
<br />
LINQ (including LINQ to XML, LINQ to JSON, and LINQ to Entities)   
<br />
Duplex communications (“push” from Server to Silverlight client)   
<br />
Data Binding   
<br />
ADO.NET Data Services   
<br />
Managed HTML Bridge   
<br />
Managed Exception Handling   
<br />
.NET Framework Security Enforcement   
<br />
Type Safety Verification   
<br />
XMLReader/Writer   
<br />
Enhanced Keyboard Input Support   
<br />
File Upload Support (via WebClient API)   
<br />
WPF Compatibility<br />
Accessibility   
<br />
Localization   
<br />
Remote Debugging (PC and Mac) 
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=3fc443fd-f79d-4380-befc-6bef5172ba7f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>jQuery</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/10/09/jQuery.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,db842f4c-3c45-419a-9e49-b7777a78ff98.aspx</id>
    <published>2008-10-09T15:20:09.10375+08:00</published>
    <updated>2008-10-09T15:20:09.10375+08:00</updated>
    <category term="Web 技术" label="Web 技术" scheme="http://www.hifar.com/blog/CategoryView,category,Web%2B%e6%8a%80%e6%9c%af.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
jQuery (<a href="http://jquery.com/" target="_blank">http://jquery.com/</a>) 是一个轻量级javascript
library， 它能方便的和html进行交互。 使javascript 的语句更加简洁。
</p>
        <p>
比如： 点击一个id=div2 的div可以这样写：
</p>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">            $(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"#div2"</span>).click(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">function</span>(event)
            {                 $(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">this</span>).hide(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"slow"</span>);
            });</span>
        </pre>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">jQuery还有用于UI效果的
jQuery UI 库。 用它可以制作各种界面功能和效果。 </span>
        </pre>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">另外值得一提的是：
Microsoft 已经开始支持jQuery, 并会将其整合到visual studio 中。</span>
        </pre>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=db842f4c-3c45-419a-9e49-b7777a78ff98" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Photosynth</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/10/07/Photosynth.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,1847c472-2b99-4b96-8f6a-c1730529176c.aspx</id>
    <published>2008-10-07T11:20:22.619375+08:00</published>
    <updated>2008-10-07T11:20:22.619375+08:00</updated>
    <category term="MS技术" label="MS技术" scheme="http://www.hifar.com/blog/CategoryView,category,MS%e6%8a%80%e6%9c%af.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Photosynth 是Microsoft Lab 的产物， 你可以用一组场景照片来重组3D 景象， 它的好处是你不需做过多的操作， 仅需提供一组照片而已，系统会自动进行组合，
虽然现在效果还有待改善， 但ms 号称这是将来的3D实现的趋势。 现在通过window live 帐号就可以用了： <a href="http://photosynth.net/" target="_blank">http://photosynth.net/</a></p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=1847c472-2b99-4b96-8f6a-c1730529176c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>开源项目收集</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/09/14/%e5%bc%80%e6%ba%90%e9%a1%b9%e7%9b%ae%e6%94%b6%e9%9b%86.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,96fa49ca-e09d-4362-b4c4-189ad2c85766.aspx</id>
    <published>2008-09-14T17:49:50.582+08:00</published>
    <updated>2008-09-14T17:50:35.817+08:00</updated>
    <category term="Web 技术" label="Web 技术" scheme="http://www.hifar.com/blog/CategoryView,category,Web%2B%e6%8a%80%e6%9c%af.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
中秋节在家休息看了一些开源项目：
</p>
        <p>
.NET 开源
</p>
        <p>
YetAnotherForum <a href="http://forum.yetanotherforum.net/" target="_blank">http://forum.yetanotherforum.net/</a> 我觉得是目前最好的开源论坛了，但功能较简单，
无法和动网bbs比。 
<br />
Entlib forum （中文汉化的YAF） <a href="http://www.entlib.com/" target="_blank">http://www.entlib.com/</a></p>
        <p>
Cuyahoga CMS <a href="http://www.cuyahoga-project.org/" target="_blank">http://www.cuyahoga-project.org/</a> 整体结构比较简单的CMS，
但无法生成静态html<br />
tantCMS <a href="http://www.codeplex.com/tantCMS" target="_blank">http://www.codeplex.com/tantCMS</a> 国内的开源CMS，基于asp.net
3.5， 但完成度较低，界面比较粗糙。<br />
Rainbow Portal <a href="http://rainbowportal.net/" target="_blank">http://rainbowportal.net/</a> 可建大型门户。
模块化扩展管理。 但是本人觉得版本比较乱， 同时如果真要建门户， 现在用sharepoint 肯定更强。
</p>
        <p>
PHP 开源
</p>
        <p>
DeDeCMS 织梦内容管理系统 <a href="http://www.dedecms.com/" target="_blank">http://www.dedecms.com/</a> 中文php
CMS， 功能比较完整，本人觉得用下来不错.<br />
PHPWind 中文论坛系统 <a href="http://www.phpwind.net" target="_blank">http://www.phpwind.net</a><br />
ShopEx 目前国内较好的网上商店商城系统 <a href="http://www.shopex.cn/" target="_blank">http://www.shopex.cn/</a><br /></p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=96fa49ca-e09d-4362-b4c4-189ad2c85766" />
      </div>
    </content>
  </entry>
  <entry>
    <title>gaoyicheng.net 加照片了</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/09/13/gaoyichengnet%e5%8a%a0%e7%85%a7%e7%89%87%e4%ba%86.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,a3519e1e-ee3f-455d-bedc-cea51757401c.aspx</id>
    <published>2008-09-13T13:49:27.678+08:00</published>
    <updated>2008-09-13T13:49:47.7447033+08:00</updated>
    <category term="其它" label="其它" scheme="http://www.hifar.com/blog/CategoryView,category,%e5%85%b6%e5%ae%83.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
加了不少宝宝的照片. <a href="http://www.gaoyicheng.net" target="_blank">http://www.gaoyicheng.net</a></p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=a3519e1e-ee3f-455d-bedc-cea51757401c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Ubuntu 使用配置点滴 (2)</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/08/13/Ubuntu%e4%bd%bf%e7%94%a8%e9%85%8d%e7%bd%ae%e7%82%b9%e6%bb%b42.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,5cf0cd30-650e-4d87-8929-e7f97d6b8c4d.aspx</id>
    <published>2008-08-13T21:35:41.523+08:00</published>
    <updated>2008-08-13T18:19:36.716875+08:00</updated>
    <category term="其它技术" label="其它技术" scheme="http://www.hifar.com/blog/CategoryView,category,%e5%85%b6%e5%ae%83%e6%8a%80%e6%9c%af.aspx" />
    <category term="系统相关" label="系统相关" scheme="http://www.hifar.com/blog/CategoryView,category,%e7%b3%bb%e7%bb%9f%e7%9b%b8%e5%85%b3.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
6. 安装桌面系统中文支持
</p>
        <p>
sudo apt-get install language-pack-gnome-zh language-pack-gnome-zh-base language-pack-zh
language-pack-zh-base language-support-zh<br /></p>
        <p>
7. 查看安装后到什么位置的详细信息
</p>
        <p>
dpkg -L package-name|more
</p>
        <p>
8. 修改安装源 source list
</p>
        <p>
sudo gedit /etc/apt/sources.list
</p>
        <p>
9. Diable ipv6<br />
今天装好Ubuntu 发现网连不上 查看后， 看到eth0 只有ipv6 协议， 没有ipv4<br />
尝试disable ipv6 后 问题解决：
</p>
        <p>
在/etc/modprobe.d/blacklist 文件中加一行：<br />
blacklist ipv6
</p>
        <p>
10. 在ubuntu 8.0.4 中安装vnc 
<br />
sudo apt-get install vnc4server<br />
装好运行报错： vncpasswd: error while loading shared libraries: libstdc++-libc6.1-1.so.3:
cannot open shared object file: No such file or directory 
</p>
        <p>
原来是 8.0.4 中少了个libstdc++-libc6.1-1.so.3，下载了libstdc++2.10-glibc2.2， 把里面的libstdc++-libc6.1-1.so.3
放到/usr/lib ，问题解决。
</p>
        <p>
11. 安装deb 包：sudo dpkg -i package_file.deb<br />
反安装 sudo dpkg -r package_name
</p>
        <p>
另有一个软件叫alien 可转换deb包和rpm包等。
</p>
        <p>
          <br />
          <br />
 
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=5cf0cd30-650e-4d87-8929-e7f97d6b8c4d" />
      </div>
    </content>
  </entry>
  <entry>
    <title>项目客户分析</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/07/25/%e9%a1%b9%e7%9b%ae%e5%ae%a2%e6%88%b7%e5%88%86%e6%9e%90.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,8b8cdc06-b4c3-4218-8b41-9a14abe0c35c.aspx</id>
    <published>2008-07-25T16:32:03.451+08:00</published>
    <updated>2008-07-27T22:16:20.564125+08:00</updated>
    <category term="管理和思考" label="管理和思考" scheme="http://www.hifar.com/blog/CategoryView,category,%e7%ae%a1%e7%90%86%e5%92%8c%e6%80%9d%e8%80%83.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
客户不是上帝， 但是客户决定了你项目的费用， 时间和需求。客户的情况各有不同， 在项目事实真，若不根据客户的实际情况进行沟通和管理， 也许真会弄巧成拙。
</p>
        <p>
A/A分析法，
</p>
        <p>
          <strong>A</strong>bility (能力) 和 <strong>A</strong>ttitude (态度) 是客户两个重要指标。
</p>
        <p>
Ability (能力)：这里指业务能力和技术能力。客户的能力直接决定了项目和合作方式。Attitude (态度) ：这里指客户的友善程度。也许有人会问， 为何客户的友善程度这种软性指标会作为客户的重要属性呢？
客户的态度其实会直接影响 Team 的情绪。毕竟做项目很多情况还是和人打交道。  项目经理在制定沟通模型 和激励团队时， 应该把客户的友善程度作为一个重要的考虑因数。
</p>
        <p>
我们来看下图:
</p>
        <p>
 
</p>
        <p>
        </p>
        <p>
          <img src="http://www.hifar.com/blog/content/binary/CustomerAAModel.png" border="0" />
        </p>
        <p>
对于能力强的客户(B区和C区)， 客户会更多的处于主导地位， 客户很清楚直接需求和需要的结果。 对于这种项目， 应该更多的征求客户的意见以及阶段checkpoint。
反之对于能力弱的客户（A区和D区），项目团队会更加主动， 但对于项目团队的能力要求会更加高， 同时需要对客户更多的引导。
</p>
        <p>
至于Attitude 方面， D 区和B区比较友善的客户当然是最好的， 但很多情况下， 我们会遇到比较强硬的客户（A区和C区）， 这个时候作为项目经理， 可能会要更多的关系team的情绪，
多做激励， 同时， 在合适的时候，也可以作出强硬的回应。
</p>
        <p>
除此以外， A/A分析需要考虑： 
</p>
        <p>
1）X轴 Ability 和 Y轴Attitude 也应该综合起来考虑。<br />
2）客户是一个群体， 并不是个人， 群体中不同的人态度和能力也会不同， 应该综合考虑。
</p>
        <p>
A/A 分析并不是涵盖了客户的所有因素。 但是我想说的是，Attitude 和 Ability 是客户的两个重要指标， 在每个项目经理管理项目的时候， 都应该考虑这些因素。
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=8b8cdc06-b4c3-4218-8b41-9a14abe0c35c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>项目经理为谁负责？</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/07/25/%e9%a1%b9%e7%9b%ae%e7%bb%8f%e7%90%86%e4%b8%ba%e8%b0%81%e8%b4%9f%e8%b4%a3.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,55959ea1-7d1d-4edb-9af2-1ed85daf8979.aspx</id>
    <published>2008-07-25T15:36:17.107375+08:00</published>
    <updated>2008-07-25T15:36:17.107375+08:00</updated>
    <category term="管理和思考" label="管理和思考" scheme="http://www.hifar.com/blog/CategoryView,category,%e7%ae%a1%e7%90%86%e5%92%8c%e6%80%9d%e8%80%83.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
有些看似简单的问题也许正常常困扰我们。
</p>
        <p>
作为项目经理， 是该为谁负责呢？ 也就是应该代表谁的利益呢？
</p>
        <p>
如果有以下答案， 你会选哪个？
</p>
        <p>
a) 项目的客户
</p>
        <p>
b) 项目厉害关系人
</p>
        <p>
c) 项目经理的老板
</p>
        <p>
d) 项目团队
</p>
        <p>
不同的项目经理也许会给出完全不同的答案，看似简单的问题， 也需只有项目经理深陷各种conflict中的时候才能够真正体会。
</p>
        <p>
        </p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=55959ea1-7d1d-4edb-9af2-1ed85daf8979" />
      </div>
    </content>
  </entry>
  <entry>
    <title>访问 Flickr</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/06/29/%e8%ae%bf%e9%97%aeFlickr.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,bc99daa4-f3a5-49be-998e-ac67f00790b9.aspx</id>
    <published>2008-06-29T09:50:59.5482663+08:00</published>
    <updated>2008-06-29T09:50:59.5482663+08:00</updated>
    <category term="其它" label="其它" scheme="http://www.hifar.com/blog/CategoryView,category,%e5%85%b6%e5%ae%83.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
国内访问Flickr 有限制. Firefox使用<font color="#0000ff">Access Flickr!</font> 插件就能解决. 
</p>
        <p>
          <a href="https://addons.mozilla.org/en-US/firefox/addon/4286">https://addons.mozilla.org/en-US/firefox/addon/4286</a>
        </p>
        <p>
用firefox下载后安装插件即可, 无需额外的设置.重启firefox 就能用了!
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=bc99daa4-f3a5-49be-998e-ac67f00790b9" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Flash and Webservice</title>
    <link rel="alternate" type="text/html" href="http://www.hifar.com/blog/2008/06/19/FlashAndWebservice.aspx" />
    <id>http://www.hifar.com/blog/PermaLink,guid,d38cad10-2fc5-4675-8629-ba0ad5ff856f.aspx</id>
    <published>2008-06-19T22:07:09.02375+08:00</published>
    <updated>2008-06-19T22:07:09.02375+08:00</updated>
    <category term="Flash" label="Flash" scheme="http://www.hifar.com/blog/CategoryView,category,Flash.aspx" />
    <category term="Flex" label="Flex" scheme="http://www.hifar.com/blog/CategoryView,category,Flex.aspx" />
    <category term="RIA" label="RIA" scheme="http://www.hifar.com/blog/CategoryView,category,RIA.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
最近发现个很郁闷的事情:
</p>
        <p>
以前用flash (AS2) 调用web service的地方现在都是会出现奇怪的毛病, 有不少浏览器上出现flash 在获取了WSDL 以后, 不发出调用web
service的请求. 貌似bug. 最近又看了Flash AS3的远程调用, 竟然完全没有了对Web service的支持.  仅flex框架中提供了对web
service的支持. 所以, 如果是简单的后台数据调用, 还是用post方式吧. 
</p>
        <img width="0" height="0" src="http://www.hifar.com/blog/aggbug.ashx?id=d38cad10-2fc5-4675-8629-ba0ad5ff856f" />
      </div>
    </content>
  </entry>
</feed>