<?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>Eping的网络日志---技术博客</title>
	<atom:link href="http://www.eping.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.eping.net</link>
	<description></description>
	<lastBuildDate>Sat, 21 Aug 2010 07:15:54 +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>secureCRT正确显示中文</title>
		<link>http://www.eping.net/?p=169</link>
		<comments>http://www.eping.net/?p=169#comments</comments>
		<pubDate>Sat, 21 Aug 2010 07:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=169</guid>
		<description><![CDATA[Session Options（会话选项） -&#62; Terminal（终端） -&#62; Appearance（显示）, 将Charater（字符）选择成 UTF-8就支持中文了，如果选择成default（默认），中文显示就会乱码。
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=169</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>取一个字节的第n位</title>
		<link>http://www.eping.net/?p=168</link>
		<comments>http://www.eping.net/?p=168#comments</comments>
		<pubDate>Thu, 12 Aug 2010 08:33:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=168</guid>
		<description><![CDATA[int readBit(int number,int n)   {&#160; 
&#160;&#160;&#160; unsigned char _a = 0&#215;1&#60;&#60;n;   &#160;&#160;&#160; return (number&#38;_a)&#62;&#62;n;
}
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDF相关资料</title>
		<link>http://www.eping.net/?p=167</link>
		<comments>http://www.eping.net/?p=167#comments</comments>
		<pubDate>Thu, 12 Aug 2010 06:27:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=167</guid>
		<description><![CDATA[一、RDF Primer
英文版：http://www.w3.org/TR/rdf-primer/
中文版：http://zh.transwiki.org/cn/rdfprimer.htm
二、Resource Description Framework (RDF) Model and Syntax Specification
http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=167</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActionScript动态分析</title>
		<link>http://www.eping.net/?p=165</link>
		<comments>http://www.eping.net/?p=165#comments</comments>
		<pubDate>Thu, 05 Aug 2010 10:14:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=165</guid>
		<description><![CDATA[【前言】FlashPlayer提供了mm.cfg文件供开发者开启虚拟机的代码跟踪和性能分析：
文件路径(Win32)
%USERPROFILE%\mm.cfg
%USERPROFILE%\Application Data\Macromedia\Flash Player\Logs
产生的日志文件(Win32)
【正文】
一、安装Flash Player debug版
下载：http://download.macromedia.com/pub/flashplayer/updaters/10/flashplayer_10_sa_debug.exe
ForIE http://download.macromedia.com/pub/flashplayer/updaters/10/flashplayer_10_ax_debug.exe
For Firefox http://download.macromedia.com/pub/flashplayer/updaters/10/flashplayer_10_plugin_debug.exe
其它版本下载：http://www.adobe.com/support/flashplayer/downloads.html#fp10
二、常用参数
TraceOutputBuffered = 1&#160;&#160;&#160; 开启Trace输出缓冲   AS3Verbose = 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 开启ABC代码执行跟踪    AS3Trace = 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 开启AS3函数级别执行跟踪    AS3StaticProfile = 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 开启静态Profiling信息(代码和尺寸统计)    AS3DynamicProfile = 1&#160;&#160;&#160;&#160;&#160;&#160;&#160; 开启动态Profiling信息(各指令用时与统计)    LogGPU = 1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 开启GPU使用信息
三、更多的参数信息：   •参考文章： http://jpauclair.net/2010/02/10/mmcfg-treasure/
本文参照：http://www.csksoft.net/blog/
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tamarin获取swf文档类</title>
		<link>http://www.eping.net/?p=164</link>
		<comments>http://www.eping.net/?p=164#comments</comments>
		<pubDate>Thu, 29 Jul 2010 11:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=164</guid>
		<description><![CDATA[[思路]根据swf_file_format_spec_v10里的说明知道 SymbolClass tag（标签）是swf符号与ActionScript 3.0类相关联的tag。而角色ID（character ID）为0的类为swf文件的主类或称文档类。而我们需要做便是分析SymbolClass tag从中读取出 ID为0的类即可。文档说明中的SymbolClass tag格式：参照http://www.adobe.com/devnet/swf/pdf/swf_file_format_spec_v10.pdf SymbolClass的介绍
NumSymbols&#160;&#160; 类的个数
Tag2&#160;&#160;&#160;&#160; 占2个字节&#160;&#160;&#160;&#160;&#160; 即character tag ID&#160;&#160; 
String&#160;&#160; 存放着我们要找的类名&#160;&#160; 
获取String的长度：
int GetStringLen()    &#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; int i=0;     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; while (readU8() != 0)     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; i++;     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }   [...]]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=164</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows下载编译tamarin</title>
		<link>http://www.eping.net/?p=163</link>
		<comments>http://www.eping.net/?p=163#comments</comments>
		<pubDate>Sat, 24 Jul 2010 16:50:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=163</guid>
		<description><![CDATA[1、运行环境：python2.5，java1.6，VS2008
2、下载tamarin源文件   tamarin的zip压缩包。
3、将tamarin/platform/win32/armasm.rules 拷贝到 c:/Program Files/Microsoft Visual Studio 9.0/VC/VCProjectDefaults ， 如果不拷贝可能出现MMgc(unavailabel)的错误。
4、之前的版本支持vs2003和vs2005,最新的版本只支持vs2008，打开tamarin\platform\win32\avmplus2008.sln，如果下载的源码包里头没有avmplus2008.sln这个文件，那就不是到目前为止最新的。
5、用vs2008打开之后可以看到avmplus,eval,MMgc,nanojit,shell,zlib共6个项目，依次build。在avmplus中可能发现ErrorConstants.cpp中有很多编译错误，主要是多语言引起的，将其它语言都用英语代替即可。注释办法：在ErrorConstants.h文件中注释
//#define AVMPLUS_ERROR_LANG_cs   //#define AVMPLUS_ERROR_LANG_de    //#define AVMPLUS_ERROR_LANG_es    //#define AVMPLUS_ERROR_LANG_fr    //#define AVMPLUS_ERROR_LANG_it    //#define AVMPLUS_ERROR_LANG_ja    //#define AVMPLUS_ERROR_LANG_ko    //#define AVMPLUS_ERROR_LANG_nl    //#define AVMPLUS_ERROR_LANG_pl    [...]]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu编译lightspark</title>
		<link>http://www.eping.net/?p=162</link>
		<comments>http://www.eping.net/?p=162#comments</comments>
		<pubDate>Thu, 22 Jul 2010 11:11:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=162</guid>
		<description><![CDATA[一、安装git   sudo apt-get install git-core    二、下载lightspark    git clone git://github.com/alexp-sssup/lightspark.git&#160; lightspark     三、安装&#160;&#160;&#160; # cd lightspark    # mkdir build    # cd build    # cmake -DCMAKE_BUILD_TYPE=Release -DCOMPILE_PLUGIN=1 ..    # make    # [...]]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS2008控制台程序与WI32应用程序切换</title>
		<link>http://www.eping.net/?p=161</link>
		<comments>http://www.eping.net/?p=161#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:43:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=161</guid>
		<description><![CDATA[&#160;&#160;&#160; 使用VS2008创建WIN32项目时，可选的有Win32控制台应用程序和WIN32项目。这两者的区别是控制台程序运行就是DOS界面，而项目一般用于开发可视化界面程序。两者的主函数也不同，一个是main函数，而另一个则是WinMain函数 。有时我们因创建时的误操作原本想创建WIN32控制台程序却创建成了WIN32项目。这时我们可能需要对他们进行转换。
以VS2008为例：
项目——&#62; 项目属性——&#62; 配置属性——&#62; 链接器——&#62; 系统——&#62; 子系统
这里选择控制台(SUBSYSTEM:CONSOLE)&#160; 则表示此项目是WIN32控制台程序
而选择Windows (/SUBSYSTEM:WINDOWS) 则表示为 WIN32项目
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=161</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>开源Flash Player</title>
		<link>http://www.eping.net/?p=160</link>
		<comments>http://www.eping.net/?p=160#comments</comments>
		<pubDate>Tue, 20 Jul 2010 01:55:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=160</guid>
		<description><![CDATA[一、Gnash
http://www.gnu.org/software/gnash/&#160;&#160; 
二、Flirt
http://flirt.sourceforge.net/
三、Swfdec
http://swfdec.freedesktop.org/wiki/
四、Lightspark
http://lightspark.sourceforge.net/
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=160</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu安装lightspark</title>
		<link>http://www.eping.net/?p=159</link>
		<comments>http://www.eping.net/?p=159#comments</comments>
		<pubDate>Mon, 12 Jul 2010 01:56:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随便写点]]></category>

		<guid isPermaLink="false">http://www.eping.net/?p=159</guid>
		<description><![CDATA[sudo add-apt-repository ppa:sssup/sssup-ppa
sudo aptitude update
sudo aptitude install lightspark
]]></description>
		<wfw:commentRss>http://www.eping.net/?feed=rss2&amp;p=159</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
