<?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>wordpress &#8211; Luxing Huang</title>
	<atom:link href="https://luxing.im/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://luxing.im</link>
	<description>Thoughs and things</description>
	<lastBuildDate>Sat, 19 Dec 2015 20:18:32 +0000</lastBuildDate>
	<language>en-CA</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
<site xmlns="com-wordpress:feed-additions:1">58771605</site>	<item>
		<title>Enable Memcached on Remi based PHP install for WordPress</title>
		<link>https://luxing.im/enable-memcached-on-remi-based-php-install-for-wordpress/</link>
					<comments>https://luxing.im/enable-memcached-on-remi-based-php-install-for-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Luxing Huang]]></dc:creator>
		<pubDate>Thu, 10 Dec 2015 00:39:10 +0000</pubDate>
				<category><![CDATA[Techie Stuff]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://luxing.im/?p=558</guid>

					<description><![CDATA[The php stack I am using for blogs and other hosted php websites is from Remi. I am on PHP version 5.6. The memcached plugin was enabled and I never checked its status. I only found out that the memcached is not enabled at all on my websites. OK I figured this will be a &#8230; <p class="link-more"><a href="https://luxing.im/enable-memcached-on-remi-based-php-install-for-wordpress/" class="more-link">Continue reading<span class="screen-reader-text"> "Enable Memcached on Remi based PHP install for WordPress"</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>The php stack I am using for blogs and other hosted php websites is from <a href="http://rpms.famillecollet.com/" target="_blank">Remi</a>. I am on PHP version 5.6. The <a href="https://wordpress.org/plugins/memcached-is-your-friend/" target="_blank">memcached plugin</a> was enabled and I never checked its status. I only found out that the memcached is not enabled at all on my websites.</p>
<p>OK I figured this will be a simple task. It is. There are a few things that you need to be cautious about if you are using Remi as php base. The modules will not be loaded magically.<br />
<span id="more-558"></span></p>
<p>Three steps:<br />
1. Copy or link the module to your system library, you need to do the same for 3 files for PHP 5.x: <code>igbinary.so</code>, <code>memcached.so</code> and <code>msgpack.so</code></p>
<pre lang="bash">
for i in igbinary.so memcached.so msgpack.so
do
  ln -s /opt/remi/php56/root/usr/lib64/php/modules/$i /usr/lib64/php/modules/$i
done
</pre>
<p>For PHP 7 you do not need the igbinary file.</p>
<p>2. Add the following modules to /etc/php.d directory using ordering, each of the file contains only a line of <code>extension = xxx.so</code><br />
20-msgpack.ini</p>
<pre>extension = msgpack.so</pre>
<p>20-igbinary.ini</p>
<pre>extension = igbinary.so</pre>
<p>30-memcached.ini</p>
<pre>extension = memcached.so</pre>
<p>3. Restart php-fpm<br />
Depend on your configuration, you might not be using php-fpm. Restart it so that the changes can apply to your website.</p>
<p>When you go to Tools -> Memcached in WordPress, you shall see this line:<br />
<code>Using the PHP Memcached class to interact with Memcached</code></p>
<p>It proves that you are using Memcached!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://luxing.im/enable-memcached-on-remi-based-php-install-for-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">558</post-id>	</item>
		<item>
		<title>Some rules on website security</title>
		<link>https://luxing.im/some-rules-on-website-security/</link>
					<comments>https://luxing.im/some-rules-on-website-security/#respond</comments>
		
		<dc:creator><![CDATA[root]]></dc:creator>
		<pubDate>Thu, 27 Mar 2014 22:15:38 +0000</pubDate>
				<category><![CDATA[Techie Stuff]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[rules]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.luxing.im/?p=326</guid>

					<description><![CDATA[The following configs are obtained from iThemes Security, a WordPress plugin. I believe this is a suitable configuration for nearly all websites. Nginx is more and more widely used in recent years, so the filter rules will be based on nginx settings. The following rules are derived from HackRepair.com, generated by iTheme Security: if ($http_user_agent &#8230; <p class="link-more"><a href="https://luxing.im/some-rules-on-website-security/" class="more-link">Continue reading<span class="screen-reader-text"> "Some rules on website security"</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>The following configs are obtained from iThemes Security, a WordPress plugin. I believe this is a suitable configuration for nearly all websites.</p>
<p><span id="more-326"></span></p>
<p>Nginx is more and more widely used in recent years, so the filter rules will be based on nginx settings.</p>
<p>The following rules are derived from <a href="http://hackrepair.com/how-to-block-bots-from-seeing-your-website-bad-bots-and-drive-by-hacks-explained" target="_blank">HackRepair.com</a>, generated by iTheme Security:</p>
<pre>
if ($http_user_agent ~* "^[Ww]eb[Bb]andit"){ return 403; }
if ($http_user_agent ~* "^binlar"){ return 403; }
if ($http_user_agent ~* "^BlackWidow"){ return 403; }
if ($http_user_agent ~ "^Bolt"){ return 403; }
if ($http_user_agent ~* "^casper"){ return 403; }
if ($http_user_agent ~* "^ChinaClaw"){ return 403; }
if ($http_user_agent ~* "^cmsworldmap"){ return 403; }
if ($http_user_agent ~* "^comodo"){ return 403; }
if ($http_user_agent ~* "^Custo"){ return 403; }
if ($http_user_agent ~ "^Default"){ return 403; }
if ($http_user_agent ~* "^diavol"){ return 403; }
if ($http_user_agent ~* "^DIIbot"){ return 403; }
if ($http_user_agent ~* "^DISCo"){ return 403; }
if ($http_user_agent ~* "^dotbot"){ return 403; }
if ($http_user_agent ~* "^eCatch"){ return 403; }
if ($http_user_agent ~* "^EirGrabber"){ return 403; }
if ($http_user_agent ~* "^EmailCollector"){ return 403; }
if ($http_user_agent ~* "^EmailSiphon"){ return 403; }
if ($http_user_agent ~* "^EmailWolf"){ return 403; }
if ($http_user_agent ~* "^ExtractorPro"){ return 403; }
if ($http_user_agent ~* "^EyeNetIE"){ return 403; }
if ($http_user_agent ~* "^feedfinder"){ return 403; }
if ($http_user_agent ~* "^FlashGet"){ return 403; }
if ($http_user_agent ~* "^flicky"){ return 403; }
if ($http_user_agent ~* "^GetRight"){ return 403; }
if ($http_user_agent ~* "^GetWeb!"){ return 403; }
if ($http_user_agent ~* "^Go-Ahead-Got-It"){ return 403; }
if ($http_user_agent ~* "^Go!Zilla"){ return 403; }
if ($http_user_agent ~* "^GrabNet"){ return 403; }
if ($http_user_agent ~* "^Grafula"){ return 403; }
if ($http_user_agent ~* "^HMView"){ return 403; }
if ($http_user_agent ~* "^ia_archiver"){ return 403; }
if ($http_user_agent ~* "^InterGET"){ return 403; }
if ($http_user_agent ~* "^InternetSeer.com"){ return 403; }
if ($http_user_agent ~* "^jakarta"){ return 403; }
if ($http_user_agent ~* "^Java"){ return 403; }
if ($http_user_agent ~* "^JetCar"){ return 403; }
if ($http_user_agent ~* "^kmccrew"){ return 403; }
if ($http_user_agent ~* "^larbin"){ return 403; }
if ($http_user_agent ~* "^LeechFTP"){ return 403; }
if ($http_user_agent ~* "^Link"){ return 403; }
if ($http_user_agent ~* "^Maxthon$"){ return 403; }
if ($http_user_agent ~* "^microsoft.url"){ return 403; }
if ($http_user_agent ~* "^Mozilla.*Indy"){ return 403; }
if ($http_user_agent ~* "^Mozilla.*NEWT"){ return 403; }
if ($http_user_agent ~* "^MSFrontPage"){ return 403; }
if ($http_user_agent ~* "^Navroad"){ return 403; }
if ($http_user_agent ~* "^NearSite"){ return 403; }
if ($http_user_agent ~* "^NetAnts"){ return 403; }
if ($http_user_agent ~* "^NetSpider"){ return 403; }
if ($http_user_agent ~* "^NetZIP"){ return 403; }
if ($http_user_agent ~* "^nutch"){ return 403; }
if ($http_user_agent ~* "^Octopus"){ return 403; }
if ($http_user_agent ~* "^PageGrabber"){ return 403; }
if ($http_user_agent ~* "^pavuk"){ return 403; }
if ($http_user_agent ~* "^pcBrowser"){ return 403; }
if ($http_user_agent ~* "^PeoplePal"){ return 403; }
if ($http_user_agent ~* "^planetwork"){ return 403; }
if ($http_user_agent ~* "^psbot"){ return 403; }
if ($http_user_agent ~* "^purebot"){ return 403; }
if ($http_user_agent ~* "^pycurl"){ return 403; }
if ($http_user_agent ~* "^RealDownload"){ return 403; }
if ($http_user_agent ~* "^ReGet"){ return 403; }
if ($http_user_agent ~* "^Rippers"){ return 403; }
if ($http_user_agent ~* "^SeaMonkey$"){ return 403; }
if ($http_user_agent ~* "^sitecheck.internetseer.com"){ return 403; }
if ($http_user_agent ~* "^SiteSnagger"){ return 403; }
if ($http_user_agent ~* "^skygrid"){ return 403; }
if ($http_user_agent ~* "^SmartDownload"){ return 403; }
if ($http_user_agent ~* "^sucker"){ return 403; }
if ($http_user_agent ~* "^SuperBot"){ return 403; }
if ($http_user_agent ~* "^SuperHTTP"){ return 403; }
if ($http_user_agent ~* "^Surfbot"){ return 403; }
if ($http_user_agent ~* "^tAkeOut"){ return 403; }
if ($http_user_agent ~* "^Teleport"){ return 403; }
if ($http_user_agent ~* "^Toata"){ return 403; }
if ($http_user_agent ~* "^turnit"){ return 403; }
if ($http_user_agent ~* "^vikspider"){ return 403; }
if ($http_user_agent ~* "^VoidEYE"){ return 403; }
if ($http_user_agent ~* "^WebAuto"){ return 403; }
if ($http_user_agent ~* "^WebCopier"){ return 403; }
if ($http_user_agent ~* "^WebFetch"){ return 403; }
if ($http_user_agent ~* "^WebLeacher"){ return 403; }
if ($http_user_agent ~* "^WebReaper"){ return 403; }
if ($http_user_agent ~* "^WebSauger"){ return 403; }
if ($http_user_agent ~* "^WebStripper"){ return 403; }
if ($http_user_agent ~* "^WebWhacker"){ return 403; }
if ($http_user_agent ~* "^WebZIP"){ return 403; }
if ($http_user_agent ~* "^Wget"){ return 403; }
if ($http_user_agent ~* "^Widow"){ return 403; }
if ($http_user_agent ~* "^WWW-Mechanize"){ return 403; }
if ($http_user_agent ~* "^WWWOFFLE"){ return 403; }
if ($http_user_agent ~* "^Zeus"){ return 403; }
if ($http_user_agent ~* "^zmeu"){ return 403; }
if ($http_user_agent ~* "CazoodleBot"){ return 403; }
if ($http_user_agent ~* "discobot"){ return 403; }
if ($http_user_agent ~* "ecxi"){ return 403; }
if ($http_user_agent ~* "GT::WWW"){ return 403; }
if ($http_user_agent ~* "heritrix"){ return 403; }
if ($http_user_agent ~* "HTTP::Lite"){ return 403; }
if ($http_user_agent ~* "HTTrack"){ return 403; }
if ($http_user_agent ~* "ia_archiver"){ return 403; }
if ($http_user_agent ~* "id-search"){ return 403; }
if ($http_user_agent ~* "id-search.org"){ return 403; }
if ($http_user_agent ~* "IDBot"){ return 403; }
if ($http_user_agent ~* "IRLbot"){ return 403; }
if ($http_user_agent ~* "LinksManager.com_bot"){ return 403; }
if ($http_user_agent ~* "linkwalker"){ return 403; }
if ($http_user_agent ~* "lwp-trivial"){ return 403; }
if ($http_user_agent ~* "MFC_Tear_Sample"){ return 403; }
if ($http_user_agent ~* "panscient.com"){ return 403; }
if ($http_user_agent ~* "PECL::HTTP"){ return 403; }
if ($http_user_agent ~* "PHPCrawl"){ return 403; }
if ($http_user_agent ~* "PleaseCrawl"){ return 403; }
if ($http_user_agent ~* "SBIder"){ return 403; }
if ($http_user_agent ~* "Snoopy"){ return 403; }
if ($http_user_agent ~* "Steeler"){ return 403; }
if ($http_user_agent ~* "URI::Fetch"){ return 403; }
if ($http_user_agent ~* "urllib"){ return 403; }
if ($http_user_agent ~* "User-Agent"){ return 403; }
if ($http_user_agent ~* "webalta"){ return 403; }
if ($http_user_agent ~* "WebCollage"){ return 403; }
if ($http_user_agent ~* "zermelo"){ return 403; }
if ($http_user_agent ~* "ZyBorg"){ return 403; }
</pre>
<p>I didn&#8217;t use all of those, some might be genuine browser user agent, like Maxthon</p>
<p>The following rules are to block WordPress specific locations and files. For other web programmes you can change the directories to whatever suits you.</p>
<pre>
# Rules to block access to WordPress specific files and wp-includes
location ~ /\.ht { deny all; }
location ~ wp-config.php { deny all; }
location ~ readme.html { deny all; }
location ~ readme.txt { deny all; }
location ~ /install.php { deny all; }
location ^wp-includes/(.*).php { deny all; }
location ^/wp-admin/includes(.*)$ { deny all; }
</pre>
<p>Block execution of use-uploaded .php files.</p>
<pre>
# Rules to prevent php execution in uploads
location ^(.*)/uploads/(.*).php(.?){ deny all; }
</pre>
<p>Block suspicious URLs:</p>
<pre>
# Rules to block suspicious URIs
set $susquery 0;
if ($args ~* "\.\./") { set $susquery 1; }
if ($args ~* "\.(bash|git|hg|log|svn|swp|cvs)") { set $susquery 1; }
if ($args ~* "etc/passwd") { set $susquery 1; }
if ($args ~* "boot.ini") { set $susquery 1; }
if ($args ~* "ftp:") { set $susquery 1; }
if ($args ~* "http:") { set $susquery 1; }
if ($args ~* "https:") { set $susquery 1; }
if ($args ~* "(<|%3C).*script.*(>|%3E)") { set $susquery 1; }
if ($args ~* "mosConfig_[a-zA-Z_]{1,21}(=|%3D)") { set $susquery 1; }
if ($args ~* "base64_encode") { set $susquery 1; }
if ($args ~* "(%24&x)") { set $susquery 1; }
if ($args ~* "(&#x22;|&#x27;|&#x3C;|&#x3E;|&#x5C;|&#x7B;|&#x7C;|%24&x)"){ set $susquery 1; }
if ($args ~* "(127.0)") { set $susquery 1; }
if ($args ~* "(globals|encode|localhost|loopback)") { set $susquery 1; }
# Note this might will cause some problems, such as WordPress plugin/theme update.
# .../update.php?action=update-selected...
if ($args ~* "(request|select|insert|concat|union|declare)") { set $susquery 1; } 
if ($susquery = 1) { return 403; }
</pre>
<p>Rules to help reduce spam</p>
<pre>
location /wp-comments-post.php {
valid_referers jetpack.wordpress.com/jetpack-comment/ *.luxing.im;
set $rule_0 0;
if ($request_method ~ "POST"){ set $rule_0 1$rule_0; }
if ($invalid_referer) { set $rule_0 2$rule_0; }
if ($http_user_agent ~ "^$"){ set $rule_0 3$rule_0; }
if ($rule_0 = "3210") { return 403; }
}
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://luxing.im/some-rules-on-website-security/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">326</post-id>	</item>
		<item>
		<title>Adjust WordPress Twenty Fourteen Skin Fitting FullHD Screens</title>
		<link>https://luxing.im/adjust-wordpress-twenty-fourteen-skin-fitting-fullhd-screens/</link>
					<comments>https://luxing.im/adjust-wordpress-twenty-fourteen-skin-fitting-fullhd-screens/#respond</comments>
		
		<dc:creator><![CDATA[Luxing Huang]]></dc:creator>
		<pubDate>Sat, 14 Dec 2013 15:40:06 +0000</pubDate>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.luxing.im/?p=243</guid>

					<description><![CDATA[WordPress 3.8 has a nice look, it also brings a new skin called Twenty Fourteen. (It does look a bit like its back-end managing portal.) Under 1920x1080p or higher resolution, this theme is not optimized, it occupies half left of the screen and some of half right screen, and it look just weird and wasted. &#8230; <p class="link-more"><a href="https://luxing.im/adjust-wordpress-twenty-fourteen-skin-fitting-fullhd-screens/" class="more-link">Continue reading<span class="screen-reader-text"> "Adjust WordPress Twenty Fourteen Skin Fitting FullHD Screens"</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>WordPress 3.8 has a nice look, it also brings a new skin called Twenty Fourteen. (It does look a bit like its back-end managing portal.) Under 1920x1080p or higher resolution, this theme is not optimized, it occupies half left of the screen and some of half right screen, and it look just weird and wasted. Here are a few changes I made for the CSS stylesheet to make it work:<br />
<span id="more-243"></span><br />
Login with your administrative account into WordPress, go to Appearance -> Editor, select Stylesheet at the page&#8217;s bottom.</p>
<p>Changing header width:<br />
This is done in section 3.0</p>
<pre>
...
.site {
    ...
    max-width: 100%;
}
</pre>
<p>This is done in section 4.0</p>
<pre>
...
.site-header {
    ...
    max-width: 100%;   // rather than 1260px
    ...
}
</pre>
<p>You can also change the content width [optional], you don&#8217;t have to change this. It&#8217;s my personal adjustment</p>
<p>This is done in section 6.0</p>
<pre>
...
.page-content {
    ...
    max-width: 600px; // rather than 474px
    ...
}
</pre>
<p>I didn&#8217;t test with 1366&#215;768, not sure how it would look like. And sorry for the 800&#215;600 users.</p>
<p>PS: 1366&#215;768 is evil!<br />
That&#8217;s all.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://luxing.im/adjust-wordpress-twenty-fourteen-skin-fitting-fullhd-screens/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">243</post-id>	</item>
		<item>
		<title>ghost (blog publishing) at a glance</title>
		<link>https://luxing.im/ghost-blog-publishing-at-a-glance/</link>
					<comments>https://luxing.im/ghost-blog-publishing-at-a-glance/#respond</comments>
		
		<dc:creator><![CDATA[Luxing Huang]]></dc:creator>
		<pubDate>Tue, 15 Oct 2013 14:48:07 +0000</pubDate>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[ghost]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.luxing.im/?p=130</guid>

					<description><![CDATA[Recently a new blog publishing service called ghost burst out in its existance for public testing, I am very curious of this new competitor of WordPress so I installed it and made a few tests. The installation process is simple enough and I feel I better not denote here necessarily as you just need to &#8230; <p class="link-more"><a href="https://luxing.im/ghost-blog-publishing-at-a-glance/" class="more-link">Continue reading<span class="screen-reader-text"> "ghost (blog publishing) at a glance"</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>Recently a new blog publishing service called <em>ghost</em> burst out in its existance for public testing, I am very curious of this new competitor of WordPress so I installed it and made a few tests.<br />
<span id="more-130"></span><br />
The installation process is simple enough and I feel I better not denote here necessarily as you just need to follow the <a href="http://docs.ghost.org/installation/" target="_blank">Installation Guide</a>. Installing NodeJS is neither a problem, for CentOS, you just need to add EPEL repository and a </p>
<pre>yum install nodejs</pre>
<p> will take care of the rest.</p>
<p>For ghost, MarkDown language is a must to learn, and its initial blog article has nearly everything you need.</p>
<h2>Pros:</h2>
<p>1. <em>ghost</em> is built on NodeJS, and this is blazing fast. The designers of <em>ghost</em> clearly have a neat idea of how publishing works. In comparison, WordPress is too heavy, it has too many functions that I basically won&#8217;t use at all, and it is also heavily based on PHP, which is a large CPU resource consumer. For a blog that has 5000 PV per day (not mine absolutely!), VPS in general simply can&#8217;t handle them all, so the cost could be lower if you use <em>ghost</em></p>
<p>2. Looks great! In my opinion, personaly blogging should be as neat and clean as what <em>ghost</em> is like.</p>
<p>3. Sqlite database. Well for this, different people would have different opinions. For a personal blog, SQLite is enough though.</p>
<p>4. Mobile device friendly. I know WordPress has put a lot efforts on mobile devices, but, on my old iPhone 3GS, WP cannot match with <em>ghost</em> on mobile display and publishing, <em>ghost</em> is much much nicer.</p>
<h2>Cons:</h2>
<p>1. Plugins availability = none. WP beat up <em>ghost</em> completely in this area. Because of <em>ghost</em>&#8216;s early birth, the programmers behind it haven&#8217;t got the time to develop APIs for plugins, so my <img decoding="async" src="https://s0.wp.com/latex.php?latex=%5CLaTeX&#038;bg=ffffff&#038;fg=000&#038;s=0&#038;c=20201002" alt="&#92;LaTeX" class="latex" /> plugin, it will not work on <em>ghost</em> as well as other plugins like syntax highlighting etc.</p>
<p>2. Where is &#8220;Search&#8221; in <em>ghost</em>? It could be that I am blind or the function hasn&#8217;t been developed at all.</p>
<p>Anyway, <em>ghost</em> is at its early stage, it is not suitable yet to convert from WP to <em>ghost</em>, but we&#8217;ll see how it&#8217;ll go.</p>
<p>For my <em>ghost> testing site, please visit: <a href="http://test.luxing.im" target="_blank">http://test.luxing.im</a> (Closed)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://luxing.im/ghost-blog-publishing-at-a-glance/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">130</post-id>	</item>
	</channel>
</rss>
