<?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>E-Dribble</title>
	<atom:link href="http://www.infosprite.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infosprite.com</link>
	<description>vaccuum packed mindless ramblings</description>
	<lastBuildDate>Sun, 13 Jan 2013 19:32:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Making the tint2 panel a little bit more friendly</title>
		<link>http://www.infosprite.com/2013/01/13/making-the-tint2-panel-a-little-bit-more-friendly/</link>
		<comments>http://www.infosprite.com/2013/01/13/making-the-tint2-panel-a-little-bit-more-friendly/#comments</comments>
		<pubDate>Sun, 13 Jan 2013 19:32:24 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[#!]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[tint2]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=1015</guid>
		<description><![CDATA[I find the tint2 panel in a standard Crunchbang Waldorf install to be much like a barren wasteland of information.  Don&#8217;t get me wrong; I dig minimalism.  Just not at the expense of convenience and comprehension. I wanted to add some launcher icons, remove my clock panel and modify the tasks to look more like [...]]]></description>
				<content:encoded><![CDATA[<p>I find the tint2 panel in a standard Crunchbang Waldorf install to be much like a barren wasteland of information.  Don&#8217;t get me wrong; I dig minimalism.  Just not at the expense of convenience and comprehension.</p>
<p>I wanted to add some launcher icons, remove my clock panel and modify the tasks to look more like running tasks in other DE panels.  I wanted a bubble with the icon and text showing what&#8217;s going on in that application. Process is below the break.</p>
<p><span id="more-1015"></span></p>
<p>First: Adding a launcher panel and removing the clock:</p>
<p>You need to let tint know what you want to show up and in what order you&#8217;d like to see them. You&#8217;ll use the &#8220;panel_items&#8221; entry for this.</p>
<blockquote><p># Panel<br />
panel_monitor = all<br />
panel_position = top left horizontal<br />
panel_items = LTS<br />
panel_size = 100% 32<br />
panel_margin = 0 1<br />
panel_padding = 3 3<br />
panel_dock = 0<br />
wm_menu = 1<br />
panel_layer = bottom<br />
panel_background_id = 1</p></blockquote>
<p>L = launcher<br />
T = tasks<br />
S = systray<br />
C = clock</p>
<p>So, I&#8217;ve told tint2 that I want to see launcher first, tasks second  and systray last, since I removed &#8220;c&#8221;. After designating the order, I need to populate the launcher list:</p>
<blockquote><p># Launcher<br />
launcher_padding = 6<br />
launcher_background_id = 5<br />
launcher_icon_size = 20<br />
launcher_icon_theme = Faenza-Dark-CrunchBang<br />
launcher_item_app = /usr/share/applications/terminator.desktop<br />
launcher_item_app = /usr/share/applications/exo-file-manager.desktop<br />
launcher_item_app = /usr/share/applications/iceweasel.desktop<br />
launcher_item_app = /usr/share/applications/geany.desktop</p></blockquote>
<p>I placed my four most commonly used applications.  You can have as many or few as you&#8217;d like.</p>
<p>My clock is gone and I&#8217;ve got some application launcher icons.  Now I just need some more informative task icons for any running processes.</p>
<p>First, activate text for tasks, resize max width and set some new IDs for the tasks:</p>
<blockquote><p># Tasks<br />
urgent_nb_of_blink = 20<br />
task_icon = 1<br />
task_text = 1<br />
task_centered = 0<br />
task_maximum_size = 150 20<br />
task_padding = 0 0<br />
task_background_id = 9<br />
task_active_background_id = 10<br />
task_urgent_background_id = 9<br />
task_iconified_background_id = 9</p></blockquote>
<p>I changed task_text to reflect 1,  modified task_maximum_size to 150 and defined two new ids (9 and 10) for the task_background entries.  Now I just needed to create those definitions.</p>
<p>In my IDs:</p>
<blockquote><p># ID 9 &#8211; task surround<br />
rounded = 3<br />
border_width = 1<br />
background_color = #FF6501 30<br />
border_color = #000000 30</p>
<p># ID 10 &#8211; active task surround<br />
rounded = 3<br />
border_width = 1<br />
background_color = #FF6501 100<br />
border_color = #ffffff 30</p></blockquote>
<p>For the inactive tasks, I set the color to an orange and set the transparency to 30.  For the active text, I just negated the transparency completely(1o0).</p>
<blockquote><p>The last step required is to set the font colors for the tasks:</p>
<p># Fonts<br />
task_font = BankGothic Md BT 10<br />
task_font_color = #000000 100<br />
task_active_font_color = #0000ff 100<br />
task_urgent_font_color = #ff0000 100<br />
task_iconified_font_color = #696969 60<br />
font_shadow = 0</p></blockquote>
<p>I set active to blue with no transparency, inactive to black with no transparency, urgent to red with no transparency and minimized to a gray with a transparency of 60.</p>
<p>That resulted in this:</p>
<p><a href="http://www.infosprite.com/2013/01/13/making-the-tint2-panel-a-little-bit-more-friendly/tint2setup/" rel="attachment wp-att-1016"><img class="alignnone size-medium wp-image-1016" alt="tint2setup" src="http://www.infosprite.com/wp-content/uploads/2013/01/tint2setup-300x168.jpg" width="300" height="168" /></a></p>
<p>Here&#8217;s the full tint2 config:</p>
<blockquote><p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
# TINT2 CONFIG FILE<br />
#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
# horizontal panel<br />
# squared taskbars<br />
# idirae config</p>
<p># Background definitions<br />
# ID 1<br />
rounded = 3<br />
border_width = 1<br />
background_color = #808080 20<br />
border_color = #ffffff 10</p>
<p># ID 2 &#8211; task active<br />
rounded = 3<br />
border_width = 0<br />
background_color = #feffff 0<br />
border_color = #d8d8d8 0</p>
<p># ID 3 &#8211; task<br />
rounded = 3<br />
border_width = 0<br />
background_color = #F5F5DC 0<br />
border_color = #000000 0</p>
<p># ID 4<br />
rounded = 3<br />
border_width = 1<br />
background_color = #888888 0<br />
border_color = #ED2323 60</p>
<p># ID 5 &#8211; taskbar<br />
rounded = 3<br />
border_width = 1<br />
background_color = #feffff 10<br />
border_color = #ffffff 10</p>
<p># ID 6 &#8211; active taskbar<br />
rounded = 3<br />
border_width = 1<br />
background_color = #feffff 30<br />
border_color = #ffffff 30</p>
<p># ID 7 &#8211; tooltip<br />
rounded = 3<br />
border_width = 0<br />
background_color = #222222 90<br />
border_color = #222222 90</p>
<p># ID 8<br />
rounded = 0<br />
border_width = 1<br />
background_color = #888888 20<br />
border_color = #888888 20</p>
<p># ID 9 &#8211; task surround<br />
rounded = 3<br />
border_width = 1<br />
background_color = #FF6501 30<br />
border_color = #000000 30</p>
<p># ID 10 &#8211; active task surround<br />
rounded = 3<br />
border_width = 1<br />
background_color = #FF6501 100<br />
border_color = #ffffff 30</p>
<p># Panel<br />
panel_monitor = all<br />
panel_position = top left horizontal<br />
panel_items = LTS<br />
panel_size = 100% 32<br />
panel_margin = 0 1<br />
panel_padding = 3 3<br />
panel_dock = 0<br />
wm_menu = 1<br />
panel_layer = bottom<br />
panel_background_id = 1</p>
<p># Panel Autohide<br />
autohide = 0<br />
autohide_show_timeout = 0.3<br />
autohide_hide_timeout = 1.5<br />
autohide_height = 6<br />
strut_policy = follow_size</p>
<p># Taskbar<br />
taskbar_mode = multi_desktop<br />
taskbar_padding = 5 2<br />
taskbar_background_id = 5<br />
taskbar_active_background_id = 6<br />
taskbar_name = 1<br />
taskbar_name_background_id = 0<br />
taskbar_name_active_background_id = 0<br />
taskbar_name_font = Crisp 12<br />
taskbar_name_font_color = #ffffff 30<br />
taskbar_name_active_font_color = #ffffff 50</p>
<p># Tasks<br />
urgent_nb_of_blink = 20<br />
task_icon = 1<br />
task_text = 1<br />
task_centered = 0<br />
task_maximum_size = 150 20<br />
task_padding = 0 0<br />
task_background_id = 9<br />
task_active_background_id = 10<br />
task_urgent_background_id = 9<br />
task_iconified_background_id = 9</p>
<p># Task Icons<br />
task_icon_asb = 80 0 0<br />
task_active_icon_asb = 100 0 0<br />
task_urgent_icon_asb = 100 0 0<br />
task_iconified_icon_asb = 80 0 0</p>
<p># Fonts<br />
task_font = BankGothic Md BT 10<br />
task_font_color = #000000 100<br />
task_active_font_color = #0000ff 100<br />
task_urgent_font_color = #ff0000 100<br />
task_iconified_font_color = #696969 60<br />
font_shadow = 0</p>
<p># Launcher<br />
launcher_padding = 6<br />
launcher_background_id = 5<br />
launcher_icon_size = 20<br />
# Specify icon theme names with launcher_icon_theme.<br />
# if you have an XSETTINGS manager running (like xfsettingsd), tint2 will follow your current theme.<br />
launcher_icon_theme = Faenza-Dark-CrunchBang<br />
# Each launcher_item_app must be a full path to a .desktop file<br />
launcher_item_app = /usr/share/applications/terminator.desktop<br />
launcher_item_app = /usr/share/applications/exo-file-manager.desktop<br />
launcher_item_app = /usr/share/applications/iceweasel.desktop<br />
launcher_item_app = /usr/share/applications/geany.desktop</p>
<p># System Tray<br />
systray = 1<br />
systray_padding = 2<br />
systray_sort = right2left<br />
systray_background_id = 5<br />
systray_icon_size = 20<br />
systray_icon_asb = 100 0 0</p>
<p># Tooltips<br />
tooltip = 0<br />
tooltip_padding = 2 2<br />
tooltip_show_timeout = 0.0<br />
tooltip_hide_timeout = 0.0<br />
tooltip_background_id = 7<br />
tooltip_font_color = #ffffff 100<br />
tooltip_font = Roboto-Thin normal 9.0</p>
<p># Mouse<br />
mouse_middle = none<br />
mouse_right = toggle<br />
mouse_scroll_up = toggle<br />
mouse_scroll_down = iconify</p>
<p># Battery<br />
battery = 0<br />
battery_low_status = 20<br />
battery_low_cmd = notify-send &#8220;battery low&#8221;<br />
battery_hide = 96<br />
bat1_font = Roboto-Thin 0<br />
bat2_font = Roboto-Thin 0<br />
battery_font_color = #ffffff 100<br />
battery_padding = 0                     0<br />
battery_background_id = 0</p>
<p># End of config</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2013/01/13/making-the-tint2-panel-a-little-bit-more-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Mate, and you&#8217;d better wash your hand after touching it.</title>
		<link>http://www.infosprite.com/2012/05/06/check-mate-and-youd-better-wash-your-hand-after-touching-it/</link>
		<comments>http://www.infosprite.com/2012/05/06/check-mate-and-youd-better-wash-your-hand-after-touching-it/#comments</comments>
		<pubDate>Mon, 07 May 2012 02:53:07 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=1010</guid>
		<description><![CDATA[From:&#60;dom@inbrokerage.com&#62; To: json Subj: Husaburg.com domain&#8230; Hi, We noticed that you currently own husaberg.org (correct?). Our suggested strong keyword domain husaburg.com should help in driving organic traffic, not to mention improve SEO and solidify your branding. We are charging a one time fee of just $199. Let us know if you would like to proceed [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From:&lt;dom@inbrokerage.com&gt;<br />
To: json</p>
<p>Subj: Husaburg.com domain&#8230;</p>
<p>Hi,</p>
<p>We noticed that you currently own <a href="http://husaberg.org" target="_blank">husaberg.org</a> (correct?). Our suggested strong keyword domain <a href="http://husaburg.com" target="_blank">husaburg.com</a> should help in driving organic traffic, not to mention improve SEO and solidify your branding.</p>
<p>We are charging a one time fee of just $199. Let us know if you would like to proceed and acquire this domain, for we are starting to reach out to other online businesses today within your same space with this same opportunity.</p>
<p>Thank you,<br />
Lauren Von, CSO<br />
Dom@inBrokerage.com<br />
&#8220;We discreetly assist our clients in acquiring premium domains.&#8221;<br />
P.O. Box 3662467<br />
Dallas, TX 75207</p></blockquote>
<p>&nbsp;</p>
<blockquote><p>From: json<br />
To: dom$inbrokerage.com</p>
<p>Subj: RE: Husaburg.com domain&#8230;</p>
<p>Hi there Lauren,</p>
<p>I can&#8217;t thank you enough for attempting to discreetly assist me in registering a premium, albeit misspelled domain.  I just couldn&#8217;t help but point out one small issue with your offer.</p>
<p>If I purchase this domain from you, I will pay $199.00.  If however, I simply visit GoDaddy&#8230; well, here.  I&#8217;ll let you see for yourself:</p>
<p><a href="http://www.infosprite.com/wp-content/uploads/2012/05/husaburgdotcom.jpg"><img class="alignnone size-full wp-image-1011" title="husaburgdotcom" src="http://www.infosprite.com/wp-content/uploads/2012/05/husaburgdotcom.jpg" alt="" width="812" height="310" /></a></p>
<p>So, I can buy the domain from you or I can buy the domain for $11.99 elsewhere.  This is one of those times when maybe you didn&#8217;t fully think this plan through in it&#8217;s entirety.  Normally, to successfully run a domain hostage service, you have to actually be holding the domain hostage.  Simply misspelling domains and offering to buy them for people can&#8217;t possibly have that great or a return.</p>
<p>On the off chance, however, there are people stupid enough to fall for this, I can&#8217;t help but notice that you own the inbrokerage.com domain and would like to offer you a chance to purchase theresasmallchesspiecelodgedinmyrectum.com to help improve your SEO and solidify your branding.  Please contact me if you would like me to purchase this domain for you and then turn around and mark it up 3000% but be sure to hurry because I am also offering this domain to other businesses that also work within your area of expertise.</p>
<p>thanks,<br />
json<br />
&#8220;I spend my free time pointing out the fucking ridiculous and making fun of asshats.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2012/05/06/check-mate-and-youd-better-wash-your-hand-after-touching-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEOOE(Search Engine Optimization Occurs Elsewhere)</title>
		<link>http://www.infosprite.com/2012/05/03/seooesearch-engine-optimization-occurs-elsewhere/</link>
		<comments>http://www.infosprite.com/2012/05/03/seooesearch-engine-optimization-occurs-elsewhere/#comments</comments>
		<pubDate>Thu, 03 May 2012 22:12:25 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=1004</guid>
		<description><![CDATA[From: Laura Matthews &#60;laura.matthews@seopersona.net&#62; To: Schwim Dandy Subject: let us work together Hi, My name is Laura Matthews and I would really love to tell you how husaberg.org can rank even better in Google. I&#8217;m a SEO expert working at SEO Persona and while doing a research for some of my colleagues I found your [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From: Laura Matthews &lt;laura.matthews@seopersona.net&gt;<br />
To: Schwim Dandy</p>
<p>Subject: let us work together</p>
<p>Hi,</p>
<p>My name is Laura Matthews and I would really love to tell you how <a href="http://husaberg.org" target="_blank">husaberg.org</a><br />
can rank even better in Google.</p>
<p>I&#8217;m a SEO expert working at SEO Persona and while doing<br />
a research for some of my colleagues I found your email address and<br />
decided to contact you immediately.</p>
<p>If you are interested I will be happy to send the additional information<br />
and all the details needed to make it happen.</p>
<p>Thanks a lot,</p>
<p><a href="http://www.linkedin.com/pub/laura-matthews/4a/9ab/698" target="_blank">Laura</a><br />
SEOpersona.net</p></blockquote>
<p>&nbsp;</p>
<blockquote><p>Subject: RE: let us work together</p>
<p>Hi there Laura,</p>
<p>I went ahead and searched &#8220;seo persona&#8221; for your site and just wanted to point out that my site ranks higher in the organic results for it&#8217;s primary search phrase(husaberg, third position) than your site does when searching your name(seo persona, 6th position), which got me to thinking&#8230;</p>
<p>If you are interested, I would love to tell you how <a href="http://seopersona.net" target="_blank">seopersona.net</a> can rank even better in Google.</p>
<p>I&#8217;m obviously even more of an SEO expert than you are and if you&#8217;re interested, I&#8217;d be happy to send you all the details needed to make this happen.</p>
<p>thanks,<br />
json</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2012/05/03/seooesearch-engine-optimization-occurs-elsewhere/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What&#8217;s good for the goose&#8230;</title>
		<link>http://www.infosprite.com/2011/11/08/whats-good-for-the-goose/</link>
		<comments>http://www.infosprite.com/2011/11/08/whats-good-for-the-goose/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 15:22:58 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=992</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.infosprite.com/wp-content/uploads/2011/11/text_1.png"><img class="alignnone size-full wp-image-1001" title="text_1" src="http://www.infosprite.com/wp-content/uploads/2011/11/text_1.png" alt="" width="480" height="800" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/11/08/whats-good-for-the-goose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re doing it wrong.</title>
		<link>http://www.infosprite.com/2011/03/30/youre-doing-it-wrong/</link>
		<comments>http://www.infosprite.com/2011/03/30/youre-doing-it-wrong/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 14:06:43 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[409]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=982</guid>
		<description><![CDATA[From: angelakadhy &#60;angelakadhy@gmail.com&#62; Subj: HEAR ME OUT PLEASE (URGENT REPLY) Apostolic Greetings I am Sister mrs Angela Kadhy from Bahrain. I am married to Dr. Phillip Kadhy who worked with Bahrain embassy in cote d&#8217;ivoire for nine years before he died in the year 2007. We were married for eleven years without a child. He [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From: <a title="angelakadhy@gmail.com" href="mailto:angelakadhy@gmail.com">angelakadhy &lt;angelakadhy@gmail.com&gt;</a><br />
Subj: HEAR ME OUT PLEASE (URGENT REPLY)</p>
<p>Apostolic Greetings</p>
<p>I am Sister mrs Angela Kadhy from Bahrain. I  am married to Dr. Phillip Kadhy who worked with Bahrain embassy in cote  d&#8217;ivoire for nine years before he died in the year 2007. We were  married for eleven years without a child. He died after a brief illness  that lasted for only four days. Before his death we were both born again  Christians. Since his death I decided not to re-marry or get a child  outside my matrimonial home which the Bible is against.</p>
<p>When my late husband was alive he deposited the sum of (5.5 Million<br />
U.S.Dollars)  with A BANK in cote d&#8217; ivoire. Presently, this money is still with the  BANK. Recently, my Doctor told me that I would not last for the next  three months due to cancer problem. Though what disturbs me most is my  stroke, Having known my condition I decided to donate this fund to  church or  better still a christian individual that will utilize this money the  way I am going to instruct here in. I want a church that will use this  to fund churches, orphanages and widows propagating the word of God and  to ensure that the house of God is maintained.</p>
<p>The Bible made us  to understand that Blessed is the hand that giveth. I took this  decision because I don&#8217;t have any child that will inherit this money and  my husband relatives are not Christians and I don&#8217;t want my husband&#8217;s  hard earned money to be misused by unbelievers.</p>
<p>I don&#8217;t want a  situation where this money will be used in an ungodly manner. Hence the  reason for taking this bold decision. I am not afraid of death hence I  know where I am going. I know that I am going to be in the bossom of the  Lord. Exodus 14 VS 14 says that the lord will fight my case and I shall  hold my peace.</p>
<p>I don&#8217;t need any telephone communication in this  regard because of my health and because of  the presence of my husband&#8217;s relatives around me always. I don&#8217;t want  them to know about this development. With God all things are possible.  As soon as I receive your reply I shall give you the contact of the BANK  in ivory coast.</p>
<p>I will also issue you a letter of authority  that will empower you as the original- beneficiary of this fund. I want  you and the church to always pray for me because the lord is my  shephard. My happiness is that I lived a life of a worthy Christian.</p>
<p>Who  ever that wants to serve the Lord must serve him in spirit and  truth.Please always be prayerful all through your life. any delay in  your reply will give me a room in searching for a church or christian  individual for this same purpose.</p>
<p>Please assure me that you will  act accordingly as I stated here and i want you to fast and pray for  God to take asbsolute controll of this fund untill it get to you.</p>
<p>Hoping to hear from you soon.</p>
<p>From Mrs  Angela Kadhy</p></blockquote>
<p>If anyone can overlook Sister Mrs., it&#8217;s me.<br />
(P.S. Bonus points to me for the Weird Al lyric)</p>
<blockquote><p>Monktastic greetings to you, Mrs. sister!</p>
<p>I feel as if the hand  of God led your fingers as you wrote this email to me.  My name is  Father Shamus Dandy, of the Holy Order of Pointy Hats.  I, along with my  11 wives, live and preach out of Apple Valley, Utah.  I am the pious  guy the little the little Amalettes want to be like.  You can can trust  that Gods work will be done through me with your funding.</p>
<p>I assure you that I will act according to your wishes.  I have also  ordered my wives to stop eating for the duration of this transaction to  ensure that God doesn&#8217;t get angry and light the money on fire while it&#8217;s  in transit, as you seem worried might happen. I guess because your God  is an angry God.</p>
<p>Please let me know what I need to do to begin Gods work with your money.</p>
<p>May the baby Jesus&#8217; light shine upon you until you&#8217;re dead,<br />
Father Dandy</p></blockquote>
<p>Let&#8217;s get busy! (Click below to read the rest of the conversation)<br />
<span id="more-982"></span></p>
<blockquote><p>From:<a title="angelakadhy37@yahoo.com" href="mailto:angelakadhy37@yahoo.com"> angelakadhy &lt;angelakadhy37@yahoo.com&gt;</a><br />
Subj: Hello Dear.</p>
<div>Hello Dear.</div>
<div>Thank you so much for the mail I really appreciate it so much and I pray that every thing will workout for us for good.</div>
<div>I want you to know that my late husband deposit this money in the  security company for safekeeping and for future investment purpose. I  want you to know that my husband serve in the Oil Company in Cote  dIvoire before his death.</div>
<div>Presently this fund is still under the custody of the fiduciary so I  do need your assistance to get the fund secure in your position as my  partner and family friend overseas, since their is presidential crisis  going on here in abidjan cote d&#8217;ivoire, it will be very easy and secure  for you to receive the money in your country as my partner and family  friend.</div>
<div>I will issue you the vital documents that cover the family valuable  as soon as I hear from you and also the contact details of the  fiduciary house where my late husband deposit the family valuable so  that you will contact them on how to secure the family valuable on my  behalf.</div>
<div>I need you to send me your contact details to enable me send you  the vital documents and the contact information’s of the fiduciary house  where the money is been deposited so that you will contact them on how  to transfer the family valuable to you in your country.</div>
<div>Please know that we need to trust ourselves in this business  transaction and let us focus Allah and believe that things will workout  for us for good.</div>
<div>I will be waiting to hear from you soonest with your contact  information’s such as house address, phone number, age, occupation,  country of origin so that we will proceed further.</div>
<div>Your full names&#8230;&#8230;&#8230;&#8230;<br />
Your residential address&#8230;.<br />
Your phone number&#8230;<br />
Your country name&#8230;<br />
Your age&#8230;.<br />
Marital Status<br />
Your OCCUPATION&#8230;.</div>
<div>Thanks and Allah bless you and your family.</div>
<div>Yours faithfully</div>
<div>Mrs. Angela Khady.</div>
</blockquote>
<div>Sure, I can handle that.</div>
<blockquote>
<div>
<p>Hello my sweetest,</p>
<p>I see no reason why I shouldn&#8217;t provide you  with my most sensitive of information.  Please contact me at your  earliest convenience.</p>
<p>Schwim Dandy<br />
93 Peachtree Street<br />
Murphy, NC 28906-2940</p>
<p>(828) 837-2214</p>
<p>United States<br />
37<br />
Married<br />
Pfizer test subject</p>
</div>
</blockquote>
<p>Now, the funny part to me isn&#8217;t the email, but that I gave him the address and phone number to the local police station.  Living in a town run by rednecks, I giggle at the conversation that surely followed as a foreigner asked Sherriff Bubba if they could speak to Schwim Dandy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/30/youre-doing-it-wrong/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TL;DR</title>
		<link>http://www.infosprite.com/2011/03/30/tldr/</link>
		<comments>http://www.infosprite.com/2011/03/30/tldr/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:58:15 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[409]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=977</guid>
		<description><![CDATA[From: Christopher Catchpole &#60;chriscatchpole191@yahoo.com.cn&#62; Subj: FROM  Christopher Catchpole FROM  Christopher Catchpole Email: Good Day, I am Mr.  Christopher Catchpole, I am contacting you concerning a deceased customer and an investment he placed under our banks management Seven years ago. I would respectfully request that you keep the contents of this mail confidential and respect the [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From: <a title="chriscatchpole191@yahoo.com.cn" href="mailto:chriscatchpole191@yahoo.com.cn">Christopher Catchpole &lt;chriscatchpole191@yahoo.com.cn&gt;</a><br />
Subj: FROM  Christopher Catchpole</p>
<p>FROM  Christopher Catchpole<br />
Email:</p>
<p>Good Day,<br />
I am Mr.  Christopher Catchpole, I am contacting you concerning<br />
a deceased customer and an investment he placed under our banks management<br />
Seven years ago. I would respectfully request that you keep the contents of<br />
this mail confidential and respect the integrity of the information you come by<br />
as a result of this mail.I am contacting you independently of our investigation<br />
and no one is informed of this communication. I would like to intimate you with<br />
certain facts that I believe would be of interest to you. In the year 2002, the<br />
subject matter; came to our bank to engage in business discussions with our<br />
private banking division. He informed us that he had a financial portfolio of<br />
Fifteen Million Dollars, which he wished to have us turn over (invest) on his<br />
behalf.<br />
I was the officer assigned to his case; I made numerous suggestions in line with<br />
my duties as the de-facto chief operations officer of the private banking sector<br />
then, especially given the volume of funds he wished to put into our bank. We<br />
met on numerous occasions prior to any investments being placed. I encouraged<br />
him to consider various growth funds with prime ratings. In mid 2004, he asked<br />
that the money be liquidated because he needed to make an urgent investment<br />
requiring cash payments in Helsinki- Finland. He directed that I liquidate the<br />
funds and deposit it with a security firm. I informed him that my Bank would<br />
have to make special arrangements to have this done and in order not to<br />
circumvent due process. Cash movement across boarders has become especially<br />
strict since the incidents of 9/11. I contacted my affiliate and made the funds<br />
available to the security firm.</p></blockquote>
<p>Due to the absolutely absurd length of his email, Click below to read the rest of the conversation:</p>
<p><span id="more-977"></span></p>
<blockquote><p>I undertook all the processes and made sure I followed his precise instructions<br />
to the letter and had the funds deposited with the security firm. The Security<br />
Firm is a specialist private firm that accepts deposits from high net worth<br />
individuals and blue chip corporations that handle valuable products or<br />
undertake transactions that need immediate access to cash. This small and<br />
highly private organization is familiar  especially to the highly placed and<br />
well-connected organizations. In line with instructions, the money was<br />
deposited with the security firm. The deceased told me he wanted the money<br />
there in anticipation of his arrival from Norway later that week. This was the<br />
last communication we had, this transpired around 25th of November 2004.In August<br />
last year we got a call from the security firm informing us about the<br />
inactivity of that particular portfolio. I made futile efforts to locate the<br />
deceased. I immediately passed the task of locating him to the internal<br />
investigations department of the Bank. Four days later, information<br />
started to trickle in, apparently our client was dead. A person who suited his<br />
description was declared dead of a heart attack in cannel, in Southern part of<br />
France. We were soon enough to identify the body and cause of death was<br />
confirmed.In his bio-data form, he listed no next of kin. In the field of private banking,<br />
opening an account with us means no one will know of its existence, accounts are<br />
rarely held under a name; depositors use numbers and codes to make the accounts<br />
anonymous.</p>
<p>This investigation has for the past months been unfruitful; we’ve<br />
used our private investigation affiliate companies to get to the root of the<br />
problem. It is this investigation that resulted in my being furnished with your<br />
details as a possible relative of the deceased. According to practice, The<br />
Security Firm will by the end of this financial year broadcast a request for<br />
statements of claim to Bank, failing to receive viable claims they<br />
will most probably revert the deposit back to Bank. This will<br />
result in the money entering the Bank accounting system and the<br />
portfolio will be out of my hands and out of the private banking division. This<br />
will not happen if I have my way. What I wish to relate to you will smack of<br />
unethical practice but I want you to understand something. It is only an<br />
outsider to the banking world who finds the internal politics of the banking<br />
world aberrational. The world of private banking especially is fraught with<br />
huge rewards for those that occupy certain offices and oversee certain<br />
portfolios. You should have begun by now to put together the general direction<br />
of what I propose. There is Fifteen Million Dollars deposited in a security firm, I<br />
alone have the deposit details and they will release the deposit to no one<br />
unless I instruct them to do so. I alone know of the existence of this deposit<br />
for as far as my Bank is concerned.</p>
<p>My proposal: I now seek your permission to present you as a next of kin to the<br />
deceased, as all documentations will be carefully worked to make you the<br />
beneficiary to the funds US$15,000 000 00 (Fifteen Million Dollars); I am prepared<br />
to place you in a position to instruct The security Firm to release the deposit<br />
to you as the closest surviving relation. Upon receipt of the deposit, I am<br />
prepared to share the money with you. That is: I will simply nominate you as<br />
the next of kin and have them release the deposit to you. We share the proceeds<br />
60/40.I would have gone ahead to ask that the funds be released to me, but that<br />
would have drawn a straight line to me and my involvement in claiming the<br />
deposit. We can fine-tune this based on our interactions am aware of the<br />
consequences of this proposal. I ask that if you find no interest in this<br />
project that you should discard this mail. I ask that you do not be vindictive<br />
and destructive. If my offer is of no appeal to you, delete this message and<br />
forget I ever contacted you.</p>
<p>Do not destroy my career because you do not approve of my proposal. I am not a<br />
criminal and what I do, I do not find against good conscience, this may be hard<br />
for you to understand, but the dynamics of my industry dictates that I make this<br />
move. Such opportunities only come ones&#8217; way once in a lifetime. I cannot let<br />
this chance pass me by, for once I find myself in total control of my destiny.<br />
These chances won’t pass me by. I ask that you do not destroy my chance, if<br />
you will not work with me let me know and let me move on with my life but do<br />
not destroy me. I am a family man and this is an opportunity to provide them<br />
with new opportunities. There is a reward for this project and it is a task<br />
well worth undertaking.</p>
<p>I have evaluated the risks and the only risk I have here is from you refusing to<br />
work with me and alerting my bank. If you give me positive signals, I will<br />
initiate this process towards a conclusion. I wish to inform you that should<br />
you contact me via official channels; I will deny knowing you and about this<br />
project. I repeat, I do not want you contacting me through my official phone<br />
lines nor do I want you contacting me through my official email account.<br />
Contact me only through the numbers I will provide for you and also through<br />
this email address. I do not want any direct link between you and myself. My<br />
official lines are not secured lines as they are periodically monitored to<br />
assess our level of customer care in line with our Total Quality Management<br />
policy. Please observe this instruction religiously.Please, again, note that I<br />
am a family man, I have a wife and children. I send you this mail not without a<br />
measure of fear as to what the consequences, but I know within me that nothing<br />
ventured is nothing gained and that success and riches never come easy or on a<br />
platter of gold. This is the one truth I have learned from my private banking<br />
clients. Do not betray my confidence.</p>
<p>I await your response.</p>
<p>Mr. Christopher Catchpole</p></blockquote>
<p>Holy fucking wall o&#8217; text, Batman.</p>
<blockquote><p>Hi there Mister Catchpole,</p>
<p>You have nothing to fear from me, as I  am as much of a despicable and unscrupulous thief as you are.  Please  let me know what I need to do to make a lot of money from this.  Be  quick, as I&#8217;m entertaining offers from a USMC sergeant, a deposed prince  and a family member of a dead airline pilot.</p>
<p>thanks,<br />
json</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/30/tldr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If I were you, I&#8217;d fire Donald&#8217;s ass.</title>
		<link>http://www.infosprite.com/2011/03/30/if-i-were-you-id-fire-donalds-ass/</link>
		<comments>http://www.infosprite.com/2011/03/30/if-i-were-you-id-fire-donalds-ass/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:44:33 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[409]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=970</guid>
		<description><![CDATA[A few months ago, a gentleman named Donald D. Swiger regaled me with tales of consignments and top level domains. Unfortunately we never met up.  Although saddened that I&#8217;d never know what my consignment consisted of, I was glad that the stress was off.  I&#8217;d killed a hooker and my mother and to be honest, [...]]]></description>
				<content:encoded><![CDATA[<p>A few months ago, a gentleman named Donald D.<a title="I have a dick in a box for you." href="http://www.infosprite.com/2010/11/11/was-it-the-hooker-was-that-too-much/" target="_blank"> </a>Swiger <a title="I have a dick in a box for you." href="http://www.infosprite.com/2010/11/11/was-it-the-hooker-was-that-too-much/" target="_blank">regaled me with tales of consignments and top level domains</a>. Unfortunately we never met up.  Although saddened that I&#8217;d never know what my consignment consisted of, I was glad that the stress was off.  I&#8217;d killed a hooker and my mother and to be honest, I knew I&#8217;d kill again if need be.</p>
<p>I had nothing to fear, however.  Now the big-wigs were in charge and things were going to happen fast.</p>
<blockquote><p>From: <a title="kieran_dutch00j@yahoo.de" href="mailto:kieran_dutch00j@yahoo.de" target="_blank">Kieran Dutch &lt;kieran_dutch00j@yahoo.de&gt;</a><br />
Subj: Santander Bank</p>
<p>ATTN HON BENIFICARY.</p>
<p>THE DIPLOMAT DONALD SWIGER WENT BACK TO UK WITH YOUR CONSIGNMENT,I ISSUED HIM THE DOCUMENTS TO DEPOSIT THE CONSIGNMENT WITH Santander Bank. CONTACT THE BANK TO FINALIZE TRANSFER OR DRAFT ISSUED TO YOU.THE DEPOSIT CODE IS 77223 ALSO INFORM ME OF ANY REQUIREMENT SO WE CAN FINALIZE.THE BANK INFO IS BELOW CONTACT THE BANK</p>
<p>Santander Bank.<br />
(Int&#8217;l Remittance Department)<br />
130 Market Street Piccadilly Gardens<br />
Manchester,Lancashire M60 1AY,<br />
United Kingdom.<br />
Email:  accounts@uksantanderbn.com<br />
Contact Person In Charge of Funds:Mr. Andrew Savage<br />
Tel:+447011198745<br />
Fax:+448447744914</p>
<p>CALL ME</p>
<p>THANK YOU<br />
DR USMAN KADIRI<br />
KTT DIRECTOR CBN<br />
+234-7056717039<br />
<a title="kttdirectorcbn@officer.com" href="mailto:kttdirectorcbn@officer.com" target="_blank">kttdirectorcbn@officer.com</a> or <a title="k.cbnusman@rocketmail.com" href="mailto:k.cbnusman@rocketmail.com" target="_blank">k.cbnusman@rocketmail.com</a></p></blockquote>
<p>Finally!</p>
<blockquote><p>From: json<br />
Subj: Santander Bank</p>
<p>Mr. Swiger totally screwed me out of my consignment.  I allowed my  mother to die and accidentally ran over a hooker all because of him.</p>
<p>Now  I really need that money as they want $5,000.00 just to bury my mom.   I&#8217;ve been holding off on the burial in case Donald got back in touch  with me, but to be completely frank, she&#8217;s beginning to stink.  It&#8217;s not  pleasant being in the same house with her.</p>
<p>Go ahead and shoot me the money, if you would. My super-secure PIN is 77223.</p>
<p>thanks,<br />
json</p></blockquote>
<p>Due to the length, click below to read the rest of the conversation.</p>
<p><span id="more-970"></span></p>
<blockquote><p>From: <a title="kieran_dutch00j@yahoo.de" href="mailto:kieran_dutch00j@yahoo.de" target="_blank">Kieran Dutch &lt;kieran_dutch00j@yahoo.de&gt;</a><br />
Subj: RE: Santander Bank</p>
<p>ATTN HON BENIFICARY.</p>
<p>CONTACT THE BANK WITH YOUR CONTRACT  ACCOUNT  AND YOUR FULL DETAILS AND MAKE SURE YOU RECONFIRM EVERY  CORRESPONDENCE BETWEEN YOU AND THE BANK TO ME,SO I CAN MONITIOR THE  SITUATION AND MAKE SURE EVERY THING GOES RIGHT.THIS IS THE TIME  YOU   HAVE TO BE PAID</p>
<p>CALL ME</p>
<p>THANK YOU<br />
DR USMAN KADIRI<br />
KTT DIRECTOR CBN<br />
<a href="tel:%2B234-7056717039" target="_blank">+234-7056717039</a></p></blockquote>
<p>It&#8217;s time now to bring in &#8220;the closer&#8221;.</p>
<blockquote><p>From: <a title="accounts@uksantanderbn.com" href="mailto:accounts@uksantanderbn.com" target="_blank">Santander Bank UK &lt;accounts@uksantanderbn.com&gt;</a><br />
Subj: WELCOME TO SANTANDER BANK</p>
<p><strong>Santander Bank.</strong><strong><br />
<strong>(Int&#8217;l Remittance Department)</strong><br />
<strong>130 Market Street Piccadilly Gardens</strong><br />
<strong>Manchester,</strong>LancashireM60 1AY,<br />
United Kingdom.<br />
Tel: +447024097968<br />
Fax: +448447744914</strong><br />
<strong><br />
</strong>March 28, 2011<br />
Attn: SCHWIM DANDY,</p>
<p>Welcome to Santander Bank PLC online transferring department. I am Mr.Andrew Savage, the online transfer manager/coordinator.<br />
We received instructions from the Director On behalf of Dr. USMAN KADIRI to create and credit your transit account with the sum of $25, 000, 000, 00(Twenty Five Million United States Dollars Only)<br />
You are therefore provided with the Transferring Link, Account Name and PIN to enable you access your account and also transfer this fund to any account you deem fit around the globe. Find below the required information:</p>
<p>Transferring Link:</p>
<p><a href="http://wwwlogin.uksantanderbn.com/" target="_blank">http://wwwlogin.uksantanderbn.com/</a><br />
<a href="http://wwwlogin.uksantanderbn.com/" target="_blank"><br />
</a><strong>User ID: DANDY</strong><br />
<strong><strong>PIN: 79542821</strong></strong></p>
<p>You are to enter the Customer Name and PIN. For the Account Statement and thereafter commence transfer.<br />
Now you have information to access the account and also transfer the fund to your personal account.<br />
Please note that you are required to keep the above information secretly to avoid misappropriation of fund and any fraud.<br />
I am the Coordinator of this bank’s online transferring department and you are expected to write me if you have any problems with the transfer of the fund to your personal bank account.</p>
<p>Regards,<br />
<strong>Mr. Andrew Savage<br />
Head, Foreign Payment/Telex Unit, SBP<br />
</strong><strong>Tel:  +447024097968</strong></p></blockquote>
<p>I have to share with you that at this point I log into the site to find a shitload of zeros in my fake bank account.</p>
<p><a href="http://www.infosprite.com/wp-content/uploads/2011/03/bank_transfer.jpg"><img class="alignnone size-medium wp-image-972" title="bank_transfer" src="http://www.infosprite.com/wp-content/uploads/2011/03/bank_transfer-300x168.jpg" alt="" width="300" height="168" /></a></p>
<blockquote><p>From: Schwim Dandy<br />
Subj: RE: WELCOME TO SANTANDER BANK</p>
<p>Hello Mr. Savage,</p>
<p>I want to thank you so much for providing me to  the following information.  Logging in and seeing all those zeros made  my mother&#8217;s death totally worth it.</p>
<p>I really feel safe just  knowing that the money is being held at your bank so if it&#8217;s ok with  you, I was just planning on leaving it there in the event of a rainy day  and I need to buy a learjet or major league baseball field.  I&#8217;m sure  being a really big bank with official login pages and all, you won&#8217;t  mind me just keeping the money with you.  After all, That&#8217;s how you make  your money, right?  From the interest?</p>
<p>Thanks so much for everything you&#8217;ve done.  It does my heart good to  know that there are fine people such as yourself helping others, one  new millionaire at a time.</p>
<p>thanks,<br />
json</p></blockquote>
<p>It seems the Kieran feels that he hasn&#8217;t gotten the accolades due him. It seems at first that he&#8217;s so angry he forgets to draft an email.</p>
<blockquote><p>From: <a title="kieran_dutch00j@yahoo.de" href="mailto:kieran_dutch00j@yahoo.de" target="_blank">Kieran Dutch &lt;kieran_dutch00j@yahoo.de&gt;</a><br />
Subj: RE: WELCOME TO SANTANDER BANK UK</p></blockquote>
<p>Calm down, Kieran.</p>
<blockquote><p>From: Schwim Dandy<br />
Subj: RE: WELCOME TO SANTANDER BANK</p>
<p>Hi there Kieran,</p>
<p>You either sent me a blank email or one written  in invisible ink.  I&#8217;ve smeared lemon juice across the monitor but it  didn&#8217;t reveal anything, so I&#8217;m thinking it was a blank email.</p>
<p>thanks,<br />
json</p></blockquote>
<blockquote><p>From: <a title="kieran_dutch00j@yahoo.de" href="mailto:kieran_dutch00j@yahoo.de" target="_blank">Kieran Dutch &lt;kieran_dutch00j@yahoo.de&gt;</a><br />
Subj: RE: WELCOME TO SANTANDER BANK UK</p>
<div>ATTN HON BENIFICARY.</div>
<div>THE BANK CONFIRMED THAT YOUR PAYMENT HAS BEEN RELEASE TO  YOU,CONGRATULATION FOR MY HARD WORK I DERSERVE APPRECIATION.NOTE THIS  AND GET IT DONE.</div>
<p>CALL ME</p>
<p>THANK YOU<br />
DR USMAN KADIRI<br />
KTT DIRECTOR CBN<br />
<a href="tel:%2B234-7056717039" target="_blank">+234-7056717039</a></p></blockquote>
<blockquote><p>From: Schwim Dandy<br />
Subj: RE: WELCOME TO SANTANDER BANK</p>
<p>Hi there Kieran,</p>
<p>Congratulations!</p>
<p>And to show you how appreciative I am:</p>
<p>2, 4, 6, 8,<br />
Who do we appreciate?<br />
Kieran!  Kieran!<br />
Yaaaaaaaaay Kieran!</p>
<p>Thanks  very much for all you&#8217;ve done.  I&#8217;m unable to call out on my phone due  to the fact that someone broke in last week and stole every third digit  off of the face of the phone, but just know that I&#8217;m incredibly grateful  for all you&#8217;ve done, even though it was your job and all.  If you need  someone to hug you, I&#8217;m your guy.</p>
<p>thanks,<br />
json</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/30/if-i-were-you-id-fire-donalds-ass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Just pick a fucking name, would you?</title>
		<link>http://www.infosprite.com/2011/03/29/just-pick-a-fucking-name-would-you/</link>
		<comments>http://www.infosprite.com/2011/03/29/just-pick-a-fucking-name-would-you/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:08:55 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[loan]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=966</guid>
		<description><![CDATA[From: KadrlikPetrarca, Katherine Naomi &#60;kkadrli@calstatela.edu&#62; Subj: (No Subject) Are You Desperately in need of a loan help? or do you have bad credit contact us via: :dannywhite2010@aol.com with Amount needed and Loan Duration. Why, as a mater of fact, Kadrilik-Katherine-Danny Petrarca-Naomi-White, I am desperately in need of a loan! Hello Katherine, I&#8217;m in the process [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From:<a title="kkadrli@calstatela.edu" href="mailto:kkadrli@calstatela.edu"> KadrlikPetrarca, Katherine Naomi &lt;kkadrli@calstatela.edu&gt;</a><br />
Subj: (No Subject)</p>
<p>Are You Desperately in need of a loan help? or do you have bad credit contact us via: :<a href="mailto:dannywhite2010@aol.com" target="_blank">dannywhite2010@aol.com</a> with Amount needed and Loan Duration.</p></blockquote>
<p>Why, as a mater of fact, Kadrilik-Katherine-Danny Petrarca-Naomi-White, I <em><strong>am</strong></em> desperately in need of a loan!</p>
<blockquote><p>Hello Katherine,</p>
<p>I&#8217;m in the process of creating the world&#8217;s  largest alpaca farm.  I am raising them, then killing and stuffing them  for use on those cute quarter rides that you find at the grocery store.   I&#8217;ve raised them and killed them but now need the funds to hire a  taxidermist to handle the stuffing portion of my plan.  I can&#8217;t find a  taxidermist locally that can handle the large number of stuffings that I  have, but I did find a used car salesman two towns over willing to  handle the job.  He wants $125.00 per alpaca, $215.00 if I go for the  optional protective undercoat.</p>
<p>I currently have 18,941 dead alpacas stored in the second floor of  my house.  By my math, that means I&#8217;m going to need a loan of   $4,072,315.00.  The gentleman explained that I can&#8217;t really afford to go  without the undercoat as some of the alpacas will be installed in  grocery stores located in extreme cold climates, where corrosive  anti-freezing measures are used in the parking lots.</p>
<p>I plan on this taking off very quickly, therefore being able to pay  you back in very short order.  Without trying to seem overly optimistic  about how long this will take, I would set the duration of the loan for  45 minutes.</p>
<p>I very much look forward to your reply, as it&#8217;s begun to smell very badly in my house.</p>
<p>thanks,<br />
json</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/29/just-pick-a-fucking-name-would-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semper Gullibilus</title>
		<link>http://www.infosprite.com/2011/03/29/semper-gullibilus/</link>
		<comments>http://www.infosprite.com/2011/03/29/semper-gullibilus/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:01:25 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[409]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=963</guid>
		<description><![CDATA[From: SGT Steven D. Spencer &#60;spencer@live.com&#62; Subj: [Ann] Letter from a U.S. Marine- 3/26/2011 Good Day, I am SGT Steven D. Spencer, a US Marine Sergeant serving in the 3rd Battalion, 25th Marine Regiment that Patrols the Anbar Province,Iraq. I am desperately in need of assistance and have summoned up courage to contact you. I [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>From: <a title="spencer@live.com" href="mailto:spencer@live.com">SGT Steven D. Spencer &lt;spencer@live.com&gt;</a><br />
Subj: [Ann] Letter from a U.S. Marine- 3/26/2011</p>
<p>Good Day,</p>
<p>I am SGT Steven D. Spencer, a US Marine Sergeant serving in the 3rd Battalion, 25th Marine Regiment that Patrols the Anbar Province,Iraq. I am desperately in need of assistance and have summoned up courage to contact you. I am presently in Iraq and I got your contact particulars from a data mining company based back home in the states.</p>
<p>Your assistance is needed to evacuate the sum of $18 million (eighteen Million U.S   Dollars) to a safe country; as far as I can be assured that it will be safe in your care   until my service completion on 11th September, 2011.</p>
<p>Your help requires a private arrangement and with the help of a British contact working   with the UN here (his office enjoys some immunity),you will receive these funds and invest them on our behalf. I am willing to part with generous management fees as well as show my utmost appreciation for fewer questions asked. I have waited for 7 years to allow the dust to settle and its clear no one is raising any issues on this.</p>
<p>A gentle reminder as the story was on BBC World News(link below):</p>
<p>http://news.bbc.co.uk/2/hi/middle_east/2988455.stm</p>
<p>I look forward to getting a straight answer from you in order to let us work out the  modalities involved. This fund is currently located in Iraq and awaits your urgent response. Please reply to my personal email address contained in my signature below.</p>
<p>Respectfully,<br />
SGT Steven D. Spencer<br />
<a title="s.d.spencer@anysoldier.info" href="mailto:s.d.spencer@anysoldier.info">s.d.spencer@anysoldier.info</a><br />
United States Marine Corps.<br />
IRAQ.</p></blockquote>
<p>Holy shit, it&#8217;s a real-live Marine!</p>
<blockquote><p>Ooh rah, my motherfucking devil dog!  How the hell are you?</p>
<p>My  name is PVT. Schwim Dandy of Weapons Co. 2/2 and a life-long jar head.   Why only  a private?  Because I&#8217;m a hard-charging, motherfucking Marine  and I love to party, that&#8217;s why.  That and I crashed the base  commander&#8217;s humvee into the PX&#8230;..while he was in the back.</p>
<p>Fuck that shit though.  Let&#8217;s make us some money! I don&#8217;t think we  should deal with your British contact.  Number one, he&#8217;s British.   Number 2, he&#8217;s not American. I&#8217;ve got some ideas of my own about how we  can get this money back to the states:</p>
<p>1) Kill some fucking ragheads, hollow their corpses with an  ice-cream scoop, fill their skins with money and use them as carry-on  luggage on the flight back to the states.</p>
<p>2) I will fly over and eat the motherfucking money.  When we get back, I will shit you out exact change.</p>
<p>3) You fold all the bills into paper airplanes and throw them  towards the U.S.  I&#8217;m not an aerospace engineer, but surely some of that  shit will make it across.  I&#8217;ll hang out at the beach waiting for when  they do.</p>
<p>Of course, you may have a better idea, but seeing as how you&#8217;re a  Marine, I doubt it.  We&#8217;re bred to kill, not to think!  You might want  to ask a corpsman though, they seem too smart for their own good.</p>
<p>Fuck Yeah!<br />
Schwim Dandy<br />
Private, USMC<br />
Camp Lejeune</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/29/semper-gullibilus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>life&#8217;s little gems</title>
		<link>http://www.infosprite.com/2011/03/26/lifes-little-gems/</link>
		<comments>http://www.infosprite.com/2011/03/26/lifes-little-gems/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 16:31:41 +0000</pubDate>
		<dc:creator>schwim</dc:creator>
				<category><![CDATA[Humorous]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.infosprite.com/?p=956</guid>
		<description><![CDATA[A couple that didn&#8217;t really go anywhere. From: elisabeth &#60;elisabeth35@celebcards.com&#62; Subj: hi there hi I saw your profile on facebook and decided to write you Let me know if you do not mind. If you want I can send you some pictures of me. I am a nice pretty girl, email me directly at swiemboilla@hotmail.com [...]]]></description>
				<content:encoded><![CDATA[<p>A couple that didn&#8217;t really go anywhere.</p>
<blockquote><p>From: <a title="elisabeth35@celebcards.com" href="mailto:elisabeth35@celebcards.com">elisabeth &lt;elisabeth35@celebcards.com&gt;</a><br />
Subj: hi there</p>
<p>hi</p>
<p>I saw your profile on facebook and decided to write you <img src='http://www.infosprite.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Let me know if you do not mind. If you want I can send you some pictures of me.<br />
I am a nice pretty girl, email me directly at <a title="I'm a hottie!" href="mailto:swiemboilla@hotmail.com">swiemboilla@hotmail.com</a></p></blockquote>
<p>Quite the feat Elisabeth, seeing as how I don&#8217;t have a facebook profile.</p>
<blockquote><p>Hi Elisabeth,</p>
<p>I think it&#8217;s a fantastic idea that you send me some pictures of yourself!  I would especially love it if you sent one of you kissing a porpoise.  That would be just too cute! If you can&#8217;t do that, then one of you fighting a ninja would suffice.</p>
<p>thanks,<br />
json</p></blockquote>
<p>I got this from a person that&#8217;s either proud of being able to abbreviate or has so many people that they want to insult, time constraints don&#8217;t allow for verbosity:</p>
<blockquote><p>From: <a title="belltlisabethbh@acluk.com" href="mailto:belltlisabethbh@acluk.com">Bell, Lisabeth</a><br />
Subj: mov</p>
<p>mf</p></blockquote>
<blockquote><p>From: json</p>
<p>sob</p></blockquote>
<blockquote><p>From: <a title="ausaygp@hoimel.com" href="mailto:ausaygp@hoimel.com">ANGEL&lt;ausaygp@hoimel.com&gt;<br />
</a>Subj: Your personals profile</p>
<p>Good day How are you currently doing? I enjoy most of your page.</p>
<p>Want to check out my exclusive photos?</p>
<p>Email me at remepikisteybol@hotmail.com and i am going to answer back with my private photographs.</p>
<p><a href="http://www.infosprite.com/wp-content/uploads/2011/03/noname.jpeg"><img class="alignnone size-medium wp-image-957" title="noname" src="http://www.infosprite.com/wp-content/uploads/2011/03/noname-300x219.jpg" alt="" width="300" height="219" /></a></p>
<p><a href="http://www.infosprite.com/wp-content/uploads/2011/03/noname2.jpeg"><img class="alignnone size-medium wp-image-958" title="noname2" src="http://www.infosprite.com/wp-content/uploads/2011/03/noname2-300x223.jpg" alt="" width="300" height="223" /></a></p></blockquote>
<p>I wasn&#8217;t going to write this one back, but to be completely honest, I&#8217;m as proud of my boobs as she is of hers.</p>
<blockquote><p>Hello there,</p>
<p>I can&#8217;t thank you enough for showing me parts of  your boobs.  I find them entrancing and thought it was only fair that I  return the favor.</p>
<p><a href="http://www.infosprite.com/wp-content/uploads/2011/03/manboobs.jpg"><img class="alignnone size-medium wp-image-959" title="manboobs" src="http://www.infosprite.com/wp-content/uploads/2011/03/manboobs-271x300.jpg" alt="" width="271" height="300" /></a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.infosprite.com/2011/03/26/lifes-little-gems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
