<?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>EricWingate.com</title>
	<atom:link href="http://www.ericwingate.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericwingate.com</link>
	<description>Eat your heart out before I do.</description>
	<lastBuildDate>Wed, 12 May 2010 05:45:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reloading 9mm bullets</title>
		<link>http://www.ericwingate.com/2010/05/12/reloading-9mm-bullets/</link>
		<comments>http://www.ericwingate.com/2010/05/12/reloading-9mm-bullets/#comments</comments>
		<pubDate>Wed, 12 May 2010 05:12:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/2010/05/12/reloading-9mm-bullets/</guid>
		<description><![CDATA[This is odd&#8230; but I got into reloading bullets because I thought I could save a bit of money making my own bullets as opposed to buying them for $40 a box.  Im not talking FMJ (Full Metal Jacket) bullets but JHP (Jacketed Hollow Points).  From my understanding, reloading FMJ bullets doesn&#8217;t really [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ericwingate.com/wp-content/uploads/2010/05/ammo-pistol-custom-cutaway.jpg"><img class="alignleft size-full wp-image-121" style="margin-left: 10px; margin-right: 15px;" title="ammo-pistol-custom-cutaway" src="http://www.ericwingate.com/wp-content/uploads/2010/05/ammo-pistol-custom-cutaway.jpg" alt="" width="78" height="185" /></a>This is odd&#8230; but I got into reloading bullets because I thought I could save a bit of money making my own bullets as opposed to buying them for $40 a box.  Im not talking FMJ (Full Metal Jacket) bullets but JHP (Jacketed Hollow Points).  From my understanding, reloading FMJ bullets doesn&#8217;t really save you much money.  But seriously, all points aside here, the real reason for reloading a bullet is for consistency, accuracy, pride and knowing that your handcrafted bullet is custom made to fit the gun you are shooting.  Most of the time, the bullets you buy in the store are created <em>&#8220;universally&#8221;</em> for different gun manufacturers, which make it easier for the average person to just buy bullets and not worry about if it fits or not.  The only downfall of purchasing pre-made <em>&#8220;universal&#8221;</em> bullets is that you sacrifice accuracy.  Now if your some gangster just wanting to bust a cap in someones ass, than this probably wont matter to you, but if your someone that enjoys to shoot for accuracy and consistency than you may want to consider reloading.  Enough of my jabbering&#8230;</p>
<p>Let me begin by saying that all information posted here are recipes taken from the Hornady 7th edition Handbook of Cartridge Reloading.  In no way am I responsible for any mistakes or actions that you may take in using this information to create your own reloads.  So please consult your own handbook before making or shooting any reloads for your own safety as well as others.</p>
<p>My first batch of <strong><em>9mm 147 grain Hornady XTP/HP bullets</em></strong> were loaded using the following recipe:</p>
<blockquote><p>4.5 grains of Power Pistol (gun powder)<br />
1.100&#8243; C.O.L. (Cartridge overall length)<br />
CCI 500 primers</p></blockquote>
<p>With this recipe, the bullet should theoretically travel at 900 fps.  I also loaded 50 rounds with 4.2 grains of power pistol giving me a velocity of 850 fps.  But why such slow speeds?  Because I wanted to start low and work my way up to 10% below the maximum grains (5.1 was maximum).  I&#8217;m keepin it on the safe side.</p>
<p>Now its off to the range to see how well they perform before I make the second batch!</p>
<p><span style="font-size: 8px;">The picture on the left was borrowed from Hornady.com.. Thanks Hornady.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2010/05/12/reloading-9mm-bullets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn replacing folders including subdirectories</title>
		<link>http://www.ericwingate.com/2010/01/08/svn-replacing-folders-with-subdirectories/</link>
		<comments>http://www.ericwingate.com/2010/01/08/svn-replacing-folders-with-subdirectories/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 06:41:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Developing]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=112</guid>
		<description><![CDATA[ok.. well after searching the internet via google&#8230; once again I was disappointed to find nothing about replacing a current folder in the svn repo with a newer folder that contains no .svn directories.
Just so you guys know.. the reason i was doing this was to upgrade my version of wordpress..  My site is on [...]]]></description>
			<content:encoded><![CDATA[<p>ok.. well after searching the internet via google&#8230; once again I was disappointed to find nothing about replacing a current folder in the svn repo with a newer folder that contains no .svn directories.</p>
<p>Just so you guys know.. the reason i was doing this was to upgrade my version of wordpress..  My site is on subversion control and i just wanted to replace the wp-includes folder with the newer wp-includes folder. So this is how I did it.</p>
<blockquote><p>First i deleted the old folder:<br />
<code>~$ svn delete old_folder_name</code></p>
<p>Than i commit the delete with a nice little message:<br />
<code>~$ svn commit -m "deleted old folder"</code></p>
<p>Than i add the new folder in the repo:<br />
<code>~$ cp /path/to/new_folder /path/to/new_folder_destination</code></p>
<p>Than i tell svn im adding the new folder:<br />
<code>~$ svn add new_folder/</code></p>
<p>Than finally i commit:<br />
<code>~$ svn commit -m "added new folder"</code></p></blockquote>
<p>Done.  Hope this helps&#8230; its better than deleting the whole repo and creating a new one with the new folders.. (some of what i read from google searches).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2010/01/08/svn-replacing-folders-with-subdirectories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting ext3 in Snow Leopard&#8230;</title>
		<link>http://www.ericwingate.com/2009/09/27/mounting-ext3-in-snow-leopard/</link>
		<comments>http://www.ericwingate.com/2009/09/27/mounting-ext3-in-snow-leopard/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 04:17:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>
		<category><![CDATA[Web Developing]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=106</guid>
		<description><![CDATA[Im glad to say that it is actually possible to mount an ext3 formatted linux drive in mac OS X Snow Leopard using a few tools.  Let me share with you how I did it.
Download fuse-ext2
Also make sure you have MacFUSE otherwise fuse-ext2 wont work.
Install both of those and run a few commands in [...]]]></description>
			<content:encoded><![CDATA[<p>Im glad to say that it is actually possible to mount an ext3 formatted linux drive in mac OS X Snow Leopard using a few tools.  Let me share with you how I did it.</p>
<p>Download <a href="http://sourceforge.net/projects/fuse-ext2">fuse-ext2</a><br />
Also make sure you have <a href="http://code.google.com/p/macfuse">MacFUSE</a> otherwise fuse-ext2 wont work.</p>
<p>Install both of those and run a few commands in terminal:</p>
<p>first, create a mount point such as: $ sudo mkdir /Volumes/HD<br />
next, navigate to the fuse-ext2 folder: $ cd /usr/local/bin/<br />
execute the fuse command: $ sudo ./fuse-ext2 /dev/nameOFdisk /Volumes/HD/ -o force<br />
note:(nameOFdisk can be found by typing disktool -l).</p>
<p>Heres some useful information if you dont understand my syntax:</p>
<p>$ fuse-ext2 &lt;device|image&gt; &lt;mountpoint&gt; [-o option[,...]]<br />
options:<br />
ro   : mount read only<br />
force: mount read/write<br />
allow_others: allow other users to access<br />
debug: noisy debug output</p>
<p>Voila! your drive should mount, and you should have read/write access as well! man i love mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/09/27/mounting-ext3-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Software Firewall</title>
		<link>http://www.ericwingate.com/2009/08/23/software-firewall/</link>
		<comments>http://www.ericwingate.com/2009/08/23/software-firewall/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 17:59:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=102</guid>
		<description><![CDATA[Looking for a good software based firewall for your server? Use this package at http://www.shorewall.net/
]]></description>
			<content:encoded><![CDATA[<p>Looking for a good software based firewall for your server? Use this package at <a href="http://www.shorewall.net/">http://www.shorewall.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/08/23/software-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wishing tree beeches!</title>
		<link>http://www.ericwingate.com/2009/08/18/wishing-tree-beeches/</link>
		<comments>http://www.ericwingate.com/2009/08/18/wishing-tree-beeches/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 21:15:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=100</guid>
		<description><![CDATA[


South Park
Wed 10pm / 9c


]]></description>
			<content:encoded><![CDATA[<table style='font:11px arial; color:#333; background-color:#f5f5f5' cellpadding='0' cellspacing='0' width='360' height='353'>
<tbody>
<tr style='background-color:#e5e5e5' valign='middle'>
<td style='padding:2px 1px 0px 5px;'><a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.southparkstudios.com'>South Park</a></td>
<td style='padding:2px 5px 0px 5px; text-align:right; font-weight:bold;'>Wed 10pm / 9c</td>
</tr>
<tr style='height:14px;' valign='middle'>
<td style='padding:2px 1px 0px 5px;' colspan='2'<a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.southparkstudios.com/clips/90450'>Wishing Tree<a></td>
</tr>
<tr style='height:14px; background-color:#353535' valign='middle'>
<td colspan='2' style='padding:2px 5px 0px 5px; width:360px; overflow:hidden; text-align:right'><a target='_blank' style='color:#96deff; text-decoration:none; font-weight:bold;' href='http://www.southparkstudios.com/'>www.southparkstudios.com</a></td>
</tr>
<tr valign='middle'>
<td style='padding:0px;' colspan='2'><embed style='display:block' src='http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:90450' width='360' height='301' type='application/x-shockwave-flash' wmode='window' allowFullscreen='true' flashvars='autoPlay=false' allowscriptaccess='always' allownetworking='all' bgcolor='#000000'></embed></td>
</tr>
<tr style='height:18px;' valign='middle'>
<td style='padding:0px;' colspan='2'>
<table style='margin:0px; text-align:center' cellpadding='0' cellspacing='0' width='100%' height='100%'>
<tr valign='middle'>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.jokes.com'>Joke of the Day</a></td>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://comedians.comedycentral.com/'>Stand-Up Comedy</a></td>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.comedycentral.com/games/index.jhtml'>Free Online Games</a></td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/08/18/wishing-tree-beeches/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SRV.</title>
		<link>http://www.ericwingate.com/2009/07/07/srv/</link>
		<comments>http://www.ericwingate.com/2009/07/07/srv/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 04:14:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=98</guid>
		<description><![CDATA[I am on a quest to practice Texas Flood by SRV SOOO much that my fingers bleed, and I sound as close as possible to him.
]]></description>
			<content:encoded><![CDATA[<p>I am on a quest to practice Texas Flood by SRV SOOO much that my fingers bleed, and I sound as close as possible to him.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/07/07/srv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>want another crontab example?</title>
		<link>http://www.ericwingate.com/2009/03/06/want-another-crontab-example/</link>
		<comments>http://www.ericwingate.com/2009/03/06/want-another-crontab-example/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 16:59:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Developing]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=91</guid>
		<description><![CDATA[In this example I am showing you how to use the crontab in order to reload a fresh copy of a DB at 12 noon and 12 midnight everyday.  Lets take a look:

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user  command
0 12,0 * * * /usr/bin/mysql -u username -ppassword database_name < ~/backupfile.sql

You can see [...]]]></description>
			<content:encoded><![CDATA[<p>In this example I am showing you how to use the crontab in order to reload a fresh copy of a DB at 12 noon and 12 midnight everyday.  Lets take a look:</p>
<blockquote><p>
SHELL=/bin/sh</p>
<p>PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin</p>
<p># m h dom mon dow user  command</p>
<p>0 12,0 * * * /usr/bin/mysql -u username -ppassword database_name < ~/backupfile.sql
</p></blockquote>
<p>You can see that I am connecting to mysql with my -u username and -ppassword ( And no, I did not make a mistake by not putting a space in between -ppassword, its supposed to be like that, if you put a space in between it thinks that *space* is part of your password.) and telling it to import the sql file backupfile.sql to the database database_name.  This script is good if you need to reload a DB with fresh new data everyday.  For example if you have a TEST CRM that people can use and test, you dont want people to input so much junk, so you have to reset the test data ever so often.</p>
<p>I love cron. hes a good friend of mine! <img src='http://www.ericwingate.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/03/06/want-another-crontab-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting back in it&#8230;</title>
		<link>http://www.ericwingate.com/2009/02/27/getting-back-in-it/</link>
		<comments>http://www.ericwingate.com/2009/02/27/getting-back-in-it/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 22:13:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=89</guid>
		<description><![CDATA[Im trying to get back in it! ahhhhh..  I got a golf tournament to play in this Sunday! Im gonna win for sure!!
]]></description>
			<content:encoded><![CDATA[<p>Im trying to get back in it! ahhhhh..  I got a golf tournament to play in this Sunday! Im gonna win for sure!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/02/27/getting-back-in-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>valentines day&#8230;</title>
		<link>http://www.ericwingate.com/2009/02/14/valentines-day/</link>
		<comments>http://www.ericwingate.com/2009/02/14/valentines-day/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 22:32:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chatterlings]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=83</guid>
		<description><![CDATA[Valentines day is stupid&#8230; I think the only reason why people celebrate this day is cause they have to brag about all the things their boyfriend or girlfriend got for them.  This day is retarded cause why would you have to remind each other that you still love each other?  Its fake love. [...]]]></description>
			<content:encoded><![CDATA[<p>Valentines day is stupid&#8230; I think the only reason why people celebrate this day is cause they have to brag about all the things their boyfriend or girlfriend got for them.  This day is retarded cause why would you have to remind each other that you still love each other?  Its fake love.  Everyday should be valentines day when your in love&#8230;  Its just another day for people to have an opportunity to reach their hands in your shallow ass pockets; cause you know your going to spend the money just so she wont be &#8220;mad&#8221; that you didn&#8217;t get her anything.  Any girl that gets mad because you didn&#8217;t get her anything for valentines day is a whore.  It doesn&#8217;t mean that we forgot about you, it just means that we don&#8217;t feel like we have to buy you something for you to LOVE us..  and if we do have to buy something for you to love us than your a whore.</p>
<p>These feelings I have could exist because i&#8217;m single maybe?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/02/14/valentines-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu webserver backup crontab&#8230;&#8230;.</title>
		<link>http://www.ericwingate.com/2009/01/29/ubuntu-cron-job/</link>
		<comments>http://www.ericwingate.com/2009/01/29/ubuntu-cron-job/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 02:15:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Developing]]></category>

		<guid isPermaLink="false">http://www.ericwingate.com/?p=75</guid>
		<description><![CDATA[My god was this a pain in the ass..  It was impossible finding the correct solutions on the web to do this in Ubuntu, so for those of you who are looking to do a crontab in Ubuntu check out the following:
What im doing here is creating a crontab to backup my www root folder [...]]]></description>
			<content:encoded><![CDATA[<p>My god was this a pain in the ass..  It was impossible finding the correct solutions on the web to do this in Ubuntu, so for those of you who are looking to do a crontab in Ubuntu check out the following:</p>
<p>What im doing here is creating a crontab to backup my www root folder and my db.</p>
<p>To begin the process we first do the following in terminal as root or a regular user:</p>
<p>#&gt;crontab -e<br />
this will invoke nano, and you can input something similar to the following lines:</p>
<blockquote><p># /etc/crontab: system-wide crontab<br />
# Unlike any other crontab you don&#8217;t have to run the crontab<br />
# command to install the new version when you edit this file<br />
# This file also has a username field, that none of the other crontabs do</p>
<p>SHELL=/bin/sh</p>
<p>PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin</p>
<p>MAILTO=mailer@mailer.com</p>
<p># m h dom mon dow user  command</p>
<p>01 01 * * 0 /bin/tar cfP /mnt/nas/backup/www/`date +\%y-\%m-\%d`-server-name-www.tar /var/www<br />
01 01 * * 0 /usr/bin/mysqldump &#8211;opt &#8211;all-databases &gt; /mnt/nas/backup/mysql/`date +\%y-\%m-\%d`-server-name-mysql.sql</p></blockquote>
<p>So basically whats happening here is we are tar-ing the www folder and sending it to the NAS drive with a timestamp.  file ex will be: 09-01-01-server-name-www.tar</p>
<p>And its basically the same exact thing for the database backup.. Im just doing a mysqldump and the output goes to a sql file that ends up with the filename: 09-01-01-server-name-mysql.sql</p>
<p>Hope this helps someone..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericwingate.com/2009/01/29/ubuntu-cron-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
