<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My piece of garbage over the internet... Eat that!</title>
	<atom:link href="http://wastedump.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wastedump.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 11 Jan 2010 22:22:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wastedump.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My piece of garbage over the internet... Eat that!</title>
		<link>http://wastedump.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wastedump.wordpress.com/osd.xml" title="My piece of garbage over the internet... Eat that!" />
	<atom:link rel='hub' href='http://wastedump.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Dll embedding in Delphi</title>
		<link>http://wastedump.wordpress.com/2010/01/11/dll-embedding-in-delphi/</link>
		<comments>http://wastedump.wordpress.com/2010/01/11/dll-embedding-in-delphi/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 22:22:26 +0000</pubDate>
		<dc:creator>wastedump</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[dll]]></category>

		<guid isPermaLink="false">http://wastedump.wordpress.com/?p=28</guid>
		<description><![CDATA[First to say, I&#8217;m aware that dll purpose or libraries in general was/is to modularize programming, so you could move some, somewhat connected, stuff into one place and reuse the code in another projects/replacing just this bit without recompiling the main program, so the idea of embedding dll as a part of exe file itself [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=28&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>First to say, I&#8217;m aware that dll purpose or libraries in general was/is to modularize programming, so you could move some, somewhat connected, stuff into one place and reuse the code in another projects/replacing just this bit without recompiling the main program, so the idea of embedding dll as a part of exe file itself seems ridiculous, but&#8230; yes&#8230; there&#8217;s but.<br />
</em></p>
<h2>The case</h2>
<p>What if you have to make sure you will be using some certain function, and that function is located in external library, for which you don&#8217;t have or simply don&#8217;t want to incorporate sources into your main program. Yes, then your option is either have such dll in resource or `sticked` to the end of your app (not recommended) extract, load, execute and delete after you&#8217;re done with it. Messy, isn&#8217;t it? First, you can&#8217;t be sure if OS will let you use hard drive for storing purposes on every machine, it may be ok in your pc, but that&#8217;s not the case in general.</p>
<h2>The solution</h2>
<p>I stumbled upon one handy library that allows you to load dll stored in memory as binary data, and what else delphi resources are as if not exactly such case?</p>
<p>The library <a href="http://www.dsplayer.de/dspweb/public_downloads/BTMemoryModule_0.0.2.zip">BTMemoryModule</a> is 4 years old already, so I&#8217;m not sure if it&#8217;ll work on newer compilers/OSes, but it still works for me. On the other hand, I&#8217;m still using delphi 9 so I&#8217;m not the one to judge <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
It&#8217;s always good idea to check if there&#8217;s any updated version&#8230;</p>
<p>Short code snippet that should help you do the job:<br />
First, you need to put your dll into resource (*.res) file, you gotta to compile it as well, so&#8230;<br />
- Create .rc file as text file put there:</p>
<div style="background-color:#e6d08d;">RESOURCENAME RCDATA &#8220;yourdllname.dll&#8221;</div>
<p>and save as somename.rc<br />
- compile resource:</p>
<div style="background-color:#e6d08d;">brcc32.exe somename.rc</div>
<p>that involves using command line, but I&#8217;m sure you can cope that <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
- include resource in your program</p>
<div style="background-color:#e6d08d;">{$R somename.res }</div>
<p>and unit <strong>BTMemoryModule</strong> in your `uses` line<br />
- Finally you can use it, so let&#8217;s do:</p>
<div style="background-color:#e6d08d;">
function LoadresDLL(ResName:String):PBTMemoryModule<br />
var<br />
&nbsp;&nbsp;dllmem: Pointer;<br />
&nbsp;&nbsp;dllsize: Integer;<br />
&nbsp;&nbsp;HResInfo: HRSRC;<br />
&nbsp;&nbsp;HGlobal: THandle;<br />
begin<br />
&nbsp;&nbsp;result := nil;<br />
&nbsp;&nbsp;HResInfo := FindResource(0, ResName, RT_RCDATA);<br />
&nbsp;&nbsp;HGlobal := LoadResource(0, HResInfo);<br />
&nbsp;&nbsp;if HGlobal = 0 then raise EResNotFound.Create(&#8216;Can&#8221;t load resource.&#8217;);<br />
&nbsp;&nbsp;dllmem := LockResource(HGlobal);<br />
&nbsp;&nbsp;dllsize := SizeOfResource(0, HResInfo);<br />
&nbsp;&nbsp;result := BTMemoryLoadLibary(dllmem,dllsize);<br />
end;</div>
<p>So in our test case it&#8217;ll be</p>
<div style="background-color:#e6d08d;">var dllhandle = BTMemoryModule;<br />
fun : pointer;<br />
begin<br />
&nbsp;&nbsp;dllhandle := LoadResDLL(&#8216;RESOURCENAME&#8217;);<br />
&nbsp;&nbsp;if (dllhandle = nil) then raise EResNotFound.Create(&#8216;ResLibrary loading failed.&#8217;);<br />
&nbsp;&nbsp;BTMemoryGetProcAddress(mp_MemoryModule, Name);<br />
&nbsp;&nbsp;// and now we may get desred function address like this&#8230;<br />
&nbsp;&nbsp;fun = BTMemoryGetProcAddress(dllhandle, &#8216;function_name_you_need&#8217;);</p>
<p>// do your stuff here</p>
<p>&nbsp;&nbsp;BTMemoryFreeLibrary(dllhandle);  // and clean up&#8230;<br />
end;
</p></div>
<p>and that&#8217;s all&#8230; no hassle, no pain, no additional files to worry about&#8230;</p>
<p>And yes, I&#8217;m quite aware that&#8217;s nothing new, just everything gathered together <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wastedump.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wastedump.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wastedump.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=28&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wastedump.wordpress.com/2010/01/11/dll-embedding-in-delphi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/90c96d754c78cca223fb4cbdb4f9f49a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wastedump</media:title>
		</media:content>
	</item>
		<item>
		<title>Delhi 6</title>
		<link>http://wastedump.wordpress.com/2009/11/21/delhi-6/</link>
		<comments>http://wastedump.wordpress.com/2009/11/21/delhi-6/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 04:03:34 +0000</pubDate>
		<dc:creator>wastedump</dc:creator>
				<category><![CDATA[Girls]]></category>
		<category><![CDATA[Wallpapers]]></category>

		<guid isPermaLink="false">http://wastedump.wordpress.com/?p=16</guid>
		<description><![CDATA[Anyone heard &#8217;bout bollywood? Yes, many times I guess, me included. But that&#8217;s the first movie I got hooked on by just watching music videos from it&#8230; How weird is that? Haven&#8217;t see the movie yet, but that&#8217;s soon to change. You can have my wallpaper meanwhile&#8230; 1024&#215;768 1280&#215;720<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=16&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-indent:1cm;">Anyone heard &#8217;bout bollywood? Yes, many times I guess, me included. But that&#8217;s the first movie I got hooked on by just watching <a href="http://www.youtube.com/results?q=delhi%206">music videos</a> from it&#8230; How weird is that? Haven&#8217;t see the movie yet, but that&#8217;s soon to change.<br />
You can have my wallpaper meanwhile&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://wastedump.files.wordpress.com/2009/11/delhi-6-1280x1024.png"><img class="aligncenter size-medium wp-image-14" title="delhi-6-1280x1024" src="http://wastedump.files.wordpress.com/2009/11/delhi-6-1280x1024.png?w=300&#038;h=240" alt="" width="300" height="240" /></a></p>
<p style="text-align:center;"><a href="http://wastedump.files.wordpress.com/2009/11/delhi-6-1280x1024.png">1024&#215;768</a> <a href="http://wastedump.files.wordpress.com/2009/11/delhi-6-1280x720.png">1280&#215;720</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wastedump.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wastedump.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wastedump.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=16&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wastedump.wordpress.com/2009/11/21/delhi-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/90c96d754c78cca223fb4cbdb4f9f49a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wastedump</media:title>
		</media:content>

		<media:content url="http://wastedump.files.wordpress.com/2009/11/delhi-6-1280x1024.png?w=300" medium="image">
			<media:title type="html">delhi-6-1280x1024</media:title>
		</media:content>
	</item>
		<item>
		<title>Clipping Point download links&#8230;</title>
		<link>http://wastedump.wordpress.com/2009/10/04/clipping-point-download-links/</link>
		<comments>http://wastedump.wordpress.com/2009/10/04/clipping-point-download-links/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 21:44:17 +0000</pubDate>
		<dc:creator>wastedump</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[clipping]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[korean]]></category>
		<category><![CDATA[point]]></category>
		<category><![CDATA[racing]]></category>

		<guid isPermaLink="false">http://wastedump.wordpress.com/?p=9</guid>
		<description><![CDATA[Anyone heard of clipping point? None? No surprise there. It&#8217;s (or should I say was) korean free racing game. It&#8217;s web page no longer exists and it&#8217;s files are hard to find nowadays&#8230;  but recently I dug working links for that, go figure! here&#8217;s a little teaser how it looks&#8230; and links to files if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=9&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Anyone heard of clipping point? None? No surprise there. It&#8217;s (or should I say was) korean free racing game. It&#8217;s web page no longer exists and it&#8217;s files are hard to find nowadays&#8230;  but recently I dug working links for that, go figure!</p>
<p>here&#8217;s a little teaser how it looks&#8230;</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/N3kLsOPFK68&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/N3kLsOPFK68&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>and links to files if you&#8217;d like to try it out. Enjoy!</p>
<p>http://rapidshare.com/files/193455399/clippingpoint.part1.rar</p>
<p>http://rapidshare.com/files/193489155/clippingpoint.part2.rar</p>
<p>http://rapidshare.com/files/193514330/clippingpoint.part3.rar</p>
<p>http://rapidshare.com/files/193548373/clippingpoint.part4.rar</p>
<p>http://rapidshare.com/files/193570306/clippingpoint.part5.rar</p>
<p>http://rapidshare.com/files/193594976/clippingpoint.part6.rar</p>
<p>http://rapidshare.com/files/193615050/clippingpoint.part7.rar</p>
<p>http://rapidshare.com/files/194302692/clippingpoint.part8.rar</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wastedump.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wastedump.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wastedump.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=9&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wastedump.wordpress.com/2009/10/04/clipping-point-download-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/90c96d754c78cca223fb4cbdb4f9f49a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wastedump</media:title>
		</media:content>
	</item>
		<item>
		<title>Who Elisabeth Abbott is?</title>
		<link>http://wastedump.wordpress.com/2009/06/27/who-elisabeth-abbott-is/</link>
		<comments>http://wastedump.wordpress.com/2009/06/27/who-elisabeth-abbott-is/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:32:43 +0000</pubDate>
		<dc:creator>wastedump</dc:creator>
				<category><![CDATA[Girls]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Elisabeth Abbott]]></category>
		<category><![CDATA[eve adams]]></category>
		<category><![CDATA[hot]]></category>
		<category><![CDATA[redhead]]></category>
		<category><![CDATA[sexy]]></category>

		<guid isPermaLink="false">http://wastedump.wordpress.com/?p=7</guid>
		<description><![CDATA[I spotted her first when I was browsing an Eve Adams cast list. And she&#8217;s lookin&#8217; smookin&#8217; hot in this picture. I hope she won&#8217;t be just a side dish to this serie&#8230; :/ Sadly the biggest picture i found was just a tiny on from imdb so these below are bit blurry, but looks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=7&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-indent:1cm;">I spotted her first when I was browsing an <a href="http://www.imdb.com/title/tt1446065/">Eve Adams</a> cast list. And she&#8217;s lookin&#8217; smookin&#8217; hot in this picture. I hope she won&#8217;t be just a side dish to this serie&#8230; :/</p>
<p style="text-indent:1cm;">Sadly the biggest picture i found was just a tiny on from imdb so these below are bit blurry, but looks way better than just stretched ones on my desktop&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p style="text-align:center;"><img class="size-medium wp-image-5" title="ea-1280x1024" src="http://wastedump.files.wordpress.com/2009/06/ea-1280x1024.png?w=300&#038;h=240" alt="Elisabeth Abbott" width="300" height="240" /><br />
<a title="Elisabeth Abbott" href="http://wastedump.files.wordpress.com/2009/06/ea-1280x1024.png">1280&#215;1024</a> <a title="Elisabeth Abbott" href="http://wastedump.files.wordpress.com/2009/06/ea-1280x720.png">1280&#215;720</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wastedump.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wastedump.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wastedump.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wastedump.wordpress.com&amp;blog=8348661&amp;post=7&amp;subd=wastedump&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wastedump.wordpress.com/2009/06/27/who-elisabeth-abbott-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/90c96d754c78cca223fb4cbdb4f9f49a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wastedump</media:title>
		</media:content>

		<media:content url="http://wastedump.files.wordpress.com/2009/06/ea-1280x1024.png?w=300" medium="image">
			<media:title type="html">ea-1280x1024</media:title>
		</media:content>
	</item>
	</channel>
</rss>
