<?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>骨头`s Blog &#187; 技术文章</title>
	<atom:link href="http://www.gutou.cc/archives/category/jishu/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gutou.cc</link>
	<description>骨头软件工作室</description>
	<lastBuildDate>Fri, 20 Jan 2012 03:40:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>易语言网络软件开发速成班</title>
		<link>http://www.gutou.cc/archives/easy-language-network-software-development-classes.html</link>
		<comments>http://www.gutou.cc/archives/easy-language-network-software-development-classes.html#comments</comments>
		<pubDate>Fri, 06 Jan 2012 08:30:03 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[易语言软件开发]]></category>
		<category><![CDATA[骨头软件]]></category>
		<category><![CDATA[骨头软件工作室]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=1116</guid>
		<description><![CDATA[您还在愁看别人在用软件发送你找不到软件? 您还在愁你的流量追不上别人? 您还在愁每天手动群发的艰苦? 骨头软件工作室现在出培训班啦,只要您努力,骨头保证您一个星期内学会用易语言开发采集软件,群发软件,当然太过于专业的东西你也未必这么快学得会,解脱双手,从自己做起. 比如:QQ空间的一类群发,留言,评论软件,百度相关的一类采集,和各个网站的简单群发. 指导员:骨头 学习周期:1-2周 学习方式:1对1+视频教程 主要学习:网络填表,GET,POST,正则表达式,网络应用. 学费:1000元 联系QQ:867400.]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/easy-language-network-software-development-classes.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>易语言子文本替换</title>
		<link>http://www.gutou.cc/archives/easy-language-yanzi-text-replacement.html</link>
		<comments>http://www.gutou.cc/archives/easy-language-yanzi-text-replacement.html#comments</comments>
		<pubDate>Mon, 02 Jan 2012 08:15:49 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[易语言源码]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=1108</guid>
		<description><![CDATA[很多玩易语言的朋友在替换文本中存在多个标签的时候会被统一替换成一个参数,给个简单的列子 .版本 2 .支持库 spec &#160; .子程序 多参数替换随机, 文本型 .参数 预替换文本, 文本型 .参数 标签, 文本型 .局部变量 a, 整数型 .局部变量 内容, 文本型 &#160; 置随机数种子 () 内容 ＝ 预替换文本 .判断循环首 (真) &#160;&#160; &#160;a ＝ 寻找文本 (内容, 标签, , 假) &#160;&#160; &#160;内容 ＝ 子文本替换 (内容, 标签, 到文本 (取随机数 (1, 99)), a, 1, 真) &#160;&#160; &#160;调试输出 (内容) &#160;&#160; &#160;.如果真 [...]]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/easy-language-yanzi-text-replacement.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>易语言中不要频繁使用相关命令优化内存</title>
		<link>http://www.gutou.cc/archives/do-not-easy-language-frequently-used-to-optimize-memory-related-commands.html</link>
		<comments>http://www.gutou.cc/archives/do-not-easy-language-frequently-used-to-optimize-memory-related-commands.html#comments</comments>
		<pubDate>Thu, 05 May 2011 00:01:51 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=958</guid>
		<description><![CDATA[在易语言中,我们比较熟悉的内存优化API SetProcessWorkingSetSize (-1, -1, -1) 基本上我写的每一个程序都会用到这个命令,采用时钟方式进行工作,后来慢慢的发现,如果长时间允许此命令部分电脑或者是系统会出现内存分配不足的错误,所以在采用相关命令时建议可以在子程序中运行,比如多线程或者线程池中. .版本 2&#160;.DLL命令 SetProcessWorkingSetSize, 整数型, , &#34;SetProcessWorkingSetSize&#34;&#160;&#160; &#160;.参数 hProcess&#160;&#160; &#160;.参数 dwMinimumWorkingSetSize&#160;&#160; &#160;.参数 dwMaximumWorkingSetSize]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/do-not-easy-language-frequently-used-to-optimize-memory-related-commands.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>取设COOKIES</title>
		<link>http://www.gutou.cc/archives/qushe-cookies.html</link>
		<comments>http://www.gutou.cc/archives/qushe-cookies.html#comments</comments>
		<pubDate>Wed, 08 Dec 2010 00:02:40 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[原创软件]]></category>
		<category><![CDATA[技术文章]]></category>
		<category><![CDATA[取COOKIES]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[设COOKIES]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=883</guid>
		<description><![CDATA[做WEB相关的比较有用,如果是HTTP的就用其他方法. 懒得上传了,到易语言论坛下载吧. http://bbs.eyuyan.com/read.php?tid=243497]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/qushe-cookies.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>易语言使用字符代替明文减少软件的误报</title>
		<link>http://www.gutou.cc/archives/yiyuyan-qudaima-wubao.html</link>
		<comments>http://www.gutou.cc/archives/yiyuyan-qudaima-wubao.html#comments</comments>
		<pubDate>Sun, 14 Nov 2010 04:33:25 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[误报]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=858</guid>
		<description><![CDATA[最近发现很多杀毒软件杀的特征跟软件里面写的明文很有关系,所以我一直用字符的方式代替,分享给一些新手朋友,当然只是有一点点用处而已,并不能解决跟本的问题,如果想彻底的解决只有官方才可以,或者使用黑月吧. 或者有人觉得没有用,有没有用自己去尝试吧. 输出调试文本 (字符 (-71) ＋ 字符 (-57) ＋ 字符 (-51) ＋ 字符 (-73) ＋ 字符 (-56) ＋ 字符 (-19) ＋ 字符 (-68) ＋ 字符 (-2) ＋ 字符 (-71) ＋ 字符 (-92) ＋ 字符 (-41) ＋ 字符 (-9) ＋ 字符 (-54) ＋ 字符 (-46) ＋ 字符 (-41) ＋ 字符 (-9) ＋ 字符 (-58) ＋ 字符 [...]]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/yiyuyan-qudaima-wubao.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>易语言内存加载DLL</title>
		<link>http://www.gutou.cc/archives/easy-language-memory-load-dll.html</link>
		<comments>http://www.gutou.cc/archives/easy-language-memory-load-dll.html#comments</comments>
		<pubDate>Sat, 29 May 2010 04:23:56 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[DLL]]></category>
		<category><![CDATA[内存加载DLL]]></category>
		<category><![CDATA[易语言]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=637</guid>
		<description><![CDATA[最近在研究易语言内存加载DLL,让软件更加简单,体积更小,把所有代码都写到DLL里面,然后放在网络,让软件运行的时候读取网络DLL,进行内存加载,这样软件不仅仅减少了体积还减少了升级的次数,呵呵]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/easy-language-memory-load-dll.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>利用腾讯其他子站让COOKIE保存更久</title>
		<link>http://www.gutou.cc/archives/qq-cookie-storage.html</link>
		<comments>http://www.gutou.cc/archives/qq-cookie-storage.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 10:33:27 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[COOKIE]]></category>
		<category><![CDATA[COOKIES]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[腾讯书签]]></category>
		<category><![CDATA[腾讯微博]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=420</guid>
		<description><![CDATA[很多易友在写QQ相关程序的时候使用的COOKIES很容易就过期了,都问我怎么才可以让COOKIES保存更久一些,其他很简单,我们所知道的腾讯书签,腾讯微博,都是采用日期形式保存COOKIES的,我们只需要登录的时候选择日期,然后抓取登录的POST包就可以了]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/qq-cookie-storage.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>易语言通过客户带cookies发送</title>
		<link>http://www.gutou.cc/archives/eyuyan-kehu-cookie.html</link>
		<comments>http://www.gutou.cc/archives/eyuyan-kehu-cookie.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 01:53:15 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[COOKIE]]></category>
		<category><![CDATA[POST]]></category>
		<category><![CDATA[易语言]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=388</guid>
		<description><![CDATA[这是很久以前写的,因为有人需要,所以发出来. .版本 2&#160;.局部变量 内容, 文本型.局部变量 提交数据, 文本型.局部变量 提交数据长度, 文本型&#160;提交数据 ＝ “content=12345&#38;uin=116852739&#38;replycampus=0&#38;property=GoRE”提交数据长度 ＝ 到文本 (取文本长度 (提交数据))内容 ＝ “POST /cgi-bin/new/msgb_addanswer.cgi HTTP/1.1” ＋ #换行符内容 ＝ 内容 ＋ “Accept: */*” ＋ #换行符内容 ＝ 内容 ＋ “Referer: http://m.qzone.qq.com/” ＋ #换行符内容 ＝ 内容 ＋ “Accept-Language: zh-cn” ＋ #换行符内容 ＝ 内容 ＋ “Content-Type: application/x-www-form-urlencoded” ＋ #换行符内容 ＝ 内容 ＋ “Accept-Encoding: gzip, deflate” [...]]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/eyuyan-kehu-cookie.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>易语言5.0静态编译后执行UPX压缩</title>
		<link>http://www.gutou.cc/archives/eyuyan-5-statically-compiled-implementation-of-the-upx-compression.html</link>
		<comments>http://www.gutou.cc/archives/eyuyan-5-statically-compiled-implementation-of-the-upx-compression.html#comments</comments>
		<pubDate>Sat, 23 Jan 2010 08:09:23 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[UPX压缩]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[易语言静态编译]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=328</guid>
		<description><![CDATA[找到易语言安装目录的tools下文件名为”link.ini”,在最下面加入命令 post_link_action1=易语言安装目录\tools\upx.exe &#8211;best &#8211;no-color -q $(TARGET) 或者 post_link_action1=$(E_TOOLS)\upx.exe &#8211;best &#8211;no-color -q $(TARGET) 下载:UPX.RAR 解压放到tools目录下即可]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/eyuyan-5-statically-compiled-implementation-of-the-upx-compression.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>易语言QQ空间编码转化</title>
		<link>http://www.gutou.cc/archives/yi-language-qq-space-encoding-conversion.html</link>
		<comments>http://www.gutou.cc/archives/yi-language-qq-space-encoding-conversion.html#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:25:01 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[QQ空间]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[编码转化]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=314</guid>
		<description><![CDATA[主要用于QQ空间,QQ网站一些编码的转化,其实也是一些很简单的代码,只是自己记录一下,顺便给大家分享. 以下代码需要用到 新编码转化大全 模块 .版本 2&#160;.子程序 解密空间编码, 文本型, 公开.参数 编码, 文本型.局部变量 文本, 文本型&#160;文本 ＝ 子文本替换 (编码, “%u”, , , , 真)返回 (USC2转ANSI (文本))&#160;.子程序 加密空间编码, 文本型, 公开.参数 内容, 文本型.局部变量 文本, 文本型.局部变量 i, 整数型.局部变量 a, 文本型.局部变量 url, 文本型.局部变量 字节集, 字节集&#160;文本 ＝ 子文本替换 (内容, “%u”, , , , 真)字节集 ＝ 到字节集 (文本)文本 ＝ “”i ＝ 1.判断循环首 (i ≤ [...]]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/yi-language-qq-space-encoding-conversion.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>易语言HTTP字节过大导致彗星正则表达式出错</title>
		<link>http://www.gutou.cc/archives/easy-language-http-bytes-is-too-large-an-error-led-to-the-comet-regular-expressions.html</link>
		<comments>http://www.gutou.cc/archives/easy-language-http-bytes-is-too-large-an-error-led-to-the-comet-regular-expressions.html#comments</comments>
		<pubDate>Mon, 23 Nov 2009 07:31:41 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[彗星正则表达式]]></category>
		<category><![CDATA[易语言]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=181</guid>
		<description><![CDATA[易语言HTTP字节过大导致彗星正则表达式出错,简单的解决方法! .版本 2&#160;.局部变量 get, 文本型&#160;get ＝ 到文本 (访问网页 (“http://www.xxx.com/xxx.php”, “GET”, , , , 5)).如果真 (取文本长度 (get) ＞ 82400)&#160;&#160; &#160;返回 () 简单的意思就是当字节大于指定的字节时,返回不进行一下操作!]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/easy-language-http-bytes-is-too-large-an-error-led-to-the-comet-regular-expressions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用骨头博客营销助手快速收集网站</title>
		<link>http://www.gutou.cc/archives/use-of-bone-blog-rapid-collection-of-web-marketing-assistant.html</link>
		<comments>http://www.gutou.cc/archives/use-of-bone-blog-rapid-collection-of-web-marketing-assistant.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 00:51:08 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[采集网站]]></category>
		<category><![CDATA[骨头原创]]></category>
		<category><![CDATA[骨头软件]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=115</guid>
		<description><![CDATA[很多朋友都对收集网站不是很了解,其实百度或者谷歌都可以很快的收集到各种相关程序. 下面骨头来简单的给大家说一下! 其实每种网站程序都会有一种固定的路径,比如 http://www.gutou.cc/archives/category/yuanchuang 这个是WP程序的分类,他中间会有一个archives/category固定的链接,那么我们可以到百度搜索这个链接得到网站. 进入百度高级搜索:http://www.baidu.com/gaoji/advanced.html 然后会得到相关的关键字:inurl: (archives/category) 那么我们就可以利用这样的方式去搜索更多链接. 比如WP的日期: 静态:inurl: (archives/2009/11) 动态:inurl: (?m=200911) 在这些链接中,我们还可以加关键字搜索,比如 inurl: (archives/2009/11) 游戏 inurl: (archives/2009/11) 软件 Wp相关路径: 日期: inurl: (archives/2009/11) inurl: (?m=200911) 文章: inurl: (archives/category) inurl: (?p=1) 1代表文章的ID,可以自由变化 标签: inurl: (archives/tag) inurl: (?tag=关键字) Z-BLOG相关路径: 标签:inurl: (catalog.asp?tags=) 分类:inurl: (catalog.asp?cate=1) 1代表分类ID,可以自由变化 日期:inurl: (catalog.asp?date=2009-11-1) 2009-11-1代表日期 留言:inurl: (guestbook.asp) BO-BLOG相关路径: 分类:inurl: (index.php?go=category_1) 1代表分类ID,可以自由变化 日期:inurl: (index.php?go=archive&#38;cm=1&#38;cy=2010) [...]]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/use-of-bone-blog-rapid-collection-of-web-marketing-assistant.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>易语言多线程使用彗星正则表达式</title>
		<link>http://www.gutou.cc/archives/easy-to-use-multi-threaded-language-comet-regular-expressions.html</link>
		<comments>http://www.gutou.cc/archives/easy-to-use-multi-threaded-language-comet-regular-expressions.html#comments</comments>
		<pubDate>Sat, 07 Nov 2009 06:48:22 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[多线程]]></category>
		<category><![CDATA[易语言]]></category>
		<category><![CDATA[正则表达式]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=96</guid>
		<description><![CDATA[在开发博客营销助手的时候发现了彗星正则表达式在多线程同时调用的时候出现的问题,记录一下! HTTP返回数据如果大于100K,在彗星正则表达式搜索全部的时候会导致软件崩溃的问题. 临时解决方法,判断HTTP返回的问题长度,如果＞100K就返回不要往下执行 .版本 2&#160;.如果真 (取文本长度 (文本) ＞ 102400)    返回 ()]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/easy-to-use-multi-threaded-language-comet-regular-expressions.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>易语言多线程出错的问题</title>
		<link>http://www.gutou.cc/archives/eyuyan_duoxiancheng.html</link>
		<comments>http://www.gutou.cc/archives/eyuyan_duoxiancheng.html#comments</comments>
		<pubDate>Sat, 07 Nov 2009 00:15:32 +0000</pubDate>
		<dc:creator>骨头</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[DLL]]></category>
		<category><![CDATA[多线程]]></category>
		<category><![CDATA[易语言]]></category>

		<guid isPermaLink="false">http://www.gutou.cc/?p=39</guid>
		<description><![CDATA[最近在给客户写软件,发现我这边一直没有发现出错的问题,但是客户的软件一运行多线程就出错,一直找不到问题,找了好久才找到解决方法,原来是CPU的问题,多线程对于双核CPU亲和性上有问题,现在找到问题的解决方法,顺便记录一下,或许有朋友遇到同样的问题,可以一起参考. .版本 2&#160;.DLL命令 SetProcessAffinityMask, 整数型, , , 公开, 设置CPU亲和性 进程句柄 返回CPU号.参数 hProcess, 整数型.参数 hProcess, 整数型&#160;.DLL命令 SetThreadAffinityMask, 整数型, , , 公开, 设置CPU亲和性 线程句柄.参数 hProcess, 整数型.参数 Mask, 整数型&#160;.DLL命令 GetCurrentProcess, 整数型, , , 公开, 获取当前进程的一个伪句柄 一般是-1&#160;.DLL命令 GetCurrentThread, 整数型, , , 公开, 获取当前线程的一个伪句柄 一般是-2 将以下代码放到易代码开始即可: SetProcessAffinityMask (-1, 1)]]></description>
		<wfw:commentRss>http://www.gutou.cc/archives/eyuyan_duoxiancheng.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
