<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>domioanna</title>
	
	<link>http://www.domioanna.com</link>
	<description>Freelance Web Designer</description>
	<lastBuildDate>Fri, 17 Sep 2010 00:36:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DomIoanna" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="domioanna" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Resolving jQuery conflicts with other javascript libraries</title>
		<link>http://www.domioanna.com/code/javascript/resolving-jquery-conflicts-with-other-javascript-libraries/</link>
		<comments>http://www.domioanna.com/code/javascript/resolving-jquery-conflicts-with-other-javascript-libraries/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 23:42:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.domioanna.com/?p=147</guid>
		<description><![CDATA[Ever had conflicting javascript libraries? Trying to run jQuery and Prototype side by side?]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.domioanna.com/wp-content/uploads/2010/09/jquery-noconflict.jpg" alt="" title="jquery-noconflict" width="630" height="200" class="alignleft size-full wp-image-166" /></p>
<p>One of the reasons that make a software popular is its extensions and plugins. jQuery has plenty of plugins that do almost anything you want, from simple button hide to full blown galleries. Plugins let non developers easily add functionality they need to their websites and there are times when one might include more than one javascript library such as prototype.js, YUI or mootools with jQuery. They all use $ as their main function name. Including second library might brake the behavior of the first one. To resolve such cases jQuery introduces .noConflict() method.</p>
<p>When you call .noConflict() jQuery will return $() to it’s previous owner and you will need to use jQuery() instead of shorthand $() function.</p>
<p>Add the following code to your &lt;head> tag.</p>
<pre>
&lt;script src="prototype.js"> &lt;/script>
&lt;script src="jquery.js"> &lt;/script>

&lt;script>
    jQuery.noConflict();
    // Use jQuery via jQuery(...)

    jQuery(document).ready(function(){
        jQuery("div").hide();
    });

    // Use Prototype with $(...), etc.
    $('someid').hide();

&lt;/script></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.domioanna.com/code/javascript/resolving-jquery-conflicts-with-other-javascript-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unzip an uploaded file using PHP</title>
		<link>http://www.domioanna.com/code/php/unzip-an-uploaded-file-using-php/</link>
		<comments>http://www.domioanna.com/code/php/unzip-an-uploaded-file-using-php/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 13:33:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.domioanna.com/?p=123</guid>
		<description><![CDATA[I have been looking everywhere to try and find out how to do this.  Some 'solutions' on the web left me at a dead end, but I finally worked out how to do it.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.domioanna.com/wp-content/uploads/2010/09/unzip-php.jpg" alt="" title="unzip-php" width="630" height="200" class="alignleft timthumb size-full wp-image-163" /><br />
I have been looking everywhere to try and find out how to do this.  Some &#8216;solutions&#8217; on the web left me at a dead end, but I finally worked out how to do it.</p>
<p>This is presuming you don&#8217;t have shell access to your server.</p>
<p>Simply create a file in the same directory as the ZIP file you wish to extract, and call it whatever you like.  I use &#8216;unzip.php&#8217;.</p>
<p>Edit the file, and paste in the following code.</p>
<pre> &lt;?php
     $zip = new ZipArchive;
     $res = $zip-&gt;open(’my_zip_file.zip’);
     if ($res === TRUE) {
         $zip-&gt;extractTo(’my_extract_to_dir/’);
         $zip-&gt;close();
         echo ‘ok’;
     } else {
         echo ‘failed’;
     }
?&gt;</pre>
<p>Change the name of &#8216;my_zip_file.zip&#8217; to whatever your ZIP file is called.  Then change the &#8216;my_extract_to_dir/&#8217; to whatever directory on your server you wish to extract the ZIP to.</p>
<p>Once you have done, save the file and go to it through your browser ( http://www.<strong>youdomain.com</strong>/<strong>unzip.php</strong> ). If your browser echo&#8217;s out &#8216;ok&#8217; then your file is extraced.  If your browser echo&#8217;s out &#8216;failed&#8217; you&#8217;ve filled in one of the bits of info wrong.</p>
<p>Basically it extracts the ZIP file into the directory you specify… make sure the directory you want to extract it to has write permissions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domioanna.com/code/php/unzip-an-uploaded-file-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimisation for Beginners</title>
		<link>http://www.domioanna.com/marketing/seo/search-engine-optimisation-for-beginners/</link>
		<comments>http://www.domioanna.com/marketing/seo/search-engine-optimisation-for-beginners/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 22:36:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.domioanna.com/?p=99</guid>
		<description><![CDATA[There are a few basic search engine optimisation techniques which I still see people missing.  These simple additions should really be the first thing you would include to stay ahead of competitors.]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p><img src="http://www.domioanna.com/wp-content/uploads/2009/03/seo-for-beginners.jpg" alt="" title="seo-for-beginners" width="630" height="200" class="alignleft timthumb size-full wp-image-159" /><br />
As most of you will already know, Google is rated by many as the number one search engine in the world.  Infact, the term &#8216;Google it&#8217; seems to have turned into an everyday phrase.</p>
<p>There are a few basic search engine optimisation techniques which I still see people missing.  These simple additions should really be the first thing you would include to stay ahead of competitors.</p>
<h3>The Right Keywords</h3>
<p>Choosing the right keywords to base your site optimisation around is an important first step. General or generic keywords are usually not the best approach, and sometimes it&#8217;s better to be a little more specific and focus on niche keywords relating to your product or service.</p>
<p>Be specific, which means:</p>
<ul>
<li>Targeting a more suitable market that is looking for a content editing solution</li>
<li>Competing with fewer websites targeting the same keywords</li>
<li>Optimising for keywords that people actually use when performing searches</li>
</ul>
<p>Depending on your website, your products or the services you offer, you need to be specific with your keywords, and remember that people no longer use single keyword search phrases &#8211; the average search phrase contains 3-5 related words.</p>
<p>For example, if you&#8217;re optimising for a web development site and you&#8217;re located in Bradford, West Yorkshire, use keywords such as &#8220;web, development, bradford&#8221; or &#8220;web, development, west, yorkshire&#8221; would be a good start.</p>
<p>Remember, don&#8217;t keyword stuff!!!</p>
<p>Too many times have I seen website with the keywords such as &#8220;web design, web designer, designer, web, web developer, web site designer, web site developer&#8221;.  This might look like you have lots of keywords geared toward web design, but believe it or not Google will not respond well to this and will mark you down for keyword stuffing.  Why have a phrase of 14 words, when 3 will do.</p>
<h3>URL and Title Tag</h3>
<p>These are two of the most determining factors in Google&#8217;s ranking. For example, a domain name such as: http://www.webdevelopmentbradford.com will generally get ranked higher than http://www.companyname.com, assuming that they had identical keywords and page content.</p>
<p>Your title tag is equally as important as your domain name. Using keywords in your title tag can improve your Google ranking significantly.  For example:</p>
<p>&lt;title&gt;&#8221;Company name, affordable web development services in Bradford, West Yorkshire&#8221;&lt;/title&gt;</p>
<h3>H1 Tags and Keyword Density</h3>
<p>&lt;h1&gt; tags seem to have been depreciated by stylesheets these days, and are not used as often as they used to be.  The Google ranking algorithm dictates that if you&#8217;re using a &lt;h1&gt; tag, then the text in between this tag must be more important than the content on the rest of the page. Here&#8217;s a quick example:</p>
<p>Sprinkling keywords throughout your page content can also improve your sites keyword density.  Keyword density means the ratio of optimised keywords to the rest of the content on your page. It is usually expressed as a percentage, and should be between 7% and 10% for each page on your site.  There are a few sites out there to help you along with making sure you&#8217;re not keyword stuffing, but in my opinion <a href="http://www.rankingtoday.com" target="_blank">www.rankingtoday.com</a> is definately a tool to have in your arsenal for Search Engine Optimisation.</p>
<h3>Links, Links and More Links</h3>
<p>Back links are websites that link directly to your website. The general principal is the more back links you have, the higher your pages will be ranked, as your website must be good if so many other sites are linking back to it.</p>
<p>One of the easiest ways to get backlinks if you run a web development company is by simply adding a simple link to the bottom of each of your client&#8217;s websites, with your clients permission of course, such as:</p>
<blockquote><p>&lt;a href=http://www.yoursite.com&gt;Web development by Company Name&lt;/a&gt;</p></blockquote>
<h3 style="font-weight: bold;">Validate your HTML</h3>
<p>One thing people overlook is that there HTML doesn&#8217;t validate.  While this isn&#8217;t always a major worry, if you want to get further up the search engine let get tidying up.  Use the <a href="http://validator.w3.org" target="_blank">W3C Validator </a>to check if you have any errors in your HTML.  If you do, find out what they are from the report and fix them.  Depending on how many errors you have, it shouldn&#8217;t take too long to resolve them and it will benefit your site.</p>
<h3 style="font-weight: bold;">Conclusion</h3>
<p>People say &#8220;Google is a tough search engine to crack&#8221;.  Truth is, its not (as long as you do as Google likes, and steer clear of hinderances). Hopefully  I provided you with the basic tips to get started optimising both yours and your clients website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domioanna.com/marketing/seo/search-engine-optimisation-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunascape Web Browser, perfect for cross-browser developing</title>
		<link>http://www.domioanna.com/technology/lunascape-web-broswer/</link>
		<comments>http://www.domioanna.com/technology/lunascape-web-broswer/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 14:01:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.domioanna.com/?p=77</guid>
		<description><![CDATA[Whilst stumbling around the web the other day, I came across a web browser called Lunascape.  Having not heard of this before, I read through the browsers features.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-79 alignright" title="Lunascape 5 Genesis" src="http://www.domioanna.com/wp-content/uploads/2009/03/lunascape.jpg" alt="Lunascape 5 Genesis" width="110" height="153" />Whilst stumbling around the web the other day, I came across a web browser called Lunascape.  Having not heard of this before, I read through the browsers features.</p>
<p>Impressed with what I read about the different rendering engines built into one, and that is it the &#8216;Fastest Browser&#8217;, plus getting 100 / 100 on the Acid 3 test, I decided to test it out.</p>
<h3>Switch Rendering Engines</h3>
<p><span id="dnn_ctr416_HtmlModule_lblContent" class="Normal">Thats right, three different rendering engines built into one browser.  Internet Explorer’s Trident, Firefox’s Gecko and Safari’s / Chrome’s WebKit all incorporated the ability to switch between rendering engines can allow web designers/developers to avoid browser specific issues with certain web sites. </span></p>
<h3>Fully Customizable with Skins</h3>
<p><span id="dnn_ctr416_HtmlModule_lblContent" class="Normal">Skins can be installed very quickly and easily, and with 200+ to choose from, you can personalise to your hearts content.  To be fair, some of the skins are a little tacky, but there are a few cool ones in there too.</span></p>
<h3>Abundant Plug-ins</h3>
<p>Lunascape have a vast library of plug-ins available to further expand the potential power of this browser.</p>
<p>To see how this browser can benefit you, simple download and install it from <a href="http://www.lunascape.tv" target="_blank">www.lunascape.tv</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.domioanna.com/technology/lunascape-web-broswer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

