<?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>Rudabet</title>
	<atom:link href="http://www.rudabet.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rudabet.com/blog</link>
	<description>Behind the Scenes at a self funded uISV website.</description>
	<lastBuildDate>Fri, 02 Sep 2011 21:02:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using Animations in FireMonkey</title>
		<link>http://www.rudabet.com/blog/2011/09/using-animations-in-firemonkey/</link>
		<comments>http://www.rudabet.com/blog/2011/09/using-animations-in-firemonkey/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 21:02:06 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[FireMonkey]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=65</guid>
		<description><![CDATA[I got my copy of RAD Studio XE2 last night and since then I&#8217;ve been busy exploring what it has on offer, especially FireMonkey. One of the exciting things about it is animations and how easy it is to create them. I&#8217;ll start by walking you through a rather simple (and frankly, pointless) application and [...]]]></description>
			<content:encoded><![CDATA[<p>I got my copy of RAD Studio XE2 last night and since then I&#8217;ve been busy exploring what it has on offer, especially FireMonkey. One of the exciting things about it is animations and how easy it is to create them.</p>
<p>I&#8217;ll start by walking you through a rather simple (and frankly, pointless) application and then show some of the options in more detail.</p>
<p>So, fire up Delphi and create a new application, using the option to create a FireMonkey application. On the tool palette select any of the components under Standard and plonk it on the form. I chose a check box, but it doesn&#8217;t really matter.</p>
<p>All that should be pretty familiar, but here&#8217;s where things start to diverge. In FireMonkey any control can have children. That has some interesting implications, but for now go back to the tool palette select the TFloatAnimation (under the Animations page). Drop it on the page by clicking on top of the checkbox you just added.</p>
<p>The first thing you&#8217;ll probably notice (or not notice) is that it doesn&#8217;t show up in the form designer, but you should see it added as a child of the check box in the structure pane. If not just drag and drop it within the structure pane to where it should be.</p>
<p>Now, making sure you&#8217;re editing the FloatAnimation in the Object Inspector, edit the following properties:</p>
<p>Duration: 4</p>
<p>Enabled: True</p>
<p>Loop: True</p>
<p>PropertyName: Position.X</p>
<p>StopValue: 400</p>
<p>Hit F9 to compile and run, and you&#8217;ll have a check box repeatedly sliding across the window.</p>
<p>And yes, animation really is that easy. It&#8217;s pointless, of course, to animate check boxes, but FireMonkey includes a wide array of shapes in both 2D and 3D which can be used to create swish designs.</p>
<p>The TFloatAnimation animates a simple numerical value. Having used Delphi for years I wanted to say integer value there but values in FireMonkey are actually doubles, as they need to be for the complex scaling and animation that is going on there.</p>
<p>Look in the Animations page of the palette and you&#8217;ll see other animations for such things as simple colours, colour gradients and  rectangles and the intriguing TPathAnimation, which I&#8217;ve yet to investigate but appears to be able to do some complex scripting.</p>
<p>Lets take a more detailed look at the TFloatAnimation and what it can do (and other animations have a pretty similar set of properties).</p>
<p>PropertyName is the name of the property to animate and below is what shows as available for my check box control:</p>
<p><a href="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Animation-Properties.png"><img class="alignnone size-medium wp-image-66" title="Animation-Properties" src="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Animation-Properties-127x300.png" alt="" width="127" height="300" /></a></p>
<p>It seems to do a good job of finding every available usable property.</p>
<p>Interestingly, PropertyName is actually a string property. So, you can easily set it at run time. I did a test, and if it&#8217;s not a valid property name, FireMonkey just ignores it, rather than raising an exception.</p>
<p>Interpolation lets you choose the algorithm for the animation. The default is linear, the full list of options is below:</p>
<p><a href="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Interpolation-Options.png"><img class="alignnone size-full wp-image-67" title="Interpolation-Options" src="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Interpolation-Options.png" alt="" width="89" height="163" /></a></p>
<p>In the example above we checked the Enabled property to initiate the animation. In code you can also use the Start and Stop methods to start and stop the animation. Or you can investigate the Trigger and TriggerInverse properties.</p>
<p>These start and stop the animation depending on the value of a property. Sadly the choice of properties appears to be pre-defined, though I imaging there must be some way to modify this with custom controls, or by subclassing the Animation control. Here are the available values:</p>
<p><a href="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Trigger-Values.png"><img class="alignnone size-full wp-image-68" title="Trigger-Values" src="http://www.rudabet.com/blog/wp-content/uploads/2011/09/Trigger-Values.png" alt="" width="116" height="151" /></a></p>
<p>Interestingly, you can specify more than one option, eg. &#8216;IsFocused=true;IsOpen=true&#8217;.</p>
<p>However, I did notice some odd behaviour in my testing. Setting on Focused=true as a trigger for the example above, if I tabbed into the control all worked fine, but selecting it caused the animation to skip to the end and stop (even if Repeat was set). I&#8217;m sure this will be fixed in an update.</p>
<p>The TriggerInverse value sets a trigger to run the animation backwards. However, you may prefer to create two animation objects with opposing triggering options to use a non-linear animation. Putting that in simple terms, if you use a &#8216;bounce&#8217; interpolation (which causes the value to bounce around the start value), using TriggerInverse would cause it to bounce backwards, but using a second animation it would (could) bounce around the final value before getting back to the start value.</p>
<p>As to the other significant properties, Delay and Duration set a pause before starting the animation, and the time (in seconds) the animation takes.</p>
<p>AutoReverse and Loop should be fairly obvious. I noticed in testing that if I set AutoReverse to true the animation would start at the finish point. But further investigation appears to show that that was just an effect of the animation starting before the controls had been fully drawn on screen.</p>
<p>StartValue and StopValue are again obvious. Inverse runs the animation backwards.</p>
<p>One final property is AnimationType. Going back to our example with the itBounce interpolation, atIn  caused the value to bounce around the start value eventually stopping at the stop value. atOut smoothly moves from the start value and bounces around the stop value. atInOut does both of the above: bouncing around both the start and top values.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2011/09/using-animations-in-firemonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Online Mail Order Plant Nursery</title>
		<link>http://www.rudabet.com/blog/2010/12/an-online-mail-order-plant-nursery/</link>
		<comments>http://www.rudabet.com/blog/2010/12/an-online-mail-order-plant-nursery/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 22:38:23 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[beddingandbasket.co.uk]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=61</guid>
		<description><![CDATA[In my day job I co-run a small retail plant nursery specialising in bedding and patio plants. Recently we where looking for ways to earn extra revenue and the idea of selling on the internet came up. We looked at ebay and did some experiments with a few items, since this is the easiest way [...]]]></description>
			<content:encoded><![CDATA[<p>In my day job I co-run a small retail plant nursery specialising in bedding and patio plants. Recently we where looking for ways to earn extra revenue and the idea of selling on the internet came up.</p>
<p>We looked at ebay and did some experiments with a few items, since this is the easiest way to get a store set up, and soon sorted out some good ways to pack and ship plants and hopefully gained a few ideas about what the market wanted.</p>
<p>I did some more research in google and, whilst there are a number of merchants selling bedding plants, sometimes at very low prices, they concentrate on a small number of popular varieties. If you&#8217;re happy with mixed colours of geraniums, impatiens and petunias they do a good job of filling the market, but don&#8217;t fulfill the market for customers who wants to choose their own colours, or less common varieties.</p>
<p>The other setback with these companies is that you place your order and receive delivery at some unspecified time in the future. They don&#8217;t offer same week or same day dispatch. And you can&#8217;t plan your garden over winter and have the plants delivered the week you want them in spring (or whatever other season).</p>
<p>So, the plan is to be experts with a wide range of stock and to allow same week dispatch or dispatch on a specified delivery week.</p>
<p>Well, I did find one supplier who offers what we plan to offer, and fortunately they&#8217;re not offering cut throat pricing. So, they&#8217;ve proved there&#8217;s a market to be tapped and it&#8217;s also a market which isn&#8217;t being flogged to death with cheap prices. Good.</p>
<p>So, in recent months I&#8217;ve spent my spare hours at work creating an online plant ordering system in Rails. You may ask why I didn&#8217;t use an off the shelf shopping cart system. Well, obviously creating one in Rails is far more fun than a pre-packaged system, but I also felt that a custom solution would allow us much more flexibility. For example, with allowing the customer to select a delivery week.</p>
<p>A custom solution also allows me great flexibility in playing with the database, collecting information about both pre and post sales data, running A/B tests and arranging and rearranging products in any way I like to see which produces the most sales.</p>
<p>I&#8217;ve been reading a number of books about online marketing lately and have a head full of ideas for experiments to run, which I intend to be writing about on this blog in due course.</p>
<p>Fun times should be ahead. The site is now online. If you want to take a look, visit <a href="http://beddingandbasket.co.uk" target="_blank">beddingandbasket.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/12/an-online-mail-order-plant-nursery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Into profit</title>
		<link>http://www.rudabet.com/blog/2010/11/into-profit/</link>
		<comments>http://www.rudabet.com/blog/2010/11/into-profit/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 20:40:39 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[plantality.com]]></category>
		<category><![CDATA[Stats]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=58</guid>
		<description><![CDATA[When I started the plantality.com project I knew I wanted it to pay a reasonable monthly income after five years. Back in August I realised I hadn&#8217;t specified exactly what a &#8216;reasonable income&#8217; meant. So, after a brief think I figured £1,000 per month would be a good starting place to declare the project a [...]]]></description>
			<content:encoded><![CDATA[<p>When I started the plantality.com project I knew I wanted it to pay a reasonable monthly income after five years. Back in August I realised I hadn&#8217;t specified exactly what a &#8216;reasonable income&#8217; meant.</p>
<p>So, after a brief think I figured £1,000 per month would be a good starting place to declare the project a success.</p>
<p>Revenue for August was 42 pence. I opened up Excel and calculated that to get to £1,000 in five years time, that income would have to grow by about 14% per month.</p>
<p>SO, how have I done since then? Well, ad revenue for October was £10.42. Growth of over 20 times in two months. Growth my prediction showed would have taken two years to achieved.</p>
<p>I&#8217;m assuming growth will not be sustained at such a level, but it&#8217;s pleasing to see such good progress, and puts me on target for earning £1,000 monthly in mid 2003, if growth continues at 14% per month.</p>
<p>And marks another important milestone. Currently my only expense on the project is web hosting at $12 per month, or about £7. So, the project is officially in profit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/11/into-profit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Embarcadero Fails to Run a Software Company</title>
		<link>http://www.rudabet.com/blog/2010/10/how-embarcadero-fails-to-run-a-software-company/</link>
		<comments>http://www.rudabet.com/blog/2010/10/how-embarcadero-fails-to-run-a-software-company/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 20:22:43 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=55</guid>
		<description><![CDATA[Ruby and Rails development is often seen as a command line activity. I started my development activities on 8-bit home micros which even then featured rudimentary IDEs, before advancing to Turbo Pascal on an IBM compatible. So, when I started Rails development I looked for a suitable IDE. Googling seemed to show that Embarcaderos 3rdRail [...]]]></description>
			<content:encoded><![CDATA[<p>Ruby and Rails development is often seen as a command line activity. I started my development activities on 8-bit home micros which even then featured rudimentary IDEs, before advancing to Turbo Pascal on an IBM compatible.</p>
<p>So, when I started Rails development I looked for a suitable IDE. Googling seemed to show that <a href="http://www.embarcadero.com/products/3rdrail" target="_blank">Embarcaderos 3rdRail</a> was the most fully featured environment available, so I bought a licence and settled into development.</p>
<p>3rdRail has it&#8217;s issues, it&#8217;s slow, it crashes and the auto-completion is painfully annoying. Sometime later I heard about <a href="http://www.jetbrains.com/ruby/" target="_blank">RubyMine from JetBrains</a>. It promised a lot and with Embarcadero seemingly dropping development of 3rdRail I decided to take a serious look when <a href="http://plantality.com" target="_blank">plantality</a> started earning reasonable money.</p>
<p>Fast forward to today. My copy of 3rdRail refused to run, claiming that it&#8217;s licence had expired. What? I bought the software outright, surely this was a bug. So I went to Embarcaderos website, dug around and found a copy of the licence to paste back into the software. Still no go. I wrote to their support asking what was happening.</p>
<p>In hte meantime I had work to do, so I downloaded the RubyMine trial figuring I could evaluate it and get some work done while I waited for Embarcadero to sort things out. I haven;t spend long enough wth it go give it a thorough work out, other than to say that it is much, much more responsive and appears to be written by people who care.</p>
<p>And it&#8217;s instructive to compare Embarcaderos operation with JetBrains. Emarcaderos website is slow, sometimes painfully so, JetBrains is wonderfully fast. Embarcardero has just a couple of short pages about each product, JetBrains lets me delve into sub-page after sub-page. Embarcadero requires a key just to run the trial, with JetBrains I just download and install.  And finally the support.</p>
<p>Embarcadero provides a forum which is frustratingly slow, is almost dead and the closest thing to an official answer is the possible chance of a reponse from a TeamB member &#8211; a keen user who helps out in their spare time. JetBrains forum is the exact opposite. It is fast, full of content and the company answer queries themselves, if a knowledgeable user hasn&#8217;t got there first. I&#8217;ve tried searching for results to a few queries I&#8217;ve had and found the answer each time on the first page of search results, if not the first result.</p>
<p>With 3rdRail I always felt that, when I had a problem, I was on my own to sort it out, with RubyMine I feel comfortable that I can easily get a solution to the issue.</p>
<p>Well done JetBrains and I point to you as an effective model for how to run a software company.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/10/how-embarcadero-fails-to-run-a-software-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>August 2010 Stats</title>
		<link>http://www.rudabet.com/blog/2010/09/august-2010-stats/</link>
		<comments>http://www.rudabet.com/blog/2010/09/august-2010-stats/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 19:29:26 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Stats]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=52</guid>
		<description><![CDATA[So, it&#8217;s stats time again: Visitors: 374 Pages: 2864 Revenue: £0.42 (about $0.60) I&#8217;ve made an adjustment to the pages figure from this month forward: since traffic  is low and I&#8217;m doing a lot of site access writing entries for the plant database, the stats where being badly skewed, so I have removed my own [...]]]></description>
			<content:encoded><![CDATA[<p>So, it&#8217;s stats time again:</p>
<p>Visitors: 374</p>
<p>Pages: 2864</p>
<p>Revenue: £0.42 (about $0.60)</p>
<p>I&#8217;ve made an adjustment to the pages figure from this month forward: since traffic  is low and I&#8217;m doing a lot of site access writing entries for the plant database, the stats where being badly skewed, so I have removed my own accesses from the figures.</p>
<p>Last month I was firmly in the &#8216;one month doldrums&#8217;. That&#8217;s the term for a startup which hopes to do well and end up being disappointed with early results. But these figures show at least 200% growth on the previous month, which shows that my aim to go for long tail search results is paying off.</p>
<p>Also, before release I reckoned that it would take five years before I was earning reasonable money from the project, but without a precisely defined figure for what constituted &#8216;reasonable money&#8217;.  I&#8217;ve now pinned that figure down at £1000 monthly revenue.</p>
<p>With the help of Excel I worked out what that really meant. Starting with Augusts revenue of 42p, that means I need a shade over 14% month on month growth. Whilst I doubt this months 200% growth will continue it does give me hope that the target figure will be achievable.</p>
<p>Add to that that I am writing this on the 8th September and already revenue is twice that for the whole of August and things look decidedly good.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/09/august-2010-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why a Plant Wiki?</title>
		<link>http://www.rudabet.com/blog/2010/08/why-a-plant-wiki/</link>
		<comments>http://www.rudabet.com/blog/2010/08/why-a-plant-wiki/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 09:10:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[plantality.com]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=49</guid>
		<description><![CDATA[If you google for most plants the first entry you get is usually to Wikipedia. Now, Wikipedia is a great site packed with information, but as far as plant entries go it&#8217;s also full of botanical jargon and glaringly short of practical information about how to actually grow a plant. Other search results will return [...]]]></description>
			<content:encoded><![CDATA[<p>If you google for most plants the first entry you get is usually to Wikipedia. Now, Wikipedia is a great site packed with information, but as far as plant entries go it&#8217;s also full of botanical jargon and glaringly short of practical information about how to actually grow a plant.</p>
<p>Other search results will return information from plant databases. All created by &#8216;experts&#8217;, although in my opinion the real gardening experts are those that actually grow the plants: gardeners.</p>
<p>Whilst these expert sites have good plant information very few of them give gardeners the chance to give feedback on the plants. There&#8217;s one site which lets the users post comments. Good. That&#8217;s one step towards Web 2.0 and something that is already available on the plantality plant database and will be expanded even further later.</p>
<p>But what the world really needs is a plant wiki aimed at gardeners. Now, there&#8217;s another gardeners network which has a plant wiki. They even claim to have 70,000 entries. That sounds fairly conclusive. Except that, if you look at what is actually there, all the entries (or at least, all those I&#8217;ve looked at) are empty.</p>
<p>All they appear to have done is found a definitive list of garden plants, and created an empty record for each one.</p>
<p>So, plantality will aim to build a best of breed plant wiki.</p>
<p>But, my wiki will be more than that. Most plant databases are very difficult to search. You can search by name, if you know what you want before you&#8217;ve searched for it. But, what about finding a plant for a particular season, or soil type, or habit.</p>
<p>For the plantality wiki plants will be divided into over 200 categories. You will be able to search on one or more of these categories. So you could, for instance, find a shrub with blue flowers for a sunny site, or a perennial with yellow flowers which attracts bees. Or any one of thousands of other combinations.</p>
<p>The database is still fairly empty, but you can take a look at the <a href="http://plantality.com/finder" target="_blank">plant finder</a> now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/08/why-a-plant-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>July 2010 Stats &amp; News</title>
		<link>http://www.rudabet.com/blog/2010/08/july-2010-stats-news/</link>
		<comments>http://www.rudabet.com/blog/2010/08/july-2010-stats-news/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 20:10:35 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[plantality.com]]></category>
		<category><![CDATA[Stats]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=47</guid>
		<description><![CDATA[July 2010 Stats are as follows: Visitors: 196 Pages: 1670 Total earnings: 10p (about 17c) Pagerank: 0 Alexa rank: 7,219,006 So, still very quiet, but that&#8217;s hardly surprising considering how little has changed. There is one big area for development, though: Phase II is now available, or rather Phase II beta 0.9, which is to [...]]]></description>
			<content:encoded><![CDATA[<p>July 2010 Stats are as follows:</p>
<p>Visitors: 196</p>
<p>Pages: 1670</p>
<p>Total earnings: 10p (about 17c)</p>
<p>Pagerank: 0</p>
<p>Alexa rank: 7,219,006</p>
<p>So, still very quiet, but that&#8217;s hardly surprising considering how little has changed.</p>
<p>There is one big area for development, though: Phase II is now available, or rather Phase II beta 0.9, which is to add a plant database. With the full roll out of Phase II this will be converted to a plant wiki.</p>
<p>One of the major aims of the database/wiki is to draw in long tail google search links,  something which is already happening and can only increase as I add more entries to the wiki.</p>
<p>One more stat to add:</p>
<p>Wiki entries: 81</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/08/july-2010-stats-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking a Twitter Feed to a Facebook Fan Page</title>
		<link>http://www.rudabet.com/blog/2010/07/linking-a-twitter-feed-to-a-facebook-fan-page/</link>
		<comments>http://www.rudabet.com/blog/2010/07/linking-a-twitter-feed-to-a-facebook-fan-page/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 14:15:45 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=45</guid>
		<description><![CDATA[I just revisited my Twitter page and realised I need to do some more frequent updates in order to attract more followers. I need to do the same for my Facebook page, but I didn&#8217;t want to have to visit both of them to send out the same message: I wanted to post to my [...]]]></description>
			<content:encoded><![CDATA[<p>I just revisited my <a href="http://twitter.com/plantality" target="_blank">Twitter page</a> and realised I need to do some more frequent updates in order to attract more followers. I need to do the same for my <a href="http://www.facebook.com/pages/plantality/131641974976?ref=ts" target="_blank">Facebook page</a>, but I didn&#8217;t want to have to visit both of them to send out the same message: I wanted to post to my twitter page and have Facebook pick the feed up automatically.</p>
<p>I started by trying to use the official Twitter Facebook app, but whilst it was easy to get it to post updates to my personal feed, there was no way to get it to post to a &#8216;fan&#8217; page.</p>
<p>The solution I found was as to add the twitter RSS feed to the Notes app within the Facebook page, as follows:</p>
<ul>
<li>Go to the fan page.</li>
<li>On the left, just under the picture, click Edit page.</li>
<li>Go down to Notes and click Edit.</li>
<li>From the box middle-right click Import a blog.</li>
<li>Follow through the process and enter your Twitter pages URL feed address when asked.</li>
</ul>
<p>To find your twitter URL feed address go to your Twitter page (in my case http://twitter.com/plantality &#8211; not the default page you see when logged in). At the bottom of the right hand column you will see an RSS logo and RSS feed of &lt;users&gt; tweets link. Right click the link and select Copy link address (to clipboard). You can then paste the link into Facebook.</p>
<p>I&#8217;m slightly disappointed with the way Facebook displays the feed content (it shows the tweet as both title and text) but as far as I can tell it&#8217;s the best, if not only way to do this.</p>
<p>I&#8217;ve also seen complaints from others that if you do the above you can&#8217;t also add a feed from your own blog to your Facebook page &#8211; Facebook Notes will only allow one RSS feed, but someone suggested using <a href="http://pipes.yahoo.com/pipes/" target="_blank">Yahoo pipes</a> to get around this, but I haven&#8217;t tested it personally.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/07/linking-a-twitter-feed-to-a-facebook-fan-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Legal Side of a Social Networking Site</title>
		<link>http://www.rudabet.com/blog/2010/07/the-legal-side-of-a-social-networking-site/</link>
		<comments>http://www.rudabet.com/blog/2010/07/the-legal-side-of-a-social-networking-site/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 20:50:11 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[plantality.com]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=43</guid>
		<description><![CDATA[(The following article is based on UK practice). In this day and age it&#8217;s important to cover your back legally in any business ventures, especially one based on the internet. Here are a the things you will need to think about if you are running a UK based socail networking website. Firstly you will need [...]]]></description>
			<content:encoded><![CDATA[<p>(The following article is based on UK practice).</p>
<p>In this day and age it&#8217;s important to cover your back legally in any business ventures, especially one based on the internet. Here are a the things you will need to think about if you are running a UK based socail networking website.</p>
<p>Firstly you will need a Terms of Use document for anyone interracting with your site. A terms of use document tells your users what they may and may not do on your site. It will say who can and can&#8217;t use your site (bear in mind there are extra legal ramifications for websites for children), what they can contribute (you probably want to ban illegal material and pornography) and what they can claim from you if they feel they have suffered a loss through your site.</p>
<p>If you search google for &#8216;website contract templates&#8217; you will find many legal services selling template contracts for you to complete and upload. I bought mine from <a href="http://www.website-contracts.co.uk/" target="_blank">SEQ Legal</a>. The contract supplied included many clauses which I could include, remove or edit depending on my particular circumstances, as well as advice on why I may want to include or exclude clauses. You can see my final contract at <a href="http://plantality.com/static/tos" target="_blank">http://plantality.com/static/tos</a>.</p>
<p>Next up you will need a privacy policy. This documents what data your site will be collecting, how you will be using that data and who you will be giving that data to. Again I used a template from SEQ Legal and you can view the finished document at <a href="http://plantality.com/static/privacy_policy" target="_blank">http://plantality.com/static/privacy_policy</a>.</p>
<p>If you&#8217;re in the UK like me, you will also need to register with the <a href="http://www.ico.gov.uk/" target="_blank">Information Commissioners Office</a>. This is a government body charged with ensuring those who collect personal information comply with the Data Protection Act. The legislation is quite complex and whether you need to register or not will depend on exactly what information you are collecting. For instance you don&#8217;t need to register if you are just using information for payroll purposes or for marketing.</p>
<p>Registration consists of declaring under what categories you will be collecting data, about whom that data will be collected and how you will be using that data. Fortunately the ICO has a selection of templates for typical businesses. When you sign up you can select your business type and simply modify as you see fit. I registered as a &#8216;social networking website&#8217; and the template they sent me was almost 100% what I needed. You can either register online at the <a href="http://www.ico.gov.uk/" target="_blank">ICO website</a> or fax them a request for a template to be posted to you.</p>
<p>I couldn&#8217;t get the online submission process to work, so faxed them my request (they provide a form to print out and fill in), edited it for my needs and sent it back along with a cheque for the annual fee of £35. Note that your documents will include a registration number and password. Do not lose these as you will need them if you ever need to modify them. You should also put your registration number in your privacy policy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/07/the-legal-side-of-a-social-networking-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>June 2010 Stats</title>
		<link>http://www.rudabet.com/blog/2010/07/june-2010-stats/</link>
		<comments>http://www.rudabet.com/blog/2010/07/june-2010-stats/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 19:36:09 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Stats]]></category>

		<guid isPermaLink="false">http://www.rudabet.com/blog/?p=41</guid>
		<description><![CDATA[Figures for June 2010 are as follows: Visitors: 363 Pages: 2015 New users: 0 Alexa ranking: 7,202,584 Total earnings: £0.17 (about 25c) The good news is that traffic has more than doubled from last month. The bad is that nobody signed up. There where two blips in traffic, the first on the 1st June due [...]]]></description>
			<content:encoded><![CDATA[<p>Figures for June 2010 are as follows:<br />
Visitors: 363<br />
Pages: 2015<br />
New users: 0<br />
Alexa ranking: 7,202,584</p>
<p>Total earnings: £0.17 (about 25c)</p>
<p>The good news is that traffic has more than doubled from last month. The bad is that nobody signed up.</p>
<p>There where two blips in traffic, the first on the 1st June due to my press release via <a href="http://prweb.com" target="_blank">prweb</a> of about 80 visits, the second from an unidentified source on the 20th which brought in 100 visitors .</p>
<p>My search terms listing for the months shows a lot of traffic coming in for one particular blog post, which reinforces my intention to pursue a long-tail marketing strategy for &#8216;version 2&#8242;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rudabet.com/blog/2010/07/june-2010-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

