<?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>Lisong&#039;s Blog</title>
	<atom:link href="http://www.imwls.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imwls.com</link>
	<description>stay away from the programming</description>
	<lastBuildDate>Sat, 13 Mar 2010 08:29:04 +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>Asp.net动态加载用户自定义控件,并转换成HTML代码</title>
		<link>http://www.imwls.com/asp-net-ajax-load-usercontrol-convert-html/</link>
		<comments>http://www.imwls.com/asp-net-ajax-load-usercontrol-convert-html/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 08:29:04 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Asp.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1216</guid>
		<description><![CDATA[Ajax现在已经是相当流行的技术了，Ajax不仅是想服务器端发送消息，更重要的是无刷新的重载页面。

如果页面单纯的使用js来创建，要写大量的代码，而且不直观。

在asp.net中，其实我们可以创建用户自定义控件，通过Ajax请求返回用户自定义控件HTML代码。

<span class="readmore"><a href="http://www.imwls.com/asp-net-ajax-load-usercontrol-convert-html/" title="Asp.net动态加载用户自定义控件,并转换成HTML代码">阅读全文——共529字</a></span>]]></description>
			<content:encoded><![CDATA[<p>Ajax现在已经是相当流行的技术了，Ajax不仅是想服务器端发送消息，更重要的是无刷新的重载页面。</p>
<p>如果页面单纯的使用js来创建，要写大量的代码，而且不直观。</p>
<p>在asp.net中，其实我们可以创建用户自定义控件，通过Ajax请求返回用户自定义控件HTML代码。</p>
<p><span id="more-1216"></span></p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span> RangerUsControl<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> controlName<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
      StringBuilder build <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> StringBuilder<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      HtmlTextWriter htmlWriter <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> HtmlTextWriter<span style="color: #000000;">&#40;</span><span style="color: #008000;">new</span> StringWriter<span style="color: #000000;">&#40;</span>build<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      UserControl uc <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> UserControl<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      Control ctrl<span style="color: #008000;">=</span>uc.<span style="color: #0000FF;">LoadControl</span><span style="color: #000000;">&#40;</span>controlName<span style="color: #008000;">+</span><span style="color: #666666;">&quot;.ascx&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><span style="color: #008080; font-style: italic;">//加载用户定义控件</span>
      htmlWriter.<span style="color: #0000FF;">Flush</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      <span style="color: #FF0000;">string</span> result<span style="color: #008000;">;</span>
      <span style="color: #0600FF;">try</span>
      <span style="color: #000000;">&#123;</span>
           ctrl.<span style="color: #0000FF;">RenderControl</span><span style="color: #000000;">&#40;</span>htmlWriter<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      <span style="color: #000000;">&#125;</span>
      <span style="color: #0600FF;">catch</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#125;</span>
      <span style="color: #0600FF;">finally</span>
      <span style="color: #000000;">&#123;</span>
           htmlWriter.<span style="color: #0000FF;">Flush</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
           result<span style="color: #008000;">=</span>build.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
      <span style="color: #000000;">&#125;</span>
      <span style="color: #0600FF;">return</span> result<span style="color: #008000;">;</span><span style="color: #008080; font-style: italic;">//返回控件的HTML代码</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/asp-net-ajax-load-usercontrol-convert-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>《换大米进行曲》</title>
		<link>http://www.imwls.com/huan-da-mi-jin-xing-qu/</link>
		<comments>http://www.imwls.com/huan-da-mi-jin-xing-qu/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:45:55 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1212</guid>
		<description><![CDATA[超强的经典歌曲接龙串烧《换 大米进行曲》，据说是中国传媒大学的学生作品，比古巨基的串烧还要猛哈，雷死人呐不偿命 啊～爱上一个不回家的人，有啥不一样~搞笑 死了都要爱，在电线杆上多嘴……

]]></description>
			<content:encoded><![CDATA[<p>超强的经典歌曲接龙串烧《<a href="http://www.ipc.me/huan-da-mi-jin-xing-qu.html">换 大米进行曲</a>》，据说是中国传媒大学的学生作品，比古巨基的<a href="http://www.ipc.me/huan-da-mi-jin-xing-qu.html">串烧</a>还要猛哈，雷死人呐不偿命 啊～爱上一个不回家的人，有啥不一样~搞笑 死了都要爱，在电线杆上多嘴……</p>
<p><span id="more-1212"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="align" value="middle" /><param name="src" value="http://player.youku.com/player.php/sid/XMTQ0NzcwNDM2/v.swf" /><param name="quality" value="high" /><embed type="application/x-shockwave-flash" width="480" height="400" src="http://player.youku.com/player.php/sid/XMTQ0NzcwNDM2/v.swf" quality="high" align="middle"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/huan-da-mi-jin-xing-qu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>流行的jQuery信息提示插件(jQuery Tooltip Plugin)</title>
		<link>http://www.imwls.com/30-jquery-tooltip-plugin/</link>
		<comments>http://www.imwls.com/30-jquery-tooltip-plugin/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 00:27:10 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1175</guid>
		<description><![CDATA[信息提示虽然是小东西，但是在网站设计中却起到了巨大的作用。如果你网站的信息提示做的好，会给访客留下非常深刻的印象。下面有30个非常流行的jQuery信息提示插件，希望对各位有所帮助。记住，所有的这些都是为了使网站设计更好。  



1.  Dynamic tooltip

<span class="readmore"><a href="http://www.imwls.com/30-jquery-tooltip-plugin/" title="流行的jQuery信息提示插件(jQuery Tooltip Plugin)">阅读全文——共3991字</a></span>]]></description>
			<content:encoded><![CDATA[<p>信息提示虽然是小东西，但是在网站设计中却起到了巨大的作用。如果你网站的信息提示做的好，会给访客留下非常深刻的印象。下面有30个非常流行的jQuery信息提示插件，希望对各位有所帮助。记住，所有的这些都是为了使网站设计更好。 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </p>
<p><span id="more-1175"></span></p>
<h3><a href="http://flowplayer.org/tools/tooltip.html" target="_blank">1.  Dynamic tooltip</a></h3>
<p>非常漂亮的tooltip！有渐变、透明、阴影等效果。</p>
<div id="attachment_1177" class="wp-caption alignnone" style="width: 580px"><a href="http://flowplayer.org/tools/tooltip.html" target="_blank"><img class="size-full wp-image-1177 " title="flowplayer-dynamic-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/flowplayer-dynamic-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="Dynamic tooltip" width="570" height="178" /></a><p class="wp-caption-text">Dynamic tooltip</p></div>
<h3><a href="http://www.dvq.co.nz/web-design/create-a-jquery-popup-bubble-effect/" target="_blank">2. Popup Bubble</a></h3>
<p>优秀的tooltip！虽然看起来简单，但是过渡效果非常棒，适用于简单干净的网站。</p>
<div id="attachment_1179" class="wp-caption alignnone" style="width: 580px"><a href="http://www.dvq.co.nz/web-design/create-a-jquery-popup-bubble-effect/" target="_blank"><img class="size-full wp-image-1179 " title="dvq-popup-bubble-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/dvq-popup-bubble-jquery-tooltip-plugin-for-web-design.jpg" alt="Popup Bubble" width="570" height="109" /></a><p class="wp-caption-text">Popup Bubble</p></div>
<h3><a href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials" target="_blank">3. jQuery Horizontal Tooltips Menu Tutorials</a></h3>
<p>精美的tooltip！提示信息不会消失，除非你点击其它链接。看起来非常简单，但是它的动画效果却非常棒。</p>
<div id="attachment_1180" class="wp-caption alignnone" style="width: 580px"><a href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials" target="_blank"><img class="size-full wp-image-1180 " title="queness-horizontal-tooltips-menu-tutorials-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/queness-horizontal-tooltips-menu-tutorials-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="185" /></a><p class="wp-caption-text">jQuery Horizontal Tooltips Menu Tutorials</p></div>
<h3><a href="http://www.nickstakenburg.com/projects/prototip2/" target="_blank">4. Prototip</a></h3>
<p>多种多样的提示效果，极有效的简化工作过程。</p>
<div id="attachment_1181" class="wp-caption alignnone" style="width: 580px"><a href="http://www.nickstakenburg.com/projects/prototip2/" target="_blank"><img class="size-full wp-image-1181 " title="nickstakenburg-prototip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/nickstakenburg-prototip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="333" /></a><p class="wp-caption-text">Prototip</p></div>
<h3><a href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank">5. Coda Popup Bubble</a></h3>
<p>非常漂亮的信息提示，有过渡效果和背景阴影。</p>
<div id="attachment_1182" class="wp-caption alignnone" style="width: 580px"><a href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank"><img class="size-full wp-image-1182 " title="jqueryfordesigners-coda-popup-bubble-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/jqueryfordesigners-coda-popup-bubble-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="180" /></a><p class="wp-caption-text">Coda Popup Bubble</p></div>
<h3><a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank">6. Awesomeness</a></h3>
<p>非常酷的信息提示，平滑的过渡效果，并且有透明边框。</p>
<div id="attachment_1184" class="wp-caption alignnone" style="width: 580px"><a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank"><img class="size-full wp-image-1184 " title="nettuts-s3-cdn-plus-awesomeness-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/nettuts-s3-cdn-plus-awesomeness-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="174" /></a><p class="wp-caption-text">Awesomeness</p></div>
<h3><a href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank">7. TipTip</a></h3>
<p>漂亮的信息提示，有淡入淡出过渡效果，幻灯、阴影特效。</p>
<div id="attachment_1185" class="wp-caption alignnone" style="width: 580px"><a href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank"><img class="size-full wp-image-1185 " title="code-drewwilson-tiptip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/code-drewwilson-tiptip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="111" /></a><p class="wp-caption-text">TipTip</p></div>
<h3><a href="http://pupunzi.open-lab.com/2009/02/07/mbtooltip/" target="_blank">8. (mb)Tooltip</a></h3>
<p>这个是为输入框开发的信息提示，过渡效果美观。</p>
<div id="attachment_1186" class="wp-caption alignnone" style="width: 580px"><a href="http://pupunzi.open-lab.com/2009/02/07/mbtooltip/" target="_blank"><img class="size-full wp-image-1186 " title="pupunzi-mb-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/pupunzi-mb-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="129" /></a><p class="wp-caption-text">(mb)Tooltip</p></div>
<h3><a href="http://www.vertigo-project.com/projects/vtip" target="_blank">9. vTip</a></h3>
<p>简单但是非常好的信息提示，有淡入效果。</p>
<div id="attachment_1187" class="wp-caption alignnone" style="width: 580px"><a href="http://www.vertigo-project.com/projects/vtip" target="_blank"><img class="size-full wp-image-1187 " title="vertigo-project-vtip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/vertigo-project-vtip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="312" /></a><p class="wp-caption-text">vTip</p></div>
<h3><a href="http://stanlemon.net/projects/jgrowl.html" target="_blank">10.  jGrowl</a></h3>
<p>当点击链接时淡入出现，然后固定在右上角，一段时间后自动消失，或者可以手动关闭。</p>
<div id="attachment_1188" class="wp-caption alignnone" style="width: 580px"><a href="http://stanlemon.net/projects/jgrowl.html" target="_blank"><img class="size-full wp-image-1188 " title="stanlemon-jgrowl-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/stanlemon-jgrowl-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="177" /></a><p class="wp-caption-text">jGrowl</p></div>
<h3><a href="http://rndnext.blogspot.com/2009/02/jquery-ajax-tooltip.html" target="_blank">11. jQuery Ajax Tooltip</a></h3>
<p>有趣的信息提示，可以处理像小型网页图片和文字。它有一个阴影效果。</p>
<div id="attachment_1189" class="wp-caption alignnone" style="width: 580px"><a href="http://rndnext.blogspot.com/2009/02/jquery-ajax-tooltip.html" target="_blank"><img class="size-full wp-image-1189 " title="rndnext-blogspot-jquery-ajax-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/rndnext-blogspot-jquery-ajax-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="357" /></a><p class="wp-caption-text">jQuery Ajax Tooltip</p></div>
<h3><a href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank">12. Digg-style post sharing tool with jQuery</a></h3>
<p>漂亮的digg样式，适用于社交网站。</p>
<div id="attachment_1190" class="wp-caption alignnone" style="width: 580px"><a href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank"><img class="size-full wp-image-1190 " title="queness-digg-style-post-sharing-tool-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/queness-digg-style-post-sharing-tool-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="173" /></a><p class="wp-caption-text">Digg-style post sharing tool with jQuery</p></div>
<h3><a href="http://nicolae.namolovan.googlepages.com/jquery.inputHintBox.html" target="_blank">13. Input Floating Hint Box</a></h3>
<p>有趣的输入框提示，边框为圆角。输入框获得焦点时淡入，点击其它地方淡出。</p>
<div id="attachment_1191" class="wp-caption alignnone" style="width: 580px"><a href="http://nicolae.namolovan.googlepages.com/jquery.inputHintBox.html" target="_blank"><img class="size-full wp-image-1191 " title="nicolae-namolovan-googlepages-input-hint-box-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/nicolae-namolovan-googlepages-input-hint-box-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="142" /></a><p class="wp-caption-text">Input Floating Hint Box</p></div>
<h3><a href="http://craigsworks.com/projects/simpletip/" target="_blank">14.  Simpletip</a></h3>
<p>漂亮的提示与褪色的过渡。将鼠标悬停在链接上，tooltip淡入在链接的上方或者下方。</p>
<div id="attachment_1192" class="wp-caption alignnone" style="width: 580px"><a href="http://craigsworks.com/projects/simpletip/" target="_blank"><img class="size-full wp-image-1192 " title="simpletip-craigsworks-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/simpletip-craigsworks-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="178" /></a><p class="wp-caption-text">Simpletip</p></div>
<h3><a href="http://craigsworks.com/projects/qtip/" target="_blank">15.  qTip</a></h3>
<p>很简单，但 好看的提示。可以圆角，说话提示的样式。</p>
<div id="attachment_1193" class="wp-caption alignnone" style="width: 580px"><a href="http://craigsworks.com/projects/qtip/" target="_blank"><img class="size-full wp-image-1193 " title="craigsworks-qtip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/craigsworks-qtip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="156" /></a><p class="wp-caption-text">qTip</p></div>
<h3><a href="http://www.userfirst.com/our-blog/2008/12/01/orbital-tooltip/" target="_blank">16. Orbital Tooltip</a></h3>
<p>有趣的提示插件，您可以手动设定在您需要的时间出现。</p>
<div id="attachment_1194" class="wp-caption alignnone" style="width: 580px"><a href="http://www.userfirst.com/our-blog/2008/12/01/orbital-tooltip/" target="_blank"><img class="size-full wp-image-1194 " title="userfirst-orbital-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/userfirst-orbital-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="179" /></a><p class="wp-caption-text">Orbital Tooltip</p></div>
<h3><a href="http://www.javascriptkit.com/script/script2/htmltooltip.shtml" target="_blank">17. Inline HTML Tooltip</a></h3>
<p>漂亮的提示，有过渡效果。</p>
<div id="attachment_1195" class="wp-caption alignnone" style="width: 580px"><a href="http://www.javascriptkit.com/script/script2/htmltooltip.shtml" target="_blank"><img class="size-full wp-image-1195 " title="javascriptkit-inline-html-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/javascriptkit-inline-html-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="73" /></a><p class="wp-caption-text">Inline HTML Tooltip</p></div>
<h3><a href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank">18. tipsy</a></h3>
<div id="attachment_1196" class="wp-caption alignnone" style="width: 580px"><a href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank"><img class="size-full wp-image-1196 " title="onehackoranother-tipsy-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/onehackoranother-tipsy-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="72" /></a><p class="wp-caption-text">tipsy</p></div>
<h3><a href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank">19. Easiest jQuery Tooltip Ever</a></h3>
<div id="attachment_1197" class="wp-caption alignnone" style="width: 580px"><a href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank"><img class="size-full wp-image-1197 " title="cssglobe-easiest-jquery-tooltip-ever-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/cssglobe-easiest-jquery-tooltip-ever-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="233" /></a><p class="wp-caption-text">Easiest jQuery Tooltip Ever</p></div>
<h3><a href="http://benchsketch.com/bquery/index.html" target="_blank">20.  BsTip</a></h3>
<div id="attachment_1198" class="wp-caption alignnone" style="width: 580px"><a href="http://benchsketch.com/bquery/index.html" target="_blank"><img class="size-full wp-image-1198 " title="benchsketch-bstip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/benchsketch-bstip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="108" /></a><p class="wp-caption-text">BsTip</p></div>
<h3><a href="http://theezpzway.com/demos/ezpz-tooltip" target="_blank">21.  EZPZ Tooltip</a></h3>
<div id="attachment_1199" class="wp-caption alignnone" style="width: 580px"><a href="http://theezpzway.com/demos/ezpz-tooltip" target="_blank"><img class="size-full wp-image-1199 " title="theezpzway-ezpz-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/theezpzway-ezpz-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="174" /></a><p class="wp-caption-text">EZPZ Tooltip</p></div>
<h3><a href="http://www.lullabot.com/files/bt/bt-latest/DEMO/index.html" target="_blank">22. BeautyTips</a></h3>
<div id="attachment_1200" class="wp-caption alignnone" style="width: 580px"><img class="size-full wp-image-1200 " title="lullabot-beautytips-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/lullabot-beautytips-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="130" /><p class="wp-caption-text">BeautyTips</p></div>
<h3><a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank">23. Tooltip </a></h3>
<div id="attachment_1201" class="wp-caption alignnone" style="width: 580px"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank"><img class="size-full wp-image-1201 " title="bassistance-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/bassistance-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="175" /></a><p class="wp-caption-text">Tooltip</p></div>
<h3><a href="http://plugins.learningjquery.com/cluetip/" target="_blank">24.  clueTip</a></h3>
<p>简单的提示，当鼠标悬停在链接上时出现，直到你关闭它才会消失。</p>
<div id="attachment_1202" class="wp-caption alignnone" style="width: 580px"><a href="http://plugins.learningjquery.com/cluetip/" target="_blank"><img class="size-full wp-image-1202 " title="plugins-learning-jquery-cluetip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/plugins-learning-jquery-cluetip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="107" /></a><p class="wp-caption-text">clueTip</p></div>
<h3><a href="http://blufusion.net/2009/07/27/creating-a-simple-tooltip-using-jquery-and-css/" target="_blank">25. Creating A Simple Tooltip Using jQuery and CSS</a></h3>
<p>几个简单但是不同的提示。</p>
<div id="attachment_1203" class="wp-caption alignnone" style="width: 580px"><a href="http://blufusion.net/2009/07/27/creating-a-simple-tooltip-using-jquery-and-css/" target="_blank"><img class="size-full wp-image-1203 " title="demos-blufusion-jquery-tooltips-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/demos-blufusion-jquery-tooltips-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="116" /></a><p class="wp-caption-text">Creating A Simple Tooltip Using jQuery and CSS</p></div>
<h3><a href="http://edgarverle.com/BetterTip/default.cfm" target="_blank">26. BetterTip</a></h3>
<p>Tooltip出现在链接的右边。</p>
<div id="attachment_1204" class="wp-caption alignnone" style="width: 580px"><a href="http://edgarverle.com/BetterTip/default.cfm" target="_blank"><img class="size-full wp-image-1204 " title="edgarverle-bettertip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/edgarverle-bettertip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="77" /></a><p class="wp-caption-text">BetterTip</p></div>
<h3><a href="http://codylindley.com/Javascript/264/jtip-a-jquery-tool-tip" target="_blank">27. jTip</a></h3>
<p>简单但是对于登录页面非常有用。</p>
<div id="attachment_1205" class="wp-caption alignnone" style="width: 580px"><a href="http://codylindley.com/Javascript/264/jtip-a-jquery-tool-tip" target="_blank"><img class="size-full wp-image-1205 " title="codylindley-jtip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/codylindley-jtip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="181" /></a><p class="wp-caption-text">jTip</p></div>
<h3><a href="http://hernan.amiune.com/labs/jQuery-Tooltip-Plugin/jQuery-Tooltip-Plugin.html" target="_blank">28. jqTooltip</a></h3>
<p>简单的ajax加载效果，可以淡入淡出。</p>
<div id="attachment_1206" class="wp-caption alignnone" style="width: 580px"><a href="http://hernan.amiune.com/labs/jQuery-Tooltip-Plugin/jQuery-Tooltip-Plugin.html" target="_blank"><img class="size-full wp-image-1206 " title="hernan-amiune-jqtooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/hernan-amiune-jqtooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="108" /></a><p class="wp-caption-text">jqTooltip</p></div>
<h3><a href="http://pop.seaofclouds.com/" target="_blank">29. Pop!</a></h3>
<div id="attachment_1207" class="wp-caption alignnone" style="width: 580px"><a href="http://pop.seaofclouds.com/" target="_blank"><img class="size-full wp-image-1207 " title="pop-seaofclouds-pop-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/pop-seaofclouds-pop-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="294" /></a><p class="wp-caption-text">Pop!</p></div>
<h3><a href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery" target="_blank">30. Create a Simple CSS + Javascript Tooltip with  jQuery</a></h3>
<p>Simple tooltip with rounded corners. It follows your mouse movements.</p>
<p>简单的圆角tooltip，随鼠标移动。</p>
<div id="attachment_1208" class="wp-caption alignnone" style="width: 580px"><a href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery" target="_blank"><img class="size-full wp-image-1208 " title="queness-simple-css-javascript-tooltip-jquery-tooltip-plugin-for-web-design" src="http://www.imwls.com/wp-content/uploads/2010/03/queness-simple-css-javascript-tooltip-jquery-tooltip-plugin-for-web-design.jpg" alt="" width="570" height="142" /></a><p class="wp-caption-text">Create a Simple CSS + Javascript Tooltip with jQuery</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/30-jquery-tooltip-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>为jQuery Validator插件增加日期比较</title>
		<link>http://www.imwls.com/jquery-validator-date-compare-function/</link>
		<comments>http://www.imwls.com/jquery-validator-date-compare-function/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:41:54 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1171</guid>
		<description><![CDATA[刚刚开始了一个新的项目，其中在Keyin data时需要进行日期大小的比较，而非常流行的jQuery Validator虽然已经包含了丰富的验证方法，可还是没法进行日期大小的比较，不过这个插件支持自定义方法，嘿嘿，这就好办。





<span class="readmore"><a href="http://www.imwls.com/jquery-validator-date-compare-function/" title="为jQuery Validator插件增加日期比较">阅读全文——共670字</a></span>]]></description>
			<content:encoded><![CDATA[<p>刚刚开始了一个新的项目，其中在Keyin data时需要进行日期大小的比较，而非常流行的jQuery Validator虽然已经包含了丰富的验证方法，可还是没法进行日期大小的比较，不过这个插件支持自定义方法，嘿嘿，这就好办。<br />
<span id="more-1171"></span></p>

<div class="wp_syntax"><div class="code"><pre class="javascript">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&lt; %= btnSubmit.ClientID %&gt;&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#aspnetForm&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">validate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
            rules<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span>
                ctl00$ContentPlaceHolder1$ucProjInfo1$ucDatePicker2$txtDatePicker<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span>
                    required<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>
                    date<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>
                    <span style="color: #006600; font-style: italic;">//日期比较验证方法</span>
                    endDate<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span>
                <span style="color: #009900;">&#125;</span>
            <span style="color: #009900;">&#125;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #006600; font-style: italic;">//自定义验证方法</span>
    jQuery.<span style="color: #660066;">validator</span>.<span style="color: #660066;">addMethod</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;endDate&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>value<span style="color: #339933;">,</span> element<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #003366; font-weight: bold;">var</span> startDate <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#start_date'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span>Date.<span style="color: #660066;">parse</span><span style="color: #009900;">&#40;</span>startDate.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span>Date.<span style="color: #660066;">parse</span><span style="color: #009900;">&#40;</span>value.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
    <span style="color: #3366CC;">&quot;结束日期必须大于开始日期!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>其实方法还是挺简单的 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
<div class="note"><div class="notetip">jQuery Validation:<a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation" target="_blank">http://bassistance.de/jquery-plugins/jquery-plugin-validation</a></div></div></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/jquery-validator-date-compare-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>善用IE的条件注释语句</title>
		<link>http://www.imwls.com/conditional-comments-ie/</link>
		<comments>http://www.imwls.com/conditional-comments-ie/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 01:14:33 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1093</guid>
		<description><![CDATA[在做前端开发时，由于IE浏览器的特殊性，通常都需要针对不同的IE版本做特别的处理。比如在处理CSS布局时，经常需要用到IE Hack，这里就需要要使用if IE。IE浏览器的条件注释虽不太常用，却异常强大，不仅可以区分是否是IE浏览器，而且可以用来区分IE浏览器版本。



&#60;!--[if IE]&#62; Only IE &#60;![endif]--&#62;所有的IE可识别

<span class="readmore"><a href="http://www.imwls.com/conditional-comments-ie/" title="善用IE的条件注释语句">阅读全文——共761字</a></span>]]></description>
			<content:encoded><![CDATA[<p>在做前端开发时，由于IE浏览器的特殊性，通常都需要针对不同的IE版本做特别的处理。比如在处理CSS布局时，经常需要用到IE Hack，这里就需要要使用if IE。IE浏览器的条件注释虽不太常用，却异常强大，不仅可以区分是否是IE浏览器，而且可以用来区分IE浏览器版本。<span id="more-1093"></span></p>
<ul style="line-height: 26px; border: 1px #ccc solid; padding: 3px 25% 3px 10px; -webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px; background: #EBF3FC;-webkit-box-shadow:4px 2px 5px #ccc;-moz-box-shadow:4px 2px 5px #ccc;">
<li>&lt;!--[if IE]&gt; Only IE &lt;![endif]--&gt;<span style="float: right;">所有的IE可识别</span></li>
<li>&lt;!--[if IE 5.0]&gt; Only IE 5.0 &lt;![endif]--&gt;<span style="float: right;">只有IE5.0可以识别</span></li>
<li>&lt;!--[if gt IE 5.0]&gt; Only IE 5.0+ &lt;![endif]--&gt;<span style="float: right;">高于IE5.0都可以识别</span></li>
<li>&lt;!--[if lt IE 6]&gt; Only IE 6- &lt;![endif]--&gt;<span style="float: right;">低于IE6可识别</span></li>
<li>&lt;!--[if gte IE 6]&gt; Only IE 6/+ &lt;![endif]--&gt;<span style="float: right;">IE6以及IE6以上都可识别</span></li>
<li>&lt;!--[if lte IE 7]&gt; Only IE 7/- &lt;![endif]--&gt;<span style="float: right;">IE7及IE7以下版本可识别</span></li>
</ul>
<ul style="line-height: 26px; border: 1px #ccc solid; padding: 3px 10px; margin-top: 10px; -webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px; background: #EBF3FC;-webkit-box-shadow:4px 2px 5px #ccc;-moz-box-shadow:4px 2px 5px #ccc;">
<li><span style="color: blue; margin-right: 7px; margin-left: 5px;">lte</span>：就是Less than or equal to的简写，<span style="color: blue;">也就是小于或等于的意思</span>。</li>
<li><span style="color: blue; margin-right: 14px; margin-left: 5px;">lt</span>：就是Less than的简写，<span style="color: blue;">也就是小于的意思</span>。</li>
<li><span style="color: blue; margin-right: 1px; margin-left: 5px;">gte</span>：就是Greater than or equal to的简写，<span style="color: blue;">也就是大于或等于的意思</span>。</li>
<li><span style="color: blue; margin-right: 7px; margin-left: 5px;">gt</span>：就是Greater than的简写，<span style="color: blue;">也就是大于的意思</span>。</li>
<li><span style="color: blue; margin-right: 15px; margin-left: 5px;">!</span>：就是不等于的意思，<span style="color: blue;">跟javascript里的不等于判断符相同。</span></li>
</ul>
<p>看到这里只可能会觉得<!--[if !IE]> not IE< ![endif]-->这样不就可以了吗？如果你这样想就错了，因为非ie根本不会识别ie的条件注释，所以就直接全部是注释了，ok，来看看正确的写法吧。<br />
<code>&lt;!--[if !IE]&gt;&lt;--&gt;<br />
只有不是ie浏览器才能看到这里<br />
&lt;![endif]--&gt;</code></p>
<p>关键是条件注释后头的 &lt;–&gt; 在IE中被当作内部注释，而 在非IE浏览器中会闭合之前的注释，从而起到区分非IE浏览器的作用，一般常用&lt;!–&gt;。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/conditional-comments-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7新官方主题“春季”</title>
		<link>http://www.imwls.com/windows7-new-theme-czech-spring/</link>
		<comments>http://www.imwls.com/windows7-new-theme-czech-spring/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 23:51:50 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows7]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1089</guid>
		<description><![CDATA[转眼之间，严寒的冬天已经离我们远去，而春天则带着她特有的温和与明媚向我们走来，花草复苏令我们神往陶醉。在此，软件巨头微软为 Windows 7用户带来了特色的“春季主题”，更是让用户的眼前一亮。

与往常一样，这款名为“Czech Spring”的主题也是免费的，可以与最新一代Windows客户端Windows 7实现无缝集成。

Windows 7 “Czech Spring” 主题

<span class="readmore"><a href="http://www.imwls.com/windows7-new-theme-czech-spring/" title="Windows 7新官方主题“春季”">阅读全文——共722字</a></span>]]></description>
			<content:encoded><![CDATA[<p>转眼之间，严寒的冬天已经离我们远去，而春天则带着她特有的温和与明媚向我们走来，花草复苏令我们神往陶醉。在此，软件巨头微软为 Windows 7用户带来了特色的“春季主题”，更是让用户的眼前一亮。<span id="more-1089"></span></p>
<p>与往常一样，这款名为“Czech Spring”的主题也是免费的，可以与最新一代Windows客户端Windows 7实现无缝集成。</p>
<div class="wp-caption aligncenter" style="width: 610px"><a class="highslide-image" onclick="return hs.expand(this);" href="http://pic002.cnblogs.com/img/dudu/201003/2010030310302995.jpg"><img title="Windows 7 “Czech Spring” 主题" src="http://pic002.cnblogs.com/img/dudu/201003/2010030310302995.jpg" alt="image" width="600" height="450" /></a><p class="wp-caption-text">Windows 7 “Czech Spring” 主题</p></div>
<p>不过，值得注意的是，只有运行Windows 7操作系统的用户才能够使用这款免费的“Czech Spring”主题，Windows  7用户可以通过Windows个性化图库进行下载使用。换句话也就是说，Windows XP和Vista用户并不能下载和安装个性化图库中的主题。</p>
<p>此外，微软不仅仅自主研发适用于Windows 7的个性化主题，还与第三方合作伙伴合作，向用户推出众多的Windows  7炫酷主题。例如，早些时候，微软就针对Windows  7发布了以全球品牌广告为主的主题包，其中包括可口可乐、杜卡迪、法拉利、英菲尼迪、百事可乐、保时捷、二十一世纪福克斯等等。</p>
<p><div class="note"><div class="notetip">Windows 7个性化图库的地址为：<a href="http://windows.microsoft.com/en-US/windows/downloads/personalize">http://windows.microsoft.com/en-US/windows/downloads/personalize</a></p>
<p>此主题下载地址：<a href="http://download.microsoft.com/download/3/2/0/3204D366-20D1-4E80-BF16-C5AC46E75B0E/CeskeJaro.themepack" target="_blank">http://download.microsoft.com/download/3/2/0/3204D366-20D1-4E80-BF16-C5AC46E75B0E/CeskeJaro.themepack</a></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/windows7-new-theme-czech-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>最近很忙</title>
		<link>http://www.imwls.com/recently-busy/</link>
		<comments>http://www.imwls.com/recently-busy/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:49:16 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1087</guid>
		<description><![CDATA[由于年前提前请假回家了，所以回来后未完成的工作必须的结束。

并且这两天在自学C++，看的我头晕。深入了解了C++，才知道微软为.NET程序员提供了多大的方便、节省了多少的开发时间。上学时也学习过C/C++，不过那时对内存管理了解的实在太少，以至于即使有老师讲解也感觉困难重重，尤其是到了指针那块，我果断的放弃了   ，现在看来原来是这么简单。不过已经习惯了C#的现成的类库方法，再用C++，感觉忒麻烦。希望能够早点弄通基本的，以便早点研磨MFC，这个难度实在是不小。

]]></description>
			<content:encoded><![CDATA[<p>由于年前提前请假回家了，所以回来后未完成的工作必须的结束。</p>
<p>并且这两天在自学C++，看的我头晕。深入了解了C++，才知道微软为.NET程序员提供了多大的方便、节省了多少的开发时间。上学时也学习过C/C++，不过那时对内存管理了解的实在太少，以至于即使有老师讲解也感觉困难重重，尤其是到了指针那块，我果断的放弃了 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  ，现在看来原来是这么简单。不过已经习惯了C#的现成的类库方法，再用C++，感觉忒麻烦。希望能够早点弄通基本的，以便早点研磨MFC，这个难度实在是不小。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/recently-busy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>庚寅年新春快乐</title>
		<link>http://www.imwls.com/2010-happy-new-year/</link>
		<comments>http://www.imwls.com/2010-happy-new-year/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 02:01:59 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Living]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1077</guid>
		<description><![CDATA[简单的问一声好，真心的道一个平安。

人不如旧，衣不如新

木公祝大家新春快乐，身体健康，万事顺意！

<span class="readmore"><a href="http://www.imwls.com/2010-happy-new-year/" title="庚寅年新春快乐">阅读全文——共129字</a></span>]]></description>
			<content:encoded><![CDATA[<p>简单的问一声好，真心的道一个平安。<br />
人不如旧，衣不如新</p>
<p>木公祝大家新春快乐，身体健康，万事顺意！<span id="more-1077"></span><br />
[Audio clip: view full post to listen]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/2010-happy-new-year/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
<enclosure url="http://storage.live.com/items/8B99AC0F9DF0544F!246?filename=shadow%2001.mp3" length="3128424" type="audio/mpeg" />
		</item>
		<item>
		<title>年前二三事</title>
		<link>http://www.imwls.com/before-2010-lunar-new-year-something/</link>
		<comments>http://www.imwls.com/before-2010-lunar-new-year-something/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 09:00:27 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[生活]]></category>
		<category><![CDATA[碎碎念]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1069</guid>
		<description><![CDATA[连续两天的雷雨，终于迎来了年前的大雪，看到家门前的山头上白茫茫的一片，真想立刻就去山上转上一圈，没有雪地靴只能作罢。

想起小时候读过鲁迅的百草园一文，就和小妹一起参照捕鸟，结果守了一天也没逮着一只，鸟毛都没掉一根，懊丧之极，遂腹诽周先生骗小孩。后来老爸告诉我不要在家门口捕，得去山上，却已失了兴致。

由于家里的气温比起无锡来要低不少，此刻化雪感到寒冷异常，一直窝在房间里。看看小说，玩一玩以前喜欢的游戏，逗一逗妹妹，哈哈，还不至于无聊。

<span class="readmore"><a href="http://www.imwls.com/before-2010-lunar-new-year-something/" title="年前二三事">阅读全文——共320字</a></span>]]></description>
			<content:encoded><![CDATA[<p>连续两天的雷雨，终于迎来了年前的大雪，看到家门前的山头上白茫茫的一片，真想立刻就去山上转上一圈，没有雪地靴只能作罢。</p>
<p><span id="more-1069"></span><img class="alignright size-full wp-image-1070" title="snow" src="http://www.imwls.com/wp-content/uploads/2010/02/snow.gif" alt="" width="336" height="210" />想起小时候读过鲁迅的百草园一文，就和小妹一起参照捕鸟，结果守了一天也没逮着一只，鸟毛都没掉一根，懊丧之极，遂腹诽周先生骗小孩。后来老爸告诉我不要在家门口捕，得去山上，却已失了兴致。</p>
<p>由于家里的气温比起无锡来要低不少，此刻化雪感到寒冷异常，一直窝在房间里。看看小说，玩一玩以前喜欢的游戏，逗一逗妹妹，哈哈，还不至于无聊。</p>
<p>昨晚妮子那个小侄子告诉我，他小琴姑姑去了新疆，陪妮子过年。我火啊，那天晚上约好11点半的，我等到了第二天凌晨3点都没见人影，被放鸽子了。准备兴师问罪的，却已经找不着人了。嗯，希望她们在那边新年愉快，一切顺利。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/before-2010-lunar-new-year-something/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>人族 vs 暗夜</title>
		<link>http://www.imwls.com/terran-vs-night/</link>
		<comments>http://www.imwls.com/terran-vs-night/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 06:47:01 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1054</guid>
		<description><![CDATA[《阿凡达》就是人族挖暗夜的矿，暗夜没有攀技术树，前期被压制，基地树被干掉，暗夜只能出英雄，升级操控火龙，暴骑兵飞鸟，人族出动全部兵力，陆空配合强推暗夜，暗夜经过恶战，眼看就要GG了，突然出作弊器，地图上所有中立生物进攻人族，结果就是人族被翻盘。 最近的那部美国大片真的从宣传力度和人气角度来说很是震撼，影片的拍摄也是十年磨一剑那样的精致细腻和磅礴。大家的评论都是很好，我当时没有看，于是询问大家说，怎么好啦？大家基本一致的说，场景啦，好宏伟的；人物设计啦，好细致啦；演员阵容啊，都是以前卡梅隆的御用班底。我想几亿美元打造的就这点肤浅的东西么？我不理解，于是自己也亲身体会的看了看，发现真的想大家所说的一样，阿凡达只有这 3点是值得看的，剩下的几乎什么也没有，剧情上还不如冯小刚的集结号和非成勿扰。

<span class="readmore"><a href="http://www.imwls.com/terran-vs-night/" title="人族 vs 暗夜">阅读全文——共1890字</a></span>]]></description>
			<content:encoded><![CDATA[<p><div class="note"><div class="notetip">《阿凡达》就是人族挖暗夜的矿，暗夜没有攀技术树，前期被压制，基地树被干掉，暗夜只能出英雄，升级操控火龙，暴骑兵飞鸟，人族出动全部兵力，陆空配合强推暗夜，暗夜经过恶战，眼看就要GG了，突然出作弊器，地图上所有中立生物进攻人族，结果就是人族被翻盘。 </div></div><span id="more-1054"></span>最近的那部美国大片真的从宣传力度和人气角度来说很是震撼，影片的拍摄也是十年磨一剑那样的精致细腻和磅礴。大家的评论都是很好，我当时没有看，于是询问大家说，怎么好啦？大家基本一致的说，场景啦，好宏伟的；人物设计啦，好细致啦；演员阵容啊，都是以前卡梅隆的御用班底。我想几亿美元打造的就这点肤浅的东西么？我不理解，于是自己也亲身体会的看了看，发现真的想大家所说的一样，阿凡达只有这 3点是值得看的，剩下的几乎什么也没有，剧情上还不如冯小刚的集结号和非成勿扰。<br />
我想有脑子的同志们看了以后都会觉得阿凡达从剧本和情节上有很奇怪的地方，甚至是矛盾的情节设计。</p>
<p><strong>首先说</strong>，通篇到尾，我们发现打交道的双方竟然是一个公司和一个部落之间的矛盾！大家想一想我们人类从地球到遥远的潘多拉星球，和当地人交涉、谈判，乃至动武的竟然是一个公司，政府哪里去了？地球发现了外太空文明的时候我们地球所有的政府都在干什么？贪污，玩女人还是打击黑社会？我很奇怪的，士兵也都是雇佣军，需要开发的东西也仅仅由董事会看的报表么？这不禁让我想起了1840年鸦片战争的情况，中国当时的敌人到底是英国还是一个东印度公司？一个公司打败了一个民族？哈哈，我不知道卡梅隆怎么想的。还是美国人的思维还停留在19世纪？</p>
<p><strong>第二</strong>，就算是公司，好的开发什么不好，我觉得开发那个石头真不如开发当地的旅游资源，我想问问大家，到底是那个能浮起来石头对大家吸引力大还是那里的原始森林？想想中国的白云鄂博和张家界，我想稀土矿对人类的贡献够大的吧，你们谁知道白云鄂博，张家界大家现在可以说是人人向往了吧？公司的目的不就是为了挣钱么？有轻松的钱可以赚，为什么偏偏要赚不好赚的钱？公司的董事可以是白痴，我们那个窝囊的CEO简直就是白痴中的战斗机！</p>
<p><strong>第三</strong>，再说说手段，我真不知道是美国人弱智还是卡梅隆弱智。看看他们想的那两个开发的手段，要么把人变成阿凡达，要么诉诸武力。变成阿发达成本高，时间慢不说，也不是欧洲人的做法啊！你见过那个欧洲人为了开发非洲把自己涂黑了的？你见过那个美国人为了要印地安人的土地往自己脑袋上插羽毛涂颜色的？这个成本多低有白人做么？反倒是有个混血黑人在印地安人的土地上当歌星把自己漂白的！奇怪啊！！！再说了，没有别的办法么？你阿凡达不是什么也没有么？我给你们造牙膏让你们刷牙，造鞋子让你们不再光脚，造车子不用骑那个6条腿还不好骑的马，给你们造飞机，省得骑龙害怕摔下来，给你们一切你们需要和不需要的，中国人说由简入奢易，由奢入俭难。到时候我们的一切成了你们的必需品，还怕你们不用土地换么？我们赚到了钱，还得到了土地，靠，我真他妈是天才，商业奇才啊！我觉得我应该当编剧，导演还是让老卡自己干吧！</p>
<p><strong>最后</strong>，说说那些弱智的军队！好了，笨蛋们没有办法呢（谁让他们不聘用我的）。开始打仗吧！要的就是土地！可是看看这些军人有什么呢？步兵，装甲兵，直升机部队，没了！真的没了！靠，地球人能飞到几十光年外的星球，连装甲部队没有，航空兵没有么？我考，我有时候真是不明白，跟MATRX里面似的，人类就没有更多的有杀伤力的武器了么？没有更机动的载具么？看看阿富汗战争，看看伊拉克战争，美国人打得那叫一个过瘾，拿着AK-47和RGP阿拉伯人都没看见美国人呢就挂了，拿着弓箭的阿凡达还能射阿帕奇？疯了，我的结论只能使卡梅隆疯了！我真不明白了，武装攻击居然是用价格昂贵的飞弹打树！操，老美是不是太有钱了？打精神树的时候居然用老爷车那样慢的飞机投弹！飞机您不能飞高点么？我不信魅影能飞上平流层！！！直接用开始时候的那个大推土机都比那弱智机器人好使，起码那个大玩艺儿犀牛撞不动啊，对不对？喝口水接着说，三千年前的鬼谷子都知道“战，取生而胜”，就是说打仗打得就是有生力量，您武装力量光打树 ，人还活着，不等着反抗么？再说有没有法律条文说不能杀生，电影里面人类看阿凡达不就是野兽么？和杀个狼杀个熊不是一样么？喝，好么，连躺着的您都杀不死，您也敢说自己是武装力量？我真不明白中国人民为什么当时会输给这帮弱智！也从侧面说明清政府太腐败了！</p>
<p>说老实话，我有点近视，带着近视眼镜儿看不出3D，带着3D眼镜又看不清楚，两个一起带很沉，老是用手托着看完的，我觉得花几十块看这么让我着急的电影我真说不出来它好！倒是像终结者这样电影我在家看了一遍又一遍。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/terran-vs-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taylor Swift - Love Story</title>
		<link>http://www.imwls.com/taylor-swift-love-story/</link>
		<comments>http://www.imwls.com/taylor-swift-love-story/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:53:44 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1036</guid>
		<description><![CDATA[小美女的大名相信都不用再怎么多做介绍了吧！！

这首Love Story可谓是她奠基石一般的作品了！歌曲以罗密欧与朱丽叶的故事作为灵感而创作.曼妙的曲风以及小美女的倾情演绎无不使之无愧为欧美乡村音乐的经典之作！

不多说了~让Taylor Swift来向我们诠释什么是真正的爱吧！

<span class="readmore"><a href="http://www.imwls.com/taylor-swift-love-story/" title="Taylor Swift - Love Story">阅读全文——共365字</a></span>]]></description>
			<content:encoded><![CDATA[<p>小美女的大名相信都不用再怎么多做介绍了吧！！</p>
<p>这首Love Story可谓是她奠基石一般的作品了！歌曲以罗密欧与朱丽叶的故事作为灵感而创作.曼妙的曲风以及小美女的倾情演绎无不使之无愧为欧美乡村音乐的经典之作！<span id="more-1036"></span></p>
<p>不多说了~让Taylor Swift来向我们诠释什么是真正的爱吧！</p>
<p><img title="love story" src="http://www.imwls.com/wp-content/uploads/2010/02/love-story-300x300.jpg" alt="" width="300" height="300" /></p>
<div>[Audio clip: view full post to listen]<div class="but_down"><a href="http://cid-8b99ac0f9df0544f.skydrive.live.com/self.aspx/Public%20Music/Love%20Story.mp3"target="_blank"><span>Love Story</span></a><div class="clear"></div></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/taylor-swift-love-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://storage.live.com/items/8B99AC0F9DF0544F!241?filename=Love%20Story.mp3" length="4690058" type="audio/mpeg" />
		</item>
		<item>
		<title>咱为什么总是骂李艳红</title>
		<link>http://www.imwls.com/why-not-curse-liyanhong/</link>
		<comments>http://www.imwls.com/why-not-curse-liyanhong/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 00:00:39 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Baidu]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1014</guid>
		<description><![CDATA[在中国互联网大佬中，李彦宏和他的百度恐怕是最受非议的一个。

2008年相继发生的“三鹿奶粉事件”、“医疗竞价门”让40岁的李彦宏和10岁的百度公众形象几乎被彻底摧毁，以至于百度稍有风吹草动，就可能被送上道  德法庭，反复拷问。

高管密集离职引发争议

<span class="readmore"><a href="http://www.imwls.com/why-not-curse-liyanhong/" title="咱为什么总是骂李艳红">阅读全文——共1676字</a></span>]]></description>
			<content:encoded><![CDATA[<div style="margin-top:5px;-webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #FEFFED;padding:5px;background-color:#7BCB98;color:#FFF">在中国互联网大佬中，李彦宏和他的百度恐怕是最受非议的一个。</div>
<p>2008年相继发生的“三鹿奶粉事件”、“医疗竞价门”让40岁的李彦宏和10岁的百度公众形象几乎被彻底摧毁，以至于百度稍有风吹草动，就可能被送上道  德法庭，反复拷问。<span id="more-1014"></span></p>
<div style="margin-top:5px;-webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #FEFFED;padding:5px;background-color:#7BCB98;color:#FFF">高管密集离职引发争议</div>
<p>以道德角度批评百度已成为公众的一种习惯，这种趋势和百度的市场占有率一起，节节高升。这种现象看似矛盾，其实两不冲突，就像是快女曾轶可的  “绵羊音”，无数人一边谩骂，一边嘴里不由自主地哼着“狮子座”的旋律。</p>
<p>最新的一轮针对百度的“拷问”来自百度高管密集离职。2010年1月18日，百度CTO（首席技术官）李一男“因个人原因”离职；在此之前10  天，从苹果跳槽来的COO（首席运营官）叶朋“因个人原因”离职。百度上市后，创业元老在套现之后相继出走，加上CFO（首席财务官）王湛生的意外辞世， 李彦宏相继在CTO、CFO、COO位置上补充了空降兵，外加3个副总裁，1个首席科学家。</p>
<p>这被外界解读为“百度高管2.0计划”宣告失败。“善意”一点的，有人建议“不懂管理”的李彦宏去读MBA；不客气的，再次将其与“道德”挂钩  —一家只强调“变现力”的公司，怎么留得住人？</p>
<p>笔者不想在本文中解读李彦宏的御人之术或者管理哲学。因为在对整个事件的观察中，笔者关注的焦点始终在一个问题上：为什么在另一家公司头上也许稀松平常的 事，怎么一到百度就会变了味？在李彦宏与公众之间，究竟有着怎样的观念不对称？</p>
<div style="margin-top:5px;-webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #FEFFED;padding:5px;background-color:#7BCB98;color:#FFF">被骂是理所当然</div>
<p>是“枪打出头鸟”么？不是。尽管在全世界位列搜索第三，但按照眼下的市值，百度的145亿美元，只与阿里巴巴的940亿港元相当，离腾讯的  2700亿港元差了一大截。腾讯无论是用户数量、品牌知名度、市场占有率以及对公众社会生活的“介入”，都要比百度高一筹。平心而论，在2008年危机大 爆发之前，李彦宏深居简出，虽被认为有些傲慢，但避免了“言多必失”。以李彦宏内敛的性格，怎么也和“出头鸟”挂不上钩。</p>
<p>问题的本质在搜索引擎上！从某种意义上来说，搜索是互联网上的“裁判”，它的排序规则就是裁判手中的哨子，掌握着种种生杀大权，被赋予了维护生态平衡的原 始使命，也就天然地承担了道德标杆的角色。</p>
<p>这很要命。你可以对QQ上的“裸聊”、“一夜情”一笑了之，因为你从来不会觉得QQ是“严肃”的；当收到淘宝卖家恶意报复寄来的大便，你会将矛头对准卖家 而非淘宝。但当你发现“裁判”吹了黑哨，就会觉得是奇耻大辱。</p>
<p>李彦宏一直强调搜索引擎对国人获取信息门槛的降低，没错，这是百度带来的社会价值。但他忽略了一点：在一个儒家思想影响几千年的国度里，人们向来“不患寡 而患不均”，换句话说，在传统道德观念里，人们宁愿退回到图书馆时代，也不愿意面对新信息工具制造的“不平等”。</p>
<p>也就是说，让百度深陷泥潭的，是百度领导人和公众对搜索引擎社会价值定位的差异。</p>
<div style="margin-top:5px;-webkit-border-radius: 5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #FEFFED;padding:5px;background-color:#7BCB98;color:#FFF">应当成为“天使”</div>
<p>随着用户越来越多、覆盖率越来越高，百度身上背负的这种道德压力会越来越沉重。人们早已无意地忘记了百度是一家商业公司，而将它看成是一个公共服务机构。</p>
<p>同样的问题，腾讯和阿里巴巴都不会遇到。这两个大佬经营的业务—IM和B2B电子商务，在全球都属首创（别提ICQ和MSN，在全球范围，它们都是失败的 IM经营者），也几乎独一无二，也就没有了可比较的“道德标准”。正是这一点给了马化腾和马云更宽松的环境，在媒体和公众眼里，他们是单纯的生意人，赚得 盆满钵满，那是理所当然；而每当李彦宏一提“变现力”，准会招来口诛笔伐。</p>
<p>人说“女怕嫁错郎，男怕入错行”，怪就怪李彦宏选择了一个错误的行业，这个行业的从业者不能将自己定位为“生意人”，更应该将自己打造成“天使”。所以， 李彦宏要躲过每一次枪口，必须重新审视这一切，重塑百度的价值观体系，尤其要回答“百度对社会意味着什么”。起码，“降低国人获取信息门槛”  这个答案，还不够诚恳。</p>
<p><div class="note"><div class="notetip">本文非出自我手，转载来纯粹乐和乐和，顺便学习一下软文是如何炼成的。<br />各位路过的，如果心有愤懑，不要骂我啊，我是没法写出这么高水平枪文的。<br />原文叫《为什么挨骂的总是李彦宏》，俺改了名了，固定链接河蟹了一下。</div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/why-not-curse-liyanhong/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>饭否的那些事儿</title>
		<link>http://www.imwls.com/something-of-fanfou/</link>
		<comments>http://www.imwls.com/something-of-fanfou/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 01:17:11 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[嘀咕]]></category>
		<category><![CDATA[饭否]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=1003</guid>
		<description><![CDATA[有消息说腾讯已经在内测新的微博系统，现有的滔滔将会整合到QQ空间的心情模块里；而且已经或者将要发生的是搜狐和网易即将推出自己的微博服务。随着这些传统的门户网站杀入，国内的微博领域竞争肯定会更加激烈。这不得不让我想到曾今的饭否。

08年底在各大论坛闲逛时，经常看到“今天你饭否了吗”这么一句，当时感到有点纳闷，怎么老问人吃过没有。09年4月的某一天在点了路人甲的论坛签名（基于饭否API写的图片秀）后，第一次接触了微博客。看到不断更新的有趣的唠叨，当时就被逗乐了，于是注册成为了饭否的一员。在注册后的推荐人里竟然看到了梁文道和陈丹青的身影，也不知是真是假。

<span class="readmore"><a href="http://www.imwls.com/something-of-fanfou/" title="饭否的那些事儿">阅读全文——共754字</a></span>]]></description>
			<content:encoded><![CDATA[<p>有消息说腾讯已经在内测新的微博系统，现有的滔滔将会整合到QQ空间的心情模块里；而且已经或者将要发生的是搜狐和网易即将推出自己的微博服务。随着这些传统的门户网站杀入，国内的微博领域竞争肯定会更加激烈。这不得不让我想到曾今的<a href="http://fanfou.com" target="_blank">饭否</a>。<span id="more-1003"></span></p>
<p>08年底在各大论坛闲逛时，经常看到“今天你饭否了吗”这么一句，当时感到有点纳闷，怎么老问人吃过没有。09年4月的某一天在点了路人甲的论坛签名（基于饭否API写的图片秀）后，第一次接触了微博客。看到不断更新的有趣的唠叨，当时就被逗乐了，于是注册成为了饭否的一员。在注册后的推荐人里竟然看到了梁文道和陈丹青的身影，也不知是真是假。</p>
<p>微博这东西，如果你不是名人，不是和许多朋友一起玩，你只是一个非常草根的网民，那么刚开始玩的时候基本很少会有人跟随你。而我就是这些草根里的一民，注册一周，发了十来个唠叨，跟随者为零，心里凄凉的同时，决定把饭否用来作为收藏夹来用。由于当时疯狂的迷恋上了<a href="http://www.jquery.com" target="_blank">jQuery</a>，所以每当在网上看到好的资料时都发到饭否里，以后好查用，未想这样竟会招来十几个跟随者。</p>
<p>在饭否里，我更多的是一个看客，看着几十万人在不停地唠叨。在这你能够关注最新最热的社会事件——看看当天的热词，阅读时间少的我，在这里不至于两耳不闻窗外事。09年7月新疆的那件大事，最先就是从饭否上了解到的。想不到这也成为了饭否被关闭的原因。</p>
<p>饭否被关闭后，一直在等待着他的重开，起码我需要那千条收藏的资料。后来加入了一个小组群，每天都在讨论着什么时候能够再开饭，而饭否团队也一再表示将会回归。</p>
<p>两周后，辗转到了现在用的嘀咕网，同时还在群里讨论着饭否的回归，那时是09年7月。刚刚群里又有人在问什么时候能够开饭，有人起哄说用嘀咕就是了，今天2010年2月1日。</p>
<p>假如饭否回来了，还能重现以前的辉煌吗？廉颇老矣，尚能饭否。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/something-of-fanfou/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>在GoogleReader阅读器里添加发送到“嘀咕网”</title>
		<link>http://www.imwls.com/google-reader-sendto-digu/</link>
		<comments>http://www.imwls.com/google-reader-sendto-digu/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 09:28:20 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[嘀咕]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=981</guid>
		<description><![CDATA[相信不少嘀友都在使用Google Reader，阅读器有一个“发送到”功能，可以将喜欢的订阅发送到相关站点。在阅读器设置里，可以选择Google已经提供的站点，不过基本都是国外服务商，而且有不少已经被wall了。很可惜阅读器没有提供发送到嘀咕的选项，这对于喜欢随时嘀咕的我们来说实在是一大遗憾。

呵呵，现在我们就添加一个自定义链接，在阅读器里碎碎念吧，这里得借用嘀享  

打开“阅读器设置”，转到“发送到”选项卡，点击“创建自定义链接”。

<span class="readmore"><a href="http://www.imwls.com/google-reader-sendto-digu/" title="在GoogleReader阅读器里添加发送到“嘀咕网”">阅读全文——共392字</a></span>]]></description>
			<content:encoded><![CDATA[<p>相信不少<a href="http://digu.com/imwls" target="_blank">嘀友</a>都在使用<a href="http://www.google.com/reader/" target="_blank">Google Reader</a>，阅读器有一个“发送到”功能，可以将喜欢的订阅发送到相关站点。在阅读器设置里，可以选择Google已经提供的站点，不过基本都是国外服务商，而且有不少已经被wall了。很可惜阅读器没有提供发送到嘀咕的选项，这对于喜欢随时嘀咕的我们来说实在是一大遗憾。<span id="more-981"></span></p>
<p>呵呵，现在我们就添加一个自定义链接，在阅读器里碎碎念吧，这里得借用<a href="http://www.diguff.com/" target="_blank">嘀享</a> <img src='http://www.imwls.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<blockquote><p>打开“阅读器设置”，转到“发送到”选项卡，点击“创建自定义链接”。<br />
“名称”就填入“<strong>嘀咕网</strong>”<br />
“网址”填入“<strong>http://www.diguff.com/diguShare/bookMark_FF.jsp?title=${title}&amp;url=${url}</strong>”<br />
“图标网址”填入“<strong>http://www.digu.com/favicon.ico</strong>”，然后保存吧</p></blockquote>
<p><img class="aligncenter size-full wp-image-982" title="googlereader-digu-1" src="http://www.imwls.com/wp-content/uploads/2010/01/googlereader-digu-1.png" alt="" width="511" height="308" /></p>
<p>再看看订阅文章工具栏的“发送到”，是不是多了“嘀咕网”？ <img src='http://www.imwls.com/wp-includes/images/smilies/icon_arrow.gif' alt=':arrow:' class='wp-smiley' /> </p>
<p><img class="aligncenter size-full wp-image-983" title="googlereader-digu-2" src="http://www.imwls.com/wp-content/uploads/2010/01/googlereader-digu-2.png" alt="" width="661" height="336" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/google-reader-sendto-digu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>C#限制Winform窗体尺寸的问题</title>
		<link>http://www.imwls.com/csharp-winform-windows-resize/</link>
		<comments>http://www.imwls.com/csharp-winform-windows-resize/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 01:47:52 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=963</guid>
		<description><![CDATA[在c/c++里可以通过WM_GETMINMAXINFO消息限制窗体在拖动改变大小时最小尺寸和最大尺寸，可是这个方法在C#里是无法使用的。

在C#里可以绑定窗体拖动事件，然后在事件方法里强制最小或最大Size。



<span class="readmore"><a href="http://www.imwls.com/csharp-winform-windows-resize/" title="C#限制Winform窗体尺寸的问题">阅读全文——共580字</a></span>]]></description>
			<content:encoded><![CDATA[<p>在c/c++里可以通过WM_GETMINMAXINFO消息限制窗体在拖动改变大小时最小尺寸和最大尺寸，可是这个方法在C#里是无法使用的。</p>
<p>在C#里可以绑定窗体拖动事件，然后在事件方法里强制最小或最大Size。<br />
<span id="more-963"></span></p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #0600FF;">const</span> <span style="color: #FF0000;">int</span> MinWidht<span style="color: #008000;">=</span><span style="color: #FF0000;">300</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">const</span> <span style="color: #FF0000;">int</span> MinHeith<span style="color: #008000;">=</span><span style="color: #FF0000;">300</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">const</span> <span style="color: #FF0000;">int</span> MaxWidth<span style="color: #008000;">=</span><span style="color: #FF0000;">600</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">const</span> <span style="color: #FF0000;">int</span> MaxHeith<span style="color: #008000;">=</span><span style="color: #FF0000;">600</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Form1_Resize<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
     <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Width</span> <span style="color: #008000;">&gt;</span> MaxWidth<span style="color: #000000;">&#41;</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Width</span> <span style="color: #008000;">=</span> MaxWidth<span style="color: #008000;">;</span>
     <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Height</span> <span style="color: #008000;">&gt;</span> MaxHeight<span style="color: #000000;">&#41;</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Height</span> <span style="color: #008000;">=</span> MaxHeight<span style="color: #008000;">;</span>
     <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Width</span> <span style="color: #008000;">&lt;</span> Minwidth<span style="color: #000000;">&#41;</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Width</span> <span style="color: #008000;">=</span> MinWidth<span style="color: #008000;">;</span>
     <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Heigth</span> <span style="color: #008000;">&lt;</span> MinWidth<span style="color: #000000;">&#41;</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">Height</span> <span style="color: #008000;">=</span> MinHight<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>老实说，这个方法其实是非常“蠢笨”的，如果窗体控件比较多，在拖动时会发现窗体闪烁的厉害。由于对API不是很熟悉，想从API上下手，可是力不从心。求助于Google、Baidu时搜索到的都是Delphi/C的解决方案，搞不懂为什么C#不提供Constraints属性，这样会省了好多气力。</p>
<p>此问题对我仍是无解中，希望哪天遇到高手解之。</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/csharp-winform-windows-resize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>卓越，你个大骗子</title>
		<link>http://www.imwls.com/amazon-cn-liar/</link>
		<comments>http://www.imwls.com/amazon-cn-liar/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 00:16:53 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[碎碎念]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=955</guid>
		<description><![CDATA[今早看到一条新闻，说的是东航操作失误，将300张头等舱的票以20元的价格卖出，但是承诺所有票均有效，这让卓越情何以堪啊。

从2002年开始在卓越上买书，一直觉得他们的服务还不错。上周六的时候看到群里有兄弟说卓越的劲永H560 320G移动硬盘118元，他刚订了5个。我一看，卓越这次的定价可真够为消费者考虑的，比普通2.5硬盘价格都低了好多，虽说劲永在大陆没什么名气，可是在台湾也是个实力强劲的老牌厂商了。俺不贪，喜滋滋的进去就只订了一个，准备买来后跟我现在的这个160G笔记本硬盘换一下。

第二天，打开那链接一看，商品竟然被删除了，而且我的订单还没有被确认。打开群，果然有人骂开了。打电话给卓越，客服说这得等厂家亮话，究竟卖不卖。联想到前不久的卓越25元门，我靠，卓越，你又在忽悠谁呢？

<span class="readmore"><a href="http://www.imwls.com/amazon-cn-liar/" title="卓越，你个大骗子">阅读全文——共459字</a></span>]]></description>
			<content:encoded><![CDATA[<p>今早看到一条新闻，说的是东航操作失误，将300张头等舱的票以20元的价格卖出，但是承诺所有票均有效，这让卓越情何以堪啊。</p>
<p>从2002年开始在卓越上买书，一直觉得他们的服务还不错。上周六的时候看到群里有兄弟说<a href="http://www.amazon.cn/mn/detailApp?ref=RC_PR&amp;uid=476-4630847-0761456&amp;prodid=rcit804480" target="_blank">卓越的劲永H560 320G移动硬盘118元</a>，他刚订了5个。我一看，卓越这次的定价可真够为消费者考虑的，比普通2.5硬盘价格都低了好多，虽说劲永在大陆没什么名气，可是在台湾也是个实力强劲的老牌厂商了。俺不贪，喜滋滋的进去就只订了一个，准备买来后跟我现在的这个160G笔记本硬盘换一下。<span id="more-955"></span></p>
<p>第二天，打开那链接一看，商品竟然被删除了，而且我的订单还没有被确认。打开群，果然有人骂开了。打电话给卓越，客服说这得等厂家亮话，究竟卖不卖。联想到前不久的<a href="http://baike.baidu.com/view/3107371.htm" target="_blank">卓越25元门</a>，我靠，卓越，你又在忽悠谁呢？</p>
<p>我不是个写评论的，后面啥也不说了，各位慢慢联想吧...</p>
<blockquote><p><em>2010-1-25 8:15更新</em></p>
<p>刚才在发布这篇文章后，又点击了那个商品链接，发现竟然恢复了。但是没有了标价，并且无法下单；另外尝试搜索此商品，无论用何关键字，都无法搜索到。 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_idea.gif' alt=':idea:' class='wp-smiley' /> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/amazon-cn-liar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4 套在线翻译 Web API</title>
		<link>http://www.imwls.com/four-translate-web-api/</link>
		<comments>http://www.imwls.com/four-translate-web-api/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 23:17:15 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=950</guid>
		<description><![CDATA[在线自动翻译不再是神话，虽然机器的翻译质量仍不能和专业翻译人员相提并论，但已经发展到可以让人大体理解的地步，目前，最著名的4个翻译引擎包括  Google Translate, Babel Fish, Promt or FreeTranslations，其中 Google  Translate 发展最为迅猛，本文介绍4个在线翻译 Web API，它们绝大多数都基于 Google Translate。



Google   Translate Tools 

<span class="readmore"><a href="http://www.imwls.com/four-translate-web-api/" title="4 套在线翻译 Web API">阅读全文——共1531字</a></span>]]></description>
			<content:encoded><![CDATA[<p>在线自动翻译不再是神话，虽然机器的翻译质量仍不能和专业翻译人员相提并论，但已经发展到可以让人大体理解的地步，目前，最著名的4个翻译引擎包括  Google Translate, Babel Fish, Promt or FreeTranslations，其中 Google  Translate 发展最为迅猛，本文介绍4个在线翻译 Web API，它们绝大多数都基于 Google Translate。<span id="more-950"></span></p>
<p><img src="http://images.sixrevisions.com/2010/01/25-01_translation_on_the_web.png" alt="" width="550" height="240" /></p>
<h3><a href="http://translate.google.com/translate_tools">Google   Translate Tools </a></h3>
<p><img src="http://images.sixrevisions.com/2010/01/25-02_google_translate_tools.png" alt="Google Translate Tools " width="550" height="240" /></p>
<p>首先，<a href="http://translate.google.com/translate_tools" target="_blank">Google   Translate</a> 提供了一个简单的 widget，你可以直接将这个 widget 复制粘贴到你的 Web 页面，这个 widget  会显示一个 52 种语言的下拉菜单，选中相应语言，用户会被重定向到 <a href="http://translate.google.com/" target="_blank">translate.google.com</a> 进行翻译，并看到前页的翻译结果。</p>
<p>虽然这个 widget 很简单，但缺点是有点过时，而且，用户会被重定向到 Google 站点，用户的访问体验会被打断。</p>
<p>译者注：事实上，除了这个简单的 widget ，Google 还提供一整套非常强大的<a href="http://code.google.com/apis/ajaxlanguage/documentation/" target="_blank">翻译 API</a>， 基于这套 API 你可以设计出非常好用的在线翻译工具。以下的第三方翻译 API 都是基于 Google 翻译 API。</p>
<h3><a href="http://translateth.is/">The TranslateThis Button </a></h3>
<p><img src="http://images.sixrevisions.com/2010/01/25-03_translate_this_button.png" alt="The TranslateThis Button " width="550" height="376" /></p>
<p>Google Translate Tools 的一个替代品是 <a href="http://translateth.is/" target="_blank">The   TranslateThis Button</a>。这也是一个翻译 widget，可以被复制粘贴到你的网页，该 widget 基于 Google  翻译 API，因此，也提供52种语言的翻译，但用户界面更漂亮一些，使用了灯箱式对话框，现实不同语种的图标，更重要的是它不会将用户重定向到  Google 站点。</p>
<p>该 widget 使用 JavaScript，将 Google 的翻译结果替换到当前页面，它的速度也很不错。整个 API 的尺寸不少过12  k，相当小巧。</p>
<p><a href="http://translateth.is/docs" target="_blank">阅读该 API 文档和更多资料</a></p>
<h3><a href="http://code.google.com/p/jquery-translate/" target="_blank">jQuery   Translate Plugin </a></h3>
<p><img src="http://images.sixrevisions.com/2010/01/25-04_jquery_logo.png" alt="jQuery Translate Plugin " width="344" height="139" /></p>
<p>另一个客户端翻译 API 为 <a href="http://code.google.com/p/jquery-translate/">jQuery  Translate   Plugin</a>。这个 API 也是对当前页面内容进行识别，并用 JavaScript 送到 Google 翻译  API 那里翻译。</p>
<p>该 API 的优点是，它可以将多段分散的文本连起来，一次性送给 Google 翻译 API  进行翻译，这样可以显著降低请求的次数，不过它的速度比 TranslateThis Button 慢，而且，即使不考虑 jQuery  框架的尺寸，单纯这个插件的尺寸也和 TranslateThis 一样大。</p>
<h3><a href="http://wordpress.org/extend/plugins/global-translator/" target="_blank">Global   Translator (Wordpress)</a></h3>
<p><img src="http://images.sixrevisions.com/2010/01/25-05_wordpress_logo.png" alt="Global Translator (Wordpress)" width="509" height="123" /></p>
<p>客户端的翻译 API 速度很快，也容易部署，但，如果你的站点流量很大，为了提高性能，因该考虑服务器端的翻译API。</p>
<p>Davide Pozza 设计的 <a href="http://wordpress.org/extend/plugins/global-translator/" target="_blank">Global    Translator</a> 是一个 WordPress 插件，可以为任何基于 WordPress 的站点提供 41  个语种的翻译，它的功能包括快速缓存以及 SEO 友好的静态永久链接，另外，该API允许你选用4种不同的翻印引擎，包括  Google   Translate, Babel Fish, Promt or FreeTranslations。</p>
<h3>在线翻译将何去何从？</h3>
<p>自动在线翻译近年来获得长足发展，并变得越来越好，Google 翻译 API 支持的语种越来越多，而翻译质量已经速度也在稳步提高。</p>
<p>将来，Google 有可能允许更长的文本提交到他们的 API，目前是 1000 字，如果提高到 2000 字，那些基于它的 API  的速度可能会明显提高。</p>
<p>另外，Google 翻译最近又推出了 <a href="http://googleblog.blogspot.com/2009/11/new-look-for-google-translate.html" target="_blank">Text    to Speech</a> 支持，Weston Ruter 还推出了一个<a href="http://weston.ruter.net/projects/google-tts/" target="_blank">基于该 API 和 HTML5   音频标签的脚本</a>。</p>
<p><em>本文来源：<a href="http://www.comsharp.com/GetKnowledge/zh-CN/CMS_K890.aspx" target="_blank">http://www.comsharp.com/GetKnowledge/zh-CN/CMS_K890.aspx</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/four-translate-web-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stay here forever - Jewel</title>
		<link>http://www.imwls.com/stay-here-forever-jewel/</link>
		<comments>http://www.imwls.com/stay-here-forever-jewel/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 11:49:06 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=941</guid>
		<description><![CDATA[Jewel(珠儿)出生于1974年5月23日,在美国阿拉斯加长大，她被赞誉为现今流行乐坛最有才华且最出色的歌手之一。

至今，她在全球的唱片销售量高达2300万张。

Jewel 1995年的首张专辑《Pieces Of You》因为在美国销售量超过1000万张(现在已达 1100万张)而获得尊贵至极的钻石唱片。

<span class="readmore"><a href="http://www.imwls.com/stay-here-forever-jewel/" title="Stay here forever - Jewel">阅读全文——共769字</a></span>]]></description>
			<content:encoded><![CDATA[<p>Jewel(珠儿)出生于1974年5月23日,在美国阿拉斯加长大，她被赞誉为现今流行乐坛最有才华且最出色的歌手之一。<br />
至今，她在全球的唱片销售量高达2300万张。</p>
<p>Jewel 1995年的首张专辑《Pieces Of You》因为在美国销售量超过1000万张(现在已达 1100万张)而获得尊贵至极的钻石唱片。<br />
<span id="more-941"></span></p>
<div id="attachment_942" class="wp-caption aligncenter" style="width: 420px"><img class="size-full wp-image-942" title="Jewel" src="http://www.imwls.com/wp-content/uploads/2010/01/4937cfbf761c7f0418d81f7f.jpg" alt="Jewel" width="410" height="308" /><p class="wp-caption-text">Jewel</p></div>
<p>不管是一个人只带着一把吉他，或是带领着一个乐团上台，Jewel一向是一个很有大众魅力的现场演唱歌手。<br />
大师级歌手Bob Dylan和Neil Young都称赞过她，并邀请她为他们的演唱会唱暖场。<br />
自从六年前Jewel发行首张专辑后，她和全球的演唱会观众建立了坚固且亲密的关系。<br />
除了在北美洲巡回无数次外，Jewel的足迹还远至亚洲、澳洲和欧洲。她被深具影响力的伦敦时报誉为“自 Joni Mitchell之后最闪亮的创作型女歌手”。</p>
<p>一起来听听她的Stay here forever，这是一个能够让你感到舒服的声音。</p>
<p>[Audio clip: view full post to listen]<div class="but_down"><a href="http://cid-8b99ac0f9df0544f.skydrive.live.com/self.aspx/Public%20Music/%5Bjewel%5DStay%20Here%20Forever-Jewel.mp3"target="_blank"><span>Stay here forever</span></a><div class="clear"></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/stay-here-forever-jewel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://storage.live.com/items/8B99AC0F9DF0544F!240?filename=%5Bjewel%5DStay%20Here%20Forever-Jewel.mp3" length="4336288" type="audio/mpeg" />
		</item>
		<item>
		<title>手机QQ For M8多图展示</title>
		<link>http://www.imwls.com/mobile-qq-m8/</link>
		<comments>http://www.imwls.com/mobile-qq-m8/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 11:37:27 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Living]]></category>
		<category><![CDATA[M8]]></category>
		<category><![CDATA[QQ]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=918</guid>
		<description><![CDATA[之前的M8上所用的QQ都很杯具，具体我也不说了，今天魅族终于发布了官方的QQ，由于基于手机QQ协议，确实要好了很多。闲着没事，截了不少的运行图，我的还是旧UI。

由于在上传图片时没有给图片排序，所以有点乱。这个是登录后的设置界面。

可以查看个人资料（好像只能查看自己的，没法查看好友的）。

<span class="readmore"><a href="http://www.imwls.com/mobile-qq-m8/" title="手机QQ For M8多图展示">阅读全文——共329字</a></span>]]></description>
			<content:encoded><![CDATA[<p>之前的M8上所用的QQ都很杯具，具体我也不说了，今天魅族终于发布了官方的QQ，由于基于手机QQ协议，确实要好了很多。闲着没事，截了不少的运行图，我的还是旧UI。</p>
<p><span id="more-918"></span><img class="aligncenter size-full wp-image-931" title="PrtScn20100118184719" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184719.png" alt="Mobile QQ for M8" width="480" height="720" />由于在上传图片时没有给图片排序，所以有点乱。这个是登录后的设置界面。</p>
<p><img class="aligncenter size-full wp-image-930" title="PrtScn20100118184710" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184710.png" alt="Mobile QQ for M8" width="480" height="720" />可以查看个人资料（好像只能查看自己的，没法查看好友的）。</p>
<p><img class="aligncenter size-full wp-image-929" title="PrtScn20100118184646" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184646.png" alt="Mobile QQ for M8" width="480" height="720" />聊天界面，和民间版的MOMO相似。</p>
<p><img class="aligncenter size-full wp-image-928" title="PrtScn20100118184609" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184609.png" alt="Mobile QQ for M8" width="480" height="720" />自带的常用于，不过也太少了吧，好像也不能自定义。</p>
<p><img class="aligncenter size-full wp-image-927" title="PrtScn20100118184607" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184607.png" alt="Mobile QQ for M8" width="480" height="720" />非常重要的表情功能，相比民间版的亮点之一。</p>
<p><img class="aligncenter size-full wp-image-926" title="PrtScn20100118184533" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184533.png" alt="Mobile QQ for M8" width="480" height="720" />这个是QQ群成员列表，不能显示备注。</p>
<p><img class="aligncenter size-full wp-image-925" title="PrtScn20100118184528" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184528.png" alt="Mobile QQ for M8" width="480" height="720" />QQ群设置界面。</p>
<p><img class="aligncenter size-full wp-image-924" title="PrtScn20100118184446" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184446.png" alt="Mobile QQ for M8" width="480" height="720" />QQ群界面，这个是设置不接收所有群消息的后的截图。</p>
<p><img class="aligncenter size-full wp-image-923" title="PrtScn20100118184440" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184440.png" alt="Mobile QQ for M8" width="480" height="720" />QQ群列表，这个是接收所有群消息的截图。</p>
<p><img class="aligncenter size-full wp-image-922" title="PrtScn20100118184436" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184436.png" alt="Mobile QQ for M8" width="480" height="720" />好友列表，杯具的是没法显示好友备注。</p>
<p><img class="aligncenter size-full wp-image-921" title="PrtScn20100118184418" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184418.png" alt="Mobile QQ for M8" width="480" height="720" />登录界面，可以选择之前登录过的QQ号。</p>
<p><img class="aligncenter size-full wp-image-920" title="PrtScn20100118184340" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184340.png" alt="Mobile QQ for M8" width="480" height="720" />loading...登录速度很快。</p>
<p><img class="aligncenter size-full wp-image-919" title="PrtScn20100118184258" src="http://www.imwls.com/wp-content/uploads/2010/01/PrtScn20100118184258.png" alt="Mobile QQ for M8" width="480" height="720" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/mobile-qq-m8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>QQ2010beta试用版简评</title>
		<link>http://www.imwls.com/qq2010-beta-preview/</link>
		<comments>http://www.imwls.com/qq2010-beta-preview/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 14:01:22 +0000</pubDate>
		<dc:creator>木公</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[QQ]]></category>

		<guid isPermaLink="false">http://www.imwls.com/?p=908</guid>
		<description><![CDATA[首先不得不佩服腾讯在版本号上的创新，实在是太强大了  

昨天申请了QQ2010的试用，今天通知可以登录了，在公司登录后一会就下班了，还没有体验一下宣传的新特性呢，回家后闲着下载安装登录。

登录界面就不说了，和QQ2009基本相同，可是看那么登录按钮就是没有QQ2009的爽，感觉特山寨，囧！

<span class="readmore"><a href="http://www.imwls.com/qq2010-beta-preview/" title="QQ2010beta试用版简评">阅读全文——共803字</a></span>]]></description>
			<content:encoded><![CDATA[<p>首先不得不佩服腾讯在版本号上的创新，实在是太强大了 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' /> </p>
<p>昨天申请了QQ2010的试用，今天通知可以登录了，在公司登录后一会就下班了，还没有体验一下宣传的新特性呢，回家后闲着下载安装登录。</p>
<p>登录界面就不说了，和QQ2009基本相同，可是看那么登录按钮就是没有QQ2009的爽，感觉特山寨，囧！<span id="more-908"></span></p>
<p>官方宣传的QQ2010试用版增加了以下新特性：</p>
<p><em>1、全新皮肤引擎，全新视觉盛宴；<br />
2、QQ大视频，视频聊天更大更清晰；<br />
3、聊天窗口个性动作，互动方式更多样；<br />
4、QQ聊天装扮，聊天窗口与众不同；<br />
5、空间编辑器新增记事本，双击头像直接开启；<br />
6、自定义好友上线提醒，实时关注亲密好友；<br />
7、QQ锁独立密码，隐私保护更方便安全；<br />
8、更换头像界面优化，自定义头像更换更便捷；<br />
9、涂鸦编辑器优化，画笔、闪字让表情更动人</em></p>
<p>由于晚上事多，没时间一个个的体验，就先看了看新的皮肤效果。</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-909" title="QQ2010beta_1" src="http://www.imwls.com/wp-content/uploads/2010/01/Snap2.png" alt="" width="250" height="500" />主界面和QQ2009相比无太大区别，文字部分多了一些阴影效果（让我想到了WEB2.0），左下角的主菜单图标做了一些处理。</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-910" title="QQ2010beta_2" src="http://www.imwls.com/wp-content/uploads/2010/01/Snap6.png" alt="" width="250" height="500" />QQ2010皮肤方面最大的一个特性就是自定义皮肤，不仅仅是用别人制作好的皮肤文件，你也可以自己制作哦，如上图。呵呵，其实“制作”方法非常简单，点击右侧的皮肤图标，可以选择自带的皮肤；也可以将电脑里的图片文件拖拽至QQ主面板空白处，QQ2010会自动处理成你需要的Style。那个MM是不是很漂亮啊 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-911" title="QQ2010beta_3" src="http://www.imwls.com/wp-content/uploads/2010/01/Snap4.png" alt="" width="538" height="500" />聊天界面相比QQ2009也做了相当大的改变。首先在聊天界面是非当前活动窗口时，会自动半透明，上图就显示了聊天界面后面的文字哦；其次是增加了“QQ聊天装扮”，如果你设置了聊天装扮，那么与你聊天的好友会与你显示相同的装扮，当然，对方是可以屏蔽的。</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-912" title="QQ2010beta_4" src="http://www.imwls.com/wp-content/uploads/2010/01/Snap5.png" alt="" width="652" height="470" />目前自带的聊天装扮还不是很多，而且只有几个是免费的，绝大多数都是需要QQ会员的支持，囧，我的会员又多了个用处。</p>
<p>明天还要上早班 <img src='http://www.imwls.com/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' />  ，时间来不及了，就先试用这么多，其它的新功能再慢慢发现。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imwls.com/qq2010-beta-preview/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
