<?xml version="1.0" encoding="iso-8859-1"?>
<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/"
	>

<channel>
	<title>Media Modus. A creative, ideas led, website production &#38; consultancy company. - +44 (0) 845 535 1716</title>
	<atom:link href="http://www.mediamodus.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mediamodus.com</link>
	<description>making your website work!</description>
	<pubDate>Mon, 28 Jun 2010 09:32:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add &#8220;did you mean&#8221; function to website, mySQL</title>
		<link>http://www.mediamodus.com/index.php/case-studies/add-did-you-mean-function-to-website/</link>
		<comments>http://www.mediamodus.com/index.php/case-studies/add-did-you-mean-function-to-website/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 11:40:40 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Case Studies]]></category>

		<category><![CDATA[R & D]]></category>

		<category><![CDATA[Web Articles]]></category>

		<category><![CDATA[did you mean]]></category>

		<category><![CDATA[google style]]></category>

		<category><![CDATA[improve search]]></category>

		<category><![CDATA[mySQL]]></category>

		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1028</guid>
		<description><![CDATA[Say what?
Like Google you might want to offer &#8220;did you mean&#8221; functionality to your site visitors, not sure where to start? or just looking for a quick fix! then you&#8217;r in the right place&#8230;
To kick off with it&#8217;s worth noting that we are going to be using mySQL Stored procedures, along with the various mySQL built [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1030" class="wp-caption alignright" style="width: 295px"><a href="http://www.mediamodus.com/wp-content/uploads/2009/12/didyoumean.jpg"><img class="size-full wp-image-1030" title="didyoumean" src="http://www.mediamodus.com/wp-content/uploads/2009/12/didyoumean.jpg" alt="did you mean?" width="285" height="230" /></a><p class="wp-caption-text">did you mean?</p></div>
<h3>Say what?</h3>
<p>Like <strong>Google</strong> you might want to offer &#8220;<strong>did you mean</strong>&#8221; functionality to your site visitors, not sure where to start? or just looking for a quick fix! then you&#8217;r in the right place&#8230;</p>
<p>To kick off with it&#8217;s worth noting that we are going to be using mySQL Stored procedures, along with the various mySQL built in functions, such as: <a title="External to &quot;dev.mysql.com&quot;" href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_soundex" target="_blank"><em>SOUNDEX()</em></a> et al.</p>
<p>Lets start by building some key parts of our database, begining with the &#8220;tbl_dictionary&#8221;, we are going to need a dictionary to compare our users input against, below I show you the table structure.<span id="more-1028"></span></p>
<p><strong>1. tbl_dictionary</strong></p>
<p><code><br />
CREATE TABLE `tbl_dictionary` (<br />
`fld_id` int(11) NOT NULL auto_increment,<br />
`fld_word` varchar(255) character set latin1 default NULL,<br />
`fld_relation` int(11) default '0',<br />
PRIMARY KEY (`fld_id`),<br />
FULLTEXT KEY `iword` (`fld_word`)<br />
) ENGINE=MyISAM AUTO_INCREMENT=82610 DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Dictionary UK Word List';<br />
</code></p>
<p>you can <a href="http://www.mediamodus.com/wp-content/uploads/2009/12/tbl_dictionary.zip" target="_blank"><strong>download the full dictionary (tbl_dictionary) SQL dump here</strong></a> (should make life a little easier)</p>
<p><strong>2. LEVENSHTEIN Stored Procedure ( Function )</strong></p>
<p>The Levenshtein distance is a metric for measuring the amount of difference between two sequences such as a string, in our case that&#8217;s the difference between our users input and the strings (records) in our database table.</p>
<p>Here is the DDL for the function:</p>
<p><code><br />
CREATE FUNCTION 'LEVENSHTEIN'(s1 VARCHAR(255), s2 VARCHAR(255)) RETURNS int(11)<br />
BEGIN<br />
        DECLARE s1_len, s2_len, i, j, c, c_temp, cost INT;<br />
        DECLARE s1_char CHAR;<br />
        DECLARE cv0, cv1 VARBINARY(256);<br />
        SET s1_len = CHAR_LENGTH(s1), s2_len = CHAR_LENGTH(s2), cv1 = 0x00, j = 1, i = 1, c = 0;<br />
        IF s1 = s2 THEN<br />
          RETURN 0;<br />
        ELSEIF s1_len = 0 THEN<br />
          RETURN s2_len;<br />
        ELSEIF s2_len = 0 THEN<br />
          RETURN s1_len;<br />
        ELSE<br />
          WHILE j &lt;= s2_len DO<br />
           SET cv1 = CONCAT(cv1, UNHEX(HEX(j))), j = j + 1;<br />
          END WHILE;<br />
          WHILE i &lt;= s1_len DO<br />
            SET s1_char = SUBSTRING(s1, i, 1), c = i, cv0 = UNHEX(HEX(i)), j = 1;<br />
            WHILE j &lt;= s2_len DO<br />
                SET c = c + 1;<br />
               IF s1_char = SUBSTRING(s2, j, 1) THEN SET cost = 0; ELSE SET cost = 1; END IF;<br />
                SET c_temp = CONV(HEX(SUBSTRING(cv1, j, 1)), 16, 10) + cost;<br />
                IF c &gt; c_temp THEN SET c = c_temp; END IF;<br />
               SET c_temp = CONV(HEX(SUBSTRING(cv1, j+1, 1)), 16, 10) + 1;<br />
                IF c &gt; c_temp THEN SET c = c_temp; END IF;<br />
                SET cv0 = CONCAT(cv0, UNHEX(HEX(c))), j = j + 1;<br />
            END WHILE;<br />
            SET cv1 = cv0, i = i + 1;<br />
          END WHILE;<br />
        END IF;<br />
        RETURN c;<br />
END;<br />
</code></p>
<p><strong>3.0 LEVENSHTEIN_RATIO Stored Procedure ( Function )</strong></p>
<p>Now we create our next stored function, this one utilises the Levenshtein one we just created, it returns a value between 0 - 100 that indicates how close the match is.</p>
<p>Here&#8217;s the DDL</p>
<p><code><br />
CREATE FUNCTION `LEVENSHTEIN_RATIO`(s1 VARCHAR(255), s2 VARCHAR(255)) RETURNS int(11)<br />
BEGIN<br />
    DECLARE s1_len, s2_len, max_len INT;<br />
    SET s1_len = LENGTH(s1), s2_len = LENGTH(s2);<br />
    IF s1_len &gt; s2_len THEN SET max_len = s1_len; ELSE SET max_len = s2_len; END IF;<br />
   RETURN ROUND((1 - LEVENSHTEIN(s1, s2) / max_len) * 100);<br />
END;<br />
</code></p>
<p><strong>4.0 Our final Stored Procedure DID_YOU_MEAN ( returns dataset )</strong></p>
<p>This function will return a single record as defined by the LIMIT 0,1 in the SP. You could change this and it would return a list in order of closest match.</p>
<p>The first parameter takes a string ( word ) to compare and the second parameter takes an integer that represents the threshold to prevent completely incorrect suggestions being returned, you should play with this figure to find one that best suits your enviroment.</p>
<p>[code]<br />
CREATE PROCEDURE `DID_YOU_MEAN`(IN param1 VARCHAR(255), IN param2 INTEGER(2))<br />
BEGIN<br />
  SELECT<br />
    fld_id,<br />
    tbl_dictionary.fld_word,<br />
    LEVENSHTEIN_RATIO(param1,tbl_dictionary.fld_word)  as Ratio<br />
  FROM<br />
    tbl_dictionary<br />
  WHERE<br />
    SOUNDEX(param1) = SOUNDEX(tbl_dictionary.fld_word)<br />
 HAVING<br />
    LEVENSHTEIN_RATIO(param1,tbl_dictionary.fld_word) &gt; param2<br />
 ORDER BY Ratio DESC<br />
    LIMIT 0,1;<br />
END<br />
[/code]</p>
<p><strong>5.0 How to use</strong></p>
<p>Its straight forward from here.. </p>
<p><strong>Call</strong><br />
      DID_YOU_MEAN(&#8217;Cheeze&#8217;,50) and we get as a result:<br />
      &#8211;&gt; 11691 | cheese | 83</p>
<p>That&#8217;s all folks, enjoy <img src='http://www.mediamodus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Your Comments are Welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/case-studies/add-did-you-mean-function-to-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Spry Tooltip Flicker FIX</title>
		<link>http://www.mediamodus.com/index.php/news/adobe-spry-tooltip-flicker-fix/</link>
		<comments>http://www.mediamodus.com/index.php/news/adobe-spry-tooltip-flicker-fix/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 17:27:13 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[R & D]]></category>

		<category><![CDATA[Web Articles]]></category>

		<category><![CDATA[ad]]></category>

		<category><![CDATA[adobe]]></category>

		<category><![CDATA[adobe spry]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[CS3]]></category>

		<category><![CDATA[CS4]]></category>

		<category><![CDATA[Dreamweaver]]></category>

		<category><![CDATA[fix]]></category>

		<category><![CDATA[flicker]]></category>

		<category><![CDATA[spry]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1025</guid>
		<description><![CDATA[We recently had an oportunity to use the Tooltip widget from the Adobe Spry Framework that ships with Dreamweaver CS4, it worked great until the toolip reached the boundaries of the browser window, at which point it would flicker like mad! Ugly, YES!
A good example of the bug can be found here http://discuss.lionleon.com/testing/spryTooltipBug.php
I fixed this [...]]]></description>
			<content:encoded><![CDATA[<p>We recently had an oportunity to use the Tooltip widget from the Adobe Spry Framework that ships with Dreamweaver CS4, it worked great until the toolip reached the boundaries of the browser window, at which point it would flicker like mad! Ugly, YES!<span id="more-1025"></span></p>
<p>A good example of the bug can be found here <a href="http://discuss.lionleon.com/testing/spryTooltipBug.php"><strong>http://discuss.lionleon.com/testing/spryTooltipBug.php</strong></a></p>
<p><strong>I fixed this</strong> by adding a new option called &#8220;respectBoundaries&#8221; which when set to true will do as it says on the tin.</p>
<p>Here is an example of the fix <a href="http://www.mediamodus.com/spry-tooltip-bug-fix.html"><strong>http://www.mediamodus.com/spry-tooltip-bug-fix.html</strong></a></p>
<p>Below you can download the new version of sprytooltip.js</p>
<p><a href="http://www.mediamodus.com/wp-content/uploads/2009/12/sprytooltip.zip"><strong>Download SpryToolTip.Zip</strong></a> CRC32 = B5B8C398</p>
<p>Enjoy,</p>
<p>Jason.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/news/adobe-spry-tooltip-flicker-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Phishtank Get it Wrong</title>
		<link>http://www.mediamodus.com/index.php/news/phishtank-get-it-wrong/</link>
		<comments>http://www.mediamodus.com/index.php/news/phishtank-get-it-wrong/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 12:17:14 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1023</guid>
		<description><![CDATA[On  Nov 18th 2009 at 3:08 PM our site was submitted to phistank.com by some anonymous urk called PhishReporter, he/she got it wrong!  We have emailed them directly asking to be removed from their now somewhat dubious list. We have never received a response.
The story goes like this, we were testing some functionality for a client [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1024" class="wp-caption alignright" style="width: 302px"><a href="http://www.mediamodus.com/wp-content/uploads/2009/12/phish.png"><img class="size-full wp-image-1024" title="phish" src="http://www.mediamodus.com/wp-content/uploads/2009/12/phish.png" alt="phish? no its a crock!" width="292" height="242" /></a><p class="wp-caption-text">phish? no its a crock!</p></div>
<p>On  Nov 18th 2009 at 3:08 PM our site was submitted to phistank.com by some anonymous urk called PhishReporter, he/she got it wrong!  We have emailed them directly asking to be removed from their now somewhat dubious list. We have never received a response.</p>
<p>The story goes like this, we were testing some functionality for a client using the MS XML Object, the client had requested a degree of automation. Our developers had placed a file on the server to test the XML object was fetching urls correctly ( commonly known as debugging ). The url happened to be homepage of eBay, once loaded by the XML object, the response was written to the client.  That&#8217;s it, the long and the short of it!</p>
<p>Let&#8217;s look at the definition of Phishing,</p>
<p><strong>Wikipedia says:</strong></p>
<p><em>&#8220;In the field of computer security, phishing is the criminally fraudulent process of attempting to acquire sensitive information such as usernames &#8220;</em></p>
<p>Looking at that deffinition it&#8217;s quite clear that our site should not have been and should not be listed on that wesbite.</p>
<p>If anyone at Phishtank.com would like to comment or even respond to our email I welcome your communication.</p>
<p>That&#8217;s all folks <img src='http://www.mediamodus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/news/phishtank-get-it-wrong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>eCommerce Website Solution</title>
		<link>http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/</link>
		<comments>http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 20:19:36 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Digital Marketing]]></category>

		<category><![CDATA[cheap websites]]></category>

		<category><![CDATA[website design]]></category>

		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1010</guid>
		<description><![CDATA[The Long and the Short of it&#8230;
For those who just want to know what it is and what it does!
This website solution is one of our most popular; being a strong all rounder it usable &#8220;straight from the box&#8221;. Your site could be up and running and making you money in no time at all! [...]]]></description>
			<content:encoded><![CDATA[<h3>The Long and the Short of it&#8230;</h3>
<p><strong>For those who just want to know what it is and what it does!</strong></p>
<p style="padding-left: 30px;"><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/righthand_cart_shots.jpg"><img class="alignright size-full wp-image-1021" title="righthand_cart_shots" src="http://www.mediamodus.com/wp-content/uploads/2009/11/righthand_cart_shots.jpg" alt="righthand_cart_shots" width="156" height="481" /></a>This <strong>website solution</strong> is one of our most popular; being a strong all rounder it usable &#8220;straight from the box&#8221;. Your site could be up and running and <strong>making you money</strong> in no time at all! It&#8217;s also a great contender for customisation, should you wish.<span id="more-1010"></span></p>
<p style="padding-left: 30px;">It has a <strong>shopping cart</strong> system with the capacity for <strong>unlimited product</strong> categories, <strong>unlimited products</strong>, and it integrates with the <strong>PAYPAL</strong> system allowing you to <strong>manage sales</strong> and transactions, including refunds, directly from the easy to use<strong> control panel</strong>.</p>
<p style="padding-left: 30px;">Along with the shopping system comes the Wordpress platform for<strong> publishing</strong> your <strong>news</strong> and <strong>events, </strong>and you may choose to maintain <strong>blogs</strong> to help promote your business; all this is already installed and ready for you to <strong>take advantage of straight away</strong>!</p>
<p><strong>So who is using this system now?</strong></p>
<p style="padding-left: 30px;">our portfolio is available by <a href="http://www.mediamodus.com/case-studies/a-selection-of-our-work/" target="_blank"><strong>clicking here</strong></a>, however here are three sites specificly based on this system.</p>
<p style="padding-left: 30px;"><a href="http://www.thespicemarket.co.uk" target="_blank">www.thespicemarket.co.uk</a><br />
<a href="http://www.tridentcateringequipment.co.uk" target="_blank">www.tridentcateringequipment.co.uk</a><br />
<a href="http://www.icklebabe.com" target="_blank">www.icklebabe.com</a></p>
<p><strong>How much does it cost?</strong></p>
<p style="padding-left: 30px;">This solution starts at <strong>£1500.00</strong></p>
<p><strong>Ok I&#8217;m convinced, &#8220;I got to get me this&#8221;! What do I do now?</strong></p>
<p style="padding-left: 30px;">You just need to call us on the number above or<strong> email us</strong> at <a href="mailto:sales@mediamodus.com"><strong>sales@mediamodus.com</strong></a>. Pay the deposit and we will then produce a design based on your feedback. Once approved we will then build the website ready for testing and then it&#8217;s over to you, you can start adding your products and publisihing your news. It really is that simple.</p>
<h3>For those who want more detail, here&#8217;s some of the nitty gritty&#8230;</h3>
<p><strong>The following features are included in this solution:</strong></p>
<ul>
<li>Website Design (ui)</li>
<li>Unlimited Products</li>
<li>Unlimited Categories</li>
<li>Shopping Basket</li>
<li>Checkout</li>
<li>Delivery Details</li>
<li>Optional Weight based Shipping Options</li>
<li>PAYPAL Pro integration as standard</li>
<li>Wordpress Blog integration for publishing your News and Events.</li>
<li>The popular Wordpress CMS System</li>
<li>Wordpress Theme to match Website Design for consistency across your site</li>
<li>Full Shop CMS, Add, Edit Products, Categories etc&#8230;</li>
<li>Order Management Fulfilment, features include Capture, Void, Refund etc..</li>
<li>SEO Friendly URLS</li>
<li>SEO Friendly Pages</li>
</ul>
<h3>Admin Screenshots and Information</h3>
<p style="padding-left: 30px;">The admin control panel is comprehensive, adding  your products and categories is very straight forward. The interface has been modelled on the popular Wordpress &#8220;dashboard&#8221; style for a consistant feel accross the site.</p>

<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_addproduct-2/' title='ecom1_admin_addproduct'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_addproduct-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_categories/' title='ecom1_admin_categories'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_categories-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_categories2/' title='ecom1_admin_categories2'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_categories2-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_company_info/' title='ecom1_admin_company_info'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_company_info-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_order/' title='ecom1_admin_order'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_order-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_paypal/' title='ecom1_admin_paypal'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_paypal-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_productphoto/' title='ecom1_admin_productphoto'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_productphoto-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/ecom1_admin_shipping/' title='ecom1_admin_shipping'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/ecom1_admin_shipping-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/attachment/righthand_cart_shots/' title='righthand_cart_shots'><img src="http://www.mediamodus.com/wp-content/uploads/2009/11/righthand_cart_shots-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

<p><strong>Requirements:</strong> websites hosted at <a href="http://www.vonhost.co.uk/" target="_blank">vonhost.co.uk </a>&#8220;classic&#8221; account, PayPal Pro UK account, SSL Certificate.</p>
<p><strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/digital-marketing/ecommerce-website-solution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is the Really BIG Sale?</title>
		<link>http://www.mediamodus.com/index.php/news/what-is-the-really-big-sale/</link>
		<comments>http://www.mediamodus.com/index.php/news/what-is-the-really-big-sale/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 13:28:05 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Digital Marketing]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[The Soap Box]]></category>

		<category><![CDATA[cheap websites]]></category>

		<category><![CDATA[inexpensive]]></category>

		<category><![CDATA[really big sale]]></category>

		<category><![CDATA[special offer]]></category>

		<category><![CDATA[website]]></category>

		<category><![CDATA[you know the drill]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1007</guid>
		<description><![CDATA[&#8220;Really BIG Sale&#8221; is our promotional engine, each day a new genuine deal will be available and published throughout various social networks. Those of you who are luck nay savvy enough will grab yourself a bargain. This is not one of those faux bargains you see on the highstreet or in your supermarket where items are [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1009" class="wp-caption alignright" style="width: 310px"><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/istock_000009825703xsmall.jpg"><img class="size-medium wp-image-1009" src="http://www.mediamodus.com/wp-content/uploads/2009/11/istock_000009825703xsmall-300x299.jpg" alt="The Really Big Sale" width="300" height="299" /></a><p class="wp-caption-text">The Really Big Sale</p></div>
<p>&#8220;Really BIG Sale&#8221; is our promotional engine, each day a new <strong>genuine</strong> deal will be available and published throughout various social networks. Those of you who are luck <em>nay</em> savvy enough will grab yourself a bargain. This is not one of those faux bargains you see on the highstreet or in your supermarket where items are overpriced for a short time so they can then be marked down as a sale even though the price is what it would have been anyway, NO, this is real! If we say 50% off! that really does mean you get the product/service at half the price it was before and half the price it will be when the offer is over.</p>
<p>To take advantage of a &#8220;Really BIG Sale&#8221; you must take advantage on that day, there is no roll over and tomorrow you cannot take advantage of a deal that was available today, that is just the way it is!</p>
<p>&#8220;Really BIG Sale&#8221; is only available while stocks last and are subject to availability and terms &amp; conditions, you should familiarise yourself with them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/news/what-is-the-really-big-sale/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Everyday Developer Utilities</title>
		<link>http://www.mediamodus.com/index.php/research-and-development/my-everyday-developer-utilities/</link>
		<comments>http://www.mediamodus.com/index.php/research-and-development/my-everyday-developer-utilities/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 10:31:03 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[R & D]]></category>

		<category><![CDATA[The Soap Box]]></category>

		<category><![CDATA[Web Articles]]></category>

		<category><![CDATA[HTTP]]></category>

		<category><![CDATA[Request Editor]]></category>

		<category><![CDATA[software utilites]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=1001</guid>
		<description><![CDATA[Say what?
During my daily development for clients, over the years I have pulled together or written various utilities that speed up and progress things a little a quicker. While mulling over the vast array of them while doing a backup I figured I should share some of them with others, so here they are, enjoy.
Caveat: a software [...]]]></description>
			<content:encoded><![CDATA[<h2>Say what?</h2>
<p>During my daily development for clients, over the years I have pulled together or written various utilities that speed up and progress things a little a quicker. While mulling over the vast array of them while doing a backup I figured I should share some of them with others, so here they are, enjoy.<span id="more-1001"></span></p>
<p><strong>Caveat: </strong>a software on these pages are subject to this <a href="http://www.mediamodus.com/documents/license.pdf" target="_blank"><strong>license</strong></a> and this <a href="http://www.mediamodus.com/documents/warranty.pdf" target="_blank"><strong>warranty</strong></a>, if you do not agree to them then do not use the software. that&#8217;s all <img src='http://www.mediamodus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>HTTP Request Editor</h3>
<p style="padding-left: 30px;"><strong><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/12-11-2009-10-56-27.png"></a><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/12-11-2009-10-56-271.png"><img class="alignright size-medium wp-image-1005" title="12-11-2009-10-56-271" src="http://www.mediamodus.com/wp-content/uploads/2009/11/12-11-2009-10-56-271-270x300.png" alt="12-11-2009-10-56-271" width="270" height="300" /></a>what is it? </strong>It allows you to modify various elements of a http request before sending it to the target URL, you can modify request all headers, modify user-agent and a few other things. It&#8217;s great for testing proxies, websites response to different agents and headers etc&#8230; it returns the list of response headers also.</p>
<p style="padding-left: 30px;"><em>note: im thinking of adding som epost parameters also..</em></p>
<p><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/xff.rar"><strong>Download Now</strong></a> 241kb - crc32 = 18B8E3FC</p>
<h3>Vonhost Connection Tester</h3>
<p style="padding-left: 30px;">For our venhost customers who want to test their connection and the connection of email servers</p>
<p><a href="http://www.mediamodus.com/wp-content/uploads/2009/11/vonhost_contest.zip"><strong>Download Now</strong></a> 299Kb</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/research-and-development/my-everyday-developer-utilities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Spice Market</title>
		<link>http://www.mediamodus.com/index.php/case-studies/the-spice-market/</link>
		<comments>http://www.mediamodus.com/index.php/case-studies/the-spice-market/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 09:00:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Case Studies]]></category>

		<category><![CDATA[the spice market]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=977</guid>
		<description><![CDATA[www.thespicemarket.co.uk
Why?
Lynn and Stuart Dunn have sold a range of spices, herbs, dried fruit and nuts at markets in Grantham and Spalding for more than 20 years. With the pressure of the current economic climate they both felt it was the right time to push the business forward.
They wanted an easy to use website that displayed [...]]]></description>
			<content:encoded><![CDATA[<p>www.thespicemarket.co.uk</p>
<h3>Why?</h3>
<p>Lynn and Stuart Dunn have sold a range of spices, herbs, dried fruit and nuts at markets in Grantham and Spalding for more than 20 years. With the pressure of the current economic climate they both felt it was the right time to push the business forward.<span id="more-977"></span></p>
<p>They wanted an easy to use website that displayed the products clearly; and  it was important that their customers were able to find the products they want as fast as possible and then checkout swiftly.</p>
<p>It goes almost without saying, that the site had to be optimised for search engines.</p>
<h3>What did we do?</h3>
<p>After discussing the requirements we set out about producing the clean look and feel that Lynn and Stuart wanted. We decided that the products should be displayed in multiple boxes  with further details available with nothing more than a click.</p>
<p>Finding the products customers want is quite literally as easy as ABC. Because spelling some exotic  ingredients is sometimes a little hit and miss we suggested allowing customers to find products from the first letter by providing an A to Z menu to compliment the traditional free text search box.</p>
<p><img class="alignright size-full wp-image-979" title="08-09-2009-16-13-06" src="http://www.mediamodus.com/wp-content/uploads/2009/09/08-09-2009-16-13-06.png" alt="08-09-2009-16-13-06" width="582" height="328" /></p>
<p>We built the commerce shopping cart with the idea that some customer will be regulars just like the &#8220;real life&#8221; the market stall, and so, buying a single product should be straightforward and not cost the earth to get delivered. Our solution was to make sure every product had a &#8220;buy now&#8221; and directs the user to the shopping cart. So even from the home page it&#8217;s only one click to the checkout. To ensure customers were happy to make the transition from &#8220;real world&#8221; to website purchase the shipping had to be equivalent to the fuel cost of going to market in the car. Our suggestion of the &#8220;one pound&#8221; delivery charge for small orders was received positively and implemented.</p>
<p>After launch we set about achieving some exposure for the new website, we produced and distributed a press release to various publications and are delighted that the site was featured in the local press http://www.stamfordmercury.co.uk/business/Website-hope-for-spice-firm.5619176.jp</p>
<p>The site continues to grow from strength to strength.</p>
<h3>Quick Details</h3>
<p>What we did in bullet points.</p>
<ul>
<li>1. Consultation,</li>
<li>2. Design,</li>
<li>3. Build</li>
<li>4. Host</li>
<li>5. Post Launch Promotion</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/case-studies/the-spice-market/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Business Development Manager</title>
		<link>http://www.mediamodus.com/index.php/job-vacancies/business-development-manager/</link>
		<comments>http://www.mediamodus.com/index.php/job-vacancies/business-development-manager/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 13:45:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[Job Vacancies]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=950</guid>
		<description><![CDATA[We&#8217;re a young, fresh thinking web consultancy company, delivering quality websites to business big and small.
We have a unique opportunity for a business development manager with proven B2B experience in online, e-commerce, website sales or subscription businesses. This is a chance to join a small agency with big ideas.
you will be:

identifying and developing opportunities to [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-950"></span>We&#8217;re a young, fresh thinking web consultancy company, delivering quality websites to business big and small.</p>
<p>We have a unique opportunity for a business development manager with proven B2B experience in online, e-commerce, website sales or subscription businesses. This is a chance to join a small agency with big ideas.</p>
<p><strong>you will be:</strong></p>
<ul>
<li>identifying and developing opportunities to drive customer acquisition</li>
<li>running our online strategy, DM campaigns and developing partnerships</li>
<li>managing budgets as the business grows</li>
</ul>
<p><strong>you must have:</strong></p>
<ul>
<li>an analytical approach with the ability to set and drive an ambitious marketing agenda</li>
<li>good organisational and managerial skills with the ability to juggle multiple projects</li>
<li>a passion for the Internet and the positive impact it can have for clients</li>
</ul>
<p>We&#8217;re currently based in Linconshire and plan to make a break for the city in the future. Our passion the success of our clients, whether a new website, an update to an old one or achieving greater visitor and sales figures; this is a truly exciting time here at Media Modus and a great opportunity to grow with us. Salary Circa &pound;25,000 to &pound;35,000 (based on experience)</p>
<p><strong>to apply:</strong></p>
<p>Send your CV with your Covering letter to <a href="mailto:jobs@mediamodus.com">jobs@mediamodus.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/job-vacancies/business-development-manager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Selection of Our Work</title>
		<link>http://www.mediamodus.com/index.php/case-studies/a-selection-of-our-work/</link>
		<comments>http://www.mediamodus.com/index.php/case-studies/a-selection-of-our-work/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:43:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Case Studies]]></category>

		<category><![CDATA[clients]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[showcase]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=997</guid>
		<description><![CDATA[Here at Media Modus we are proud of what we have done! So we thought we would show you a selection of the websites we have designed and developed!

So please have a look below and visit the websites!


client: www.avelandtrees.co.uk
work: website design and development dynamic brochure wesbite including blog and content mangement system



client: www.bournedentalpractice.co.uk
work: website design [...]]]></description>
			<content:encoded><![CDATA[<p>Here at Media Modus we are proud of what we have done! So we thought we would show you a selection of the websites we have designed and developed!</p>
<p><span id="more-997"></span></p>
<p>So please have a look below and visit the websites!</p>
<ul id="showcase">
<li><a title="aveland trees" rel="external nofollow" href="http://www.avelandtrees.co.uk"><img class="showcaseImage" src="/interface/images/showcase/aveland-trees-website.jpg" alt="aveland trees website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="aveland trees" rel="external nofollow" href="http://www.avelandtrees.co.uk">www.avelandtrees.co.uk</a><br />
<span class="highlight">work:</span> website design and development dynamic brochure wesbite including blog and content mangement system</div>
<p class="clear">
</li>
<li><a title="bourne dental practice" rel="external nofollow" href="http://www.bournedentalpractice.co.uk"><img class="showcaseImage" src="/interface/images/showcase/bourne-coningsby-dentist.jpg" alt="bourne dental practice" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="bourne dental practice" rel="external nofollow" href="http://www.bournedentalpractice.co.uk">www.bournedentalpractice.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure wesbite</div>
<p class="clear">
</li>
<li><a title="bourne hypnotherapy" rel="external nofollow" href="http://www.bournehypnotherapy.co.uk"><img class="showcaseImage" src="/interface/images/showcase/bourne-hypnotherapy-website.jpg" alt="bourne hypnotherapy website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="bourne hypnotherapy" rel="external nofollow" href="http://www.bournehypnotherapy.co.uk">www.bournehypnotherapy.co.uk</a><br />
<span class="highlight">work:</span> website design only for static brochure website</div>
<p class="clear">
</li>
<li><a title="cherry holt garden centre" rel="external nofollow" href="http://www.cherryholtgardencentre.co.uk"><img class="showcaseImage" src="/interface/images/showcase/cherry-holt-garden-centre-website.jpg" alt="cherry holt garden centre" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="cherry holt garden centre" rel="external nofollow" href="http://www.cherryholtgardencentre.co.uk">www.cherryholtgardencentre.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure wesbite</div>
<p class="clear">
</li>
<li><a title="funtrax" rel="external nofollow" href="http://www.funtrax.co.uk"><img class="showcaseImage" src="/interface/images/showcase/funtrax-website.jpg" alt="funtrax website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="funtrax" rel="external nofollow" href="http://www.funtrax.co.uk">www.funtrax.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure website</div>
<p class="clear">
</li>
<li><a title="iclebabe" rel="external nofollow" href="http://www.iclebabe.com"><img class="showcaseImage" src="/interface/images/showcase/iclebabe-website.jpg" alt="icklebabe website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="iclebabe" rel="external nofollow" href="http://www.iclebabe.com">www.iclebabe.com</a><br />
<span class="highlight">work:</span> website design and development ecommerce website</div>
<p class="clear">
</li>
<li><a title="ip performance" rel="external nofollow" href="http://www.ipperformance.co.uk"><img class="showcaseImage" src="/interface/images/showcase/ip-performance-website.jpg" alt="ip performancewebsite" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="ip performance" rel="external nofollow" href="http://www.ipperformance.co.uk">www.ipperformance.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure website</div>
<p class="clear">
</li>
<li><a title="moo.to" rel="external nofollow" href="http://www.moo.to"><img class="showcaseImage" src="/interface/images/showcase/moo-to-website.jpg" alt="moo.to" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="moo.to" rel="external nofollow" href="http://www.moo.to">www.moo.to</a><br />
<span class="highlight">work:</span> website design and development URL shortening service website</div>
<p class="clear">
</li>
<li><a title="mydish" rel="external nofollow" href="http://www.mydish.co.uk"><img class="showcaseImage" src="/interface/images/showcase/my-dish-website.jpg" alt="mydish website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="mydish" rel="external nofollow" href="http://www.mydish.co.uk">www.mydish.co.uk</a><br />
<span class="highlight">work:</span> website design and development social recipe website</div>
<p class="clear">
</li>
<li><a title="penmaen media" rel="external nofollow" href="http://www.penmaen-media.co.uk"><img class="showcaseImage" src="/interface/images/showcase/penmaen-media-website.jpg" alt="penmaen media website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="penmaen media" rel="external nofollow" href="http://www.penmaen-media.co.uk">www.penmaen-media.co.uk</a><br />
<span class="highlight">work:</span> website design and development dynamic brochure wesbite including blog and content mangement system</div>
<p class="clear">
</li>
<li><a title="rapid signs" rel="external nofollow" href="http://www.rapid-signs.com"><img class="showcaseImage" src="/interface/images/showcase/rapid-signs-website.jpg" alt="rapid signs website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="rapid signs" rel="external nofollow" href="http://www.rapid-signs.com">www.rapid-signs.com</a><br />
<span class="highlight">work:</span> website design and development static brochure website</div>
<p class="clear">
</li>
<li><a title="the pure bicycle company" rel="external nofollow" href="http://www.thepurebicyclecompany.co.uk"><img class="showcaseImage" src="/interface/images/showcase/the-pure-bicycle-company-website.jpg" alt="the pure bicycle company" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="the pure bicycle company" rel="external nofollow" href="http://www.thepurebicyclecompany.co.uk">www.thepurebicyclecompany.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure website</div>
<p class="clear">
</li>
<li><a title="the spice market " rel="external nofollow" href="http://www.thespicemarket.co.uk"><img class="showcaseImage" src="/interface/images/showcase/the-spice-market-website.jpg" alt="the spice market website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="the spice market " rel="external nofollow" href="http://www.thespicemarket.co.uk">www.thespicemarket.co.uk</a><br />
<span class="highlight">work:</span> website design and development ecommerce website including blog to replicate the chatter at the market stall</div>
<p class="clear">
</li>
<li><a title="twitterfuzz" rel="external nofollow" href="http://www.twitterfuzz.com"><img class="showcaseImage" src="http://www.mediamodus.com/wp-content/uploads/2009/09/twitterfuzz.jpg" alt="twitterfuzz" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="twitterfuzz" rel="external nofollow" href="http://www.twitterfuzz.com">www.twitterfuzz.com</a><br />
<span class="highlight">work:</span> website design and development dynamic brochure wesbite including blog and ecommerce system</div>
<p class="clear">
</li>
<li><a title="wright lights" rel="external nofollow" href="http://www.wrightlights.co.uk"><img class="showcaseImage" src="/interface/images/showcase/wright-lights-website.jpg" alt="wright lights website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="wright lights" rel="external nofollow" href="http://www.wrightlights.co.uk">www.wrightlights.co.uk</a><br />
<span class="highlight">work:</span> website design and development ecommerce website to showcase sumptuious lights</div>
<p class="clear">
</li>
<li><a title="zorba kebabs" rel="external nofollow" href="http://www.zorbakebabs.co.uk"><img class="showcaseImage" src="/interface/images/showcase/zorba-kebabs-website.jpg" alt="wright lights website" width="200" height="156" /></a>
<div class="showcaseWords"><span class="highlight">client:</span> <a title="zorba kebabs" rel="external nofollow" href="http://www.zorbakebabs.co.uk">www.zorbakebabs.co.uk</a><br />
<span class="highlight">work:</span> website design and development static brochure website including menu</div>
<p class="clear">
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/case-studies/a-selection-of-our-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>We Make it into the Newspapers</title>
		<link>http://www.mediamodus.com/index.php/news/we-make-it-into-the-newspapers/</link>
		<comments>http://www.mediamodus.com/index.php/news/we-make-it-into-the-newspapers/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 16:10:44 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Digital Marketing]]></category>

		<category><![CDATA[Internet Success]]></category>

		<category><![CDATA[Marketing]]></category>

		<category><![CDATA[Mydish]]></category>

		<category><![CDATA[mydish.co.uk]]></category>

		<category><![CDATA[Shoe String Budget]]></category>

		<category><![CDATA[social media]]></category>

		<category><![CDATA[Success]]></category>

		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.mediamodus.com/?p=944</guid>
		<description><![CDATA[We&#8217;ve only gone and done it, we&#8217;ve made our way into the local press.
One of our clients ( mydish.co.uk ) hit the big time, appearing in front of the dragons on the BBC&#8217;s prime time show &#8220;Dragons Den&#8221;. After hours of duelling both Deborah Meaden and Theo Pathetis were interested, Theo offered Carol Savage a [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>We&#8217;ve only gone and done it, we&#8217;ve made our way into the local press.</strong></h3>
<div id="attachment_928" class="wp-caption alignright" style="width: 291px"><img class="size-full wp-image-928" title="Media Modus in the Citizen" src="http://www.mediamodus.com/wp-content/uploads/2009/08/citixen.jpg" alt="Media Modus in the News" width="281" height="229" /><p class="wp-caption-text">Media Modus in the News</p></div>
<p>One of our clients ( <a href="http://www.mydish.co.uk/" target="_blank">mydish.co.uk</a> ) hit the big time, appearing in front of the dragons on the BBC&#8217;s prime time show &#8220;Dragons Den&#8221;. After hours of duelling both Deborah Meaden and Theo Pathetis were interested, Theo offered Carol Savage a job but it was Deborah with the first offer, she wanted more equity for her money asking for 15%, Theo quickly followed with an offer of his own. He wanted to take 30% of the company as a split between them, after what seemed a short but awesome moment the offer was rejected and Carol chose Deborah as the dragon of choice. Now they have Deborah as part of their already excellent team the future is going to be a very exciting time for all concerned.</p>
<h3><strong>So what has this to do with us?</strong></h3>
<p>We built it! I remember sitting with Carol in her home discussing her next project, A few ideas were thrown around but none did she show more passion for than &#8220;the recipe website&#8221;. It was going to allow people to upload their recipes to keep safe and share with friends and family, it wasn&#8217;t long before the idea had grown into a full blown social networking site with massive potential for growth.</p>
<p>At this stage budget was in question, calling it a &#8220;shoe string&#8221; was giving it too much credit ( excuse the pun ), it was going to take someone with absolute belief and 100% commitment to build the site.</p>
<p>There was no doubt about Carols expertise and her ability to take this idea to the next level. She was already accomplished with several businesses under her belt, having an amazing power of persuasion, she needed a developer as committed ( and excited ) as she was and that is where we came in. I swear if she had told me the sky was a funny shade orange I would have believed her.</p>
<p>We were able to take the idea and make it a reality, becoming part of the team and working closely with Carol not forgetting to mention one of the finest minds Ken and marketing genius Helga we set about building this thing.</p>
<p>It was clear, we were going to have to use some tried and tested technology, now was not the time for huge learning curves we had to be sure that if things go wrong which invariably they do, we were able to lift the hood and fix it ourselves. The budget was not going to carry the weight of any other way. Out were third party tools and <em>in</em> was building it ourselves, we decided we would have to be intimate with our code and systems, flexibility and agility were going to be key to helping Carol do what she needed to do and this was the only way.</p>
<p>The story is a long one with many twists and turns, off hand it spans a year and half maybe more, it&#8217;s an exciting one with ups and downs, lows and highs. I will post more of the story in due course. For now suffice it to say, we are ecstatic and congratulate Carol on her success and admire her Tenacity, I suspect the future is going to be great for mydish.co.uk and all who sail in her.</p>
<p>Well done and Congratulations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediamodus.com/index.php/news/we-make-it-into-the-newspapers/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
