<?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>Everyrandom</title>
	<atom:link href="http://everyrandom.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://everyrandom.com/blog</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 11 Jan 2011 15:08:46 +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>Direct Disk Access in XenServer (iSCSI Trick)</title>
		<link>http://everyrandom.com/blog/?p=89</link>
		<comments>http://everyrandom.com/blog/?p=89#comments</comments>
		<pubDate>Fri, 13 Aug 2010 16:18:21 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=89</guid>
		<description><![CDATA[XenServer does not allow direct Hard Drive access from a Virtual Machine. But we can use a trick to mount the Drive or Volume as an iSCSI device. This will let us use it as a Removable Device in XenServer. Just Edit the udev file: nano /etc/udev/rules.d/50-udev.rules And add these 2 lines of code (replace [...]]]></description>
			<content:encoded><![CDATA[<p>XenServer does not allow direct Hard Drive access from a Virtual Machine.</p>
<p>But we can use a trick to mount the Drive or Volume as an iSCSI device. This will let us use it as a Removable Device in XenServer.</p>
<p>Just Edit the udev file:<br />
<code> nano /etc/udev/rules.d/50-udev.rules</code></p>
<p>And add these 2 lines of code (replace md0 with your device)<br />
<code>ACTION=="add", KERNEL=="md0", SYMLINK+="xapi/block/%k", RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2&gt;&amp;1 &gt;/dev/null&amp;'"<br />
ACTION=="remove", KERNEL=="md0", RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2&gt;&amp;1 &gt;/dev/null&amp;'"</code></p>
<p>To Save and quit nano type:<br />
<code>ctrl+w then ctrl+o</code></p>
<p>Now if you go into your XenServer Console, Go to a Virtual Machine &gt; Storage.<br />
Select Attach, Then Under Removable Storage you will see your Drive or Volume.</p>
<p>Note: It will come up as &#8220;Unreconised bus type&#8221; that is safe to ignore, if you would to change it go to &#8220;Removable Storage&#8221; on your Server, then click on &#8220;Unreconised bus type&#8221; then Properties and change its name.</p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=89</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a Raid 5 Array</title>
		<link>http://everyrandom.com/blog/?p=82</link>
		<comments>http://everyrandom.com/blog/?p=82#comments</comments>
		<pubDate>Fri, 13 Aug 2010 16:10:43 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=82</guid>
		<description><![CDATA[Setting up the raid: First we need to format each drive to be used as &#8220;Linux Auto Detect RAID&#8221; (Type fd) To List Hard drives: fdisk -l To work on a Hard drive: fdisk /dev/xxx Commands: d - Delete Volume n - New Volume t - Set Volume Type w - Save Chages and Exit [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up the raid:</p>
<p>First we need to format each drive to be used as &#8220;Linux Auto Detect RAID&#8221; (Type fd)</p>
<p>To List Hard drives:<br />
<code>fdisk -l</code><br />
To work on a Hard drive:<br />
<code>fdisk /dev/xxx</code><br />
Commands:<br />
<code>d - Delete Volume<br />
n - New Volume<br />
t - Set Volume Type<br />
w - Save Chages and Exit</code></p>
<p>1. We need to work on each Hard Drive.<br />
2. Remove all Volumes<br />
3. Create a new Volume<br />
4. Set its type to Linux Raid</p>
<p>Example Delete:<br />
<code>fdisk /dev/sda<br />
d<br />
w</code></p>
<p>Example Create Volume:<br />
<code>fdisk /dev/sda<br />
n<br />
p<br />
1<br />
Enter<br />
Enter<br />
w</code></p>
<p>Example Set Type to Raid:<br />
<code>fdisk /dev/sda<br />
t<br />
fd<br />
w</code></p>
<p>Now to build the Raid<br />
<code>mdadm --create /dev/md0 --level=51 --raid-devices=3 /dev/sda1 /dev/sdb1 /dev/sbc1</code></p>
<p>To Rebuild Existing Raid<br />
<code> mdadm --assemble --scan</code></p>
<p>Save Array Config for next boot:<br />
<code>mdadm --detail --scan &gt;&gt; /etc/mdadm.conf</code></p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=82</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Install on Centos 5.5</title>
		<link>http://everyrandom.com/blog/?p=75</link>
		<comments>http://everyrandom.com/blog/?p=75#comments</comments>
		<pubDate>Tue, 22 Jun 2010 11:19:32 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=75</guid>
		<description><![CDATA[5 Minute Super Guide: Main Install Make sure CentoOS is upto date: yum update Install Apache/Mysql/PHP/Unzip/Wget: yum -y install mysql-server httpd php php-mysql unzip wget Enable Apache and MySQL chkconfig httpd on chkconfig mysqld on Start Apache and MySQL /etc/init.d/mysqld start /etc/init.d/httpd start Set root password for MySQL (IMPORTANT!) mysql -u root mysql&#62; use mysql; [...]]]></description>
			<content:encoded><![CDATA[<h1>5 Minute Super Guide:</h1>
<h2>Main Install</h2>
<p>Make sure CentoOS is upto date:</p>
<p><code>yum update</code></p>
<p>Install Apache/Mysql/PHP/Unzip/Wget:</p>
<p><code>yum -y install mysql-server httpd php php-mysql unzip wget</code></p>
<p>Enable Apache and MySQL</p>
<p><code>chkconfig httpd on<br />
chkconfig mysqld on</code></p>
<p>Start Apache and MySQL</p>
<p><code>/etc/init.d/mysqld start<br />
/etc/init.d/httpd start<br />
</code></p>
<p>Set root password for MySQL (IMPORTANT!)</p>
<p><code>mysql -u root<br />
mysql&gt; use mysql;<br />
mysql&gt; update user set password=PASSWORD("NEWPASSWORD") where User='root';<br />
mysql&gt; flush privileges;<br />
</code></p>
<p>Setup WordPress Database</p>
<p><code>mysql&gt; CREATE DATABASE wordpress;<br />
mysql&gt; GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'YOURPASSWORD';<br />
mysql&gt; FLUSH PRIVILEGES;<br />
mysql&gt; quit;</code></p>
<p>Download WordPress</p>
<p><code>cd /var/www/html<br />
wget http://wordpress.org/latest.zip</code></p>
<p>Extract WordPress</p>
<p><code>unzip latest.zip<br />
rm latest.zip</code></p>
<p>Move WordPress to Root Directory</p>
<p><code>mv wordpress/* ./<br />
rmdir wordpress/</code></p>
<p>Give WordPress permissions to write</p>
<p><code>mkdir wp-content/uploads wp-content/cache<br />
chown apache:apache wp-content/uploads wp-content/cache ./</code></p>
<p>Open and configure WordPress</p>
<p><code>http://your-server-ip-or-hostname/</code></p>
<p>In the Config enter your SQL Username &#8216;wordpress&#8217; and the password you set earlier.</p>
<p>Click Save and your all done!</p>
<h2>Fixes permissions for Permalinks:</h2>
<p><code>chown apache:apache /var/www/html/.htaccess</code></p>
<p>Let Appache Edit .htaccess for Permalinks:</p>
<p><code>nano /etc/httpd/conf/httpd.conf</code></p>
<p>And edit the Section:</p>
<p><code>&lt;Directory "/var/www/html"&gt;</code></p>
<p>And Change Allow ovride to:</p>
<p><code>AllowOverride ALL</code></p>
<h2>Enable Multiple Sites:</h2>
<p><code>define('WP_ALLOW_MULTISITE', true);</code></p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=75</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Windows 7 Temp Profile</title>
		<link>http://everyrandom.com/blog/?p=72</link>
		<comments>http://everyrandom.com/blog/?p=72#comments</comments>
		<pubDate>Wed, 17 Mar 2010 08:12:31 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=72</guid>
		<description><![CDATA[What happened to me was that I deleted my own profile just to get a new clean one and all of a sudden Windows 7 complains about Temporary Profile. It didn´t matter if i Rebooted or anything. I alway got a Temporary Profile. I solved my problem by going into the registry and delete the [...]]]></description>
			<content:encoded><![CDATA[<p>What happened to me was that I deleted my own profile just to get a new clean one and all of a sudden Windows 7 complains about Temporary Profile. It didn´t matter if i Rebooted or anything. I alway got a Temporary Profile.</p>
<p>I solved my problem by going into the registry and delete the effected profile&#8217;s subfolder under HKLMSOFTWAREMicrosoftWindows NTCurrentVersionProfileList</p>
<p>After that all was well again!</p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSX 10.6 in VMWare</title>
		<link>http://everyrandom.com/blog/?p=69</link>
		<comments>http://everyrandom.com/blog/?p=69#comments</comments>
		<pubDate>Sat, 13 Mar 2010 12:10:01 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=69</guid>
		<description><![CDATA[Mac OSX 10.6 working 100% in VMWare. Can be updated without issues normally and has Network/Audio/Video Support. OSX-106-VMWare-Install-Kit-1.0.zip]]></description>
			<content:encoded><![CDATA[<p>Mac OSX 10.6 working 100% in VMWare.<br />
Can be updated without issues normally and has Network/Audio/Video Support.</p>
<p><a title="OSX-106-VMWare-Install-Kit-1.0.zip" href="http://everyrandom.com/downloads/OSX-106-VMWare-Install-Kit-1.0.zip" target="_self">OSX-106-VMWare-Install-Kit-1.0.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>0XC0000005 and Symantec Endpoint Protection 11 MR5</title>
		<link>http://everyrandom.com/blog/?p=67</link>
		<comments>http://everyrandom.com/blog/?p=67#comments</comments>
		<pubDate>Wed, 02 Dec 2009 22:09:19 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=67</guid>
		<description><![CDATA[The Application and Device Control section of Symantec Endpoint 11 MR5 has had major issues with Google Chrome and a quick google search will return 1000&#8242;s of people with issues, but what most sites dont mention is that its not just Chrome that has these issues. If you get ANY 0xc0000005 error codes while you [...]]]></description>
			<content:encoded><![CDATA[<p>The Application and Device Control section of Symantec Endpoint 11 MR5 has had major issues with Google Chrome and a quick google search will return 1000&#8242;s of people with issues, but what most sites dont mention is that its not just Chrome that has these issues. If you get ANY 0xc0000005 error codes while you have Symantec Endpoint 11 installed I would suggest  disabling the SysPlant service and rebooting.</p>
<p><code><br />
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesSysPlant]<br />
"Start"=dword:00000004<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=67</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Reset HP iLo Port from Windows</title>
		<link>http://everyrandom.com/blog/?p=64</link>
		<comments>http://everyrandom.com/blog/?p=64#comments</comments>
		<pubDate>Thu, 26 Nov 2009 03:07:09 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=64</guid>
		<description><![CDATA[To do this you will need the HP Support Pack installed. Create an XML file in x:Program Fileshphponcfg where x: is your local system drive (usually c:) Save it as change_password.xml and enter the following (replacing &#8220;YOURNEWPASSWORDHERE&#8221; with your new password): &#60;ribcl VERSION="2.0"&#62; &#60;login USER_LOGIN="Administrator" PASSWORD="boguspassword"&#62; &#60;user_INFO MODE="write"&#62; &#60;mod_USER USER_LOGIN="Administrator"&#62; &#60;password value="YOURNEWPASSWORDHERE"/&#62; &#60;/mod_USER&#62; &#60;/user_INFO&#62; &#60;/login&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>To do this you will need the HP Support Pack installed.</p>
<p>Create an XML file in x:Program Fileshphponcfg where x: is your local system drive (usually c:)<br />
Save it as change_password.xml and enter the following (replacing &#8220;YOURNEWPASSWORDHERE&#8221; with your new password):<br />
<code><br />
&lt;ribcl VERSION="2.0"&gt;<br />
&lt;login USER_LOGIN="Administrator" PASSWORD="boguspassword"&gt;<br />
&lt;user_INFO MODE="write"&gt;<br />
&lt;mod_USER USER_LOGIN="Administrator"&gt;<br />
&lt;password value="YOURNEWPASSWORDHERE"/&gt;<br />
&lt;/mod_USER&gt;<br />
&lt;/user_INFO&gt;<br />
&lt;/login&gt;<br />
&lt;/ribcl&gt;<br />
</code></p>
<p>Now open a command prompt to &#8220;x:Program Fileshphponcfg&#8221; and run:<br />
<code> HPONCFG.exe /f change_password.xml </code></p>
<p>Wait 60 seconds and it should all be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISA2K4 SP2 Large 400mb File</title>
		<link>http://everyrandom.com/blog/?p=58</link>
		<comments>http://everyrandom.com/blog/?p=58#comments</comments>
		<pubDate>Mon, 23 Nov 2009 02:50:52 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=58</guid>
		<description><![CDATA[ISA2K4/SP2 will create a new 400mb file, WindirDebugISALOG.BIN, and a second, new 400mb file, ISALOG.BAK, on the C: drive. This file&#8217;s purpose is for troubleshooting by MSSupport in the event of problems with ISA 2004. You can get rid of this by going to HKLM/Software/Microsoft/ISATracing and setting the BootTracing parameter to 0 (zero). Then reboot [...]]]></description>
			<content:encoded><![CDATA[<p>ISA2K4/SP2 will create a new 400mb file, WindirDebugISALOG.BIN, and a second, new 400mb file, ISALOG.BAK, on the C: drive.</p>
<p>This file&#8217;s purpose is for troubleshooting by MSSupport<br />
in the event of problems with ISA 2004.</p>
<p>You can get rid of this by going to HKLM/Software/Microsoft/ISATracing and<br />
setting the BootTracing parameter to 0 (zero). Then reboot and delete both<br />
ISALOG.BIN and ISALOG.BAK.</p>
<p>You can prevent the creation of these files by adding the reg key and value before installing SP2.</p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=58</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move SEM5.db for SEP 11</title>
		<link>http://everyrandom.com/blog/?p=54</link>
		<comments>http://everyrandom.com/blog/?p=54#comments</comments>
		<pubDate>Mon, 23 Nov 2009 02:40:25 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=54</guid>
		<description><![CDATA[Follow the steps below to change the location of the sem5.db database file for Symantec Endpoint Protection Manager (SEPM): Go to services.msc Stop the Symantec Endpoint Protection Manager Service Stop the Symantec Embedded Database Service Go to Program FilesSymantecSymantec Endpoint Protection Managerdb and cut the sem5.db file and paste it to the new drive Click [...]]]></description>
			<content:encoded><![CDATA[<p>Follow the steps below to change the location of the sem5.db database file for Symantec Endpoint Protection Manager (SEPM):</p>
<p>Go to <strong>services.msc</strong></p>
<p>Stop the <strong>Symantec Endpoint Protection Manager Service</strong></p>
<p>Stop the <strong>Symantec Embedded Database Service</strong></p>
<p>Go to <strong>Program FilesSymantecSymantec Endpoint Protection Managerdb</strong> and cut the <strong>sem5.db</strong> file and paste it to the new drive</p>
<p>Click <strong>Start</strong></p>
<p>Click <strong>run</strong></p>
<p>Type <strong>regedit</strong></p>
<p>Go to <strong>HKey_Local_MachinesystemCurrentControlSetServicesASANYsParameters</strong> click on the Parameters option in the right hand side column and change the path of the <strong>sem5.db</strong> database file to the new location as <strong>New Drive:Folder</strong> <strong>name</strong></p>
<p>Restart the <strong>Symantec Embedded Database Service</strong> from <strong>services.msc</strong></p>
<p>Go to <strong>Administrative Tools</strong></p>
<p>Click on <strong>Data Sources (ODBC)</strong></p>
<p>Click on <strong>System DSN</strong> tab</p>
<p>Click on <strong>Configure</strong> button</p>
<p>Highlight the <strong>database</strong> tab and replace the path for the <strong>sem5.db</strong> file and ensure connectivity by clicking on <strong>Test Connection</strong></p>
<p>Go to <strong>Management Server configuration Wizard</strong> and perform the server <strong>reconfiguration</strong></p>
<p><strong>If you need to move it to another drive:</strong></p>
<p>Follow the above steps, you&#8217;d copy the existing &#8220;content&#8221; directory (let&#8217;s say you copy it over to D:SEP_Content) and then create a new empty content directory in the old spot.</p>
<div>Then just run the command:</div>
<div>junction &#8221;c:program filesSymantecSymantec Endpoint Protection ManagerInetpubcontent&#8221; d:sep_content</div>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=54</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix BCD</title>
		<link>http://everyrandom.com/blog/?p=51</link>
		<comments>http://everyrandom.com/blog/?p=51#comments</comments>
		<pubDate>Mon, 23 Nov 2009 02:34:28 +0000</pubDate>
		<dc:creator>bohdan.s</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://everyrandom.com/blog/?p=51</guid>
		<description><![CDATA[1. Boot off the Vista Install CD 2. Select &#8220;Repair your computer&#8221; to continue. 3. Proceed with the repair process by choosing &#8220;Startup Repair&#8221; from the list. 4. If that fails Go ahead and select &#8220;Command Prompt&#8221; from that list. 5. Type: bootrec.exe /fixmbr x:bootbootsect.exe /nt60 all /force del C:bootbcd bootrec.exe /rebuildbcd shutdown -r -t [...]]]></description>
			<content:encoded><![CDATA[<p>1. Boot off the Vista Install CD<br />
2. Select &#8220;Repair your computer&#8221; to continue.<br />
3. Proceed with the repair process by choosing &#8220;Startup Repair&#8221; from the list.<br />
4. If that fails Go ahead and select &#8220;Command Prompt&#8221; from that list.<br />
5. Type:<br />
<code><br />
bootrec.exe /fixmbr<br />
x:bootbootsect.exe /nt60 all /force<br />
del C:bootbcd<br />
bootrec.exe /rebuildbcd<br />
shutdown -r -t 0<br />
</code><br />
6. If that ALSO fails:<br />
Go back to the command promt as above and now type:<br />
<code><br />
bootrec.exe /fixmbr<br />
x:bootbootsect.exe /nt60 all /force<br />
del C:bootbcd<br />
bcdedit /createstore c:bootbcd.temp<br />
bcdedit.exe /store c:bootbcd.temp /create {bootmgr} /d "Windows Boot Manager"<br />
bcdedit.exe /import c:bootbcd.temp<br />
bcdedit.exe /set {bootmgr} device partition=C:<br />
bcdedit.exe /timeout 10<br />
del c:bootbcd.temp<br />
bcdedit.exe /create /d "Windows Vista" /application osloader<br />
bcdedit.exe /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} device partition=C:<br />
bcdedit.exe /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} osdevice partition=C:<br />
bcdedit.exe /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} path Windowssystem32winload.exe<br />
bcdedit.exe /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} systemroot Windows<br />
bcdedit.exe /displayorder {c0dfc4fa-cb21-11dc-81bf-005056c00008}<br />
bcdedit.exe /default {c0dfc4fa-cb21-11dc-81bf-005056c00008}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://everyrandom.com/blog/?feed=rss2&#038;p=51</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

