<?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>isoft8</title>
	<atom:link href="http://blog.isoft8.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.isoft8.com</link>
	<description></description>
	<lastBuildDate>Fri, 11 May 2012 01:00:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>关于自定义表情自动消失的问题</title>
		<link>http://blog.isoft8.com/archives/645</link>
		<comments>http://blog.isoft8.com/archives/645#comments</comments>
		<pubDate>Thu, 19 Apr 2012 11:06:23 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[Tieba Custom Face]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=645</guid>
		<description><![CDATA[Tieba Custom Face的新版本会增加很多新功能，因此，它可能需要比旧版本更多的权限，当新版本需要更多权限的时候，Chrome为了安全会在更新到新版本后把它停用。基于上面的原因，如果Tieba Custom Face出现自定义表情消失的问题，请进入扩展程序管理界面检查Tieba Custom Face是否被Chrome自动停用（“已启用”的钩被去掉）。如果被Chrome自动停用，把“已启用”的钩打上即可恢复，已经设定好的自定义表情不会出现任何丢失。千万不要卸载后重新安装，那样会使已经设定好的自定义表情全部丢失。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/645/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>批量添加百度相册图片到自定义表情</title>
		<link>http://blog.isoft8.com/archives/598</link>
		<comments>http://blog.isoft8.com/archives/598#comments</comments>
		<pubDate>Sat, 07 Apr 2012 22:58:17 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[Tieba Custom Face]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=598</guid>
		<description><![CDATA[之前有很多用户反映说Tieba Custom Face添加自定义表情要一个个添加，很麻烦。故从1.4版本添加添加百度相册图片的功能。用户如果需要导入大量的本地图片，可以先把本地图片批量上传到百度相册（百度相册的批量上传功能做得还是不错的，很方便），再使用这个功能批量导入到自定义表情。如果需要与别人分享自定义表情，也可以把存放自定义表情的相册地址告诉别人，别人也可以通过该功能批量导入自定义表情。 使用方法：进入相册，点击右键菜单的“添加相册图片到自定义表情”，即可把当前相册的所有图片添加到自定义表情。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/598/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>检测iOS Web应用程序是否运行在全屏模式</title>
		<link>http://blog.isoft8.com/archives/572</link>
		<comments>http://blog.isoft8.com/archives/572#comments</comments>
		<pubDate>Thu, 08 Mar 2012 10:07:41 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=572</guid>
		<description><![CDATA[iOS上的Safari浏览器可以让Web应用程序全屏显示，以取得类似本地应用的显示效果。但是这需要用户把Web应用程序的图标添加到主屏幕才可以。作为开发者，为了更好的显示效果，我们可能希望自己开发的Web应用程序在非全屏状态下运行时提示用户把Web应用程序的图标添加到主屏幕。 要检测Web应用程序当前是否运行在全屏状态，只要检测window.navigator.standalone是否为true就可以了，如果这个属性为true则表示Web应用程序当前运行在全屏状态，否则运行在非全屏状态。检测到Web应用程序运行在非全屏状态时就可以提示用户把Web应用程序的图标添加到主屏幕。 运行效果： &#160;]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/572/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在go语言中统计程序执行时间</title>
		<link>http://blog.isoft8.com/archives/564</link>
		<comments>http://blog.isoft8.com/archives/564#comments</comments>
		<pubDate>Sun, 26 Feb 2012 06:30:28 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=564</guid>
		<description><![CDATA[&#160; package main &#160; import &#40;&#34;fmt&#34;;&#34;time&#34;&#41;; &#160; func main&#40;&#41; &#123; &#160;//记录开始时间 &#160;start := time.Nanoseconds&#40;&#41; &#160; &#160;//计算过程 &#160;sum := 0 &#160;for i := 0; i &#60;= 100000000; i++&#123; &#160; sum += i &#160;&#125; &#160; &#160;//记录结束时间 &#160;end := time.Nanoseconds&#40;&#41; &#160; &#160;//输出执行时间，单位为毫秒。 &#160;fmt.Println&#40;&#40;end - start&#41; / 1000000&#41; &#160; &#160;//输出执行结果 &#160;fmt.Println&#40;sum&#41; &#125;]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/564/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chrome同步时无法连接服务器的解决方法</title>
		<link>http://blog.isoft8.com/archives/473</link>
		<comments>http://blog.isoft8.com/archives/473#comments</comments>
		<pubDate>Fri, 09 Dec 2011 14:39:02 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[Chrome]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=473</guid>
		<description><![CDATA[因为一些大家都知道的原因，相信大家偶尔会遇到chrome同步时无法连接服务器的问题。关于这个问题，一般都是连接VPN解决的，但是我刚刚发现一个更好的方法，只要把DNS服务器地址改成8.8.8.8和8.8.4.4就可以连接了。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/473/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何取消更新提醒</title>
		<link>http://blog.isoft8.com/archives/431</link>
		<comments>http://blog.isoft8.com/archives/431#comments</comments>
		<pubDate>Wed, 16 Nov 2011 04:33:23 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[Comic Update Notify]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=431</guid>
		<description><![CDATA[当检测到一部漫画有更新时，Comic Update Notify 会在未读更新界面显示出该部漫画的信息，这些信息在你阅读该漫画之前会一直显示。如果不想显示该信息，可以点击一下已读按钮，点击后在下次检测到更新之前都不会显示该信息。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/431/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一个跳过土豆网广告的方法</title>
		<link>http://blog.isoft8.com/archives/421</link>
		<comments>http://blog.isoft8.com/archives/421#comments</comments>
		<pubDate>Sun, 13 Nov 2011 18:50:56 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=421</guid>
		<description><![CDATA[打开一个视频以后，马上点右上角的小窗口播放，这时会弹出一个小窗口，小窗口里播放的视频就是没有广告的，小窗口弹出来以后就可以把原来的视频页面关掉。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/421/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[未找到反序列化“XXX”类型对象的构造函数。]的解决办法</title>
		<link>http://blog.isoft8.com/archives/411</link>
		<comments>http://blog.isoft8.com/archives/411#comments</comments>
		<pubDate>Sun, 13 Nov 2011 18:16:46 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[.Net技术]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=411</guid>
		<description><![CDATA[出现[未找到反序列化“XXX”类型对象的构造函数。]错误一般是由于要反序列化的类或者它的父类（如：继承了Dictionary类）实现了ISerializable接口而没有序列化构造函数，这时候只要把序列化构造函数加上去就可以反序列化了。需要注意的是，一个类或者它的父类实现ISerializable接口就表示启用了自定义序列化，需要按照自定义序列化的规则编写序列化构造函数和GetObjectData函数，像下面的两个例子。 &#160; &#160; &#91;Serializable&#93; &#160; &#160; class Test : ISerializable //实现了ISerializable接口 &#160; &#160; &#123; &#160; &#160; &#160; &#160; public Test&#40;&#41; &#160; &#160; &#160; &#160; &#123; &#160; &#160; &#160; &#160; &#125; &#160; &#160; &#160; &#160; &#160; //实现了ISerializable接口的类必须包含有序列化构造函数，否则会出错。 &#160; &#160; &#160; &#160; protected Test&#40;SerializationInfo info, StreamingContext context&#41; &#160; &#160; &#160; &#160; &#123; &#8230; <a href="http://blog.isoft8.com/archives/411">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/411/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>firefox安装附加组件时提示“firefox无法修改所需的文件”的解决办法</title>
		<link>http://blog.isoft8.com/archives/377</link>
		<comments>http://blog.isoft8.com/archives/377#comments</comments>
		<pubDate>Sun, 09 Oct 2011 18:09:04 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=377</guid>
		<description><![CDATA[打开运行对话框，输入 “C:\Program Files\Mozilla Firefox\firefox.exe” -p 如果你的firefox不是安装在默认位置，请根据实际情况修改。 点击确定后，出现选择用户配置文件对话框。 在这个对话框里可以添加、删除、重命名用户配置文件。 进入选择用户配置文件对话框后，先删除原来的用户配置文件，再创建一个新的。再次尝试安装附加组件就可以成功了。 注意：该操作会清除所有的历史记录、收藏夹等数据，请在操作前做好备份。]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/377/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用ICSharpCode.SharpZipLib在现有Zip文件中添加文件的方法</title>
		<link>http://blog.isoft8.com/archives/343</link>
		<comments>http://blog.isoft8.com/archives/343#comments</comments>
		<pubDate>Sat, 03 Sep 2011 22:44:17 +0000</pubDate>
		<dc:creator>junwen38</dc:creator>
				<category><![CDATA[.Net技术]]></category>

		<guid isPermaLink="false">http://blog.isoft8.com/?p=343</guid>
		<description><![CDATA[ICSharpCode.SharpZipLib是一个操作压缩文件的类库。网上使用这个类库在Zip文件中添加文件的方法主要都是使用ZipOutputStream类在Zip中添加文件，可是使用这种方法有个很大的缺点，就是会把Zip文件原有的内容覆盖掉，只适合新建Zip文件。昨天需要把内存中的内容写到一个Zip文件中的一个文件里，所以研究了一下，发现ZipFile.Add方法可以满足这个需求，这个方法有8个重载，我用的是void Add(IStaticDataSource,string)这个重载。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using ICSharpCode.SharpZipLib.Zip; &#160; namespace ConsoleApplication4 &#123; &#160; &#160; class Program &#160; &#160; &#123; &#160; &#160; &#160; &#160; static void Main&#40;string&#91;&#93; args&#41; &#160; &#160; &#160; &#160; &#123; &#160; &#160; &#160; &#160; &#160; &#160; //准备写入内容 &#160; &#160; &#160; &#160; &#160; &#8230; <a href="http://blog.isoft8.com/archives/343">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.isoft8.com/archives/343/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

