<?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>All About Free &#187; 技术存档</title>
	<atom:link href="http://all.aboutfree.me/category/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://all.aboutfree.me</link>
	<description>付睿的部落格 - 感触付睿的生活...</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:05:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://all.aboutfree.me/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
jQuery.ajax({type:'GET',url:'http://all.aboutfree.me/wp-content/plugins/wp-postviews-plus/postviews_plus.php',data:'todowppvp=add&type=cat&id=5_1',cache:false,dataType:'script'});
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>Twitter -&gt; Renren status sync tool</title>
		<link>http://all.aboutfree.me/712</link>
		<comments>http://all.aboutfree.me/712#comments</comments>
		<pubDate>Thu, 22 Jul 2010 04:24:52 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[人人]]></category>
		<category><![CDATA[校内]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=712</guid>
		<description><![CDATA[虽然说目前网上已经有不少twitter信息同步至人人网的服务，但毕竟要把账号密码提交给别的网站，安全系数大大降低
所以还是一直在使用自己的服务器来做twitter的同步
但是淫淫网总是更新些莫名其妙的东西，所以我的更新程序也停了很长一阵子
闲来无事，便尝试着更新一下，觉得似乎也可以发布了，给更多想将twitter同步至淫淫网的朋友一个新的选择
代码是用perl编写的，推荐放在支持perl的linux主机中，并且确保linux帐户有权限运行wget，然后设置计划任务每n分钟运行一次既可
注：代码原作者为Feng Liu，我只是在他的基础上做更新而已
点击下载代码:twitter2renren
Update:
v1.5.1 &#8211; 修复了一个代码的bug，会导致提取到的check value不正确


#!/usr/bin/perl -w

# Twitter -&#62; Xiaonei status sync tool.
# Version: 1.5.1

# Date 2010/07/26
# Original Author: Feng Liu &#60;liufeng@cnliufeng.com&#62;
# Updated by Rui Fu &#60;freelz@gmail.com&#62;

use utf8;
use Encode;
use LWP::Simple;
use HTML::Entities;

####################### Settings starts here #######################
# Set your base account information here. Don't show this to others!
my $twitter_account = '';
my $xiaonei_email = '';
my $xiaonei_passwd = '';

# some [...]]]></description>
		<wfw:commentRss>http://all.aboutfree.me/712/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacOS 本地 DNS 搭建</title>
		<link>http://all.aboutfree.me/707</link>
		<comments>http://all.aboutfree.me/707#comments</comments>
		<pubDate>Wed, 21 Jul 2010 11:44:02 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[Dns]]></category>
		<category><![CDATA[GFW]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[劫持]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=707</guid>
		<description><![CDATA[入手了Macbook Pro就要多研究研究MacOS咯,弄好了VPN以后却发现有时候还是会遇到DNS劫持,无奈,查询方法后得知Mac自带了named,可以搭建一个本地的DNS来防止DNS被污染和劫持
说干就干,打开终端后输入
sudo vi /etc/named.conf
注释掉如下部分

include &#34;/etc/rndc.key&#34;;

controls {
inet 127.0.0.1 port 54 allow {any;}
keys { &#34;rndc-key&#34;; };
};

然后编辑/system/library/launchdaemons/org.isc.named.plist,把下面内容


&#60;key&#62;Disabled&#60;/key&#62;
&#60;true/&#62;

修改为

&#60;key&#62;Disabled&#60;/key&#62;
&#60;false/&#62;

然后运行如下命令

launchctl load -w /System/Library/LaunchDaemons/org.isc.named.plist
launchctl start org.isc.named

按理说named已经运行成功了
可以使用

nslookup www.google.com 127.0.0.1

来测试效果,如果返回信息成功,那么named已经运行成功了
接下来在vpn设置中给dns增加127.0.0.1的地址即可
]]></description>
		<wfw:commentRss>http://all.aboutfree.me/707/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import MFC DLL CLASS in C#</title>
		<link>http://all.aboutfree.me/705</link>
		<comments>http://all.aboutfree.me/705#comments</comments>
		<pubDate>Fri, 23 Apr 2010 11:21:07 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>

		<guid isPermaLink="false">http://www.free-z.net/?p=705</guid>
		<description><![CDATA[1. Create a wrapper in C++ Unmanaged code from inside VS .NET environment.
2. Create a wrapper in C++ managed code for the wrapper from step 1.
When I say &#8220;wrapper&#8221; I mean a class that has the same interface of the original class, and implements all functions simply by calling the corresponding functions from the original [...]]]></description>
		<wfw:commentRss>http://all.aboutfree.me/705/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>人人餐厅盘餐金钱修改简短教程</title>
		<link>http://all.aboutfree.me/666</link>
		<comments>http://all.aboutfree.me/666#comments</comments>
		<pubDate>Sun, 15 Nov 2009 17:22:28 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[趣事分享]]></category>
		<category><![CDATA[人人网]]></category>
		<category><![CDATA[人人餐厅]]></category>
		<category><![CDATA[作弊]]></category>
		<category><![CDATA[外挂]]></category>
		<category><![CDATA[金钱]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=666</guid>
		<description><![CDATA[很久很久没玩人人餐厅了，自己的餐厅也一直是食材解锁开放的状态
前几天看到有人留言关于金钱的修改
所以就开启游戏试了试
绝对是可行的
视频教程我就不制作了
图文教程一次
所需工具(点击下载)
Cheat Engine 5.5 (部分杀毒软件判定CE有毒,请自行考虑是否使用…不做过多说明)
Firefox / Internet Explorer
Flash 10
以上是我的测试平台,Flash 9的用户不保证能够使用

修改每盘餐金钱的数量和经验大同小异
开启CE
勾选HEX
VALUE TYPR选择ARRAY OF BYTES
勾选ALSO SCAN READ-ONLY MEMORY

进程选择浏览器进程
开启游戏
等一名顾客成功结账后
搜索bb 02 00 00 00 f2 0f 2a c3
获得一个地址
右键选择该地址
选择Disassemble this memory region

可以看到高亮code
mov ebx, 00000002
双击该code,修改00000002为你希望的盘餐金钱数量既可
比如0000000A是每盘餐10金钱
比如00000010是每盘餐16金钱
P.S.都是十六进制，如果你能搞得懂可以自己研究下最合适的金钱数量
]]></description>
		<wfw:commentRss>http://all.aboutfree.me/666/feed</wfw:commentRss>
		<slash:comments>102</slash:comments>
		</item>
		<item>
		<title>[开心牧场]给你的牧场增加最新的乌龟</title>
		<link>http://all.aboutfree.me/600</link>
		<comments>http://all.aboutfree.me/600#comments</comments>
		<pubDate>Fri, 23 Oct 2009 02:03:36 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[乌龟]]></category>
		<category><![CDATA[增加]]></category>
		<category><![CDATA[开心农场]]></category>
		<category><![CDATA[开心牧场]]></category>
		<category><![CDATA[补丁]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=600</guid>
		<description><![CDATA[昨天QQ牧场进行了更新，一进去就发现多了一种宠物可以养
乌龟&#8230;俺对这动物太有爱了&#8230;而且动作很可爱
好吧&#8230;分析文件&#8230;想办法搬过来
演示站
http://home.zuiuk.com/newfarm.php
查看我的工作进度
http://all.aboutfree.me/572
现在放出补丁包给大家使用
点击下载
把文件包放进您的农场文件夹内
然后对文件作如下修改

newfarm/mc/ini.xml
&#60;material url=&#34;module/mc/main/shopui.swf?v=7&#34; statusText=&#34;加载图标素材...&#34; size=&#34;155480&#34; /&#62;
下面添加
&#60;material url=&#34;module/mc/main/shopui2_v_1.swf?v=1&#34; statusText=&#34;加载图标素材...&#34; size=&#34;14153&#34;/&#62;
&#60;/animals&#62;
上面添加
&#60;animal id=&#34;1007&#34; name=&#34;乌龟&#34; childNum=&#34;12&#34; product=&#34;小乌龟&#34; u=&#34;只&#34; house=&#34;窝&#34;&#62;
&#60;nextText value=&#34;幼仔,成长期,生产期,生产期,待产期,收获期&#34;/&#62;
&#60;nextTime value=&#34;27000,27000,216000,180,35820,270000&#34;/&#62;
&#60;/animal&#62;
newfarm/newmc.php
&#34;1006&#34; =&#62; array( 41400, 41400, 259200, 180, 54000, 342000 ),
下面添加
&#34;1007&#34; =&#62; array( 27000, 27000, 216000, 180, 36000, 313200 ),
&#34;1006&#34; =&#62; array( &#34;byproductprice&#34; =&#62; 68, &#34;cId&#34; =&#62; 1006, &#34;cLevel&#34; =&#62; 9, &#34;cName&#34; =&#62; &#34;\\u4F01\\u9E45&#34;, &#34;consum&#34; =&#62; 3, &#34;cub&#34; =&#62; 41400, &#34;cycle&#34; [...]]]></description>
		<wfw:commentRss>http://all.aboutfree.me/600/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>开心牧场用户等级计算函数</title>
		<link>http://all.aboutfree.me/589</link>
		<comments>http://all.aboutfree.me/589#comments</comments>
		<pubDate>Wed, 21 Oct 2009 23:19:45 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[uchome]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[函数]]></category>
		<category><![CDATA[开心农场]]></category>
		<category><![CDATA[开心牧场]]></category>
		<category><![CDATA[等级]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=589</guid>
		<description><![CDATA[编写开心牧场get_user_info请求时候返回的信息时候发现
需要返回一段用户等级的内容
但是翻遍了两个php都没发现有相关的代码
无奈&#8230;从httpwatch上看到Referer: Master.swf?v=1
好吧&#8230;反编译了master.swf&#8230;
找啊找&#8230;终于找到了相关的代码

改写成php代码&#8230;
function expToGrade($exp){
return intval(sqrt(($exp+25)/100) - 0.5);
}
]]></description>
		<wfw:commentRss>http://all.aboutfree.me/589/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>开心农场本地版 功能补全计划 2009/10/22 更新</title>
		<link>http://all.aboutfree.me/572</link>
		<comments>http://all.aboutfree.me/572#comments</comments>
		<pubDate>Wed, 21 Oct 2009 04:22:42 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[农场]]></category>
		<category><![CDATA[功能]]></category>
		<category><![CDATA[开心农场]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[牧场]]></category>
		<category><![CDATA[破解]]></category>
		<category><![CDATA[补全]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=572</guid>
		<description><![CDATA[前天别人发了一份破解版的开心农场给我
本来没什么兴趣&#8230;但是发现架设可行
便毅然决然放下手头的活开始研究&#8230;发现无数BUG
以及无数的不存在的function&#8230;
而且我也不知道是破解的缘故还是放这个版本的人恶趣味
有好多小的判定语句都是错误的&#8230;无端端冒出很多BUG
目前已经修复的错误和完成的功能有
全局篇：
未上传头像的用户不显示头像
农场篇：
道具栏显示错误(无数个狗粮,未购买的装饰等)
装饰无法使用(使用后刷新无效,或者导致数据错误)
装饰批量购买
商店全部卖出功能无效
使用肥料数量不减少
狗不咬人
农场日志记录(使用新的数据库表保存日志)
还有一些小的显示BUG,比如买狗狗送狗粮的数量什么的,无关紧要
牧场篇：
增加牧场购买牧草的function,定义变量控制是否开放
牧场商店买牲畜无效
未完成但已知的：
牧场防害虫功能不存在
牧场获取个人信息功能不存在
已知但不知如何解决的：
牧场好友列表“按经验排名”几个字错位
演示地址:http://home.zuiuk.com/newfarm.php
2009/10/22日更新:
修复了农场收获的漏洞
增加了两个开关用来决定是否开启用户偷盗与帮忙的次数限制
本演示默认开启
偷盗限制次数为等级x偷盗基数10，帮忙次数为等级x帮忙基数10
超过限制后会提示无法偷盗或者帮忙，系统默认每天清空一次限制记录
采用了新的漫游界面，使用了预读技术，增加新的变色肥料，增加新作物与花卉
修正被狗咬后金钱不少的BUG
修正被狗咬后界面不及时显示金钱的BUG











]]></description>
		<wfw:commentRss>http://all.aboutfree.me/572/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>人人餐厅盘餐经验值修改</title>
		<link>http://all.aboutfree.me/445</link>
		<comments>http://all.aboutfree.me/445#comments</comments>
		<pubDate>Fri, 09 Oct 2009 10:41:08 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[趣事分享]]></category>
		<category><![CDATA[人人餐厅]]></category>
		<category><![CDATA[作弊]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[外挂]]></category>
		<category><![CDATA[经验]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=445</guid>
		<description><![CDATA[人人餐厅盘餐经验值修改,盘餐经验的code是FFFFFFB9D02A0FF2,修改方式同以往不同,请仔细阅读教程或观看视频]]></description>
		<wfw:commentRss>http://all.aboutfree.me/445/feed</wfw:commentRss>
		<slash:comments>111</slash:comments>
		</item>
		<item>
		<title>人人餐厅无限食客,加速出餐 修改方法</title>
		<link>http://all.aboutfree.me/438</link>
		<comments>http://all.aboutfree.me/438#comments</comments>
		<pubDate>Wed, 07 Oct 2009 08:24:08 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[趣事分享]]></category>
		<category><![CDATA[人人餐厅]]></category>
		<category><![CDATA[作弊]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[加速]]></category>
		<category><![CDATA[加速出餐]]></category>
		<category><![CDATA[吃饭]]></category>
		<category><![CDATA[外挂]]></category>
		<category><![CDATA[好评度]]></category>
		<category><![CDATA[无限食客]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=438</guid>
		<description><![CDATA[做饭速度的code是04B8000001208889
食客量的code是2A0FF20000EA60B8(感谢网友code提供代码,已测)
做饭速度修改与员工体力方法基本相同

搜索04B8000001208889
获得一个结果,右键这个结果,选择
Disassemble this memory region
打开memory viewer
在高亮的code上右键,选择
Find out what addresses this instruction accesses]]></description>
		<wfw:commentRss>http://all.aboutfree.me/438/feed</wfw:commentRss>
		<slash:comments>81</slash:comments>
		</item>
		<item>
		<title>人人餐厅 好评度锁定 加速吃饭,离席 修改方法</title>
		<link>http://all.aboutfree.me/432</link>
		<comments>http://all.aboutfree.me/432#comments</comments>
		<pubDate>Tue, 06 Oct 2009 09:53:37 +0000</pubDate>
		<dc:creator>Free</dc:creator>
				<category><![CDATA[技术存档]]></category>
		<category><![CDATA[趣事分享]]></category>
		<category><![CDATA[人人餐厅]]></category>
		<category><![CDATA[作弊]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[吃饭]]></category>
		<category><![CDATA[外挂]]></category>
		<category><![CDATA[好评度]]></category>
		<category><![CDATA[离席]]></category>
		<category><![CDATA[速度]]></category>

		<guid isPermaLink="false">http://all.aboutfree.me/?p=432</guid>
		<description><![CDATA[人人餐厅 好评度锁定 加速吃饭,离席 修改方法
对好评度进行操作的code的十六进制code是0FD2853041110FF2
顾客吃饭速度是从00000FA0000061A8读取到速度后进行操作的
顾客离席速度是从0000000C000007D0读取到速度后进行操作的]]></description>
		<wfw:commentRss>http://all.aboutfree.me/432/feed</wfw:commentRss>
		<slash:comments>116</slash:comments>
		</item>
	</channel>
</rss>
