<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/3.3.1" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Erik Rodriguez : Orlando IT Consultant</title>
		<link>http://blog.erikrodriguez.net/</link>
		<atom:link rel="self" type="application/rss+xml" href="http://blog.erikrodriguez.net/?tempskin=_rss2" />
		<description>Erik Rodriguez :. Orlando, Florida Information Technology Consultant</description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=3.3.1"/>
		<ttl>60</ttl>
				<item>
			<title>IPtables: open port for specific IP</title>
			<link>http://blog.erikrodriguez.net/?title=iptables-open-port-from-location&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Tue, 27 Oct 2009 16:50:56 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="alt">Networking</category>
<category domain="main">Linux</category>			<guid isPermaLink="false">144@http://erikrodriguez.net/blog//</guid>
						<description>&lt;p&gt;There seems to be a lot of confusion with this, so I'm going to make this quick any easy.  IPtables is a stateful firewall tht is both powerful and efficent.  That being said, let's look at how to restrict a port or service to a specific IP or range of IPs.  Entering the following at root will allow SSH connections from the first two locations and drop them from everywhere else:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
iptables -I INPUT -p tcp -m tcp -s 192.168.15.16 --dport 22 -j ACCEPT&lt;br /&gt;
iptables -I INPUT -p tcp -m tcp -s 192.168.15.254/26 --dport 22 -j ACCEPT&lt;br /&gt;
iptables -I INPUT -p tcp -m tcp -s 0.0.0.0/0 --dport 22 -j DROP&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Remember, if you want this configuration to survive reboots, you will need to use the command iptables-save.  Red hat-based systems will store the configuration in the files /etc/sysconfig/iptables.&lt;/p&gt;

&lt;p&gt;If you would like to edit this file directly, use the following:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
-A INPUT -p tcp -m tcp -s 192.168.15.16 --dport 22 -j ACCEPT&lt;br /&gt;
-A INPUT -p tcp -m tcp -s 192.168.15.254/26 --dport 22 -j ACCEPT&lt;br /&gt;
-A INPUT -p tcp -m tcp -s 0.0.0.0/0 --dport 22 -j DROP&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Remember, IPtables like most hardware firewalls, uses stateful packet inspection.  It will read the rules in order from top to bottom.  This is why we put all the allowed networks first and then put in a blanket deny all (0.0.0.0/0).  You can enter hosts into IPtables using any of the following formats:&lt;/p&gt;

&lt;p&gt;IP address: ex. 192.168.15.16&lt;br /&gt;
DNS name: ex. skullbox.net&lt;br /&gt;
CIDR: ex. 192.168.15.254/26&lt;/p&gt;

&lt;p&gt;That's it!  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graysmilewinkgrin.gif&quot; alt=&quot;&amp;#59;&amp;#68;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=iptables-open-port-from-location&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>There seems to be a lot of confusion with this, so I'm going to make this quick any easy.  IPtables is a stateful firewall tht is both powerful and efficent.  That being said, let's look at how to restrict a port or service to a specific IP or range of IPs.  Entering the following at root will allow SSH connections from the first two locations and drop them from everywhere else:<br />
<code><br />
iptables -I INPUT -p tcp -m tcp -s 192.168.15.16 --dport 22 -j ACCEPT<br />
iptables -I INPUT -p tcp -m tcp -s 192.168.15.254/26 --dport 22 -j ACCEPT<br />
iptables -I INPUT -p tcp -m tcp -s 0.0.0.0/0 --dport 22 -j DROP<br />
</code><br />
Remember, if you want this configuration to survive reboots, you will need to use the command iptables-save.  Red hat-based systems will store the configuration in the files /etc/sysconfig/iptables.</p>

<p>If you would like to edit this file directly, use the following:<br />
<code><br />
-A INPUT -p tcp -m tcp -s 192.168.15.16 --dport 22 -j ACCEPT<br />
-A INPUT -p tcp -m tcp -s 192.168.15.254/26 --dport 22 -j ACCEPT<br />
-A INPUT -p tcp -m tcp -s 0.0.0.0/0 --dport 22 -j DROP<br />
</code></p>

<p>Remember, IPtables like most hardware firewalls, uses stateful packet inspection.  It will read the rules in order from top to bottom.  This is why we put all the allowed networks first and then put in a blanket deny all (0.0.0.0/0).  You can enter hosts into IPtables using any of the following formats:</p>

<p>IP address: ex. 192.168.15.16<br />
DNS name: ex. skullbox.net<br />
CIDR: ex. 192.168.15.254/26</p>

<p>That's it!  <img src="http://erikrodriguez.net/blog//rsc/smilies/graysmilewinkgrin.gif" alt="&#59;&#68;" class="middle" /></p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=iptables-open-port-from-location&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=iptables-open-port-from-location&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=144</wfw:commentRss>
		</item>
				<item>
			<title>Rate Limiting Ingress [Inbound] Traffic</title>
			<link>http://blog.erikrodriguez.net/?title=rate-limiting-ingress-inbound-traffic&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Thu, 15 Oct 2009 12:42:12 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="main">Tech News</category>			<guid isPermaLink="false">143@http://erikrodriguez.net/blog//</guid>
						<description>&lt;p&gt;Nearly every hosting company or network administrator will rate limit traffic.  This is commonly done by leaving the port speed of access switches to 10 or 100 Mbps but enforcing a policer or rate limit statement to restrict traffic flow.  Generally this is done for egress (outbound or outgoing) traffic.  In data centers and networks that contain servers, most of the bandwidth consumed is traffic from the servers hitting the Internet.&lt;/p&gt;
&lt;pre&gt;
&lt;div style=&quot;float:right; clear:both; margin:5px;&quot;&gt;

&lt;!-- Paste from here... --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-1147749160714474&quot;;
/* 200x200, created 12/13/08 */
google_ad_slot = &quot;7369038975&quot;;
google_ad_width = 200;
google_ad_height = 200;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;!-- ...to here --&gt;

&lt;/div&gt;
&lt;/pre&gt;
&lt;p&gt;That being said, it may also be advantageous to put a policer statement in your switches to also rate limit ingress traffic.  I have seen and experienced problems with networks that had zero restrictions on ingress traffic.  If a server or group or servers suddenly requests data from outside the network, saturation quickly brings the network down or to a crawl.  Unfortunately, because of the way TCP works, you must have bandwidth available (both ingress and egress) to complete connection requests.&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;If you ever transfer large files using your cable modem, you may notice slow web browsing while the transfer is running.  Same concept applies.  Now, saturation of Ingress bandwidth is usually only a problem on small networks.  By small I mean networks with 100 Mbps or less of transport to the Internet.&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;Larger networks with 200+ Mbps usually run fine as requests in excess of 200 Mbps are rare.  Speaking from experience, I had a group of Sonicwall CDP devices configured to collect backup data from remote networks.  Manually activating the transfer requested over 70 Mbps of Ingress traffic.  That combined with other requests from the network saturated the 100 Mbps pipe and some servers were reporting offline.&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;Placing a high rate limit on ingress traffic may be worth your while depending on what devices live on your network.  In my case, it would have stopped the Sonicwalls from eating all the bandwidth.  If you are using Juniper gear, rate limiting can be done in the ScreenOS GUI.  In JunOS this is done by attaching a policer statement the interface.  Cisco PIX/ASAs will also rate limit traffic.  If you are using Cisco Catalysts make sure you have the &quot;Enhanced&quot; version of IOS.  They require specific models like the 2950T.  The standard 2950 will not do rate limiting.  All layer 3 Cisco devices such as 3750s and 4548s will work fine right out of the box.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=rate-limiting-ingress-inbound-traffic&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Nearly every hosting company or network administrator will rate limit traffic.  This is commonly done by leaving the port speed of access switches to 10 or 100 Mbps but enforcing a policer or rate limit statement to restrict traffic flow.  Generally this is done for egress (outbound or outgoing) traffic.  In data centers and networks that contain servers, most of the bandwidth consumed is traffic from the servers hitting the Internet.</p>
<pre>
<div style="float:right; clear:both; margin:5px;">

<!-- Paste from here... -->
<script type="text/javascript"><!--
google_ad_client = "pub-1147749160714474";
/* 200x200, created 12/13/08 */
google_ad_slot = "7369038975";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- ...to here -->

</div>
</pre>
<p>That being said, it may also be advantageous to put a policer statement in your switches to also rate limit ingress traffic.  I have seen and experienced problems with networks that had zero restrictions on ingress traffic.  If a server or group or servers suddenly requests data from outside the network, saturation quickly brings the network down or to a crawl.  Unfortunately, because of the way TCP works, you must have bandwidth available (both ingress and egress) to complete connection requests.</p>
<pre>
</pre>
<p>If you ever transfer large files using your cable modem, you may notice slow web browsing while the transfer is running.  Same concept applies.  Now, saturation of Ingress bandwidth is usually only a problem on small networks.  By small I mean networks with 100 Mbps or less of transport to the Internet.</p>
<pre>
</pre>
<p>Larger networks with 200+ Mbps usually run fine as requests in excess of 200 Mbps are rare.  Speaking from experience, I had a group of Sonicwall CDP devices configured to collect backup data from remote networks.  Manually activating the transfer requested over 70 Mbps of Ingress traffic.  That combined with other requests from the network saturated the 100 Mbps pipe and some servers were reporting offline.</p>
<pre>
</pre>
<p>Placing a high rate limit on ingress traffic may be worth your while depending on what devices live on your network.  In my case, it would have stopped the Sonicwalls from eating all the bandwidth.  If you are using Juniper gear, rate limiting can be done in the ScreenOS GUI.  In JunOS this is done by attaching a policer statement the interface.  Cisco PIX/ASAs will also rate limit traffic.  If you are using Cisco Catalysts make sure you have the "Enhanced" version of IOS.  They require specific models like the 2950T.  The standard 2950 will not do rate limiting.  All layer 3 Cisco devices such as 3750s and 4548s will work fine right out of the box.</p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=rate-limiting-ingress-inbound-traffic&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=rate-limiting-ingress-inbound-traffic&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=143</wfw:commentRss>
		</item>
				<item>
			<title>FullSail University: Graduates are Less Than Par...</title>
			<link>http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Sat, 19 Sep 2009 16:06:03 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="main">Business-Related</category>			<guid isPermaLink="false">129@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'FullSail University: Graduates are Less Than Par...';
digg_bodytext = 'Growing up in Orlando, I saw this company go from a operating out of a normal office, to taking over the entire office park and surrounding buildings.  It\'s no secret Fullsail \&quot;University\&quot; has grown by leaps and bounds.  The school itself is only accredited by the ACCAST, which grants accreditation to vocational schools.  C';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;Growing up in Orlando, I saw this company go from a operating out of a normal office, to taking over the entire office park and surrounding buildings.  It&amp;#8217;s no secret Fullsail &amp;#8220;University&amp;#8221; has grown by leaps and bounds.  The school itself is only accredited by the &lt;a href=&quot;http://www.accsct.org/&quot;&gt;ACCAST&lt;/a&gt;, which grants accreditation to vocational schools.  Colleges and universities do not recognize the ACCAST and therefore any credit hours earned WILL NOT transfer to a traditional 4-year degree program.&lt;/p&gt;
&lt;pre&gt;
&lt;div style=&quot;float:right; clear:both; margin:5px;&quot;&gt;

&lt;!-- Paste from here... --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-1147749160714474&quot;;
/* 200x200, created 12/13/08 */
google_ad_slot = &quot;7369038975&quot;;
google_ad_width = 200;
google_ad_height = 200;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;!-- ...to here --&gt;

&lt;/div&gt;
&lt;/pre&gt;
&lt;p&gt;I have blocked Fullsail&amp;#8217;s advertisements from my Adsense account and I will tell you why.  Over the last few years I have learned more and more about this company.  I will refer to it as a company for the rest of this post because the fact it is called a University is outrageous.  In my opinion, the only thing that qualifies it as a &amp;#8220;University&amp;#8221; is the price (rumored to be 40k-55k total).  In the last few years, I have meet and/or interacted with many people who attended Fullsail.  The majority of whom I met never graduated from the place.  Of the ones who did, most of them did not move on to be successful movie producers, recording artists, or anything close.  In fact, most of them were given jobs as &amp;#8220;recruiters&amp;#8221; to work for the company.  Sounds like a pyramid scheme to me&amp;#8230;  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graysmilewinkgrin.gif&quot; alt=&quot;&amp;#59;&amp;#68;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;Not to stereotype (I will admit when I do) but it seems that a lot of students I have seen had 2 things in common.  The first is being &amp;#8220;Gothic.&amp;#8221;  Fullsail had taken over an old strip mall close to an Ale House where I was eating.  While leaving, I drove past the strip mall and must have see 50+ &amp;#8220;students&amp;#8221; all dressed in black.  Some had black lipstick (both girls and guys  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_crazy.gif&quot; alt=&quot;&amp;#58;&amp;#99;&amp;#114;&amp;#97;&amp;#122;&amp;#121;&amp;#58;&quot; class=&quot;middle&quot; /&gt;), colored hair, and a lot of piercing.  The second thing they have in common is poor driving skills.  Somehow, when I drive around that area, most of the people who are speeding, weaving through traffic, and cutting people off all have a Fullsail sticker on the back of their car.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graybigeek.gif&quot; alt=&quot;&amp;#56;&amp;#56;&amp;#124;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;So what makes this place so renowned?  I have a hard time believing this place is that great considering the current and former attendees.  Another thing that caught my attention was the fact Failsail themselves have control of &lt;a href=&quot;http://whois.domaintools.com/fullsailsucks.com&quot;&gt;fullsailsucks.com&lt;/a&gt;.  I briefly looked into this and it seems that someone started the website and Fullsail sued them, therefore gaining control of the domain name.  Not sure if that is true or not, but a Google search reveals many students who have come forward and shared their story.  There have been several other websites exploiting Fullsail.  Most of them have been shutdown, but there is a &lt;a href=&quot;http://www.fs911.com/&quot;&gt;forum&lt;/a&gt; that requires registration to view it.  While reading the reviews, most said it wasn&amp;#8217;t what they expected.  They didn&amp;#8217;t get everything that was promised to them, and in the end they felt taken.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/grayno.gif&quot; alt=&quot;&amp;#58;&amp;#110;&amp;#111;&amp;#58;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;I don&amp;#8217;t know the real story about this place&amp;#8230;  I have never attended Fullsail and never will.  I can say that the reviews I read which portray negatively seem to outweigh the positive ones.  I cannot help but think Fullsail is painting a Picasso for the incoming students, then handing them a Xerox when they graduate.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graydead.gif&quot; alt=&quot;&amp;#88;&amp;#88;&amp;#40;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'FullSail University: Graduates are Less Than Par...';
digg_bodytext = 'Growing up in Orlando, I saw this company go from a operating out of a normal office, to taking over the entire office park and surrounding buildings.  It\'s no secret Fullsail \"University\" has grown by leaps and bounds.  The school itself is only accredited by the ACCAST, which grants accreditation to vocational schools.  C';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>Growing up in Orlando, I saw this company go from a operating out of a normal office, to taking over the entire office park and surrounding buildings.  It&#8217;s no secret Fullsail &#8220;University&#8221; has grown by leaps and bounds.  The school itself is only accredited by the <a href="http://www.accsct.org/">ACCAST</a>, which grants accreditation to vocational schools.  Colleges and universities do not recognize the ACCAST and therefore any credit hours earned WILL NOT transfer to a traditional 4-year degree program.</p>
<pre>
<!-- Adsense block #4 not displayed since it exceed the limit of 3 -->
</pre>
<p>I have blocked Fullsail&#8217;s advertisements from my Adsense account and I will tell you why.  Over the last few years I have learned more and more about this company.  I will refer to it as a company for the rest of this post because the fact it is called a University is outrageous.  In my opinion, the only thing that qualifies it as a &#8220;University&#8221; is the price (rumored to be 40k-55k total).  In the last few years, I have meet and/or interacted with many people who attended Fullsail.  The majority of whom I met never graduated from the place.  Of the ones who did, most of them did not move on to be successful movie producers, recording artists, or anything close.  In fact, most of them were given jobs as &#8220;recruiters&#8221; to work for the company.  Sounds like a pyramid scheme to me&#8230;  <img src="http://erikrodriguez.net/blog//rsc/smilies/graysmilewinkgrin.gif" alt="&#59;&#68;" class="middle" /></p>
<pre>
</pre>
<p>Not to stereotype (I will admit when I do) but it seems that a lot of students I have seen had 2 things in common.  The first is being &#8220;Gothic.&#8221;  Fullsail had taken over an old strip mall close to an Ale House where I was eating.  While leaving, I drove past the strip mall and must have see 50+ &#8220;students&#8221; all dressed in black.  Some had black lipstick (both girls and guys  <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_crazy.gif" alt="&#58;&#99;&#114;&#97;&#122;&#121;&#58;" class="middle" />), colored hair, and a lot of piercing.  The second thing they have in common is poor driving skills.  Somehow, when I drive around that area, most of the people who are speeding, weaving through traffic, and cutting people off all have a Fullsail sticker on the back of their car.  <img src="http://erikrodriguez.net/blog//rsc/smilies/graybigeek.gif" alt="&#56;&#56;&#124;" class="middle" /></p>
<pre>
</pre>
<p>So what makes this place so renowned?  I have a hard time believing this place is that great considering the current and former attendees.  Another thing that caught my attention was the fact Failsail themselves have control of <a href="http://whois.domaintools.com/fullsailsucks.com">fullsailsucks.com</a>.  I briefly looked into this and it seems that someone started the website and Fullsail sued them, therefore gaining control of the domain name.  Not sure if that is true or not, but a Google search reveals many students who have come forward and shared their story.  There have been several other websites exploiting Fullsail.  Most of them have been shutdown, but there is a <a href="http://www.fs911.com/">forum</a> that requires registration to view it.  While reading the reviews, most said it wasn&#8217;t what they expected.  They didn&#8217;t get everything that was promised to them, and in the end they felt taken.  <img src="http://erikrodriguez.net/blog//rsc/smilies/grayno.gif" alt="&#58;&#110;&#111;&#58;" class="middle" /></p>
<pre>
</pre>
<p>I don&#8217;t know the real story about this place&#8230;  I have never attended Fullsail and never will.  I can say that the reviews I read which portray negatively seem to outweigh the positive ones.  I cannot help but think Fullsail is painting a Picasso for the incoming students, then handing them a Xerox when they graduate.  <img src="http://erikrodriguez.net/blog//rsc/smilies/graydead.gif" alt="&#88;&#88;&#40;" class="middle" /></p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=fullsail-graduates-are-less-than-par&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=129</wfw:commentRss>
		</item>
				<item>
			<title>Service Providers: Archiving Customer Data</title>
			<link>http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Thu, 17 Sep 2009 02:56:58 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="alt">Sales</category>
<category domain="main">Business-Related</category>
<category domain="alt">Data Center</category>			<guid isPermaLink="false">140@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Service Providers: Archiving Customer Data';
digg_bodytext = 'I am bringing this up because twice this month previous customers have inquried about returning for service.  :D Both customers asked if we still had copies of their files.  As a provider, you can\'t help but feel bad when a customer requests to cancel service.  :(          Usually you delete all the files and use the server';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;I am bringing this up because twice this month previous customers have inquried about returning for service.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_biggrin.gif&quot; alt=&quot;&amp;#58;&amp;#68;&quot; class=&quot;middle&quot; /&gt; Both customers asked if we still had copies of their files.  As a provider, you can&amp;#8217;t help but feel bad when a customer requests to cancel service.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_sad.gif&quot; alt=&quot;&amp;#58;&amp;#40;&quot; class=&quot;middle&quot; /&gt;  &lt;/p&gt;
&lt;pre&gt;
&lt;!-- Adsense block #5 not displayed since it exceed the limit of 3 --&gt;
&lt;/pre&gt;
&lt;p&gt;Usually you delete all the files and use the server for something else or for a different customer.  We started compressing customer files and storing them on tapes for a period of 12 months.  When customer cancel (at least in our case) they do so becuase they either found a cheaper provider, were bought out or obsorbed by another company, or simply closed up shop.  I have run into all 3 over the last few years, but it seems most of them return because we provided such good service.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_lalala.gif&quot; alt=&quot;&amp;#58;&amp;#108;&amp;#97;&amp;#108;&amp;#97;&amp;#108;&amp;#97;&amp;#58;&quot; class=&quot;middle&quot; /&gt;  As sad as it sounds, sometimes customers need to see that the grass isn&amp;#8217;t always greener on the other side.&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;If you are a service provider, you may want to take the extra 10 minutes to archive your customer data.  It really makes you look like a rockstar when you can turn up a returning customer with their old data.  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graylaugh.gif&quot; alt=&quot;&amp;#58;&amp;#41;&amp;#41;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Service Providers: Archiving Customer Data';
digg_bodytext = 'I am bringing this up because twice this month previous customers have inquried about returning for service.  :D Both customers asked if we still had copies of their files.  As a provider, you can\'t help but feel bad when a customer requests to cancel service.  :(          Usually you delete all the files and use the server';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>I am bringing this up because twice this month previous customers have inquried about returning for service.  <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_biggrin.gif" alt="&#58;&#68;" class="middle" /> Both customers asked if we still had copies of their files.  As a provider, you can&#8217;t help but feel bad when a customer requests to cancel service.  <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_sad.gif" alt="&#58;&#40;" class="middle" />  </p>
<pre>
<!-- Adsense block #6 not displayed since it exceed the limit of 3 -->
</pre>
<p>Usually you delete all the files and use the server for something else or for a different customer.  We started compressing customer files and storing them on tapes for a period of 12 months.  When customer cancel (at least in our case) they do so becuase they either found a cheaper provider, were bought out or obsorbed by another company, or simply closed up shop.  I have run into all 3 over the last few years, but it seems most of them return because we provided such good service.  <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_lalala.gif" alt="&#58;&#108;&#97;&#108;&#97;&#108;&#97;&#58;" class="middle" />  As sad as it sounds, sometimes customers need to see that the grass isn&#8217;t always greener on the other side.</p>
<pre>
</pre>
<p>If you are a service provider, you may want to take the extra 10 minutes to archive your customer data.  It really makes you look like a rockstar when you can turn up a returning customer with their old data.  <img src="http://erikrodriguez.net/blog//rsc/smilies/graylaugh.gif" alt="&#58;&#41;&#41;" class="middle" /></p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=archiving-customer-data&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=140</wfw:commentRss>
		</item>
				<item>
			<title>Limiting Web Directories by IP Address</title>
			<link>http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Thu, 10 Sep 2009 18:26:27 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="alt">Business-Related</category>
<category domain="alt">Networking</category>
<category domain="main">Linux</category>			<guid isPermaLink="false">138@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Limiting Web Directories by IP Address';
digg_bodytext = 'Password protecting directories is not new.  The next step up would be firewall policies.  You may allow only RDP access to specific IP addresses.  However, you may need something between.  For example, most ticket systems today are web-based.  This makes it easier for admins to work remotely.  However, these ticket systems';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;Password protecting directories is not new.  The next step up would be firewall policies.  You may allow only RDP access to specific IP addresses.  However, you may need something between.  For example, most ticket systems today are web-based.  This makes it easier for admins to work remotely.  However, these ticket systems contain the most important company data.  Passwords, client names, IP addresses, etc are all documented in tickets.&lt;/p&gt;
&lt;pre&gt;
&lt;!-- Adsense block #7 not displayed since it exceed the limit of 3 --&gt;
&lt;/pre&gt;
&lt;p&gt;Most ticket systems have a customer portal that allows customers to view their tickets.  Then their is the admin or staff side.  Let us say your ticket software is installed at the address: support.yourcompany.com.   Customers can go to that URL to submit and view tickets.  The staff will usually login via the URL: support.yourcompany.com/staff or support.yourcompany.com/admin.  That&amp;#8217;s fine, but personally, I&amp;#8217;d feel a little better if this was restricted to prevent joe blow from seeing a login prompt.  Remember, you cannot completely lock this URL down at the firewall because customers still need access to it.  You can however use an old fashioned .htaccess file with an ACL inside.&lt;/p&gt;

&lt;p class=&quot;amcode&quot;&gt;Code:&lt;/p&gt;&lt;div class=&quot;codeblock amc_code amc_short&quot;&gt;&lt;table&gt;&lt;tr class=&quot;amc_code_odd&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc1&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt;deny from all&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class=&quot;amc_code_even&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc2&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt; allow from 192.168.1.1/24&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class=&quot;amc_code_odd&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc3&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt; allow from boss.yourcompany.com&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class=&quot;amc_code_even&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc4&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt; allow from 10.10.10.124&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The example above would need to be placed on your webserver in the /staff and /admin folders of your URL.  Anyone visiting those URLs from hosts other than the ones listed in the .htaccess file will receive an error message.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Limiting Web Directories by IP Address';
digg_bodytext = 'Password protecting directories is not new.  The next step up would be firewall policies.  You may allow only RDP access to specific IP addresses.  However, you may need something between.  For example, most ticket systems today are web-based.  This makes it easier for admins to work remotely.  However, these ticket systems';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>Password protecting directories is not new.  The next step up would be firewall policies.  You may allow only RDP access to specific IP addresses.  However, you may need something between.  For example, most ticket systems today are web-based.  This makes it easier for admins to work remotely.  However, these ticket systems contain the most important company data.  Passwords, client names, IP addresses, etc are all documented in tickets.</p>
<pre>
<!-- Adsense block #8 not displayed since it exceed the limit of 3 -->
</pre>
<p>Most ticket systems have a customer portal that allows customers to view their tickets.  Then their is the admin or staff side.  Let us say your ticket software is installed at the address: support.yourcompany.com.   Customers can go to that URL to submit and view tickets.  The staff will usually login via the URL: support.yourcompany.com/staff or support.yourcompany.com/admin.  That&#8217;s fine, but personally, I&#8217;d feel a little better if this was restricted to prevent joe blow from seeing a login prompt.  Remember, you cannot completely lock this URL down at the firewall because customers still need access to it.  You can however use an old fashioned .htaccess file with an ACL inside.</p>

<p class="amcode">Code:</p><div class="codeblock amc_code amc_short"><table><tr class="amc_code_odd"><td class="amc_line"><div class="amc1"></div></td><td><code><span class="amc_default">deny from all</span></code></td></tr>
<tr class="amc_code_even"><td class="amc_line"><div class="amc2"></div></td><td><code><span class="amc_default"> allow from 192.168.1.1/24</span></code></td></tr>
<tr class="amc_code_odd"><td class="amc_line"><div class="amc3"></div></td><td><code><span class="amc_default"> allow from boss.yourcompany.com</span></code></td></tr>
<tr class="amc_code_even"><td class="amc_line"><div class="amc4"></div></td><td><code><span class="amc_default"> allow from 10.10.10.124</span></code></td></tr>
</table></div>

<p>The example above would need to be placed on your webserver in the /staff and /admin folders of your URL.  Anyone visiting those URLs from hosts other than the ones listed in the .htaccess file will receive an error message.</p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=limit-web-directories-by-ip-address&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=138</wfw:commentRss>
		</item>
				<item>
			<title>LINUX: delete files before a certain date</title>
			<link>http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Wed, 09 Sep 2009 22:58:59 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="main">Linux</category>			<guid isPermaLink="false">137@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'LINUX: delete files before a certain date';
digg_bodytext = 'Every now and then you\'ll find yourself in a bind where you need to delete files older than a certain date.  This isn\'t a bid deal in small numbers, but when faced with a directory containing 120,000+ files it can be overwhelming.  Not to worry!  The following command will do this for you.  You will simply need to adjust th';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;Every now and then you&amp;#8217;ll find yourself in a bind where you need to delete files older than a certain date.  This isn&amp;#8217;t a bid deal in small numbers, but when faced with a directory containing 120,000+ files it can be overwhelming.  Not to worry!  The following command will do this for you.  You will simply need to adjust the date depending on what you want to do.  Here is the command:&lt;/p&gt;

&lt;p class=&quot;amcode&quot;&gt;Code:&lt;/p&gt;&lt;div class=&quot;codeblock amc_code amc_short&quot;&gt;&lt;table&gt;&lt;tr class=&quot;amc_code_odd&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc1&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt;ls -la | grep May | /usr/bin/tr -s ' ' | /usr/bin/cut -d ' ' -f9 | xargs rm&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That will list all files from May of the current year and delete them.  Remember, Linux will not show the year of the file if it is the current year.  You can use this command 12 times (once per month) and delete all files from every month.  The following will list all files from 2008 and delete them:&lt;/p&gt;

&lt;p class=&quot;amcode&quot;&gt;Code:&lt;/p&gt;&lt;div class=&quot;codeblock amc_code amc_short&quot;&gt;&lt;table&gt;&lt;tr class=&quot;amc_code_odd&quot;&gt;&lt;td class=&quot;amc_line&quot;&gt;&lt;div class=&quot;amc1&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;code&gt;&lt;span class=&quot;amc_default&quot;&gt;ls -la | grep 2008 | /usr/bin/tr -s ' ' | /usr/bin/cut -d ' ' -f9 | xargs rm&lt;/span&gt;&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Be careful using these commands as their is no way to &amp;#8220;undelete&amp;#8221; files in Linux.  You would need to restore from a backup.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'LINUX: delete files before a certain date';
digg_bodytext = 'Every now and then you\'ll find yourself in a bind where you need to delete files older than a certain date.  This isn\'t a bid deal in small numbers, but when faced with a directory containing 120,000+ files it can be overwhelming.  Not to worry!  The following command will do this for you.  You will simply need to adjust th';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>Every now and then you&#8217;ll find yourself in a bind where you need to delete files older than a certain date.  This isn&#8217;t a bid deal in small numbers, but when faced with a directory containing 120,000+ files it can be overwhelming.  Not to worry!  The following command will do this for you.  You will simply need to adjust the date depending on what you want to do.  Here is the command:</p>

<p class="amcode">Code:</p><div class="codeblock amc_code amc_short"><table><tr class="amc_code_odd"><td class="amc_line"><div class="amc1"></div></td><td><code><span class="amc_default">ls -la | grep May | /usr/bin/tr -s ' ' | /usr/bin/cut -d ' ' -f9 | xargs rm</span></code></td></tr>
</table></div>

<p>That will list all files from May of the current year and delete them.  Remember, Linux will not show the year of the file if it is the current year.  You can use this command 12 times (once per month) and delete all files from every month.  The following will list all files from 2008 and delete them:</p>

<p class="amcode">Code:</p><div class="codeblock amc_code amc_short"><table><tr class="amc_code_odd"><td class="amc_line"><div class="amc1"></div></td><td><code><span class="amc_default">ls -la | grep 2008 | /usr/bin/tr -s ' ' | /usr/bin/cut -d ' ' -f9 | xargs rm</span></code></td></tr>
</table></div>

<p>Be careful using these commands as their is no way to &#8220;undelete&#8221; files in Linux.  You would need to restore from a backup.</p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=linux-delete-files-before-certain-date&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=137</wfw:commentRss>
		</item>
				<item>
			<title>SCAM ALERT: Paypal Payment Holds</title>
			<link>http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Sat, 05 Sep 2009 18:36:40 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="alt">Sales</category>
<category domain="main">Business-Related</category>			<guid isPermaLink="false">136@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'SCAM ALERT: Paypal Payment Holds';
digg_bodytext = 'Recently, ebay created a \&quot;policy\&quot; of holding payments for select auctions from sellers with feedback under 100.  This has now been shifted to all auctions of select \&quot;high risk\&quot; items.  These items include electronics and gift cards.  I gathered all this information over the phone from several paypal employees.  Previously, ';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;Recently, ebay created a &amp;#8220;policy&amp;#8221; of holding payments for select auctions from sellers with feedback under 100.  This has now been shifted to all auctions of select &amp;#8220;high risk&amp;#8221; items.  These items include electronics and gift cards.  I gathered all this information over the phone from several paypal employees.  Previously, I called in and had the hold removed.  They now claim the only way to remove the hold and release fund into your paypal is one of 3 ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Wait 21 days&lt;/li&gt;
&lt;li&gt;wait until the buyer leaves positive feedback&lt;/li&gt;
&lt;li&gt;ship the item yourself and provide tracking to paypal&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I explained there are several reasons why this policy is &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_censored.gif&quot; alt=&quot;&amp;#62;&amp;#58;&amp;#88;&amp;#88;&quot; class=&quot;middle&quot; /&gt;ing outrageous!  By selling an item on ebay, I had to pay a $20 fee.  I then paid $14 to ship it, and a $7 paypal fee.  A total cost to me of $41.  All this before I actually see any money from selling an item.  I explained that I sent the item via priority mail.  So, I am required to pay more money for the use of tracking or wait the 21 days to release my funds without any interest.  Paypal has now made itself an escrow service.  This &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_censored.gif&quot; alt=&quot;&amp;#62;&amp;#58;&amp;#88;&amp;#88;&quot; class=&quot;middle&quot; /&gt;ing pisses me off!&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'SCAM ALERT: Paypal Payment Holds';
digg_bodytext = 'Recently, ebay created a \"policy\" of holding payments for select auctions from sellers with feedback under 100.  This has now been shifted to all auctions of select \"high risk\" items.  These items include electronics and gift cards.  I gathered all this information over the phone from several paypal employees.  Previously, ';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>Recently, ebay created a &#8220;policy&#8221; of holding payments for select auctions from sellers with feedback under 100.  This has now been shifted to all auctions of select &#8220;high risk&#8221; items.  These items include electronics and gift cards.  I gathered all this information over the phone from several paypal employees.  Previously, I called in and had the hold removed.  They now claim the only way to remove the hold and release fund into your paypal is one of 3 ways:</p>
<ul>
<li>Wait 21 days</li>
<li>wait until the buyer leaves positive feedback</li>
<li>ship the item yourself and provide tracking to paypal</li>
</ul>
<p>I explained there are several reasons why this policy is <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_censored.gif" alt="&#62;&#58;&#88;&#88;" class="middle" />ing outrageous!  By selling an item on ebay, I had to pay a $20 fee.  I then paid $14 to ship it, and a $7 paypal fee.  A total cost to me of $41.  All this before I actually see any money from selling an item.  I explained that I sent the item via priority mail.  So, I am required to pay more money for the use of tracking or wait the 21 days to release my funds without any interest.  Paypal has now made itself an escrow service.  This <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_censored.gif" alt="&#62;&#58;&#88;&#88;" class="middle" />ing pisses me off!</p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=paypal-holds-payments&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=136</wfw:commentRss>
		</item>
				<item>
			<title>Why People Drive Like Morons in Florida</title>
			<link>http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
			<pubDate>Thu, 27 Aug 2009 03:05:12 +0000</pubDate>			<dc:creator>Erik Rodriguez</dc:creator>
			<category domain="main">Nonsense</category>			<guid isPermaLink="false">135@http://erikrodriguez.net/blog//</guid>
						<description>&lt;div style='float:left;margin-right: 5px'&gt;
&lt;script type='text/javascript'&gt;digg_url = 'http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Why People Drive Like Morons in Florida';
digg_bodytext = 'I have to write about this because it drives (no pun intended) me insane!  Here are the top 3 reasons why I think people drive like morons in the state of Florida.          Rain  Lack of efficient roads  Cell phone usage    I\'ll start with the first thing, rain.  The only thing I hate more than the heat in Florida in the da';
&lt;/script&gt;
			&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'&gt;&lt;/script&gt;&lt;/div&gt;&lt;p&gt;I have to write about this because it drives (no pun intended) me insane!  Here are the top 3 reasons why I think people drive like morons in the state of Florida.&lt;/p&gt;
&lt;pre&gt;
&lt;!-- Adsense block #9 not displayed since it exceed the limit of 3 --&gt;
&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;Rain&lt;/li&gt;
&lt;li&gt;Lack of efficient roads&lt;/li&gt;
&lt;li&gt;Cell phone usage&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;#8217;ll start with the first thing, rain.  The only thing I hate more than the heat in Florida in the damn rain!  It seems to pour everyday for a few hours right before I need to go somewhere.  To make matter worse, it seems as if everyone on the road feels their car tires are made of glass and they have to drive 20 mph less than the posted speed limit.  Heaven forbid there an accident in the rain!  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/graybigeek.gif&quot; alt=&quot;&amp;#56;&amp;#56;&amp;#124;&quot; class=&quot;middle&quot; /&gt;  That will result in everyone driving 20 mph under the speed limit and slow down another 40 mph to look at a car with a dented bumper.  It makes my blood boil!  &lt;img src=&quot;http://erikrodriguez.net/blog//rsc/smilies/icon_twisted.gif&quot; alt=&quot;&amp;#58;&amp;#62;&quot; class=&quot;middle&quot; /&gt;&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;Moving on, lack of efficient roads also contributes to people driving like morons.  For whatever reason, the city of Orlando has deemed it necessary to do construction on all major roads at the same time.  Interstate 4 (I-4), Colonial Dr. (SR 50), and Semoran Blvd. (SR 436) all have some type of major construction that decreases the speed limit and narrows the roadways.  This is reason number 2 people drive like morons.&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;Number 3, cell phones!  This is probably everywhere, but seems to be worse by UCF and other school where students and other young people feel the need to send 1010258021385 text messages a day.  You cannot send that many messages without taking time from your local commute.  In the interest of contributing to the decay of modern society (and bothering other people because someone receives the stupid message they sent), they feel the need to text while they drive.  Everyone knows millions of accidents per year are caused by people talking on their damn phones.  Texting has made it even worse!&lt;/p&gt;
&lt;pre&gt;
&lt;/pre&gt;
&lt;p&gt;That&amp;#8217;s it I&amp;#8217;m done!&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div style='float:left;margin-right: 5px'>
<script type='text/javascript'>digg_url = 'http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1';
 digg_url = digg_url.replace(/amp;/g, ''); 
 digg_bgcolor = '#FFFFFF';
digg_title = 'Why People Drive Like Morons in Florida';
digg_bodytext = 'I have to write about this because it drives (no pun intended) me insane!  Here are the top 3 reasons why I think people drive like morons in the state of Florida.          Rain  Lack of efficient roads  Cell phone usage    I\'ll start with the first thing, rain.  The only thing I hate more than the heat in Florida in the da';
</script>
			<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script></div><p>I have to write about this because it drives (no pun intended) me insane!  Here are the top 3 reasons why I think people drive like morons in the state of Florida.</p>
<pre>
<!-- Adsense block #10 not displayed since it exceed the limit of 3 -->
</pre>
<p></p><ul>
<li>Rain</li>
<li>Lack of efficient roads</li>
<li>Cell phone usage</li>
</ul>
<p>I&#8217;ll start with the first thing, rain.  The only thing I hate more than the heat in Florida in the damn rain!  It seems to pour everyday for a few hours right before I need to go somewhere.  To make matter worse, it seems as if everyone on the road feels their car tires are made of glass and they have to drive 20 mph less than the posted speed limit.  Heaven forbid there an accident in the rain!  <img src="http://erikrodriguez.net/blog//rsc/smilies/graybigeek.gif" alt="&#56;&#56;&#124;" class="middle" />  That will result in everyone driving 20 mph under the speed limit and slow down another 40 mph to look at a car with a dented bumper.  It makes my blood boil!  <img src="http://erikrodriguez.net/blog//rsc/smilies/icon_twisted.gif" alt="&#58;&#62;" class="middle" /></p>
<pre>
</pre>
<p>Moving on, lack of efficient roads also contributes to people driving like morons.  For whatever reason, the city of Orlando has deemed it necessary to do construction on all major roads at the same time.  Interstate 4 (I-4), Colonial Dr. (SR 50), and Semoran Blvd. (SR 436) all have some type of major construction that decreases the speed limit and narrows the roadways.  This is reason number 2 people drive like morons.</p>
<pre>
</pre>
<p>Number 3, cell phones!  This is probably everywhere, but seems to be worse by UCF and other school where students and other young people feel the need to send 1010258021385 text messages a day.  You cannot send that many messages without taking time from your local commute.  In the interest of contributing to the decay of modern society (and bothering other people because someone receives the stupid message they sent), they feel the need to text while they drive.  Everyone knows millions of accidents per year are caused by people talking on their damn phones.  Texting has made it even worse!</p>
<pre>
</pre>
<p>That&#8217;s it I&#8217;m done!</p><div class="item_footer"><p><small><a href="http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://blog.erikrodriguez.net/?title=why-people-drive-like-morons-in-florida&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
			<wfw:commentRss>http://blog.erikrodriguez.net/?tempskin=_rss2&#38;disp=comments&#38;p=135</wfw:commentRss>
		</item>
			</channel>
</rss>
