<?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>Objectless Blog</title>
	<atom:link href="http://www.torrefranca.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.torrefranca.org</link>
	<description>Writing loads of stuff as we reboot the Internet</description>
	<lastBuildDate>Sun, 17 Jan 2010 04:13:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Grails boolean saved as BIT</title>
		<link>http://www.torrefranca.org/?p=226</link>
		<comments>http://www.torrefranca.org/?p=226#comments</comments>
		<pubDate>Wed, 30 Dec 2009 03:59:25 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=226</guid>
		<description><![CDATA[Grails boolean bit int]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: monospace;"><span style="white-space: pre;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="white-space: normal;"> </span></span></span></span></p>
<p><span style="font-family: monospace;"> </span></p>
<p><span style="font-family: monospace;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> </span></span></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Depending on the Grails version booleans  are stored differently; either as INT or BIT.   BIT(1) is a special datatype made just for booleans.  However old dogs prefer storing booleans as small int.  In order to do this, you have to create a customized Hibernate dialect.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">MySQL Example:  foo.bar.brewsoftcorp.CustomMySQL5InnoDBDialect.groovy</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">package foo.bar.brewsoftcorp</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import org.hibernate.dialect.MySQL5InnoDBDialect</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import java.sql.Types</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">class CustomMySQL5InnoDBDialect extends MySQL5InnoDBDialect {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">CustomMySQL5InnoDBDialect() {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">registerColumnType(Types.BIT, &#8216;boolean&#8217;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">package foo.bar.brewsoftcorp</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import org.hibernate.dialect.MySQL5InnoDBDialect</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import java.sql.Types</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">class CustomMySQL5InnoDBDialect extends MySQL5InnoDBDialect {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">CustomMySQL5InnoDBDialect () {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">registerColumnType(Types.BIT, &#8216;boolean&#8217;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">SQL2000/2005 Example: foo.bar.brewsoftcorp.CustomSQLServerDBDialect.groovy</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">package foo.bar.brewsoftcorp</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import org.hibernate.dialect.SQLServerDialect</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import java.sql.Types</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public class CustomSQLServerDBDialect extends SQLServerDialect {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public CustomSQLServerDBDialect() {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">registerColumnType(Types.BIT, &#8216;boolean&#8217;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Then add this line to your DataSource.groovy</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">dialect = util.CustomMySQL5InnoDBDialect //for MySQL</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">##############################</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">dataSource {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">pooled = true</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">driverClassName = &#8220;com.mysql.jdbc.Driver&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">username = &#8220;username&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">password = &#8220;password&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">dialect = util.CustomMySQL5InnoDBDialect</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">##############################</div>
<p>Depending on the Grails version booleans  are stored differently; either as INT or BIT.   BIT(1) is a special datatype made just for booleans.  However old dogs prefer storing booleans as small int.  In order to do this, you have to create a customized Hibernate dialect.</p>
<p>MySQL Example:  foo.bar.brewsoftcorp.CustomMySQL5InnoDBDialect.groovy</p>
<p>package foo.bar.brewsoftcorp<br />
import org.hibernate.dialect.MySQL5InnoDBDialect<br />
import java.sql.Types<br />
class CustomMySQL5InnoDBDialect extends MySQL5InnoDBDialect {</p>
<p>CustomMySQL5InnoDBDialect() {<br />
registerColumnType(Types.BIT, &#8216;boolean&#8217;)<br />
}<br />
}</p>
<p>SQL2000/2005 Example: foo.bar.brewsoftcorp.CustomSQLServerDBDialect.groovy</p>
<p>package foo.bar.brewsoftcorp<br />
import org.hibernate.dialect.SQLServerDialect<br />
import java.sql.Types</p>
<p>public class CustomSQLServerDBDialect extends SQLServerDialect {<br />
public CustomSQLServerDBDialect() {<br />
registerColumnType(Types.BIT, &#8216;boolean&#8217;)<br />
}<br />
}</p>
<p>Then add this line to your DataSource.groovy<br />
dialect = util.CustomMySQL5InnoDBDialect //for MySQL</p>
<p>##############################</p>
<p>dataSource {<br />
pooled = true<br />
driverClassName = &#8220;com.mysql.jdbc.Driver&#8221;<br />
username = &#8220;username&#8221;<br />
password = &#8220;password&#8221;<br />
dialect = util.CustomMySQL5InnoDBDialect<br />
}</p>
<p>##############################</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=226</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Torrefranca Family Picture 2009</title>
		<link>http://www.torrefranca.org/?p=214</link>
		<comments>http://www.torrefranca.org/?p=214#comments</comments>
		<pubDate>Mon, 28 Dec 2009 06:27:36 +0000</pubDate>
		<dc:creator>Lillian</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Llian]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=214</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_221" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-221" href="http://www.torrefranca.org/?attachment_id=221"><img class="size-medium wp-image-221" src="http://www.torrefranca.org/wp-content/uploads/2009/12/fAMILY-PIC-2009-NOV-303-300x237.jpg" alt="Torrefranca Family Photo 2009" width="300" height="237" /></a><p class="wp-caption-text">Torrefranca Family Photo 2009</p></div>
<div id="attachment_222" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-222" href="http://www.torrefranca.org/?attachment_id=222"><img class="size-medium wp-image-222" src="http://www.torrefranca.org/wp-content/uploads/2009/12/fAMILY-PIC-2009-NOV-30-3R1-300x213.jpg" alt="Torrefranca Family Photo 2009" width="300" height="213" /></a><p class="wp-caption-text">Torrefranca Family Photo 2009</p></div>
<div id="attachment_223" class="wp-caption alignnone" style="width: 208px"><a rel="attachment wp-att-223" href="http://www.torrefranca.org/?attachment_id=223"><img class="size-medium wp-image-223" src="http://www.torrefranca.org/wp-content/uploads/2009/12/fAMILY-PIC-2009-NOV-30-cutie-198x300.jpg" alt="Torrefranca Family Photo 2009" width="198" height="300" /></a><p class="wp-caption-text">Torrefranca Family Photo 2009</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=214</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grails 1.2-M3 to 1.2-M4 Upgrade Quirks</title>
		<link>http://www.torrefranca.org/?p=208</link>
		<comments>http://www.torrefranca.org/?p=208#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:36:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[1.2-M3]]></category>
		<category><![CDATA[1.2-M4]]></category>
		<category><![CDATA[Grails]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=208</guid>
		<description><![CDATA[Grails 1.2-M3 to 1.2-M4 Upgrade Quirks]]></description>
			<content:encoded><![CDATA[<p>Yes quirk would be the right word.</p>
<p>For the past weeks I have been building an ERP system from scratch using Grails 1.2-M3 using  the following plugins;</p>
<ol>
<li>Grails Security</li>
<li>GrailsUI</li>
<li>ImageToolkit</li>
<li>Jasper</li>
</ol>
<p>So when I heard about Grails 1.2’s 4<sup>th</sup> milestone, I eagerly downloaded it, made the usual changes to my dev PC’s configuration as well as in eclipse and ran grails upgrade via command line.  As expected everything works except that my datatable does not work anymore and I could not run grails from eclipse.</p>
<p>After a few hours of digging through the error messages and new M4 configuration, I was able to solve my problem.  Here is what I did;</p>
<ol>
<li>The grails upgrade command does not modify your project’s ivy.xml.  Simple change rev=”1.2-M3” to rev=”1.2-M4”</li>
<li>It seems that tomcat does not know where to place the javascript folders  in the right place, causing grails-ui to misbehave.  Go to &lt;HOME&gt;\.grails\1.2-M4\plugins and extract the grails-grails-ui-1.1.1.zip\webapp\js\grailsui folder to your &lt;GRAILS_PROJECT&gt;\webapp\plugins\</li>
<li>Delete your old project directory &lt;HOME&gt;\.grails\1.2-M4\projects\&lt;PROJECT_NAME&gt;</li>
<li>Delete all jars under &lt;GRAILS_PROJECT&gt;\lib\build</li>
<li>Run Clean</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=208</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I wish that I could freeze the picture</title>
		<link>http://www.torrefranca.org/?p=201</link>
		<comments>http://www.torrefranca.org/?p=201#comments</comments>
		<pubDate>Tue, 06 Oct 2009 06:19:23 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=201</guid>
		<description><![CDATA[I wish that I could freeze the picture]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-200" src="http://www.torrefranca.org/wp-content/uploads/2009/10/RSCN0766.gif" alt="RSCN0766" width="300" height="293" /></p>
<p>Slipping through my fingers all the time</p>
<p>Schoolbag in hand, she leaves home in the early morning<br />
Waving goodbye with an absent-minded smile<br />
I watch her go with a surge of that well-known sadness<br />
And I have to sit down for a while<br />
The feeling that I&#8217;m losing her forever<br />
And without really entering her world<br />
I&#8217;m glad whenever I can share her laughter<br />
That funny little girl</p>
<p>Slipping through my fingers all the time<br />
I try to capture every minute<br />
The feeling in it<br />
Slipping through my fingers all the time<br />
Do I really see what&#8217;s in her mind<br />
Each time I think I&#8217;m close to knowing<br />
She keeps on growing<br />
Slipping through my fingers all the time</p>
<p>Sleep in our eyes, her and me at the breakfast table<br />
Barely awake, I let precious time go by<br />
Then when she&#8217;s gone there&#8217;s that odd melancholy feeling<br />
And a sense of guilt I can&#8217;t deny<br />
What happened to the wonderful adventures<br />
The places I had planned for us to go<br />
Well, some of that we did but most we didn&#8217;t<br />
And why I just don&#8217;t know</p>
<p>Slipping through my fingers all the time<br />
I try to capture every minute<br />
The feeling in it<br />
Slipping through my fingers all the time<br />
Do I really see what&#8217;s in her mind<br />
Each time I think I&#8217;m close to knowing<br />
She keeps on growing<br />
Slipping through my fingers all the time</p>
<p>Sometimes I wish that I could freeze the picture<br />
And save it from the funny tricks of time<br />
Slipping through my fingers<br />
Slipping through my fingers all the time<br />
Schoolbag in hand she leaves home in the early morning<br />
Waving goodbye with an absent-minded smile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=201</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To AMF or not to AMF that is the JSON</title>
		<link>http://www.torrefranca.org/?p=192</link>
		<comments>http://www.torrefranca.org/?p=192#comments</comments>
		<pubDate>Tue, 06 Oct 2009 05:14:49 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=192</guid>
		<description><![CDATA[Wanted Grails Bride: AMF, XML, or JSON ]]></description>
			<content:encoded><![CDATA[<p>Ok I admit the title is corny.</p>
<p>All of the Flex applications that we have written in the past years have been using XML.  I mean why not?  It is simpler to use, easier to understand and teach to new developers, easy integration with our existing Grails apps via REST/webservice, and most importantly it’s open! What actually scares me is the nature of AMF being a native serialized object built and written for the Flash Player.</p>
<p>But why must this guy post his performance test between XML and AMF (<a href="http://www.jamesward.com/census/">http://www.jamesward.com/census/</a>) and pulls me out of dreamland?  Now I am having second thoughts of moving to AMF.  Though I am not sure if there are even stable opensource java-amf projects (stable being &gt; 1.x release). The building directory kiosks that we have right now are wirelessly connected to the data server which shares the same bandwidth with the streaming video from the ads server.  Performance is a priority in the kiosk as users expect it to perform like a desktop application.  Using XML does not only waste a lot of bandwidth, much work is shoved thru the machine to parse the XML file.  That was the reason why much study was made whether or not Atom processors were good enough for the kiosks.</p>
<p>There are actually two ways to cross the dark side; out of the XML light.  One would be Grails-BlazeDS via Flex plugin.  The plugin pretty much does the configuration for you.  Just don’t expect flex views!  Another way would be to use JSON which has been hanging around with Grails core since &lt; 1.x.  This could be a better alternative as JSON is supported by most web programming languages.  Though AMF performs better than JSON, as most tests suggest, but the difference is negligible.  I guess the deciding factor here is maintenance and which language is easier for developers.  I believe it is safe to say that more developers are familiar with JSON than AMF.  Hiring devs with Flex-AMF-Java experience might be more difficult for our clients for post production support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrades are not always good… even for Grails</title>
		<link>http://www.torrefranca.org/?p=186</link>
		<comments>http://www.torrefranca.org/?p=186#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:04:25 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=186</guid>
		<description><![CDATA[Grails 1.1.1 woes]]></description>
			<content:encoded><![CDATA[<p>I have had numerous Grails projects all written using 1.0.  I have been itching to upgrade to 1.1. But as I do a project upgrade, a few of my plugins refuse to work with the new distribution.</p>
<p>Finally two new Grails projects!  So I cleaned up my old desktop and downloaded the latest Grails release (Grails 1.1.1).  I spent 3 hours digging through the new Grails website for plugins that I can use.  I listed down a few promising ones (stark, export, grails UI, tomcat, etc)</p>
<p>So I gave it a test run! I made a sort of online reservation form with export to excel and pdf capability.  Out of Grails 1.0 habit I did an upgrade command and to my surprised it failed!  Nice! Some hibernate plugins can’t be deleted. Grails clean seems to work perfectly though.  </p>
<p>Since my second and third try also failed, I manually deleted the project plugins @ .grails folder.  The upgrade command worked this time.  But I have to manually delete the plugins for the command to work.  Ok no beggie!</p>
<p>So I spent a day testing some plugins.  I love the Stark and Jasper plugins.  Though you have to use IReport 2.x as the new IReport version does not work with the current jasper plugin. It seems that the jasper engine that grails uses only supports DTD.  I did several workaround like adding the old doctype that the engine expects.  So to avoid the same hair pulling misery that I had encountered stick with the old, ugly, dtd based IReport designer. Anyway as my journey continues, my small app was working nicely on my dev environment.</p>
<p>After downloading tomcat xampp add-on, we use xampp because we are lazy, I was ready to build my first Grails 1.1.1 war.  I did a grails clean command this time via eclipse (ant task target:clean) which finished without a glitch. I wish I could say the same thing with war.  Running the ant task gives me a java.lang.reflect.InvocationTargetException build error which usually occurs when the compiler sees 2 different classes with the same name.  So again I deleted the plugins at .grails folder ran grails war this time via commandline and it worked!  So again I tried running the ant task via IDE same error!  Now call me crazy I did this several times and it gives me the same result.</p>
<p>No happy ending with this one.  I am not sure if these are known issues and developers are doing workarounds.  I have never experience these issues with the old Grails.  Maven issues or perhaps plugin developers putting grails jar in their distributions?   I don’t know… I am just a programmer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=186</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a Thought</title>
		<link>http://www.torrefranca.org/?p=179</link>
		<comments>http://www.torrefranca.org/?p=179#comments</comments>
		<pubDate>Sat, 26 Sep 2009 10:09:10 +0000</pubDate>
		<dc:creator>Lillian</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Llian]]></category>
		<category><![CDATA[Mhon]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=179</guid>
		<description><![CDATA[Once in a while
You&#8217;ll see a flower bloom
You&#8217;ll see an egg hatch
You&#8217;ll see the river rise,
This means a new beginning.
  Once in your life
 Your heart will suddenly stumble
 Your mind will trust,
 Your emotion will go wild,
 This means you&#8217;re in love.
Once in your life
Your heart will suddenly stop beating
Your emotion and mind will [...]]]></description>
			<content:encoded><![CDATA[<p><strong>O</strong>nce in a while</p>
<p>You&#8217;ll see a flower bloom</p>
<p><span style="text-decoration: underline"><span style="color: #0000ff">You&#8217;ll see an</span></span> egg hatch</p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">You&#8217;ll see</span></span> the river rise,</p>
<p>This means a new beginning.</p>
<p><strong> <em> </em></strong><span style="color: #0000ff"><span style="text-decoration: underline"><strong><em>O</em></strong><em>nce in your life</em></span></span></p>
<p><em> Your heart will </em><span style="color: #0000ff"><span style="text-decoration: underline"><em>suddenly stumble</em></span></span></p>
<p><em> Your mind will trust,</em></p>
<p><em> Your emotion will go wild,</em></p>
<p><em> This means you&#8217;re in love.</em></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline"><strong>O</strong>nce in your life</span></span></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Your heart will suddenly stop beating</span></span></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Your emotion and mind will go mad and crazy,</span></span></p>
<p>Your eye will tear</p>
<p>This means you&#8217;re hurt.</p>
<p><strong> <em>A</em></strong><em> new life? A new beginning?</em></p>
<p><em> Someone to know? Someone to share with?</em></p>
<p><em> Somebody to care? Somebody to love?</em></p>
<p><em> Someone to hate? Someone to hurt?</em></p>
<p><em> This means you&#8217;re near the end&#8230;</em></p>
<p><strong>A</strong>nother life&#8230; another start&#8230;</p>
<p><strong>A</strong> new beginning&#8230;..</p>
<p>07/24/90</p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">nohM</span></span>/Llian</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=179</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lillian</title>
		<link>http://www.torrefranca.org/?p=172</link>
		<comments>http://www.torrefranca.org/?p=172#comments</comments>
		<pubDate>Sat, 26 Sep 2009 08:34:48 +0000</pubDate>
		<dc:creator>Lillian</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Llian]]></category>
		<category><![CDATA[Mhon]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=172</guid>
		<description><![CDATA[Lillian
Lillian
is
luxury
likable
innocent
and
naf.


Lillian
Love
is
like
lovebirds
in
a
nest.


Llian
Lovely
like
i
and
naughty.


by: Mhon 06/26/90






]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000"><span style="text-decoration: underline">Lillian</span></span></strong></p>
<p><strong><span style="color: #ff0000">L</span><span style="color: #ff99cc">illian</span></strong></p>
<p><strong><span style="color: #ff0000">i</span><span style="color: #ff99cc">s</span></strong></p>
<p><strong><span style="color: #ff0000">l</span><span style="color: #ff99cc">uxury</span></strong></p>
<p><strong><span style="color: #ff0000">l</span><span style="color: #ff99cc">ikable</span></strong></p>
<p><strong><span style="color: #ff0000">i</span><span style="color: #ff99cc">nnocent</span></strong></p>
<p><strong><span style="color: #ff0000">a</span>nd</strong></p>
<p><strong><span style="color: #ff0000">n</span><span style="color: #ff99cc">af.</span></strong></p>
<p><strong><br />
</strong></p>
<p><strong><span style="color: #ff6600"><span style="text-decoration: underline">Lillian</span></span></strong></p>
<p><strong><span style="color: #ff6600">L</span><span style="color: #33cccc">ove</span></strong></p>
<p><strong><span style="color: #ff6600">i</span><span style="color: #33cccc">s</span></strong></p>
<p><strong><span style="color: #ff6600">l<span style="color: #33cccc">ike</span></span></strong></p>
<p><strong><span style="color: #ff6600">l</span><span style="color: #33cccc">ovebirds</span></strong></p>
<p><strong><span style="color: #ff6600">i</span><span style="color: #33cccc">n</span></strong></p>
<p><strong><span style="color: #ff6600">a</span></strong></p>
<p><strong><span style="color: #ff6600">n<span style="color: #33cccc">est.</span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><br />
</span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #00ff00"><span style="text-decoration: underline">Llian</span></span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><span style="color: #00ff00">L</span><span style="color: #ff00ff">ovely</span></span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><span style="color: #00ff00">l</span><span style="color: #ff00ff">ike</span></span></span></strong></p>
<p><strong><span style="color: #00ff00">i</span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><span style="color: #00ff00">a</span><span style="color: #ff00ff">nd</span></span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><span style="color: #00ff00">n</span><span style="color: #ff00ff">aughty.</span></span></span></strong></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><br />
</span></span></strong></p>
<p><span style="color: #ff6600"><span style="color: #000000"><em><span style="color: #ffffff">by: Mhon 06/26/90</span></em></span></span></p>
<p><strong><span style="color: #ff6600"><span style="color: #000000"><br />
</span></span></strong></p>
<div><strong><br />
</strong></div>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Apparel</title>
		<link>http://www.torrefranca.org/?p=121</link>
		<comments>http://www.torrefranca.org/?p=121#comments</comments>
		<pubDate>Thu, 24 Sep 2009 14:29:17 +0000</pubDate>
		<dc:creator>Lillian</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Vow Renewal - 23 Sep 06]]></category>
		<category><![CDATA[Wedding Photo]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=121</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_39" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-39" src="http://www.torrefranca.org/wp-content/uploads/2009/09/1-clothes1-300x212.jpg" alt="Wedding Apparel" width="300" height="212" /><p class="wp-caption-text">Wedding Apparel</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=121</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Accessories</title>
		<link>http://www.torrefranca.org/?p=119</link>
		<comments>http://www.torrefranca.org/?p=119#comments</comments>
		<pubDate>Thu, 24 Sep 2009 14:27:51 +0000</pubDate>
		<dc:creator>Lillian</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Vow Renewal - 23 Sep 06]]></category>
		<category><![CDATA[Wedding Photo]]></category>

		<guid isPermaLink="false">http://www.torrefranca.org/?p=119</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_40" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-40" src="http://www.torrefranca.org/wp-content/uploads/2009/09/2-accessories-300x212.jpg" alt="Wedding Accessories" width="300" height="212" /><p class="wp-caption-text">Wedding Accessories</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.torrefranca.org/?feed=rss2&amp;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
