<?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"?><!-- generator="wordpress/2.3.2" --><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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Andyrew</title>
	<link>http://www.andyrew.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Fri, 07 Mar 2008 17:53:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Andyrew" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Make Wordpress blogs SEO friendly - Part 1</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/ZqUFBkqt2_s/</link>
		<comments>http://www.andyrew.com/articles/make-wordpress-blogs-seo-friendly-part-1/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 01:19:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/articles/make-wordpress-blogs-seo-friendly-part-1/</guid>
		<description><![CDATA[For a long time, i ignored the importance of SEO. I figured that having quality content, and quality content alone would get me to the moon and back. It doesn&#8217;t.
Can you imagine how many of your first time visitors come from search engines? You can&#8217;t. Forget the return visitors for a second. The first time, [...]]]></description>
			<content:encoded><![CDATA[<p>For a long time, i ignored the importance of SEO. I figured that having quality content, and quality content alone would get me to the moon and back. It doesn&#8217;t.</p>
<p>Can you imagine how many of your first time visitors come from search engines? You can&#8217;t. Forget the return visitors for a second. The first time, a visitor ever visits your site - There is around a 70-80% chance that they will have arrived from a search engine.  (others including email refers, website refers, etc).</p>
<p>Let&#8217;s just imagine your website gets 10,000 visitors a day. We take your search engine traffic away.. which leaves you with around 2-3,000.. Poor. Now, imagine the opposite effect, and you get more search engine traffic than you already do..</p>
<p>Markets for blogs such as this one, are saturated. So, you need to take time into increasing your rankings, because they account for more traffic than you think. I&#8217;ll show you a few techniques that you should be using, and how to easily achieve them in your wordpress blog.</p>
<h3>1. Proper Placement and Use of Header Tags</h3>
<p>Depending on what theme you&#8217;re using, especially if it&#8217;s a custom one &#8212; Your header tags will be poorly placed, or non existent. the h1 being the most important tag! Make sure you put it as soon as possible after the &lt;body&gt; tag.</p>
<blockquote><p>&lt;h1&gt;&lt;a href=&#8221;&lt;?php echo get_option(&#8217;home&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8217;name&#8217;); ?&gt;&lt;/a&gt;&lt;/h1&gt;</p></blockquote>
<p>Make sure that is in your header.php; The first thing that a search engine wants to know is what your blog is about.</p>
<p>There&#8217;s also a &lt;h2&gt; tag, which should be placed in your <strong>Main index template, Search Results, Single Post</strong> and <strong>Page Template</strong>, which stands as the title for the posts. Obviously, the titles of the posts are EXTREMELY important!</p>
<blockquote><p>&lt;h2&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</p></blockquote>
<p>Search engines take the header tags seriously. Make sure you include h3, h4, h5 and h6 too (They get less important as the number gets higher)</p>
<h3>2. Domain Canonicalization</h3>
<p>Many people think that http://Website.com, and http://www.website.com are the same, search engines don&#8217;t.</p>
<p>I can&#8217;t really elaborate anymore on this. Those are effectively seen as different, different page ranks, different search results.. make your life, and the search engines life allot easier and just stick with one of them.</p>
<blockquote><p><a href="http://scott.yang.id.au/code/permalink-redirect/" target="_blank">http://scott.yang.id.au/code/permalink-redirect/</a> &#8212; Wordpress Plugin</p></blockquote>
<p>If you&#8217;re not using wordpress, I wont leave you out.. Just add this to your .htaccess file</p>
<blockquote><p>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [NC]<br />
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]</p></blockquote>
<h3>3. Permalinks</h3>
<p>As useful as PHP and other server side scripts are, search engines doesn&#8217;t see it as a static page. Let&#8217;s take for example..</p>
<ul>
<li>http://www.site.com/page.php?page=photoshop</li>
</ul>
<p>&#8216;page&#8217; is only a variable there.. That could be changed to anything, but.. effectively - it&#8217;s still part of page.php.</p>
<p>Wordpress is set by default to present your site in the exact same way.. http://www.andyrew.com/?p=123 &#8212; See?</p>
<p>In wordpress, go to Options &gt; Permalinks - And set your custom permalink structure to..</p>
<blockquote><p>/%category%/%postname%/</p></blockquote>
<p>And then just copy and paste your new .htaccess file that wordpress gives you. PHew!</p>
<p>Again, for those of you not running wordpress.. here is a basic code (Obiviously, you&#8217;ll need to play about with it)</p>
<blockquote><p>RewriteEngine on<br />
RewriteRule ^/pages/([^/]+)/?$  pages.php?&amp;page=$1 [L]</p></blockquote>
<p>(If you&#8217;re having trouble, leave a comment and i&#8217;ll try and help you out)</p>
<blockquote></blockquote>
<p>That&#8217;s it for part 1. Check back in a few days, and i&#8217;ll post section two. <a href="http://feeds.feedburner.com/Andyrew" target="_blank">Please subscribe to the RSS feed</a></p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/ZqUFBkqt2_s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/articles/make-wordpress-blogs-seo-friendly-part-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/articles/make-wordpress-blogs-seo-friendly-part-1/</feedburner:origLink></item>
		<item>
		<title>Selling AddMyLayout</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/i_sYlu8TjLI/</link>
		<comments>http://www.andyrew.com/projects/selling-addmylayout/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 17:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/bullshit-bin/selling-addmylayout/</guid>
		<description><![CDATA[Technorati Profile
Firstly i made some subtle changes to the design of the blog. By subtle, i mean adding a big orange RSS button to the bottom of every post. Tada.
Time has come to sell things that I no longer need. I probablly snet about $200 on AddMyLayout in total, and maybe 10 hours personal work [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technorati.com/claim/4r3fajc3y" rel="me">Technorati Profile</a></p>
<p>Firstly i made some subtle changes to the design of the blog. By subtle, i mean adding a big orange RSS button to the bottom of every post. Tada.</p>
<p>Time has come to sell things that I no longer need. I probablly snet about $200 on AddMyLayout in total, and maybe 10 hours personal work time. I don&#8217;t expect my $200 back for the site, but it would be nice.</p>
<p>It&#8217;s probabalyl safe to say this project failed. Not failed in a sense that, i tried the site and it didn&#8217;t work like i wanted it to, but - Failed in a way that i never had time for it.</p>
<p><a href="http://www.sitepoint.com/marketplace/auction/21858"></a></p>
<p style="text-align: center"><a href="http://www.sitepoint.com/marketplace/auction/21858"><img src="http://www.sitepoint.com/marketplace/auctionimage/21858" alt="View Auction" /></a></p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/i_sYlu8TjLI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/selling-addmylayout/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/selling-addmylayout/</feedburner:origLink></item>
		<item>
		<title>12 Ways to make your potential RSS subscribers, subscribe.</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/kSdR_a_WT0I/</link>
		<comments>http://www.andyrew.com/articles/12-ways-to-make-your-potential-rss-subscribers-subscribe/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 16:01:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/articles/12-ways-to-make-your-potential-rss-subscribers-subscribe/</guid>
		<description><![CDATA[If a potential RSS subscriber visits your page, how do you get them to subscribe.. rather than scare them away? Very subtle differences can make a reader self-consciously lean one way or another.
Post everyday/Stay on Topic
I&#8217;m sorry. I know this is a cliché.. so I wont delve any further into it.
Use large Orange RSS button
People [...]]]></description>
			<content:encoded><![CDATA[<p>If a potential RSS subscriber visits your page, how do you get them to subscribe.. rather than scare them away? Very subtle differences can make a reader self-consciously lean one way or another.</p>
<h3>Post everyday/Stay on Topic</h3>
<p>I&#8217;m sorry. I know this is a cliché.. so I wont delve any further into it.</p>
<h3>Use large Orange RSS button</h3>
<p>People often associate RSS with the huge orange button. Having a small green one, like i have at the minute, wont mean anything to allot of readers. Get their attention. It goes without saying that something that is large or colourful will often stand out in a crowd&gt;</p>
<h3>RSS button above the fold</h3>
<p>Everything that has any important goes above the fold in a page. The headers, the adverts, the navigation&#8230; Having your button in view when the user first visits the site, makes them aware that it&#8217;s there. Having it in the footer, isn&#8217;t going to help anyone</p>
<h3>Subscribe by email</h3>
<p>You know that millions of people use RSS readers, but that&#8217;s only a percentage of people that use the Internet. Giving users the option to subscribe by email will include almost everyone with access to the Internet, not just the ones with a feed reading program</p>
<h3>Steps needed to subscribe</h3>
<p>&#8220;Visit this page, and then this page, then click here, and here&#8221; &#8212; Noone wants that. &#8216;Click here&#8217; is fine.</p>
<h3>What is RSS and how to get started</h3>
<p>RSS seems to simple doesn&#8217;t it? It isn&#8217;t for someone who has never used it. Can you remember where you first learned how to subscribe to someone’s RSS feed? Having a quick little guide on your site wont do any harm</p>
<h3>Ask them to subscribe</h3>
<p>As the saying goes, &#8216;those who don&#8217;t ask, don&#8217;t receive&#8217;.. Just having a little message at the bottom of all of your blog posts reminding your users to subscribe. The worst that can happen is that they don&#8217;t.</p>
<h3>Email your commenters</h3>
<p>If someone has took the time to comment on your blog, chances are they&#8217;re interested in what you have to say. Emailing them asking to subscribe again, can only really help you. Whilst you&#8217;re never going to get 1,000,000 subscribers by doing this - You can get a few just for the short amount of time that it takes</p>
<h3>Interesting headlines</h3>
<p>What&#8217;s better, &#8220;How to get traffic to your website&#8221;, or.. &#8220;10 Guaranteed ways to get traffic to your new blog&#8221;. Imagine seeing them both on your RSS program, or in a search engine.. or anywhere, which one would you click?</p>
<h3>Offer something for subscribing</h3>
<p>As hard as you might think this is, you&#8217;re wrong. I have found a great little program that will only show links and text to those who are reading through RSS. Having a &#8220;Please subscribe for the link to this free template&#8221; For example..</p>
<h3>Guest blogging</h3>
<p>Imagine blogging on a similar related blog to yours, with 1000 RSS subscribers. They are all interested in what you have to say.. they already know and use RSS, and chances are they&#8217;re not subscribed to your feed already, success!</p>
<h3>Don&#8217;t publicise the number you have</h3>
<p>Let&#8217;s face it. The fact that you have 4 RSS subscribers isn&#8217;t going to convince anyone that your blog is worth reading, unless you have about 150+. Keep it a secret.. at least for a little while.</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/kSdR_a_WT0I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/articles/12-ways-to-make-your-potential-rss-subscribers-subscribe/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/articles/12-ways-to-make-your-potential-rss-subscribers-subscribe/</feedburner:origLink></item>
		<item>
		<title>7 Ways to Keep motivated whilst working</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/MU0C24ZCnX0/</link>
		<comments>http://www.andyrew.com/articles/7-ways-to-keep-motivated-whilst-working/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 16:54:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Bullshit Bin]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/bullshit-bin/7-ways-to-keep-motivated-whilst-working/</guid>
		<description><![CDATA[Being very lazy, I find it difficult to keep motivated throughout the day, and without these simple procedures.. I&#8217;d imagine it would be allot harder.
Whilst working a straight 6 hours without blinking can be rewarding in the short run, it will tire you out and put you off doing similar sorts of work in the [...]]]></description>
			<content:encoded><![CDATA[<p>Being very lazy, I find it difficult to keep motivated throughout the day, and without these simple procedures.. I&#8217;d imagine it would be allot harder.</p>
<p>Whilst working a straight 6 hours without blinking can be rewarding in the short run, it will tire you out and put you off doing similar sorts of work in the future.</p>
<h3>1. Stay away from caffeine</h3>
<p>When your body is tired, it&#8217;s time for sleep. Caffeine is just a short-term fix. Eventually, you&#8217;re going to have to replace the sleep that you&#8217;ve lost by drinking it. Go to bed, and wake up earlier feeling fresh and distressed.</p>
<h3>2. Take short breaks</h3>
<p>Working yourself silly for 6 hours straight will do more bad than good. When you&#8217;ve been working on something for so long, your workpace slows down to about 70%. Just a 10-minute break will ensure you come back to your computer focused and feeling focused again.</p>
<p>Anything such as going outside for a cigarette, walking to the shop, listening to music.. anything that will take your mind off of your computer for a little while.</p>
<h3>3. Eat well</h3>
<p>Just because you have lots of work to do, it doesn&#8217;t mean you should deprive yourself out of good nutrition. Having a good breakfast is key; it will give you an energy boost for a good 4 or 5 hours. Giving yourself little energy boosts at lunch and snack times will make you feel lots happier</p>
<h3>4. Don&#8217;t dilly-dally</h3>
<p>Distracting yourself with emails and games whilst you&#8217;re trying to work, to pass some time does not work. Getting your head down and concentrating makes time fly by a whole lot faster.</p>
<h3>5. Set goals and targets</h3>
<p>Setting targets will not only keep you focused into doing your work, it will also help motivate you to do it. Noone likes to set a target and fail it, because it feels bad.</p>
<h3>6. Reward yourself.</h3>
<p>Don&#8217;t confuse this with having breaks. But, if you complete a target.. then reward yourself. Have some chocolate or a beer (Maybe not the most exciting, I know). Maybe even then you can start checking your emails and playing games.</p>
<h3>7. Inspiration &amp; visual aids</h3>
<p>Being in a small room with black walls isn&#8217;t going to help anyone. Put your computer in a big room, with posters and windows. If you have a laptop, swap positions and go and sit in the garden.</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/MU0C24ZCnX0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/articles/7-ways-to-keep-motivated-whilst-working/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/articles/7-ways-to-keep-motivated-whilst-working/</feedburner:origLink></item>
		<item>
		<title>Oh.. What’s this.</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/gBgVSGYfpbE/</link>
		<comments>http://www.andyrew.com/projects/oh-whats-this/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 15:26:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Bullshit Bin]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/projects/oh-whats-this/</guid>
		<description><![CDATA[I&#8217;ve been busy the past few days working on another new site. (Hmms.. yes.. i&#8217;ll do anything to put off completing pornaroo) If there is any LOST readers, you&#8217;ll know that LOST season 4 came out in the US a couple of days ago (It comes out in the UK later on this evening). So, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been busy the past few days working on another new site. (Hmms.. yes.. i&#8217;ll do anything to put off completing pornaroo) If there is any LOST readers, you&#8217;ll know that LOST season 4 came out in the US a couple of days ago (It comes out in the UK later on this evening). So, whilst i was looking around the internet for some LOST released dates.. i stumbled upon a few sites.</p>
<p>Quite obviously it seems, lost-related sites took a staggering increase in traffic over the last week. Perfect! I took my CMS and everything else from NarutoResource, and bought a domain.. made a few adjustments and added some content: <a href="http://www.lostresource.com">Lost Resource</a>. This isn&#8217;t really &#8220;webmastering&#8221; at it&#8217;s best.. i know.. but seeing a i&#8217;m a keen lost fan.. and it would only take me a day to complete.. i mgiht as well.</p>
<p>As another method of putting off finishing Pornaroo, i decided to focus some attention on <a href="http://www.doonuts.com">Doonuts</a>. It&#8217;s probabally a couple of years old now. I did once start marketing it, and it was getting around 1,000 uniques a day for a while. However, since i started to venture into Porn a little more, i have gathered an insight of what these sites need to succeed. In this case, it needs a links system. A place for folks (mainly other website owners), To submit links. In exchange, i will put my plug on there.. voila.</p>
<p>The site runs on smarty.php - I don&#8217;t know why i want to attempt modifying it to add a plug system, because it&#8217;s as confusing as hell as it is.. If you&#8217;re ever going to start a similiar site, try to stay away from SMARTY.</p>
<p>So, i decided to start anlysing the site, coming up with a few new ideas and whatever. I know the site is at a steady 150 visitors a day (No monster, i know) So as far as i&#8217;m concerned, it&#8217;s sustainable. The site works.. and probabally has some regular visitors. Now i just need to increase that number&#8230;</p>
<p><img src="http://www.andyrew.com/uploads/doonutsdays.jpg" /></p>
<p>I decided to have a look what kind of traffic search engines were bringing in, and like usual, i cannot hlp but look at the search queries used.</p>
<p><img src="http://www.andyrew.com/uploads/doonutsrefer.jpg" /></p>
<p>There were others.. gay mud wrestling, goth torturing.. I think what&#8217;s more worrying is that my site comes up for thoes queries.. I have thoes phrases on my site.. Hmm.</p>
<p>I think next update, i&#8217;ll write some sort of article.</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/gBgVSGYfpbE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/oh-whats-this/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/oh-whats-this/</feedburner:origLink></item>
		<item>
		<title>I’m awake, and before 12:00!</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/g5eyzwUplWg/</link>
		<comments>http://www.andyrew.com/projects/im-awake-and-before-1200/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 18:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Bullshit Bin]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/projects/im-awake-and-before-1200/</guid>
		<description><![CDATA[11:55, the first time I have been awake this early for months, and probabally wont again.
For the last few days, since the transfer of funds from paypal takes so long (like, 9 working days) - I decided to a bit of coding for Damien,  for his new site Ownedd. A strange concept. Since everything [...]]]></description>
			<content:encoded><![CDATA[<p>11:55, the first time I have been awake this early for months, and probabally wont again.</p>
<p>For the last few days, since the transfer of funds from paypal takes so long (like, 9 working days) - I decided to a bit of coding for <a href="http://www.dami3n.com" target="_blank">Damien</a>,  for his new site <a href="http://www.ownedd.com" target="_blank">Ownedd</a>. A strange concept. Since everything of mine is kind of on hiatus at the minute, i.e. Paypal holding me up, I figured i&#8217;d just do a bit of work to pass the time.</p>
<p>I had to link to <a href="http://technorati.com/claim/px7e9cx5ik">Technorati</a>. I signed up.. not really knowing what it was. So.. they told me to add a link to it. suckers.</p>
<p>So, since i&#8217;ve been up really late for the past week or so, i&#8217;ve been able to catch the sunrises before go to sleep. I&#8217;ve never really been able to get up in the mornings.. even when i used to go to school, mornings were often a problem and I wouldn&#8217;t ver go to school until 10:30.</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/sunrise.jpg" /></p>
<p> So. I think i&#8217;ve finally figured out what my plan is for the next few weeks. I know Lost season 4 starts at the end of this month, so.. that&#8217;s just easy short-term traffic. I&#8217;ll just clone <a href="http://www.narutoresource.com" target="_blank">Naruto Resource</a>, change a few things and then make it into lost.</p>
<p>I think after that, i&#8217;m going to have one last crack at <a href="http://www.photographyforums.org">Photography Forums</a>. I&#8217;ve already spent a bit of money on advertising over quite a large period of time, and I think I just need to think things through a little bit more to get users to register and stay.</p>
<p>Failing that, I hope to find an already established photography forum, and talk to the owner to see if they&#8217;d fancy &#8216;merging&#8217;. Meaning, i get all of his members/thread.. and he gets my domain name, design, interviews, etc..etcs.</p>
<p>Failing THAT. I&#8217;ll sell it. I&#8217;ve had a few people give me a rough estimate of how much they think that it&#8217;s worth, and.. in all honestly, i know that it&#8217;s not even worth 1/2 of what i&#8217;ve put into it, which is a kick in the nuts. So, this really is my last resort.</p>
<p>I think some sort of laptop will be getting bought too. In this one room, i spend far too much time.. it would be great if i could just pick up my things and go where i want. I&#8217;ve wanted to do this since i found out you can get 2mb internet anywhere, with a little bit of hardware plugged into your laptop.</p>
<p><a href="http://www.trustedreviews.com/mobile-devices/review/2007/05/16/T-Mobile-web-n-walk-USB-modem/p1" target="_blank">T-Mobile web &#8216;n&#8217; walk USB modem</a></p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/tmobilethumb.jpg" /></p>
<p>I think within the next few months, i&#8217;ll be needing it. More about that next time.</p>
<p>Let me just say now, the time is 18:11.. which has taken me ovewr 6 hours to write this.. which is because i misplaed my camera somewhere in my house and needed it for the picture.</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/g5eyzwUplWg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/im-awake-and-before-1200/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/im-awake-and-before-1200/</feedburner:origLink></item>
		<item>
		<title>How hard can it really be?</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/QDVKlsqieUE/</link>
		<comments>http://www.andyrew.com/articles/how-hard-can-it-really-be/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 01:29:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/articles/how-hard-can-it-really-be/</guid>
		<description><![CDATA[A few weeks ago, a friend asked &#8220;how hard can making money on the Internet really be?&#8221;
&#8220;It&#8217;s not, really… hard&#8230;&#8221; I replied, thought for a moment, and smiled. He loved me.
&#8220;I want a site, with funny video&#8217;s and pictures then, I’ll do one myself&#8221;
How hard can it be I thought? &#8220;Go for it, I’ll help [...]]]></description>
			<content:encoded><![CDATA[<blockquote>A few weeks ago, a friend asked &#8220;how hard can making money on the Internet really be?&#8221;<br />
&#8220;It&#8217;s not, really… hard&#8230;&#8221; I replied, thought for a moment, and smiled. He loved me.<br />
&#8220;I want a site, with funny video&#8217;s and pictures then, I’ll do one myself&#8221;<br />
How hard can it be I thought? &#8220;Go for it, I’ll help when you get stuck&#8221;</p></blockquote>
<p>Let&#8217;s call him Jason. Jason, like most people in today’s society are computer and internet savvy. They know how to open their emails and buy unneeded possessions from ebay, right? I began telling him that there would be allot to learn, in the small amount of time that he wanted to learn it in.. in a brain so small.</p>
<p>I decided to start by telling Jason to buy a domain name, and look for some web hosting. I felt confident, after all he is a server admin for a Call of Duty 4 server. I told him Namecheap would be a good place to get his domain from, and told him to keep an eye out for a host.</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/namecheaphostgator.gif" height="91" width="277" /></p>
<p>A couple of days go by, and he tells me he found an available domain name (a true premium domain, something resembling ReallyFunnyStuff4u.biz..) and the host he found was BT broadband or something of the equivalent. Maybe this wouldn&#8217;t be so easy. A job so simple would take me such little time&#8230; and would require so much brainpower. How long does it take, before you can recognise a good domain? Learn that .biz, and .info&#8217;s are no good&#8230; and that BT really isn&#8217;t the type of web hosting provider we are looking for.</p>
<p>Trying to get someone to back down after they are set on a task like this, would be like trying to stop a fat man from getting to the fridge. I began thinking how much of my time, and his time would this cost us? But.. I persevered..</p>
<p>Another few days went by, I had found a decent domain name, and a suitable hosting package. Bare-naked minimum. (Entertainment sites I’m sure can use allot of resources, but with so little knowledge, can it really?)</p>
<p>I think what people don&#8217;t realise is that often, they don&#8217;t get anything out of something.. if they do not put anything into it; even-more-so if they have little knowledge in the subject area. So, a free script was planned out at first. After all, the domain and hosting must have come to $40 for the year.</p>
<p>Just for the record, there are no decent entertainment scripts for free.. none at all that I found, and none at all that he found (So somebody make one). Looking for &#8220;Free video script&#8221;, or &#8220;entertainment software&#8221;.. is easy to search for? Jason was bringing results back for everything after I told him look for a PHP &#8220;entertainment script&#8221;. Results like, &#8220;CGI directory indexing&#8221;, and &#8220;ASP dating software&#8221;.. all of which seemed the right choice for him!</p>
<p>In the end, after purchasing one.. I told him to get some FTP software. Now, it seems that people who haven&#8217;t used FTP before can grasp that &#8216;Your computer is on the left hand side, the server is on the right hand side..&#8217; &#8212; Simple concept? no? Leaving him a few days to follow the instructions in the readme files, didn&#8217;t help anything.. except wasting a few days.</p>
<p>Now, lets for one second imagine I setup the databases, uploaded the script, installed it, changed the logos for Jason, setup the configs, added a few files to show him! Hurrah. The site is complete.. everything is pretty easy from there.</p>
<p>After a few weeks he wanted to start bringing the bacon home. So applied for Adsense. Adding Adsense to a site is easy, no? Click &#8220;Setup Adsense&#8221;, grab the code.. and paste it in.. A walkthrough that took me 45 minutes to explain.</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/adsense.gif" /></p>
<p>This whole process has taken me about 4 weeks, from a-b.. which includes how to get a little bit of traffic to the site. A few people have asked me since to also make them one.. However, telling them that per 1,000 page views, you make about $0.30.. and it makes things a whole lot better.</p>
<p>The things that really made me realise how much I actually knew, when questions like..</p>
<ul>
<li>How do I get my site on Google?</li>
</ul>
<ul>
<li> What is the URL?</li>
</ul>
<ul>
<li> Isn&#8217;t FTP the same as Cpanel?</li>
</ul>
<ul>
<li> Can i turn my computer off?</li>
</ul>
<ul>
<li> Has anyone seen the numa-numa guy?</li>
</ul>
<p>Ask yourself now, how hard and how long it would take you to teach someone even the BASICS of html, ftp, hosting, SEO, Adsense, domains.. and how long would they remember it for?</p>
<p>After trying to make my mother computer-compliant for the past few years, my guess would be &#8216;a very long time&#8217;</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/QDVKlsqieUE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/articles/how-hard-can-it-really-be/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/articles/how-hard-can-it-really-be/</feedburner:origLink></item>
		<item>
		<title>Wait until winter is over.</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/wqXXJDw7pXI/</link>
		<comments>http://www.andyrew.com/projects/wait-until-winter-is-over/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 18:09:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Bullshit Bin]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/projects/wait-until-winter-is-over/</guid>
		<description><![CDATA[Winter seems to have lasted so long this year. It&#8217;s depressing. It&#8217;s dark when i go to bed, and it&#8217;s (almost) dark when i wake up. I took this photo yesterday shortly after i woke up.. It was about 3:45..

 It&#8217;s rainy everywhere here. All flooded. Hmmm. But i don&#8217;t really mind all that much, [...]]]></description>
			<content:encoded><![CDATA[<p>Winter seems to have lasted so long this year. It&#8217;s depressing. It&#8217;s dark when i go to bed, and it&#8217;s (almost) dark when i wake up. I took this photo yesterday shortly after i woke up.. It was about 3:45..</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/shitty_weather.gif" alt="Shitty Weather" height="313" width="417" /></p>
<p> It&#8217;s rainy everywhere here. All flooded. Hmmm. But i don&#8217;t really mind all that much, because i don&#8217;t really walk all that much.</p>
<p>I&#8217;ve made a little change to my new years resolutions, which I posted just before new years. I think it&#8217;s safe to say, i don&#8217;t have any intentions in getting fit.. I will use my new-new years resolution as an excuse though.</p>
<ul>
<li>I have to be making a comfortable living from webstuffs before i go to the gym.</li>
</ul>
<p>I&#8217;m going to set my standards high, too. I must be living like a king before i go.</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/devcustoms.gif" /></p>
<p>I have sort of temporarily sold my devcustoms site, though. However.. I haven&#8217;t got paid for it yet. I have got my paypal sorted though.. at long last. Which kind of defeats the entire point of selling devcustoms in the first place..</p>
<p>But i can&#8217;t really say i&#8217;ve been doing anything creative for the past few days. I have been playing the Bloon Tower Defense game though. And i&#8217;s great. took me a while to do all 3 levels.. so.. this is my link for the day.</p>
<p><a href="http://www.addictinggames.com/bloonstowerdefense2.html" target="_blank">http://www.addictinggames.com/bloonstowerdefense2.html</a></p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/wqXXJDw7pXI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/wait-until-winter-is-over/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/wait-until-winter-is-over/</feedburner:origLink></item>
		<item>
		<title>Taken a nap.</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/myNCDxRiV78/</link>
		<comments>http://www.andyrew.com/projects/taken-a-nap/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 23:46:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/projects/taken-a-nap/</guid>
		<description><![CDATA[After working much crazy hours.. I can&#8217;t seem to get my body-clock to work right now. Even when i have 10 hours sleep, i&#8217;m tired again after i&#8217;ve been awake a while. But I, have just taken a nap.. (a 3 hours nap at that), andhaven&#8217;t done for quite some time.
But now my weeks work [...]]]></description>
			<content:encoded><![CDATA[<p>After working much crazy hours.. I can&#8217;t seem to get my body-clock to work right now. Even when i have 10 hours sleep, i&#8217;m tired again after i&#8217;ve been awake a while. But I, have just taken a nap.. (a 3 hours nap at that), andhaven&#8217;t done for quite some time.</p>
<p>But now my weeks work is over, i&#8217;m back on girlfriend time now.. and don&#8217;t get as much time to work. It&#8217;s good in a way, because i know that if i didn&#8217;t have to see her.. i&#8217;d be working much more hours than i think is considered healthy..</p>
<p>So, allot has happened since  my last update (4 days ago!). My paypal dispute is still not corrected (Bah! Tomorrow!), So.. i still have&#8217;t got sufficient funds in my paypal (Christmas&#8217; fault there), so i cannot sell any websites, so i cannot get any money to advertise and launch pornaroo.</p>
<p>It doesn&#8217;t really matter now. <a href="http://www.addmylayout.com">AddMyLayout</a> had abit of a problem anyways. I was going to sell it.. but.. someone decided to hack about with it and.. basically delete all of the entries! DAMN.. and by the time i&#8217;d noticed, Google cache&#8217;s already updated itself. It&#8217;s my own fault really.. insecure coding. Could have been miles worse anyways, but it sort of renders that site.. value-less.</p>
<p>So, that kind of put me off doing anything for a couple of days.. So, i decided to have a go at my family tree, at <a href="http://www.genesreunited.com">Genes Reunite</a>, I&#8217;ve been watching allot of TV..</p>
<p>But of course! It was macworld today.. Oohhh..! Sounds like there were some pretty cool things, but maybe the coolest - Was the new, Macbook Air..</p>
<p>It&#8217;s super light, super fragile, and super small. If you just tap the screen lightly, the whole thing closes because it&#8217;s so light. The keyboard looks a little weird because it&#8217;s black on the aluminum, but the keyboard feels great. It feels just like a MacBook (normal) keyboard. The screen looks gorgeous—very bright and clear (and better than the Sony). It&#8217;s even better looking than the MacBook&#8217;s, most likely because of the LED backlit display.</p>
<p style="text-align: center"><img src="http://www.andyrew.com/uploads/apple-air.jpg" alt="Apple Macbook Air" height="277" width="417" /></p>
<p> Source: <a href="http://gizmodo.com/345115/macbook-air-hands+on" target="_blank">Gizmodo</a></p>
<p>At £1170, i doubt i will be getting one.. Not that i need any sort of laptop anyway. I just like the little camera.. Maybe i should invest into a camera though and do some video updates.. less thinking then.</p>
<p><a href="http://gizmodo.com/345115/macbook-air-hands+on" target="_blank"></a></p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/myNCDxRiV78" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/taken-a-nap/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/taken-a-nap/</feedburner:origLink></item>
		<item>
		<title>New site..</title>
		<link>http://feedproxy.google.com/~r/Andyrew/~3/2SRh0A4dwck/</link>
		<comments>http://www.andyrew.com/projects/new-site/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 21:47:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Bullshit Bin]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.andyrew.com/bullshit-bin/new-site/</guid>
		<description><![CDATA[Errm.. i&#8217;ve been pretty, actaully really busy for the past couple of days. Staying up until 9am.. sleeping.. waking up at 2pm.. working until 9am again.. i do it sometimes. I&#8217;m cool.
So. After I finished my bit of client work (didn&#8217;t even know i did it!?) It&#8217;s family. But, I saw a site for sale [...]]]></description>
			<content:encoded><![CDATA[<p>Errm.. i&#8217;ve been pretty, actaully really busy for the past couple of days. Staying up until 9am.. sleeping.. waking up at 2pm.. working until 9am again.. i do it sometimes. I&#8217;m cool.</p>
<p>So. After I finished my bit of client work (didn&#8217;t even know i did it!?) It&#8217;s family. But, I saw a site for sale on sitepoint the other day. I thought, &#8220;Hey, this could be quite cool..&#8221; So, i checked out the amount of sites that actaully had taken up this little niche.. and apparently, there aren&#8217;t many - but the sites that do have it, are fairly large.</p>
<p><a href="http://www.narutoresource.com" title="Naruto Wallpapers" target="_blank"><img src="http://narutoresource.com/img/logo.gif" height="90" width="440" /></a></p>
<p>well. at least now i linked to it, Google will pick it up. But yeah.. i did the design (well, borrowed it from my other website as i couldn&#8217;t be arsed to make a new one) - did the pages, did the administration panel, added all of the content.. in like.. 3 days.</p>
<p>I&#8217;m pretty pleased with my results.. Even if that site only gets 5,000 visitors a day.. it&#8217;s still like.. $500 a month.. which is pretty achievable. But.. i want to add a whole lot of other things to it, so i can just, set it up and leave it - and then get back to my Pornaroo website.</p>
<p>Ahh.. shit. Probabally too, paypal will have added the £0.02 and £0.07 to my bank account today, so.. i should have checked that out. Lazyness.</p>
<p>I guess now i&#8217;ve written quite a few posts (like, 10?) and still have no subscribers (it keeps going to, maybe 3.. and then down again) maybe i should think about actaully link exchanging with someone..  with some RSS subscribers.</p>
<img src="http://feeds.feedburner.com/~r/Andyrew/~4/2SRh0A4dwck" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andyrew.com/projects/new-site/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.andyrew.com/projects/new-site/</feedburner:origLink></item>
	</channel>
</rss>
