<?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>行得太快，記得太少</title>
	<atom:link href="http://www.imeric.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.imeric.info</link>
	<description>Living in IT...</description>
	<lastBuildDate>Fri, 06 Jan 2012 06:39:43 +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>修复php-5.2.x和php-5.3.x hash dos漏洞</title>
		<link>http://www.imeric.info/149</link>
		<comments>http://www.imeric.info/149#comments</comments>
		<pubDate>Fri, 06 Jan 2012 06:39:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=149</guid>
		<description><![CDATA[最近爆发出来的hash dos漏洞威力十足，杀伤力很大。随便一台服务器就可以发起ddos攻击，导致cpu长期占用100%，从而使服务器down机。下面给出php-5.2.x和php-5.3.x的修复方法。 php-5.2.x: 到这里https://github.com/laruence/laruence.github.com/tree/master/php-5.2-max-input-vars下载对应的补丁版本，进入php目录，执行patch -p1 &#60; php-5.2.*-max-input-vars.patch打上补丁，之后make 和make install即可。 php-5.3.x: php-5.3.x没有提供相应的补丁版本，laruence建议使用php5.3.x的升级到5.3.9RC4或者按照php5.2.x的补丁修改适应成php5.3.x的补丁。下面我们提供直接修改文件的方法，虽然比较麻烦。 1、修改/main/main.c文件，把STD_PHP_INI_ENTRY宏加到main.c的PHP_INI_BEGIN()和PHP_INI_END()宏之间来注册PHP INI指令： STD_PHP_INI_ENTRY(" max_input_vars", "1000", PHP_INI_SYSTEM&#124;PHP_INI_PERDIR, OnUpdateLongGEZero, max_input_vars, php_core_globals, core_globals) 2、修改文件/main/php_globals.h，_php_core_globals结构体内加上: long max_input_vars; 3、修改文件/main/php_variables.c,在: zend_symtable_update(symtable1, escaped_index, index_len + 1, &#38;gpc_element, sizeof(zval *), (void **) &#38;gpc_element_p); 之前加入： if (zend_hash_num_elements(symtable1) &#62;= PG(max_input_vars)) { php_error_docref(NULL TSRMLS_CC, E_ERROR, "Input variables exceeded %ld. To increase the limit change max_input_vars [...]]]></description>
			<content:encoded><![CDATA[<p>最近爆发出来的hash dos漏洞威力十足，杀伤力很大。随便一台服务器就可以发起<a title="ddos" href="http://www.centos.bz/tag/ddos/">ddos</a>攻击，导致cpu长期占用100%，从而使服务器down机。下面给出php-5.2.x和php-5.3.x的修复方法。<br />
<strong>php-5.2.x:</strong><br />
到这里https://github.com/laruence/laruence.github.com/tree/master/php-5.2-max-input-vars下载对应的补丁版本，进入php目录，执行patch -p1 &lt; php-5.2.*-max-input-vars.patch打上补丁，之后make 和make install即可。<br />
<strong>php-5.3.x:</strong><br />
php-5.3.x没有提供相应的补丁版本，laruence建议使用php5.3.x的升级到5.3.9RC4或者按照php5.2.x的补丁修改适应成php5.3.x的补丁。下面我们提供直接修改文件的方法，虽然比较麻烦。<br />
1、修改/main/main.c文件，把STD_PHP_INI_ENTRY宏加到main.c的PHP_INI_BEGIN()和PHP_INI_END()宏之间来注册PHP INI指令：</p>
<div>
<ol title="Double click to hide line number." ondblclick="linenumber(this)">
<li>STD_PHP_INI_ENTRY(" max_input_vars", "1000", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLongGEZero, max_input_vars, php_core_globals, core_globals)</li>
</ol>
</div>
<p>2、修改文件/main/php_globals.h，_php_core_globals结构体内加上:</p>
<div>
<ol title="Double click to hide line number." ondblclick="linenumber(this)">
<li>long max_input_vars;</li>
</ol>
</div>
<p>3、修改文件/main/php_variables.c,在:</p>
<div>
<ol title="Double click to hide line number." ondblclick="linenumber(this)">
<li>zend_symtable_update(symtable1, escaped_index, index_len + 1, &amp;gpc_element, sizeof(zval *), (void **) &amp;gpc_element_p);</li>
</ol>
</div>
<p>之前加入：</p>
<div>
<ol title="Double click to hide line number." ondblclick="linenumber(this)">
<li>if (zend_hash_num_elements(symtable1) &gt;= PG(max_input_vars)) {</li>
<li>php_error_docref(NULL TSRMLS_CC, E_ERROR, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));</li>
<li>}</li>
</ol>
</div>
<p>一共有两处，第一处数组中的键时的操作，而第二处是普通变量时的操作。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/149/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 9 破解方法</title>
		<link>http://www.imeric.info/143</link>
		<comments>http://www.imeric.info/143#comments</comments>
		<pubDate>Wed, 21 Dec 2011 05:53:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[共享软件]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=143</guid>
		<description><![CDATA[第一步：如果已经安装过Zend Studio 9.0的,请打开Zend Studio 9.0,在菜单中“help&#62;Unregister”,如果显示是灰的跳过此步退出Zend Studio。如果显示可以点击的请点击，这时Zend Studio会重启，重启到要求你填注册码时点“QUIT”按钮 第二步：下载com.zend.php.core_9.0.0.201111081531文件，下载成功后复制到你安装Zend Studio 9.0的plugins目录下，覆盖同名文件。 第三步：启动Zend Studio 9.0，输入如下注册码License key：（注意没有空格也没有换行） 34E606CF10C3E4CF202ABCEAA9B0B7A64DD2C5862A514B944AAAB38E3EB8A5F2CD735A2AB4CF9B952590EFA62BA0AB2B3E5D99C33C55309EE143165AC7F1817D626574615F3B32312F31312F323031313B392E303B3030313B313B3330]]></description>
			<content:encoded><![CDATA[<pre>第一步：如果已经安装过Zend Studio 9.0的,请打开Zend Studio
9.0,在菜单中“help&gt;Unregister”,如果显示是灰的跳过此步退出Zend
Studio。如果显示可以点击的请点击，这时Zend Studio会重启，重启到要求你填注册码时点“QUIT”按钮<a name="entrymore"></a></pre>
<pre>第二步：下载<a href="http://www.imeric.info/wp-content/uploads/2011/12/com.zend_.php_.core_9.0.0.201111081531.zip">com.zend.php.core_9.0.0.201111081531</a>文件，下载成功后复制到你安装Zend Studio 9.0的plugins目录下，覆盖同名文件。</pre>
<pre>第三步：启动Zend Studio 9.0，输入如下注册码License key：（注意没有空格也没有换行）

34E606CF10C3E4CF202ABCEAA9B0B7A64DD2C5862A514B944AAAB38E3EB8A5F2CD735A2AB4CF9B952590EFA62BA0AB2B3E5D99C33C55309EE143165AC7F1817D626574615F3B32312F31312F323031313B392E303B3030313B313B3330</pre>
<pre><a href="http://www.imeric.info/wp-content/uploads/2011/12/zend-studio.png" rel="lightbox[143]"><img class="aligncenter size-medium wp-image-145" title="zend studio" src="http://www.imeric.info/wp-content/uploads/2011/12/zend-studio-300x200.png" alt="" width="300" height="200" /></a></pre>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/143/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 9.0.0 正式版官方下载地址</title>
		<link>http://www.imeric.info/140</link>
		<comments>http://www.imeric.info/140#comments</comments>
		<pubDate>Wed, 21 Dec 2011 03:24:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[共享软件]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=140</guid>
		<description><![CDATA[Zend Studio 9.0.0 正式版官方下载地址(未包含IBM i edition下载) windows版：http://downloads.zend…ZendStudio-9.0.0.msi linux版(32位)：http://downloads.zend…/ZendStudio-9.0.0-x86.tar.gz linux版(64位)：http://downloads.zend…ZendStudio-9.0.0-x86_64.tar.gz 适用于Mac_OS_X的DMG安装格式：http://downloads.zend…ZendStudio-9.0.0.dmg zend studio 8 注册码(适用于7.0、8.0所有版本) Username: zendstudio.net Serial Number: 3727234F6095F72034F6095F]]></description>
			<content:encoded><![CDATA[<h3>Zend Studio 9.0.0 正式版官方下载地址(未包含IBM i edition下载)</h3>
<ul>
<li><strong>windows版：</strong><a href="http://downloads.zend.com/studio-eclipse/9.0.0/ZendStudio-9.0.0.msi">http://downloads.zend…ZendStudio-9.0.0.msi</a></li>
<li><strong>linux版(32位)：</strong><a href="http://downloads.zend.com/studio-eclipse/9.0.0/ZendStudio-9.0.0-x86.tar.gz">http://downloads.zend…/ZendStudio-9.0.0-x86.tar.gz</a></li>
<li><strong>linux版(64位)：</strong><a href="http://downloads.zend.com/studio-eclipse/9.0.0/ZendStudio-9.0.0-x86_64.tar.gz">http://downloads.zend…ZendStudio-9.0.0-x86_64.tar.gz</a></li>
<li><strong>适用于Mac_OS_X的DMG安装格式：</strong><a href="http://downloads.zend.com/studio-eclipse/9.0.0/ZendStudio-9.0.0.dmg">http://downloads.zend…ZendStudio-9.0.0.dmg</a></li>
</ul>
<pre>zend studio 8 注册码(适用于7.0、8.0所有版本)
Username: zendstudio.net
Serial Number: 3727234F6095F72034F6095F</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/140/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Domain套接字的Java包 junixsocket</title>
		<link>http://www.imeric.info/136</link>
		<comments>http://www.imeric.info/136#comments</comments>
		<pubDate>Thu, 15 Dec 2011 08:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=136</guid>
		<description><![CDATA[junixsocket 是一个通过 Java JNI （Java本地接口）实现的基于 Unix Domain 套接字（AF_UNIX ）进行通讯的 Java 开发包。 junixsocket 扩展了 Java 的 Socket API ，支持基于 AF_UNIX 的 RMI 通讯，还可以使用 Unix Domain 套接字直接连接本地的 MySQL 服务器。 下面是一段使用 junixsocket 连接 MySQL 的代码示例： import org.newsclub.net.mysql.AFUNIXDatabaseSocketFactory; Class.forName("com.mysql.jdbc.Driver").newInstance(); Properties props = new Properties(); props.put("user", "test"); props.put("password", "test"); props.put("socketFactory", AFUNIXDatabaseSocketFactory.class.getName()); props.put("junixsocket.file", "/tmp/mysql.sock"); Connection conn = DriverManager.getConnection("jdbc:mysql:///库名", props); &#160; 需要在/opt/newsclub/lib-native [...]]]></description>
			<content:encoded><![CDATA[<p>junixsocket 是一个通过 Java JNI （Java本地接口）实现的基于 Unix Domain 套接字（AF_UNIX ）进行通讯的 Java 开发包。</p>
<p>junixsocket 扩展了 Java 的 Socket API ，支持基于 AF_UNIX 的 RMI 通讯，还可以使用 Unix Domain 套接字直接连接本地的 MySQL 服务器。</p>
<p>下面是一段使用 junixsocket 连接 MySQL 的代码示例：</p>
<p>import org.newsclub.net.mysql.AFUNIXDatabaseSocketFactory;</p>
<p>Class.forName("com.mysql.jdbc.Driver").newInstance();</p>
<p>Properties props = new Properties();<br />
props.put("user", "test");<br />
props.put("password", "test");<br />
props.put("socketFactory", AFUNIXDatabaseSocketFactory.class.getName());<br />
props.put("junixsocket.file", "/tmp/mysql.sock");</p>
<p>Connection conn = DriverManager.getConnection("jdbc:mysql:///库名", props);</p>
<p>&nbsp;</p>
<p>需要在/opt/newsclub/lib-native 目录下添加</p>
<p>libjunixsocket-linux-1.5-amd64.so<br />
libjunixsocket-linux-1.5-i386.so<br />
libjunixsocket-macosx-1.5-i386.dylib<br />
libjunixsocket-macosx-1.5-x86_64.dylib</p>
<p>&nbsp;</p>
<p>以上四个文件可以在以下压缩包中获取到，目录在 junixsocket-1.3\lib-native</p>
<p>需要JAR包，可通过下面链接下载</p>
<p><a href="http://junixsocket.googlecode.com/files/junixsocket-1.3-bin.tar.bz2" target="_blank">http://junixsocket.googlecode.com/files/junixsocket-1.3-bin.tar.bz2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/136/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP FastCGI Server: php5-fpm的配置</title>
		<link>http://www.imeric.info/134</link>
		<comments>http://www.imeric.info/134#comments</comments>
		<pubDate>Fri, 09 Dec 2011 03:33:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=134</guid>
		<description><![CDATA[FPM配置文件位于/etc/php5/fpm下，包含main.conf(全局配置)和pool.d/*.conf。主要设定在pool.d下的*.conf文件，例如创建一个配置文件www.conf： 其中pm, pm.max_children等设置Fastcgi process manager能创建的child processes的个数。可以根据服务器的内存大小和网站所要承受的负载来调整恰当的值。 &#160; 如果内存有限(例如使用VPS)，则可以考虑将max_children设置得小一些以节省内存。 pm = dynamic  pm.max_children = 8  pm.start_servers = 5  pm.min_spare_servers = 2 pm.max_spare_servers = 8 或者设置成静态个数： pm = static  pm.max_children = 2 完后重启php5-fpm FastCGI server: sudo /etc/init.d/php5-fpm reload]]></description>
			<content:encoded><![CDATA[<h2><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">FPM配置文件位于</span><code style="font-size: 13px; font-weight: normal;">/etc/php5/fpm</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">下，包含</span><code style="font-size: 13px; font-weight: normal;">main.conf</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">(全局配置)和</span><code style="font-size: 13px; font-weight: normal;">pool.d/*.conf</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">。主要设定在</span><code style="font-size: 13px; font-weight: normal;">pool.d</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">下的</span><code style="font-size: 13px; font-weight: normal;">*.conf</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">文件，例如创建一个配置文件</span><code style="font-size: 13px; font-weight: normal;">www.conf</code><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">：</span></h2>
<p>其中<code>pm</code>, <code>pm.max_children</code>等设置Fastcgi process manager能创建的child processes的个数。可以根据<strong>服务器的内存大小</strong>和<strong>网站所要承受的负载</strong>来调整恰当的值。</p>
<p>&nbsp;</p>
<p>如果<strong>内存有限</strong>(例如使用VPS)，则可以考虑将<code>max_children</code>设置得小一些以节省内存。</p>
<pre><code> pm = dynamic </code></pre>
<pre><code>pm.max_children = 8 </code></pre>
<pre><code>pm.start_servers = 5 </code></pre>
<pre><code>pm.min_spare_servers = 2</code></pre>
<pre><code>pm.max_spare_servers = 8 </code></pre>
<p>或者设置成静态个数：</p>
<pre><code>pm = static </code></pre>
<pre><code>pm.max_children = 2 </code></pre>
<p>完后重启php5-fpm FastCGI server: <code>sudo /etc/init.d/php5-fpm reload</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/134/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2010 Toolkit(Office2010激活工具)V2.2.3绿色版</title>
		<link>http://www.imeric.info/130</link>
		<comments>http://www.imeric.info/130#comments</comments>
		<pubDate>Wed, 26 Oct 2011 07:29:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[共享软件]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=130</guid>
		<description><![CDATA[Office 2010 Toolkit是一个简单的好用的MS Office2010激活工具。office2010密钥生成器原理就是利用KMS来激活，不是新的激活技术:( 180天后必须手工再次激活一次。网上流传的MAK密钥激活甚称完美，但有次数限制，激活后要备份激活信息，以便重装系统恢复激活。Office2010 Toolkit也有备份激活信息功能，建议下载一个Office 2010 Toolkit备用。 解压后以管理员身份运行，点击工具界面的“Main” 选项, 单击下面的“EZ-Activator” 按钮，工具会自动检测系统安装的Office程序并进行激活，稍后片刻，Office was successfully actived。 重新打开Office2010，查看激活状态你会发现已经激活了。 http://www.mediafire.com/?r90ffd2h80cj6]]></description>
			<content:encoded><![CDATA[<p>Office 2010 Toolkit是一个简单的好用的MS Office2010激活工具。office2010密钥生成器原理就是利用KMS来激活，不是新的激活技术:( 180天后必须手工再次激活一次。网上流传的MAK密钥激活甚称完美，但有次数限制，激活后要备份激活信息，以便重装系统恢复激活。Office2010 Toolkit也有备份激活信息功能，建议<a href="http://www.xiazaiba.com/" target="_blank">下载</a>一个Office 2010 Toolkit备用。</p>
<p>解压后以管理员身份运行，点击工具界面的“Main” 选项, 单击下面的“EZ-Activator” 按钮，工具会自动检测系统安装的Office程序并进行激活，稍后片刻，Office was successfully actived。</p>
<p>重新打开Office2010，查看激活状态你会发现已经激活了。</p>
<p>http://www.mediafire.com/?r90ffd2h80cj6</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/130/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MyEclipse6.6安装SVN</title>
		<link>http://www.imeric.info/125</link>
		<comments>http://www.imeric.info/125#comments</comments>
		<pubDate>Tue, 25 Oct 2011 04:56:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=125</guid>
		<description><![CDATA[http://subclipse.tigris.org/update_1.6.x]]></description>
			<content:encoded><![CDATA[<p><a href="http://subclipse.tigris.org/update_1.6.x">http://subclipse.tigris.org/update_1.6.x</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/125/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql远程访问的设置</title>
		<link>http://www.imeric.info/121</link>
		<comments>http://www.imeric.info/121#comments</comments>
		<pubDate>Wed, 12 Oct 2011 07:24:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=121</guid>
		<description><![CDATA[登陆以后运行以下命令，给予远程访问客户端权限..  grant all on *.* to 'remote'@'172.16.21.39' identified by 'password'; remote表示用户名. '172.16.21.39' 远程ip地址 password表示远程登陆密码. &#160;]]></description>
			<content:encoded><![CDATA[<div id="blog_content">
<p><span>登陆以后运行以下命令，给予远程访问客户端权限.. </span></p>
<p><span>grant all on *.* to 'remote'@'172.16.21.39' identified by 'password';<br />
</span></p>
<p><span>remote表示用户名.</span></p>
<p>'172.16.21.39' 远程ip地址</p>
<p><span>password表示远程登陆密码.</span></p>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/121/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>-bash: killall: command not found 没有killall命令的解决方法</title>
		<link>http://www.imeric.info/118</link>
		<comments>http://www.imeric.info/118#comments</comments>
		<pubDate>Wed, 12 Oct 2011 06:55:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=118</guid>
		<description><![CDATA[执行如下命令安装就行： apt-get install psmisc]]></description>
			<content:encoded><![CDATA[<div>
<div>执行如下命令安装就行：</p>
<p>apt-get install psmisc</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/118/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx下WordPresss URL静态化配置</title>
		<link>http://www.imeric.info/116</link>
		<comments>http://www.imeric.info/116#comments</comments>
		<pubDate>Tue, 20 Sep 2011 03:52:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.imeric.info/?p=116</guid>
		<description><![CDATA[在nginx.conf下添加以下配置，然后 serivce nginx restart location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } }]]></description>
			<content:encoded><![CDATA[<pre>在nginx.conf下添加以下配置，然后</pre>
<pre>serivce nginx restart</pre>
<pre></pre>
<pre>               location / {
                            if (-f $request_filename/index.html){
                                rewrite (.*) $1/index.html break;
                            }
                            if (-f $request_filename/index.php){
                                rewrite (.*) $1/index.php;
                            }
                            if (!-f $request_filename){
                                rewrite (.*) /index.php;
                            }
                }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imeric.info/116/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

