<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[小乖乖]]></title>
<description><![CDATA[寻斌的空间]]></description>
<link>http://380326576.qzone.qq.com</link>
<lastBuildDate>Sat, 28 Nov 2009 16:46:27 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Sat, 01 Aug 2009 11:39:19 GMT</pubDate>

<item>
<title><![CDATA[建国大业200多位明星超强阵容]]></title>
<link>http://380326576.qzone.qq.com/blog/1249126759</link>
<description><![CDATA[在线观看 <br>“用明星吸引观众进影院天经地义。影片节奏快，观众不会因为忙着认明星而出戏。”昨日，影片《建国大业》在京发布首款海报，导演韩三平被问到是否担心观众为看明星忽视电影时如此表示。因为片长限定为两个多小时，执行导演黄健新表示“要删掉部分明星戏份。”据悉，《建国大业》片尾曲由孙楠演唱，9月17日起在内地、香港上映，台湾地区也有可能上映。 <br><div style="text-align:center;"><wbr /><a href="http://movie.vodone.com/images/2009-7-2/2009721246498028447_258.jpg" target="_blank"><img style="width:550px;height:395px;border:0;" src="http://movie.vodone.com/images/2009-7-2/2009721246498028447_258.jpg" /></a><wbr /></div><span style="font-weight:bold"><wbr />　　争取在台湾地区上映</span><wbr /> <br>　　经过4个多月的拍摄，由83位明星、170多名演员参与的电影《建国大业》昨日在京召开发布会，公布首款海报和预告片。导演韩三平、执行导演黄健新携唐国强（饰毛泽东）、张国立（饰蒋介石）、许晴（饰宋庆龄）、王伍福（饰朱德）、刘沙（饰刘少奇）等人出席。目前《建国大业》已剪出2小时14分钟的版本，片尾曲请来孙楠演唱。由于有香港寰亚、英皇等公司支持，该片已确定9月17日在内地、香港上映，韩三平同时也表示要争取在台湾地区上映。 <br><span style="font-weight:bold"><wbr />　　另有3小时“完整”版 </span><wbr /> <br>　　谈到《建国大业》的拍摄感受，黄健新称：“前不久陈可辛、尔冬升给我打电话，说羡慕我一次可以和83个明星合作。”而黄健新正在为删戏头疼，“为了影片的完整性和艺术性，肯定有明星戏份要被删除。但会剪辑一个3小时版本，届时明星戏份皆会保留，将给电影频道播放。”黄健新还对明星表示感谢，“张国立为演蒋介石让自己的电视剧停拍了15天，唐国强从头到尾一直在剧组，而别人都是拍两天就离开了。” <br><div style="text-align:center;"><embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="500" height="360" src="http://club.vodone.com/images/flashplayer/vodoneplayer.swf?site=http://club.vodone.com&amp;vid=02ECGCKJDGMECCLCJFDCKHGEI&amp;itemid=102564" /></div> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1249126759#comment</comments>
<qz:effect>134221841</qz:effect>
<pubDate>Sat, 01 Aug 2009 11:39:19 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1249126759</guid>
</item>

<item>
<title><![CDATA[C#如何获取CPU使用率]]></title>
<link>http://380326576.qzone.qq.com/blog/1246335358</link>
<description><![CDATA[using System; <br>using System.Runtime.InteropServices; <br>using System.Diagnostics; <br>using Microsoft.Win32; <br>namespace Org.Mentalis.Utilities { <br>/// &lt;summary&gt; <br>/// Defines an abstract base class for implementations of CPU usage counters. <br>/// &lt;/summary&gt; <br>public abstract class CpuUsage { <br>   /// &lt;summary&gt; <br>   /// Creates and returns a CpuUsage instance that can be used to query the CPU time on this operating system. <br>   /// &lt;/summary&gt; <br>   /// &lt;returns&gt;An instance of the CpuUsage class.&lt;/returns&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;This platform is not supported -or- initialization of the CPUUsage object failed.&lt;/exception&gt; <br>   public static CpuUsage Create() { <br>    if (m_CpuUsage == null) { <br>     if (Environment.OSVersion.Platform == PlatformID.Win32NT) <br>      m_CpuUsage = new CpuUsageNt(); <br>     else if (Environment.OSVersion.Platform == PlatformID.Win32Windows) <br>      m_CpuUsage = new CpuUsage9x(); <br>     else <br>      throw new NotSupportedException(); <br>    } <br>    return m_CpuUsage; <br>   } <br>   /// &lt;summary&gt; <br>   /// Determines the current average CPU load. <br>   /// &lt;/summary&gt; <br>   /// &lt;returns&gt;An integer that holds the CPU load percentage.&lt;/returns&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;One of the system calls fails. The CPU time can not be obtained.&lt;/exception&gt; <br>   public abstract int Query(); <br>   /// &lt;summary&gt; <br>   /// Holds an instance of the CPUUsage class. <br>   /// &lt;/summary&gt; <br>   private static CpuUsage m_CpuUsage= null; <br>} <br>instantiate a CPUUsage object.&lt;/p&gt; <br>/// &lt;/remarks&gt; <br>internal sealed class CpuUsage9x : CpuUsage { <br>   /// &lt;summary&gt; <br>   /// Initializes a new CPUUsage9x instance. <br>   /// &lt;/summary&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;One of the system calls fails.&lt;/exception&gt; <br>   public CpuUsage9x() { <br>    try { <br>     // start the counter by reading the value of the 'StartStat' key <br>     RegistryKey startKey = Registry.DynData.OpenSubKey(@&quot;PerfStats\StartStat&quot;, false); <br>     if (startKey == null) <br>      throw new NotSupportedException(); <br>     startKey.GetValue(@&quot;KERNEL\CPUUsage&quot;); <br>     startKey.Close(); <br>     // open the counter's value key <br>     m_StatData = Registry.DynData.OpenSubKey(@&quot;PerfStats\StatData&quot;, false); <br>     if (m_StatData == null) <br>      throw new NotSupportedException(); <br>    } catch (NotSupportedException e) { <br>     throw e; <br>    } catch (Exception e) { <br>     throw new NotSupportedException(&quot;Error while querying the system information.&quot;, e); <br>    } <br>   } <br>   /// &lt;summary&gt; <br>   /// Determines the current average CPU load. <br>   /// &lt;/summary&gt; <br>   /// &lt;returns&gt;An integer that holds the CPU load percentage.&lt;/returns&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;One of the system calls fails. The CPU time can not be obtained.&lt;/exception&gt; <br>   public override int Query() { <br>    try { <br>     return (int)m_StatData.GetValue(@&quot;KERNEL\CPUUsage&quot;); <br>    } catch (Exception e) { <br>     throw new NotSupportedException(&quot;Error while querying the system information.&quot;, e); <br>    } <br>   } <br>   /// &lt;summary&gt; <br>   /// Closes the allocated resources. <br>   /// &lt;/summary&gt; <br>   ~CpuUsage9x() { <br>    try { <br>     m_StatData.Close(); <br>    } catch {} <br>    // stopping the counter <br>    try { <br>     RegistryKey stopKey = Registry.DynData.OpenSubKey(@&quot;PerfStats\StopStat&quot;, false); <br>     stopKey.GetValue(@&quot;KERNEL\CPUUsage&quot;, false); <br>     stopKey.Close(); <br>    } catch {} <br>   } <br>   /// &lt;summary&gt;Holds the registry key that's used to read the CPU load.&lt;/summary&gt; <br>   private RegistryKey m_StatData; <br>} <br>internal sealed class CpuUsageNt : CpuUsage { <br>   /// &lt;summary&gt; <br>   /// Initializes a new CpuUsageNt instance. <br>   /// &lt;/summary&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;One of the system calls fails.&lt;/exception&gt; <br>   public CpuUsageNt() { <br>    byte[] timeInfo = new byte[32];   // SYSTEM_TIME_INFORMATION structure <br>    byte[] perfInfo = new byte[312]; // SYSTEM_PERFORMANCE_INFORMATION structure <br>    byte[] baseInfo = new byte[44];   // SYSTEM_BASIC_INFORMATION structure <br>    int ret; <br>    // get new system time <br>    ret = NtQuerySystemInformation(SYSTEM_TIMEINFORMATION, timeInfo, timeInfo.Length, IntPtr.Zero); <br>    if (ret != NO_ERROR) <br>     throw new NotSupportedException(); <br>    // get new CPU's idle time <br>    ret = NtQuerySystemInformation(SYSTEM_PERFORMANCEINFORMATION, perfInfo, perfInfo.Length, IntPtr.Zero); <br>    if (ret != NO_ERROR) <br>     throw new NotSupportedException(); <br>    // get number of processors in the system <br>    ret = NtQuerySystemInformation(SYSTEM_BASICINFORMATION, baseInfo, baseInfo.Length, IntPtr.Zero); <br>    if (ret != NO_ERROR ) <br>     throw new NotSupportedException(); <br>    // store new CPU's idle and system time and number of processors <br>    oldIdleTime = BitConverter.ToInt64(perfInfo, 0); // SYSTEM_PERFORMANCE_INFORMATION.liIdleTime <br>    oldSystemTime = BitConverter.ToInt64(timeInfo, 8); // SYSTEM_TIME_INFORMATION.liKeSystemTime <br>    processorCount = baseInfo[40]; <br>   } <br>   /// &lt;summary&gt; <br>   /// Determines the current average CPU load. <br>   /// &lt;/summary&gt; <br>   /// &lt;returns&gt;An integer that holds the CPU load percentage.&lt;/returns&gt; <br>   /// &lt;exception cref=&quot;NotSupportedException&quot;&gt;One of the system calls fails. The CPU time can not be obtained.&lt;/exception&gt; <br>   public override int Query() { <br>    byte[] timeInfo = new byte[32];   // SYSTEM_TIME_INFORMATION structure <br>    byte[] perfInfo = new byte[312]; // SYSTEM_PERFORMANCE_INFORMATION structure <br>    double dbIdleTime, dbSystemTime; <br>    int ret; <br>    // get new system time <br>    ret = NtQuerySystemInformation(SYSTEM_TIMEINFORMATION, timeInfo, timeInfo.Length, IntPtr.Zero); <br>    if (ret !=   NO_ERROR) <br>     throw new NotSupportedException(); <br>    // get new CPU's idle time <br>    ret = NtQuerySystemInformation(SYSTEM_PERFORMANCEINFORMATION, perfInfo, perfInfo.Length, IntPtr.Zero); <br>    if (ret != NO_ERROR) <br>     throw new NotSupportedException(); <br>    // CurrentValue = NewValue - OldValue <br>    dbIdleTime = BitConverter.ToInt64(perfInfo, 0) - oldIdleTime; <br>    dbSystemTime = BitConverter.ToInt64(timeInfo, 8) - oldSystemTime; <br>    // CurrentCpuIdle = IdleTime / SystemTime <br>    if (dbSystemTime != 0) <br>     dbIdleTime = dbIdleTime / dbSystemTime; <br>    // CurrentCpuUsage% = 100 - (CurrentCpuIdle * 100) / NumberOfProcessors <br>    dbIdleTime = 100.0 - dbIdleTime * 100.0 / processorCount + 0.5; <br>    // store new CPU's idle and system time <br>    oldIdleTime = BitConverter.ToInt64(perfInfo, 0); // SYSTEM_PERFORMANCE_INFORMATION.liIdleTime <br>    oldSystemTime = BitConverter.ToInt64(timeInfo, 8); // SYSTEM_TIME_INFORMATION.liKeSystemTime <br>    return (int)dbIdleTime; <br>   } <br>   /// &lt;summary&gt; <br>   /// NtQuerySystemInformation is an internal Windows function that retrieves various kinds of system information. <br>   /// &lt;/summary&gt; <br>   /// &lt;param name=&quot;dwInfoType&quot;&gt;One of the values enumerated in SYSTEM_INFORMATION_CLASS, indicating the kind of system information to be retrieved.&lt;/param&gt; <br>   /// &lt;param name=&quot;lpStructure&quot;&gt;Points to a buffer where the requested information is to be returned. The size and structure of this information varies depending on the value of the SystemInformationClass parameter.&lt;/param&gt; <br>   /// &lt;param name=&quot;dwSize&quot;&gt;Length of the buffer pointed to by the SystemInformation parameter.&lt;/param&gt; <br>   /// &lt;param name=&quot;returnLength&quot;&gt;Optional pointer to a location where the function writes the actual size of the information requested.&lt;/param&gt; <br>   /// &lt;returns&gt;Returns a success NTSTATUS if successful, and an NTSTATUS error code otherwise.&lt;/returns&gt; <br>   [DllImport(&quot;ntdll&quot;, EntryPoint=&quot;NtQuerySystemInformation&quot;)] <br>   private static extern int NtQuerySystemInformation(int dwInfoType, byte[] lpStructure, int dwSize, IntPtr returnLength); <br>   /// &lt;summary&gt;Returns the number of processors in the system in a SYSTEM_BASIC_INFORMATION structure.&lt;/summary&gt; <br>   private const int SYSTEM_BASICINFORMATION = 0; <br>   /// &lt;summary&gt;Returns an opaque SYSTEM_PERFORMANCE_INFORMATION structure.&lt;/summary&gt; <br>   private const int SYSTEM_PERFORMANCEINFORMATION = 2; <br>   /// &lt;summary&gt;Returns an opaque SYSTEM_TIMEOFDAY_INFORMATION structure.&lt;/summary&gt; <br>   private const int SYSTEM_TIMEINFORMATION = 3; <br>   /// &lt;summary&gt;The value returned by NtQuerySystemInformation is no error occurred.&lt;/summary&gt; <br>   private const int NO_ERROR = 0; <br>   /// &lt;summary&gt;Holds the old idle time.&lt;/summary&gt; <br>   private long oldIdleTime; <br>   /// &lt;summary&gt;Holds the old system time.&lt;/summary&gt; <br>   private long oldSystemTime; <br>   /// &lt;summary&gt;Holds the number of processors in the system.&lt;/summary&gt; <br>   private double processorCount; <br>} <br>} <!--v:3.2--> ]]></description>
<category><![CDATA[.Net天地]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1246335358#comment</comments>
<qz:effect>134217728</qz:effect>
<pubDate>Tue, 30 Jun 2009 04:15:58 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1246335358</guid>
</item>

<item>
<title><![CDATA[[转]【转】电饭锅做蛋糕原来如此简单！！]]></title>
<link>http://380326576.qzone.qq.com/blog/1246095547</link>
<description><![CDATA[<span style="font-weight:bold"><wbr /><span style="color:#006600;line-height:1.8em;">鉴于很多朋友问我怎样用电饭锅做蛋糕，所以看到别人空间有就转过来和大家分享啦~~</span><wbr /></span><wbr /> <br><span style="font-weight:bold"><wbr /><span style="color:#006600;line-height:1.8em;">甜点会让人快乐，希望大家可以享受制作美食的过程~~</span><wbr /></span><wbr /> <br><br><br><br><span style="font-weight:bold"><wbr />准备好材料：面粉，鸡蛋，牛奶，盐，糖，油</span><wbr /> <br><br><span style="font-weight:bold"><wbr /><span style="line-height:1.8em;"><span style="line-height:1.8em;">注意：这个过程不能沾一滴水，器皿都擦干再用哦。</span><wbr /></span><wbr /></span><wbr /> <br><br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=8f59d0a58b145441beb4e242df59c1ccdaefd38e0481d7b6f4a6b7d8c55f91d476760c2c99a01b3109b238baedcab9ce3febbad85d09a7703badf94329547b2f7c26abb9a8ad1ca7e2f21aabd11a2094a9a734c9" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=8f59d0a58b145441beb4e242df59c1ccdaefd38e0481d7b6f4a6b7d8c55f91d476760c2c99a01b3109b238baedcab9ce3febbad85d09a7703badf94329547b2f7c26abb9a8ad1ca7e2f21aabd11a2094a9a734c9" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=8f59d0a58b145441beb4e242df59c1ccdaefd38e0481d7b6f4a6b7d8c55f91d476760c2c99a01b3109b238baedcab9ce3febbad85d09a7703badf94329547b2f7c26abb9a8ad1ca7e2f21aabd11a2094a9a734c9" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br></span><wbr /><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />按量打蛋，在这里我用了4个，</span><wbr /></span><wbr /><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />蛋清分离</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=990427f8c368033c92ec64412b6dc2c17cae01fa1b649f1509209ffeb391014cd1116dda51ec4f11ddf98103abd3d64669ae6d47e78d47beb526abd384a65830182de7b757e8c7e0559adccd209e51b5abee4707" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=990427f8c368033c92ec64412b6dc2c17cae01fa1b649f1509209ffeb391014cd1116dda51ec4f11ddf98103abd3d64669ae6d47e78d47beb526abd384a65830182de7b757e8c7e0559adccd209e51b5abee4707" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=990427f8c368033c92ec64412b6dc2c17cae01fa1b649f1509209ffeb391014cd1116dda51ec4f11ddf98103abd3d64669ae6d47e78d47beb526abd384a65830182de7b757e8c7e0559adccd209e51b5abee4707" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">三根筷子准备打蛋清</span><wbr /></span><wbr /> <br><span style="color:#6666ff;line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=03c0c3ef93d034e875004fc97c9fbc0703bc558079b9f3d9a8c3ac8c980406cc31dbc76ad2c6746ee4b75d5846cd7fe36bd56d7ffdf3bdeb8f56e233a759bb8b0f302b0eac5c50d79069ef2a60a4adc25c6cebf3" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=03c0c3ef93d034e875004fc97c9fbc0703bc558079b9f3d9a8c3ac8c980406cc31dbc76ad2c6746ee4b75d5846cd7fe36bd56d7ffdf3bdeb8f56e233a759bb8b0f302b0eac5c50d79069ef2a60a4adc25c6cebf3" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=03c0c3ef93d034e875004fc97c9fbc0703bc558079b9f3d9a8c3ac8c980406cc31dbc76ad2c6746ee4b75d5846cd7fe36bd56d7ffdf3bdeb8f56e233a759bb8b0f302b0eac5c50d79069ef2a60a4adc25c6cebf3" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">打两下就这样了</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=e00445173d983e788ee0b90349dee973b88264eeeed547e0b8ae16e52331a5b74c58ee4d33711eced7a024cff25b44a6cf896c380a287baf0547ce4e02508836e66a8e93358743f84dbee7c7bffffdebcc67a33d" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=e00445173d983e788ee0b90349dee973b88264eeeed547e0b8ae16e52331a5b74c58ee4d33711eced7a024cff25b44a6cf896c380a287baf0547ce4e02508836e66a8e93358743f84dbee7c7bffffdebcc67a33d" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=e00445173d983e788ee0b90349dee973b88264eeeed547e0b8ae16e52331a5b74c58ee4d33711eced7a024cff25b44a6cf896c380a287baf0547ce4e02508836e66a8e93358743f84dbee7c7bffffdebcc67a33d" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">为了突出甜，放一点点盐</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=22fb407419183c3a93f098d5de15c2b3cda8ae5241b9aeb2e3870c3e1fe68658b9f44698c0e335bdca46ea9f82d30ebfdebb6759706c42cfc62588f1e255f46327c61dcbdf355a259be2fef9f81b78de02cd6a97" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=22fb407419183c3a93f098d5de15c2b3cda8ae5241b9aeb2e3870c3e1fe68658b9f44698c0e335bdca46ea9f82d30ebfdebb6759706c42cfc62588f1e255f46327c61dcbdf355a259be2fef9f81b78de02cd6a97" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=22fb407419183c3a93f098d5de15c2b3cda8ae5241b9aeb2e3870c3e1fe68658b9f44698c0e335bdca46ea9f82d30ebfdebb6759706c42cfc62588f1e255f46327c61dcbdf355a259be2fef9f81b78de02cd6a97" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />一勺糖</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=8e0f82c1a8ac13d41a9e9c45b8f9f3ef93e4e669b0813b2d50b75f3a4eb7ca53a7ec0afcd8f6aebf392c6c736b34084af40e8741677640e8643f4ec3bfcf8a71fbf5cacf1e625e5f3f119cd0f850e2623757ead1" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=8e0f82c1a8ac13d41a9e9c45b8f9f3ef93e4e669b0813b2d50b75f3a4eb7ca53a7ec0afcd8f6aebf392c6c736b34084af40e8741677640e8643f4ec3bfcf8a71fbf5cacf1e625e5f3f119cd0f850e2623757ead1" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=8e0f82c1a8ac13d41a9e9c45b8f9f3ef93e4e669b0813b2d50b75f3a4eb7ca53a7ec0afcd8f6aebf392c6c736b34084af40e8741677640e8643f4ec3bfcf8a71fbf5cacf1e625e5f3f119cd0f850e2623757ead1" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">继续打继续打继续打</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />有点稠时再放一勺糖，继续打</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=5afaf7d9d1252d99162bdfb90196be05e0ae20af2f52b4858422b54632b563c99ca462baa3a91f9229655a23c924619e5373041b5148968e452732b46d2b0a45a87c242a7b7c8662372647f592f7e4440e5cde67" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=5afaf7d9d1252d99162bdfb90196be05e0ae20af2f52b4858422b54632b563c99ca462baa3a91f9229655a23c924619e5373041b5148968e452732b46d2b0a45a87c242a7b7c8662372647f592f7e4440e5cde67" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=5afaf7d9d1252d99162bdfb90196be05e0ae20af2f52b4858422b54632b563c99ca462baa3a91f9229655a23c924619e5373041b5148968e452732b46d2b0a45a87c242a7b7c8662372647f592f7e4440e5cde67" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />大约15分钟后，就会变成奶油状，而且筷子上的不会掉下来</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />这个过程比较关键，15分钟连续打，不是闹着玩的，很痛苦滴</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=1892d82de681368373a1fc2ca5576772d64a922c126618060edc695cb0bd6d5b237b50d8acbcfe0bda06b572e1682810d3b26729dc52144f960b808adf581a6ddbfc36657a6010e22dbda3178a7e2aadcd30fceb" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=1892d82de681368373a1fc2ca5576772d64a922c126618060edc695cb0bd6d5b237b50d8acbcfe0bda06b572e1682810d3b26729dc52144f960b808adf581a6ddbfc36657a6010e22dbda3178a7e2aadcd30fceb" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=1892d82de681368373a1fc2ca5576772d64a922c126618060edc695cb0bd6d5b237b50d8acbcfe0bda06b572e1682810d3b26729dc52144f960b808adf581a6ddbfc36657a6010e22dbda3178a7e2aadcd30fceb" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />蛋黄里放两勺糖</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=af33b09b4c6e13152c2d92065ef913ab032a0fe1844f87f140a222d7c22c7524a3e2b4b9734c051dd89c63d00215b1a78b5e9a40f55d1bc175d675fccc7710fbbc5abdd88d85495b55ba729dcd8af6edd3c84727" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=af33b09b4c6e13152c2d92065ef913ab032a0fe1844f87f140a222d7c22c7524a3e2b4b9734c051dd89c63d00215b1a78b5e9a40f55d1bc175d675fccc7710fbbc5abdd88d85495b55ba729dcd8af6edd3c84727" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=af33b09b4c6e13152c2d92065ef913ab032a0fe1844f87f140a222d7c22c7524a3e2b4b9734c051dd89c63d00215b1a78b5e9a40f55d1bc175d675fccc7710fbbc5abdd88d85495b55ba729dcd8af6edd3c84727" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">3勺冒尖的面粉</span><wbr /></span><wbr /> <br><span style="color:#6666ff;line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=37a178b2388b918bb4666605851cdab7ff2e2d157b9d0b7dfda0ea8ea9667f95e1f4e2e0eaa7e6be641fd217d0fa2f22ad2326fb12f3f232fba827a3b2685a8e88913ce5e10de0368602e3372b0dac4207648c31" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=37a178b2388b918bb4666605851cdab7ff2e2d157b9d0b7dfda0ea8ea9667f95e1f4e2e0eaa7e6be641fd217d0fa2f22ad2326fb12f3f232fba827a3b2685a8e88913ce5e10de0368602e3372b0dac4207648c31" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=37a178b2388b918bb4666605851cdab7ff2e2d157b9d0b7dfda0ea8ea9667f95e1f4e2e0eaa7e6be641fd217d0fa2f22ad2326fb12f3f232fba827a3b2685a8e88913ce5e10de0368602e3372b0dac4207648c31" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />6勺牛奶</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=de0e1c0d407034fe0632a9f4b7f8736605e49fbdec58bf313b1a3b0f04928ad534f2bf91c5a78e73801ab71052dd64f5ee1523b3d2f7932ffb5e9e5c6632a2de2ac18cbd7ce0797159dde434334b060580e6d9af" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=de0e1c0d407034fe0632a9f4b7f8736605e49fbdec58bf313b1a3b0f04928ad534f2bf91c5a78e73801ab71052dd64f5ee1523b3d2f7932ffb5e9e5c6632a2de2ac18cbd7ce0797159dde434334b060580e6d9af" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=de0e1c0d407034fe0632a9f4b7f8736605e49fbdec58bf313b1a3b0f04928ad534f2bf91c5a78e73801ab71052dd64f5ee1523b3d2f7932ffb5e9e5c6632a2de2ac18cbd7ce0797159dde434334b060580e6d9af" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />搅拌好</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=8d341910474fa54be80609a723d0973e81d5d262e439088283c1970970b88167f9508d50d5e954c3abb62e625719cb272f8a2df4c39a333b39f4100fe027227d50a1cafff842913e305899502aacef3062a6c941" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=8d341910474fa54be80609a723d0973e81d5d262e439088283c1970970b88167f9508d50d5e954c3abb62e625719cb272f8a2df4c39a333b39f4100fe027227d50a1cafff842913e305899502aacef3062a6c941" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=8d341910474fa54be80609a723d0973e81d5d262e439088283c1970970b88167f9508d50d5e954c3abb62e625719cb272f8a2df4c39a333b39f4100fe027227d50a1cafff842913e305899502aacef3062a6c941" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />倒入一半奶油状的蛋清</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />注意：上下搅拌而不是打圈</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=1c8297250bdd7788c88a47c745d3f9839cc28b2d9c8da1f3abae46ec8122f3af4b0776d2a7c5d35b37fe382841c858059061699282f69c419a6ad90c35c883245d48ad110ff5bcf1ffeecbb09f6f72f4053ffed7" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=1c8297250bdd7788c88a47c745d3f9839cc28b2d9c8da1f3abae46ec8122f3af4b0776d2a7c5d35b37fe382841c858059061699282f69c419a6ad90c35c883245d48ad110ff5bcf1ffeecbb09f6f72f4053ffed7" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=1c8297250bdd7788c88a47c745d3f9839cc28b2d9c8da1f3abae46ec8122f3af4b0776d2a7c5d35b37fe382841c858059061699282f69c419a6ad90c35c883245d48ad110ff5bcf1ffeecbb09f6f72f4053ffed7" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />搅拌均匀后再倒入另一半奶油状蛋清，上下搅拌好</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=2d768a5853b309529cc4605701bc81a7e8fc3983aba406dbd28d70ea8e2ff582458d2417448b111f13ca8ac61f1226e0d9ec9efae399deb2e883aff0746bde9e4765a83044279a9a353e9221854c6abf7db08772" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=2d768a5853b309529cc4605701bc81a7e8fc3983aba406dbd28d70ea8e2ff582458d2417448b111f13ca8ac61f1226e0d9ec9efae399deb2e883aff0746bde9e4765a83044279a9a353e9221854c6abf7db08772" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=2d768a5853b309529cc4605701bc81a7e8fc3983aba406dbd28d70ea8e2ff582458d2417448b111f13ca8ac61f1226e0d9ec9efae399deb2e883aff0746bde9e4765a83044279a9a353e9221854c6abf7db08772" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />电饭煲按下煮饭健预热1分钟后拿出，锅有点热就可以</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />倒入少许油，均匀涂在锅内，以防粘锅</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=2eb251f28830c16a143da630281e66cd3939bdbd68e231cbdd4b1d061f05430b587a95b36935eaadb477614eb62189ae56bd2e993964c4f12c070a835d9a8391b4cd26f1bf7ed5cff54618426418a779a69b2436" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=2eb251f28830c16a143da630281e66cd3939bdbd68e231cbdd4b1d061f05430b587a95b36935eaadb477614eb62189ae56bd2e993964c4f12c070a835d9a8391b4cd26f1bf7ed5cff54618426418a779a69b2436" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=2eb251f28830c16a143da630281e66cd3939bdbd68e231cbdd4b1d061f05430b587a95b36935eaadb477614eb62189ae56bd2e993964c4f12c070a835d9a8391b4cd26f1bf7ed5cff54618426418a779a69b2436" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr /><span style="color:#6666ff;line-height:1.8em;">倒入搅拌好的东西，然后蹲几下锅，把气泡震出来</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=57eab3a9cb50c2c5238f790785a95d858870472f23ab99efbc946bd6a9287855b45cc55f8a14dafbaba24e2a4fc59fa49d7ac90b2703045ff491a90869037ef1e6aaea46854f07dca0e63e2194fa7cc08dcde114" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=57eab3a9cb50c2c5238f790785a95d858870472f23ab99efbc946bd6a9287855b45cc55f8a14dafbaba24e2a4fc59fa49d7ac90b2703045ff491a90869037ef1e6aaea46854f07dca0e63e2194fa7cc08dcde114" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=57eab3a9cb50c2c5238f790785a95d858870472f23ab99efbc946bd6a9287855b45cc55f8a14dafbaba24e2a4fc59fa49d7ac90b2703045ff491a90869037ef1e6aaea46854f07dca0e63e2194fa7cc08dcde114" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />按下煮饭键，2分钟左右会自动跳到保温档，这时用毛巾捂住通风口，闷20分钟</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />然后再按下煮饭键，20分钟后就OK啦</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=5706f14d9ff3882627a1f5ed5581fc2d43d08fe148b8c890687f1850b2968c132a2cc70a65b85a9b12338747b9cb426ce8e4a7fe6bca6feee8f9500994c6423a8ddb8114992b847a632ac2bc663e9b5d165ff8ea" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=5706f14d9ff3882627a1f5ed5581fc2d43d08fe148b8c890687f1850b2968c132a2cc70a65b85a9b12338747b9cb426ce8e4a7fe6bca6feee8f9500994c6423a8ddb8114992b847a632ac2bc663e9b5d165ff8ea" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=5706f14d9ff3882627a1f5ed5581fc2d43d08fe148b8c890687f1850b2968c132a2cc70a65b85a9b12338747b9cb426ce8e4a7fe6bca6feee8f9500994c6423a8ddb8114992b847a632ac2bc663e9b5d165ff8ea" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="font-weight:bold"><wbr />开盖咯 <br></span><wbr /><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=07dc23d0ffa9bbaf365d5b0e7aa28a49ac3664c853450473ebbdd3097bc6cf3de6168f998bb15fe507a471e278b5ac281a2d46b800c988d4e4703c0577fdf2412d2b61ba75bfde87e7f7a902b726094e7f04eecc" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=07dc23d0ffa9bbaf365d5b0e7aa28a49ac3664c853450473ebbdd3097bc6cf3de6168f998bb15fe507a471e278b5ac281a2d46b800c988d4e4703c0577fdf2412d2b61ba75bfde87e7f7a902b726094e7f04eecc" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=07dc23d0ffa9bbaf365d5b0e7aa28a49ac3664c853450473ebbdd3097bc6cf3de6168f998bb15fe507a471e278b5ac281a2d46b800c988d4e4703c0577fdf2412d2b61ba75bfde87e7f7a902b726094e7f04eecc" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />锅内涂了油，一倒就出来啦，蛋糕底部颜色比较深</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />松软可口的蛋糕，大功告成啦！掌声响起来</span><wbr /></span><wbr /><img src="http://imgcache.qq.com/qzone/em/e142.gif"><wbr /> <br><span style="line-height:1.8em;"><a href="http://sz.photo.store.qq.com/rurl2=b15c97142a9e1b57a5ca15562c126c0a8340b0b2ae91524266dbc8a05aa841b7a149fbaedfbfc0bc9419f4be38aecbc01052164af2f77c425275086a147dff3eb2aa99d33982810355e74909e717d7ff8d396982" target="_blank"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=b15c97142a9e1b57a5ca15562c126c0a8340b0b2ae91524266dbc8a05aa841b7a149fbaedfbfc0bc9419f4be38aecbc01052164af2f77c425275086a147dff3eb2aa99d33982810355e74909e717d7ff8d396982" target="_blank"><img style="width:450px;height:338px;border:0;" src="http://sz.photo.store.qq.com/rurl2=b15c97142a9e1b57a5ca15562c126c0a8340b0b2ae91524266dbc8a05aa841b7a149fbaedfbfc0bc9419f4be38aecbc01052164af2f77c425275086a147dff3eb2aa99d33982810355e74909e717d7ff8d396982" /></a><wbr /></a><wbr /></span><wbr /></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[天下杂侃]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1246095547#comment</comments>
<qz:effect>1033</qz:effect>
<pubDate>Sat, 27 Jun 2009 09:39:07 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1246095547</guid>
</item>

<item>
<title><![CDATA[鞋袭-总统的反击]]></title>
<link>http://380326576.qzone.qq.com/blog/1243921645</link>
<description><![CDATA[《鞋袭——总统的反击》（阿里巴巴广告片） <br>本片其实是阿里巴巴的广告片。 <br>观看地址：<a href="http://6.cn/watch/11227767.html" target="_blank">http://6.cn/watch/11227767.html</a><wbr /> <br><embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="512" height="333" src="http://6.cn/p/urjm_nbXINjBzilILwOI8A.swf" /> <br>这个广告片从三个月前就开始策划了。一个月前开始拍摄、制作。 <br>想下载收藏的，可以下载： <br>大mp4 <br> <br><a href="http://www.audiobar.org/alibaba_mp4_640x360.rar" target="_blank">http://www.audiobar.org/alibaba_mp4_640x360.rar</a><wbr /> <br>小mp4 <br><a href="http://www.audiobar.org/alibaba_mp4_384x216.rar" target="_blank">http://www.audiobar.org/alibaba_mp4_384x216.rar</a><wbr /> <br>小mp4（320x240，适用于ipod等播放机） <br><a href="http://www.audiobar.org/alibaba_mp4_320x240.rar" target="_blank">http://www.audiobar.org/alibaba_mp4_320x240.rar</a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1243921645#comment</comments>
<qz:effect>134221904</qz:effect>
<pubDate>Tue, 02 Jun 2009 05:47:25 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1243921645</guid>
</item>

<item>
<title><![CDATA[动态加载Javascript文件]]></title>
<link>http://380326576.qzone.qq.com/blog/1206091896</link>
<description><![CDATA[动态加载Javascript文件<br><br>动态加载外部JS文件，示例代码如下： <br><span style="font-weight:bold"><wbr />js4inc.js </span><wbr />：function DoIncJs(sSrc){ <br>var oHead = document.getElementsByTagName('head')[0]; <br>var oScript = document.createElement('script'); <br>oScript.type = &quot;text/javascript&quot;; <br>oScript.src = sSrc; <br>oHead.appendChild(oScript); <br>} <br>function IncJsFiles(sUrls) { <br>var sUrls=sUrls.split(&quot;,&quot;); <br>for(var i=0;i&lt;sUrls.length;i++) { <br>DoIncJs(sUrls<span style="font-style:italic"><wbr />); <br>} <br>} <br>IncJsFiles(&quot;a.js,b.js,c.js&quot;); <br><br><span style="font-weight:bold"><wbr />IncldueJsFile_Example.html</span><wbr />： <br><br>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; <br>&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; lang=&quot;gb2312&quot;&gt; <br>&lt;head&gt; <br>&lt;title&gt; 动态引用js文件 &lt;/title&gt; <br>&lt;meta name=&quot;Author&quot; content=&quot;枫岩,Mail:CNLei.y.l@gmail.com&quot; /&gt; <br>&lt;script type=&quot;text/javascript&quot; src=&quot;js4inc.js&quot;&gt;&lt;/script&gt; <br>&lt;/head&gt; <br>&lt;body&gt; <br>&lt;a href=&quot;javascript:a();&quot;&gt;a.js&lt;/a&gt; <br><br>&lt;a href=&quot;javascript:b();&quot;&gt;b.js&lt;/a&gt; <br><br>&lt;a href=&quot;javascript:c();&quot;&gt;c.js&lt;/a&gt; <br><br>&lt;/body&gt; <br>&lt;/html&gt; <br>待加载的JS文件及代码： <br><span style="font-weight:bold"><wbr />a.js</span><wbr />：function a(){ <br>alert(&quot;a&quot;); <br>} <br><span style="font-weight:bold"><wbr />b.js</span><wbr />：function b(){ <br>alert(&quot;b&quot;); <br>} <br><span style="font-weight:bold"><wbr />c.js</span><wbr />：function c(){ <br>alert(&quot;c&quot;); <br>} <br><span style="font-weight:bold"><wbr />代码下载</span><wbr />： <br><a href="http://www.cnlei.org/blog/uploads/200604/20_174842_inclduejsfile_example.rar" target="_blank"><wbr /><a href="http://www.cnlei.org/blog/styles/default/images/icon_file.gif" target="_blank"><img style="border:0;" src="http://www.cnlei.org/blog/styles/default/images/icon_file.gif" /></a><wbr /> Click Here To Download</a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[.Net天地]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1206091896#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Fri, 21 Mar 2008 09:31:36 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1206091896</guid>
</item>

<item>
<title><![CDATA[javascript线程模拟]]></title>
<link>http://380326576.qzone.qq.com/blog/1205922850</link>
<description><![CDATA[<span style="line-height:1.8em;">在javascript</span><wbr />中，是没有线程</span><wbr />的，只能模拟一个了，前些日子写了个，现在把它贴出来。</span><wbr /> <br><span style="line-height:1.8em;">　　thread.js:</span><wbr /> <br>/** <br>* 线程</span><wbr />管理类 <br>* @author zxub 2006-06-12 <br>*/ <br>function Thread(_task,_delay,_times) <br>{ <br>    this.runFlag=false; <br>    this.busyFlag=false; <br>    this.taskArgs=Array.prototype.slice.call(arguments,3); <br>     <br>    if (_times!=undefined) <br>    { <br>        this.times=_times; <br>    } <br>    else <br>    { <br>        this.times=1; <br>    } <br>     <br>    var _point=this; <br>     <br>    this.timerID=-1; <br>     <br>    this.start=function() <br>    { <br>        if (this.runFlag==false) <br>        { <br>            this.timerID=window.setInterval(_point.run,_delay);             <br>            this.runFlag=true; <br>        } <br>    } <br>     <br>    this.run=function() <br>    { <br>        if (_point.busyFlag) return; <br>        if (_point.times==-1)//无限循环 <br>        { <br>            _task(_point.taskArgs); <br>        } <br>        else if (_point.times&gt;0) <br>        { <br>            _task(_point.taskArgs); <br>            _point.times-=1; <br>            if (_point.times==0) <br>            { <br>                window.clearInterval(this.timerID); <br>            }                                   <br>        }         <br>    } <br>     <br>    this.sleep=function() <br>    { <br>        this.busyFlag=true; <br>    } <br>     <br>    this.resume=function() <br>    { <br>        this.busyFlag=false; <br>    } <br>     <br>    this.abort=function() <br>    {         <br>        window.clearInterval(this.timerID);         <br>    } <br>} <br><span style="font-size:13px;line-height:1.8em;">例子如下：</span><wbr /> <br>&lt;html&gt; <br>&lt;head&gt; <br>&lt;title&gt;测试&lt;/title&gt; <br>&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt; <br>&lt;script type=&quot;text/javascript</span><wbr />&quot; src=&quot;thread.js&quot;&gt;&lt;/script&gt;     <br>&lt;style type=&quot;text/css&quot;&gt; <br>&lt;!-- <br>body,tr,td { font-size: 12px;} <br>--&gt; <br>&lt;/style&gt; <br>&lt;/head&gt; <br>&lt;body&gt; <br>&lt;script&gt; <br>var func=function(_o) <br>{ <br>    document.getElementById(_o).innerHTML=parseInt(document.getElementById(_o).innerHTML)+1; <br>} <br>var t1=new Thread(func,50,121,&quot;t1&quot;); <br>var t2=new Thread(func,200,20,&quot;t2&quot;); <br>&lt;/script&gt; <br>&lt;input type=&quot;button&quot; value=&quot;start1&quot; onclick='t1.start();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;sleep1&quot; onclick='t1.sleep();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;resume1&quot; onclick='t1.resume();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;abort1&quot; onclick='t1.abort();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;start2&quot; onclick='t2.start();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;sleep2&quot; onclick='t2.sleep();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;resume2&quot; onclick='t2.resume();'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;abort2&quot; onclick='t2.abort();'&gt;&lt;/input&gt; <br>&lt;div id=&quot;t1&quot;&gt;0&lt;/div&gt; | &lt;div id=&quot;t2&quot;&gt;0&lt;/div&gt; <br>&lt;input type=&quot;button&quot; value=&quot;t1.timerID&quot; onclick='alert(t1.timerID);'&gt;&lt;/input&gt; <br>&lt;input type=&quot;button&quot; value=&quot;t2.timerID&quot; onclick='alert(t2.timerID);'&gt;&lt;/input&gt; <br>&lt;/body&gt; <br>&lt;/html&gt; <!--v:3.2--> ]]></description>
<category><![CDATA[.Net天地]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1205922850#comment</comments>
<qz:effect>512</qz:effect>
<pubDate>Wed, 19 Mar 2008 10:34:10 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1205922850</guid>
</item>

<item>
<title><![CDATA[截获艳照门偷窥者后门程序]]></title>
<link>http://380326576.qzone.qq.com/blog/1205157403</link>
<description><![CDATA[360安全中心截获了2款利用“艳照门事件”传播的木马后门程序，该后门程序利用现在广为流传的“艳照门”事件，恶意在网上散播名为“艳照加码录象解码器(播放不了的艳照门录象专用).exe”和“更多最新图片服务器浏览.exe”的文件诱使用户下载，激发后在用户电脑中留出可控制后门，成为僵尸网络中的“肉鸡”，随时可能造成隐私泄漏。请用户立即使用360安全卫士进行扫描查杀。　　360安全专家介绍，“艳照加码录象解码器(播放不了的艳照门录象专用).exe”被下载执行后自动生成并释放三个文件(go.vbs、go.bat、swzdll.dll 守望者后门)到系统目录下面；“更多最新图片服务器浏览.exe”被执行后则生成servicedll木马文件。这两个后门程序隐藏在系统后，黑客可以通过远程控制用户电脑，任意下载各种木马病毒，危害极大。 <br>　　这次利用“艳照门”传播木马病毒的方式主要有几种：网站挂马后，在网站上发布所谓的激情照，吸引用户浏览后中毒；文件传播，把激情照片压缩成压缩包供人下载，顺便把病毒与照片一起打包，用户运行压缩包里的文件后中毒，有的甚至做成exe执行文件，起个“艳照”相关的名字，诱使人点击后中毒。 <br>　　据统计，目前以“艳照门”为主题的带毒网站、论坛和博客就有200多个，以此进行传播的病毒多达数百个，且在快速持续增长。 <!--v:3.2--> ]]></description>
<category><![CDATA[病毒防治]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1205157403#comment</comments>
<qz:effect>512</qz:effect>
<pubDate>Mon, 10 Mar 2008 13:56:43 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1205157403</guid>
</item>

<item>
<title><![CDATA[如何避免&quot;艳照门&quot;信息安全危机]]></title>
<link>http://380326576.qzone.qq.com/blog/1205036914</link>
<description><![CDATA[从1月28日起，网上陆续传出陈冠希和几位著名女星的艳照，涉及的明星包括大牌明星“阿娇”和“张柏芝”。且艳照极其色情，甚至可以“四级”表示。具体关于艳照的内容已经对各位女星造成的伤害，各位朋友肯定都看到过相关报道了，我就不在累述。<br>　　我曾经在网上看到过400张左右艳照，大都是视频截图。有几张可以很明确的表示是陈冠希同女星淫乱时自己拿DV拍摄的。　　至于艳照的来源，据香港的网站透漏，陈冠希平时就有拍摄艳照的爱好，喜欢将自己同床过的女伴拍摄裸照。而陈冠希所持有的苹果电脑曾经拿去维修过，其间可能有好事者将其电脑上的艳照复制。我个人认为以上这个解释是最靠谱的。<br>　　<span style="font-weight:bold"><wbr />个人信息安全无时无处不在</span><wbr /><br>　　从这个事件可以看出个人信息安全的重要性。很多人对个人信息很不在意，认为在自己电脑上的内容就是安全的，这个想法是非常错误，特别是在互联网时代信息安全无时无处不在。<br>　　很多方法可以盗取电脑上的资料，这包括黑客入侵、网络诈骗、维修泄密。网友需要时刻警惕个人信息的安全。<br>　　个人信息安全包括电脑、手机等等<br>　　个人信息安全不仅包括个人用的台式电脑、笔记本电脑、还应该包括手机、DV、数码相机、网上的个人空间等一系列的带可存储数据内容的产品。<br>　　去年年中就有人爆料称何洁遗失手机泄漏了林俊杰与何洁的一些私密相片。而后将两人的私密相片贴到猫扑网上。这是手机个人信息泄漏的事件。<br><div style="text-align:center;"><wbr /><a href="http://pfw.sky.net.cn/upimg/allimg/080216/1809260.jpg" target="_blank"><img style="width:360px;height:250px;border:0;" src="http://pfw.sky.net.cn/upimg/allimg/080216/1809260.jpg" /></a><wbr /></div><br>　　伊来克斯总经理助理裸照门事件主角石靖自拍照曝光是个人空间被人破解的典型代表<br>　　<span style="font-weight:bold"><wbr />个人信息安全无小事</span><wbr /><br>　　个人信息安全很多人认为是个小事情，其实这样想就打错特错了。比如手机吧，很私密的东西，很多人都认为，自己的手机不会借给别人看，不会泄漏自己的隐私吧，殊不知他没有想到如果手机被丢失了，又被好事者捡到并发布到网上的严重后果。前几年就曾经报道过新加坡17岁女大学生自拍ML短片被泄露后自杀的事件。这是个人信息安全泄漏的案例<br>　　说了这么多个人信息安全的重要性，来说说怎么防护吧。<br>　　1、不拍摄不保存不雅内容<br>　　说起这几起案件，都是受害人被拍摄了不雅的内容，中国有句古话叫做“若要人不知,除非己莫为”。任何不雅的内容，再安全的防护措施都不是百分百有效的。所以不拍摄不保存此类信息是最安全。没有即安全。<br>　　2、本地加密<br>　　对于个人电脑，很多人喜欢把自己私密的东西存在上面，认为这样很安全，这是大错特错了。我不是安全专家，但是我知道电脑泄密方法很多，黑客入侵，病毒入侵，电脑丢失，维修安全等等，防不胜防。本地加密虽然不能一劳永逸，但是至少可以在信息泄漏后，起到进一步的阻挡作用。反观陈冠希事件，如果陈在自己的电脑上对照片和视频进行加密的话，这个事件就不会发生了。<br>　　3、安装个人防火墙和及时升级安全补丁<br>　　对于电脑，要安装防火墙和杀毒软件，并及时升级安全补丁(包括windows补丁和杀毒软件)。安装个人防火墙并及时升级安全补丁可以有效的阻挡来源于网络的攻击。黑客一般只能攻击那些没有安装防火墙和未及时升级安全补丁的用户。换句通俗的话说苍蝇不盯无缝的蛋。<br>　　4、对于手机，不保存不雅内容<br>　　很多人喜好使用手机拍摄一些不雅观的内容并存在手机上，这是非常危险的。手机可以说是丢失频率最高的个人设备。说不定哪天就丢了，谁敢保证这一辈子不丢手机?<br>　　5、不要将涉及安全的内容存在网上<br>　　任何保存在互联网上的内容都是不安全的。任何放在互联网上的内容，都相当于你把自己的信息给了别人保存，你怎能保证别人不丢失吗?<br>　　6、特别提醒大家不要把重要内容保存在邮箱内<br>　　邮箱内的内容是很不安全的，我这里不是说网站提供的服务不安全。而是说邮箱内容泄漏方式很多。包括自己密码让别人猜测、邮箱密码别别人破解。总之邮箱也不是绝对安全的。 <!--v:3.2--> ]]></description>
<category><![CDATA[病毒防治]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/1205036914#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Sun, 09 Mar 2008 04:28:34 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/1205036914</guid>
</item>

<item>
<title><![CDATA[CSS、XHTML中隐藏滚动条与设置样式]]></title>
<link>http://380326576.qzone.qq.com/blog/60</link>
<description><![CDATA[<span style="font-weight:bold"><wbr />xhtml中隐藏滚动条</span><wbr /><br><br>在用ie6浏览有框架的xhtml页面的时候，默认会水平和垂直滚动条会一起出现，这是ie6的一个<br>bug，在firefox上是正常的，出现的原因是其对XHTML 1.0 transitional doctype的解释缺陷.<br><br>对于这个bug一般有3种解决方案，<br><br>方法1:<br>代码：<br><br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br>html { overflow-y: scroll; }<br> <br>原理：强制显示ie的垂直滚动条，而忽略水平滚动条<br>优点：完全解决了这个问题, 允许你保持完整的XHTML doctype. <br>缺点：即使页面不需要垂直滚动条的时候也会出现垂直滚动条。<br><br>方法2:(推荐采用)<br>代码：<br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br>html { overflow-x: hidden; overflow-y: auto; }<br><br>原理：隐藏横向滚动，垂直滚动根据内容自适应<br>优点：在视觉上解决了这个问题.在不必要的时候, 未强制垂直滚动条出现.<br>缺点：只是隐藏了水平滚动条，如果页面真正需要水平滚动条的时候，<br>屏幕以外的内容会因为用户无法水平滚动，而看不到。<br><br>方法3:<br>代码：<br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br>body { margin-right: -15px; margin-bottom: -15px; } <br><br>原理：这会在margin的水平和垂直方向上添加一个负值, IE添加了该精确数值后, 便会去除对滚动条的需求假象.<br>优点：在视觉上解决了这个问题.，垂直滚动根据内容自适应<br>缺点：由于&quot;人为创建&quot;了15px的外边距(margin), 所以无法使用该填充过的屏幕区域. <br><br>------------------------------------<br><br><span style="font-weight:bold"><wbr />设置样式</span><wbr /><br><br>在原来的html的时候，我们可以这样定义整个页面的滚动条<br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br> body{<br>scrollbar-3dlight-color:#D4D0C8; /*- 最外左 -*/<br>scrollbar-highlight-color:#fff; /*- 左二 -*/<br>scrollbar-face-color:#E4E4E4; /*- 面子 -*/<br>scrollbar-arrow-color:#666; /*- 箭头 -*/<br>scrollbar-shadow-color:#808080; /*- 右二 -*/<br>scrollbar-darkshadow-color:#D7DCE0; /*- 右一 -*/<br>scrollbar-base-color:#D7DCE0; /*- 基色 -*/<br>scrollbar-track-color:#;/*- 滑道 -*/<br>} <br><br><br>但是同样的代码，我们应用在 xhtml下就不起作用了，我相信好多好朋友也遇到过同样的问题<br>那么怎么才能在xhtml下应用滚动条样式呢？看下列代码<br><br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br> html{<br>scrollbar-3dlight-color:#D4D0C8; /*- 最外左 -*/<br>scrollbar-highlight-color:#fff; /*- 左二 -*/<br>scrollbar-face-color:#E4E4E4; /*- 面子 -*/<br>scrollbar-arrow-color:#666; /*- 箭头 -*/<br>scrollbar-shadow-color:#808080; /*- 右二 -*/<br>scrollbar-darkshadow-color:#D7DCE0; /*- 右一 -*/<br>scrollbar-base-color:#D7DCE0; /*- 基色 -*/<br>scrollbar-track-color:#;/*- 滑道 -*/<br>} <br><br><br>这段代码和上一段唯一的不同就是在css定义的元素上，一个是body一个是html。我们再测试一下，把html页面的<br>&quot;body&quot;修改成&quot;html&quot;测试一下，发现依然可以实现效果。那到底是为什么呢？<br><br>从字面上来看，xhtml比html多一个x,那么这个x其实也就是xml,为什么要加一个xml在里面？其实最根本的原因就是要让html更加结构化标准化（因为html实在是太烂）。<br>我们在html里面定义的是body，因为html不是很标准所以这样可以生效，而在xhtml里面这样就不行了，<br>我看看那个图很明显，body标签本身不是根元素，只有html才是根元素，而页面的滚动条也是属于根元素的，所以这就是我们为什么定义body没有效果的原因，因为我们定义的只是一个子原素。ok，我们知道了原理，来做一个试验如果把定义&quot;body&quot;或&quot;xhtml&quot;换成&quot;*&quot;，<br><br><wbr /><a href="http://www.flyso.net/images/code.gif" target="_blank"><img style="border:0;" src="http://www.flyso.net/images/code.gif" /></a><wbr /> 程序代码<br> *{<br>scrollbar-3dlight-color:#D4D0C8; /*- 最外左 -*/<br>scrollbar-highlight-color:#fff; /*- 左二 -*/<br>scrollbar-face-color:#E4E4E4; /*- 面子 -*/<br>scrollbar-arrow-color:#666; /*- 箭头 -*/<br>scrollbar-shadow-color:#808080; /*- 右二 -*/<br>scrollbar-darkshadow-color:#D7DCE0; /*- 右一 -*/<br>scrollbar-base-color:#D7DCE0; /*- 基色 -*/<br>scrollbar-track-color:#;/*- 滑道 -*/<br>} <br><br><br><br>在html和xhtml都通过，因为*就是定义页面上的任何标签当然也包括了“html”这个标签。<br><br>(ps:其实与其说是html与xhtml的区别到不如说是有无XHTML 1.0 transitional doctype的区别，但是如果你把页面的XHTML 1.0 transitional doctype去掉的话，那么这个页面就没有doctype，默认的显示方式就是html4.01,不过你要把XHTML 1.0 transitional doctype修改成HTML 4.01 doctype同样页面定义body也不会有效果的，虽然这个页面的标准是html 4.01)  <!--v:3.2--> ]]></description>
<category><![CDATA[.Net天地]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/60#comment</comments>
<qz:effect>1</qz:effect>
<pubDate>Fri, 03 Aug 2007 06:07:00 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/60</guid>
</item>

<item>
<title><![CDATA[RIGHT HERE WAITING唯尔是待]]></title>
<link>http://380326576.qzone.qq.com/blog/59</link>
<description><![CDATA[oceans apart,day after day维海望兮， <br>and I slowly go insane日以渐蚩。 <br>I hear your voice on the line怀予德音， <br>but it dosen’t stop the pain胡慰我思。 <br>if I see your next to never若不复见， <br>how can we say forever岂得言久。 <br>wherever you go whatever you do伊人何在， <br>I will be right here waiting for you在海之涘。 <br>whatever it takes <br>or how my heart breaks虽我永伤， <br>I will be right here waiting for you唯尔是伺。 <br><br>I took for granted all the times我谅情兮， <br>that I thought would last somehow有长其友。 <br>I hear the laughter <br>I taste the tears闻笑饮泣， <br>but I can’t get near you now匪能从之。 <br>oh can’t you see it baby嗟我怀人， <br>you’ve got me going crazy至我痴矣。 <br>wherever you go whatever you do伊人曾在， <br>I will be right here waiting for you在海之沚。 <br>whatever it takes <br>or how my heart breaks虽我永伤， <br>I will be right here waiting for you唯尔是俟。 <br><br>I wonder我谓忧兮， <br>how we can survive this romance曷维其已。 <br>but in the end <br>if I’m with you茍其有佸， <br>I’ll take the chance定无失期。 <br><br>oh can’t you see it baby嗟我怀人， <br>you’ve got me going crazy至我狂矣。 <br>wherever you go whatever you do伊人应在， <br>I will be right here waiting for you在海之垓。 <br>whatever it takes <br>or how my heart breaks虽我永伤， <br>I will be right here waiting for you唯尔是待。 <br>waiting for you <br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[380326576@qq.com(小乖乖)]]></author>
<comments>http://380326576.qzone.qq.com/blog/59#comment</comments>
<qz:effect>0</qz:effect>
<pubDate>Wed, 25 Jul 2007 06:14:21 GMT</pubDate>
<guid>http://380326576.qzone.qq.com/blog/59</guid>
</item>

</channel>
</rss>

