<?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>Reblets</title>
	<atom:link href="http://reblets.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://reblets.wordpress.com</link>
	<description>A &#34;How To&#34; for REBOL Scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 01:54:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='reblets.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Reblets</title>
		<link>http://reblets.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://reblets.wordpress.com/osd.xml" title="Reblets" />
	<atom:link rel='hub' href='http://reblets.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Append Data Records to a Log File</title>
		<link>http://reblets.wordpress.com/2010/09/22/append-data-records-to-a-log-file/</link>
		<comments>http://reblets.wordpress.com/2010/09/22/append-data-records-to-a-log-file/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 16:48:56 +0000</pubDate>
		<dc:creator>reblets</dc:creator>
				<category><![CDATA[Storing Data]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://reblets.wordpress.com/?p=47</guid>
		<description><![CDATA[How to store information to a log file. Let&#8217;s say you want to keep a log of data or events in a file: log-file: %log.txt You can use this super-efficient method (and it&#8217;s worth remembering): write/append log-file append mold/only data newline What makes this efficient is that you are not reading the entire log file [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=47&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#993300;">How to store information to a log file.</span></strong></p>
<p>Let&#8217;s say you want to keep a log of data or events in a file:</p>
<pre>log-file: %log.txt</pre>
<p>You can use this super-efficient method (and it&#8217;s worth remembering):</p>
<pre>write/append log-file append mold/only data newline</pre>
<p>What makes this efficient is that you are not reading the entire log file first, you are just <em>appending</em> a record (a line) to it.</p>
<p>Here the <strong>data</strong> can be a block of information or just a word or string. The <strong>mold</strong> converts anything to a REBOL-readable string with the <strong>/only</strong> removes the outermost brackets &#8220;[]&#8220;.  We then <strong>append</strong> a newline (line terminator) to it.</p>
<p>Many programmers create a function called <strong>log</strong> (as in the verb &#8220;to log&#8221;) that writes out log events this way. Here is one that also adds a time-stamp to the start of each line:</p>
<pre>log: func [data] [
    write/append log-file rejoin [now " - " mold/only reduce data newline]
]</pre>
<p>The <strong>reduce</strong> evaluates the data block in order to get the actual contents of variables.</p>
<p>You can now just write:</p>
<pre>log "some event"</pre>
<p>or:</p>
<pre>log ["some event" 1234 http://example.com]</pre>
<p>Here&#8217;s how <strong>log</strong> might appear in a program that logs user account actions:</p>
<pre>;The variables:
user: "Bob"
pass: "password"
action: 'new-user
account: 1234
website:  http://www.rebol.com
...
log [user pass action account website]</pre>
<p>If you open the log file using an editor, you&#8217;ll now see:</p>
<pre>22-Sep-2010/9:32:54-4:00 - "Bob" "password" new-user 1234 http://www.rebol.com</pre>
<p>In REBOL 3, if you want to shorten up the time-stamp a bit, you can use <strong>now/utc</strong> to just store the universal time. If you want to hide the password, there are a few ways to do so, but we&#8217;ll explain that later.</p>
<p>Reading and processing a log file is the subject of another blog, but here are a few hints, in case you&#8217;re interested:</p>
<pre>log-lines: read/lines log-file  ; a block of lines (strings)
foreach line log-lines [probe load line]</pre>
<p>And, here&#8217;s another:</p>
<pre>log-data: load log-file ; a continues block
parse log-data [
    some [copy line [skip [to date! | to end]] (probe line)]
]</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reblets.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reblets.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reblets.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=47&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reblets.wordpress.com/2010/09/22/append-data-records-to-a-log-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea7f02ec3bfaff571e81423f78733207?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reblets</media:title>
		</media:content>
	</item>
		<item>
		<title>Reblets: Little REBOL Scripts</title>
		<link>http://reblets.wordpress.com/2010/09/18/hello-world/</link>
		<comments>http://reblets.wordpress.com/2010/09/18/hello-world/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 14:26:31 +0000</pubDate>
		<dc:creator>reblets</dc:creator>
				<category><![CDATA[Ideas and concepts]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[dialects]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://reblets.wordpress.com/?p=1</guid>
		<description><![CDATA[Expressions consist of words and values put into blocks, and that's what we're going to show you how to do.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=1&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>REBOL </strong>is an elegant little programming language that&#8217;s very powerful, and fairly easy to use and learn; however, it is <strong>unlike most other computer languages</strong>, so you need <em><strong>to think differently</strong></em><strong> as you learn it</strong>.</p>
<p>The main concept of REBOL is that expressions consist of <strong>words</strong> and <strong>values</strong> put into <strong>blocks</strong> and arranged in any order. Yes, <em><strong>any order</strong></em>. That makes it possible to express not only code, but also data, and most important of all, <strong>data-driven code</strong>, which REBOL calls <strong><em>dialects</em></strong>.</p>
<p><strong>The dialect concept is very powerful</strong> &#8212; even more so that that of object-oriented coding &#8212; because as humans we tend to think in &#8220;mini languages&#8221; that are related to the focus of our attention. You know, doctors speak their own lingo, so do mechanics, artists, chefs, engineers, journalists, fishermen, bikers&#8230; well, you name it.</p>
<p>Anyway, the purpose of this blog is <strong>to help you better understand how to write REBOL code by providing a range of useful examples</strong>. Along the way we&#8217;ll point out some of the special features of the language that make it so powerful, able to produce a range of useful results but without making your programs large and complex.</p>
<p>So, welcome again to the REBOL &#8220;How To&#8221; blog, <strong>Reblets</strong>!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reblets.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reblets.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reblets.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=1&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reblets.wordpress.com/2010/09/18/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea7f02ec3bfaff571e81423f78733207?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reblets</media:title>
		</media:content>
	</item>
		<item>
		<title>Store Data Records in Files</title>
		<link>http://reblets.wordpress.com/2010/09/18/store-data-records-in-files/</link>
		<comments>http://reblets.wordpress.com/2010/09/18/store-data-records-in-files/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 17:20:58 +0000</pubDate>
		<dc:creator>reblets</dc:creator>
				<category><![CDATA[Storing Data]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://reblets.wordpress.com/?p=40</guid>
		<description><![CDATA[How to save multiple data records to a file and load them back again. Let&#8217;s say you have a block of name records sort of like this: group: [ [1 "Bob" "Smith" 12-Aug-1965 "Seattle" WA member] [2 "Tom" "Able" 20-Feb-1955 "San Jose" CA author] [3 "Jen" "Jones" 16-Jun-1972 "New York" NY leader] [4 "Sal" "Baker" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=40&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#993300;">How to save multiple data records to a file and load them back again.</span></strong></p>
<p>Let&#8217;s say you have a block of name records sort of like this:</p>
<pre>group: [
    [1 "Bob" "Smith" 12-Aug-1965 "Seattle"  WA member]
    [2 "Tom" "Able"  20-Feb-1955 "San Jose" CA author]
    [3 "Jen" "Jones" 16-Jun-1972 "New York" NY leader]
    [4 "Sal" "Baker" 25-Oct-1975 "Boston"   MA member]
]</pre>
<p>To <strong>save</strong> all of these to a file:</p>
<pre>save/all %group.r group</pre>
<p>Take a look at the group.r file in an editor, and you&#8217;ll be able to see the same records as above.</p>
<p>To <strong>load</strong> back the records you saved above:</p>
<pre>group: load/all %group.r</pre>
<p><strong>Don&#8217;t forget to use the /all refinement or you&#8217;ll have some problems at times.</strong></p>
<p>Now you have an easy way to save and access data from your programs. This technique even works well for files of more than 100 thousand records!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reblets.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reblets.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reblets.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=40&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reblets.wordpress.com/2010/09/18/store-data-records-in-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea7f02ec3bfaff571e81423f78733207?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reblets</media:title>
		</media:content>
	</item>
		<item>
		<title>Store Simple Values in Files</title>
		<link>http://reblets.wordpress.com/2010/09/18/store-simple-values-in-files/</link>
		<comments>http://reblets.wordpress.com/2010/09/18/store-simple-values-in-files/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 17:06:31 +0000</pubDate>
		<dc:creator>reblets</dc:creator>
				<category><![CDATA[Storing Data]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://reblets.wordpress.com/?p=32</guid>
		<description><![CDATA[This example shows how to save data out to a file and loading it back again. For simple single values, you just save them out to a file. To store an integer: num: 123 save %num.r num To store a string: name: "Tom Smith" save %name.r name You can use any suffix for the file. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=32&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#993300;">This example shows how to save data out to a file and loading it back again.</span></strong></p>
<p>For simple single values, you just <strong>save</strong> them out to a file.</p>
<p>To store an integer:</p>
<pre>num: 123
save %num.r num</pre>
<p>To store a string:</p>
<pre>name: "Tom Smith"
save %name.r name</pre>
<p>You can use any suffix for the file. We use <code>.r</code> here because the data is in REBOL format, but the suffix doesn&#8217;t matter.</p>
<p>Now, you use <strong>load</strong> to get back the values.</p>
<p>To load the integer:</p>
<pre>num: load %num.r
print num
<span style="color:#993300;">123</span></pre>
<p>To load the string:</p>
<pre>name: load %name.r
print name
<span style="color:#993300;">Tom Smith</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reblets.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reblets.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reblets.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=32&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reblets.wordpress.com/2010/09/18/store-simple-values-in-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea7f02ec3bfaff571e81423f78733207?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reblets</media:title>
		</media:content>
	</item>
		<item>
		<title>How to run a script</title>
		<link>http://reblets.wordpress.com/2010/09/18/how-to-run-a-script/</link>
		<comments>http://reblets.wordpress.com/2010/09/18/how-to-run-a-script/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 16:13:04 +0000</pubDate>
		<dc:creator>reblets</dc:creator>
				<category><![CDATA[Evaluation]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://reblets.wordpress.com/?p=19</guid>
		<description><![CDATA[This example shows how to run a script from the console or from another script. &#8216;To run any script, you can type: do %script.r The do word means load the file script.r and evaluate it. (Note that in REBOL, they evaluate code, not execute it.) The % indicates that the string following it is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=19&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#993300;">This example shows how to run a script from the console or from another script.</span></strong></p>
<p>&#8216;To run any script, you can type:</p>
<pre>do %script.r</pre>
<p>The <strong>do</strong> word means load the file <code>script.r</code> and evaluate it. (<em>Note that in REBOL, they evaluate code, not execute it.</em>)</p>
<p>The <code>%</code> indicates that the string following it is a file name or file path.  It&#8217;s a unique datatype called <strong>file!</strong> That&#8217;s an important. REBOL has a several different <strong>string datatypes</strong> and you will use them for different purposes. More on that later, but for now, just don&#8217;t forget the % in front of the filename.</p>
<p>You can put <strong>do</strong> in scripts too. That&#8217;s how you include other files in your program.</p>
<p>For example:</p>
<pre>do %dictionary.r
do %html-tags.r
do %html-forms.r
do %name-database.r</pre>
<p>This would evaluate and include four other files in your program.</p>
<p>The filename can be a variable also. For example:</p>
<pre>tagfile: %html-tags.r
do tagfile</pre>
<p>So, you could even do something clever like:</p>
<pre>foreach file [%dictionary.r %html-tags.r %html-forms.r] [
    do file
]</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reblets.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reblets.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reblets.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reblets.wordpress.com&amp;blog=15945585&amp;post=19&amp;subd=reblets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reblets.wordpress.com/2010/09/18/how-to-run-a-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea7f02ec3bfaff571e81423f78733207?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reblets</media:title>
		</media:content>
	</item>
	</channel>
</rss>
