<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Making the Web</title>
	
	<link>http://www.making-the-web.com</link>
	<description>Website Development Blog</description>
	<pubDate>Fri, 10 Oct 2008 19:58:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<geo:lat>51.571996</geo:lat><geo:long>0.483934</geo:long><image><link>http://making-the-web.com</link><url>http://making-the-web.com/mtw_logo_feed.png</url><title>Making the Web</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/making-the-web" type="application/rss+xml" /><feedburner:emailServiceId>1873872</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Adding "Stumble!" Functionality to Your Blog</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/417111850/</link>
		<comments>http://www.making-the-web.com/2008/10/10/adding-stumble-functionality-to-your-blog/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 19:58:55 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.making-the-web.com/?p=390</guid>
		<description><![CDATA[StumbleUpon, in my opinion, has revolutionised the way that many of us browse the internet. When we are bored, we can just click &#034;Stumble!&#034; and find something interesting and we will spend more time on the internet because of it.
MediaWiki (the software behind Wikipedia) has a similar feature called Random Article. Visitors can click this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://stumbleupon.com">StumbleUpon</a>, in my opinion, has revolutionised the way that many of us browse the internet. When we are bored, we can just click &#034;Stumble!&#034; and find <strong>something interesting</strong> and we will spend <strong>more time</strong> on the internet because of it.</p>
<p><a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> (<em>the software behind <a href="http://wikipedia.org">Wikipedia</a></em>) has a similar feature called <a href="http://en.wikipedia.org/wiki/Special:Random"><em>Random Article</em></a>. Visitors can click this link and be taken to a totally random page, which means they will spend more time on a <em>wiki</em>.</p>
<p>I have taken this concept and made a basic implementation in <em>WordPress</em>. Just click the &#034;Random Article&#034; link on the navigation bar, above, and try for yourself.</p>
<h3>How I did it&#8230;</h3>
<p>In all, it took me about 10 minutes to go from idea to actual functionality, in 3 simple steps. Here&#039;s what I did&#8230;</p>
<p><strong>Step 1: Create a Page Template</strong><br />
Firstly, navigate to your theme&#039;s files (<em>under wp-content/themes/THEME_NAME</em>). Create a new, empty PHP file called <strong>random.php</strong>.</p>
<p>Now, just write/copy this code into the file:</p>
<blockquote><p>&lt;?php</p>
<p>/*</p>
<p>Template Name: Random Article</p>
<p>*/</p>
<p>query_posts(&#039;orderby=rand&amp;showposts=1&#039;);</p>
<p>the_post();</p>
<p>header(&#039;Location: &#039;.get_permalink());</p>
<p>?&gt;</p></blockquote>
<p>This small PHP script does two things. Firstly, it gets a random article using <em>query_posts</em> and loads the post information. And then, it redirects the user to the location of the article. I have used the permalink URL to redirect the user to the article.</p>
<p>The &#034;Template Name: Random Article&#034; allows us to create a new page using this template.</p>
<p><strong>2: Create a New Page</strong></p>
<p>In WordPress, go to <em>Write</em>, and then click <em>Page</em>. In title, write &#034;Random Article&#034;. This will create a URL (<em>permalink</em>) which we can use to execute our script. For this blog, it is <a href="http://making-the-web.com/random-article/">http://making-the-web.com/random-article/</a>.</p>
<p>You do not need to enter anything in the content box.</p>
<p>(<em>Press Save, if you haven&#039;t done so already</em>)</p>
<p><strong>3: Place Your Link</strong><br />
You can now place a link to the random article page anywhere in your template files. If you show a list of pages, the <em>Random Posts</em> page will show up there. And, it&#039;s that simple.</p>
<p><em>Note</em>: If you do not want to have the page show up in the list, append this code to your theme&#039;s <em>functions.php</em> file:</p>
<blockquote><p>function __random_list_pages_excludes($exc) {<br />
global $wpdb;</p>
<p>$pageIdQ = $wpdb-&gt;get_var(&#034;SELECT id FROM $wpdb-&gt;posts WHERE post_name = &#039;random-article&#039;&#034;);</p>
<p>array_push($exc, $pageIdQ);<br />
return $exc;<br />
}</p>
<p>add_filter(&#039;wp_list_pages_excludes&#039;, &#039;__random_list_pages_excludes&#039;);</p></blockquote>
<p>I hope to release a plugin soon which will add this function, rather than having to modify theme files. Please let me know how you got on with this&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=IZ2SM"><img src="http://feeds.feedburner.com/~f/making-the-web?i=IZ2SM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=Cgzlm"><img src="http://feeds.feedburner.com/~f/making-the-web?i=Cgzlm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=jQRPm"><img src="http://feeds.feedburner.com/~f/making-the-web?i=jQRPm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=owZzm"><img src="http://feeds.feedburner.com/~f/making-the-web?i=owZzm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/417111850" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/10/10/adding-stumble-functionality-to-your-blog/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F10%2F10%2Fadding-stumble-functionality-to-your-blog%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/10/10/adding-stumble-functionality-to-your-blog/</feedburner:origLink></item>
		<item>
		<title>Google PR Updated</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404570021/</link>
		<comments>http://www.making-the-web.com/2008/09/27/google-pr-updated/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 10:20:15 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[pagerank]]></category>

		<guid isPermaLink="false">http://www.making-the-web.com/?p=379</guid>
		<description><![CDATA[I have just noticed that Google have updated their PageRank, or are in the process of doing so. It was less than 2 months ago when the last export happened, so this update has come around pretty quickly.
There hasn&#039;t been any major changes to my sites. The only difference that I have noticed is PageRank [...]]]></description>
			<content:encoded><![CDATA[<p>I have just noticed that Google have updated their PageRank, or are in the process of doing so. It was less than <a href="http://www.making-the-web.com/2008/07/31/google-pr-update/">2 months ago</a> when the last export happened, so this update has come around pretty quickly.</p>
<p>There hasn&#039;t been any major changes to my sites. The only difference that I have noticed is PageRank for articles that I&#039;ve written since the last updated.</p>
<p>How are you feeling after the update?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=okI3L"><img src="http://feeds.feedburner.com/~f/making-the-web?i=okI3L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=htfUl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=htfUl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=filFl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=filFl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=6DyJl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=6DyJl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404570021" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/27/google-pr-updated/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F27%2Fgoogle-pr-updated%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/27/google-pr-updated/</feedburner:origLink></item>
		<item>
		<title>Google is 10!</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404536226/</link>
		<comments>http://www.making-the-web.com/2008/09/27/google-is-10/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 09:16:46 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.making-the-web.com/?p=374</guid>
		<description><![CDATA[Today, search engine Google has become 10 years old!
In just 10 years, Google has dominated search, become the most visited website, and become the top global brand.
It seems everyday that they are introducing a new service or technology to dominate even more areas. Chrome nicely set Google up in the web browser market. Android is [...]]]></description>
			<content:encoded><![CDATA[<p>Today, search engine Google has <a href="http://googleblog.blogspot.com/2008/09/ten-years-and-counting.html">become 10</a> years old!</p>
<p>In just 10 years, Google has dominated search, become the <a href="http://www.alexa.com/site/ds/top_sites?cc=US&amp;ts_mode=country&amp;lang=none">most visited</a> website, and become the <a href="http://news.bbc.co.uk/1/hi/business/6581653.stm">top global brand</a>.</p>
<p>It seems everyday that they are introducing a new service or technology to dominate even more areas. <a href="http://www.google.com/chrome">Chrome</a> nicely set Google up in the web browser market. <a href="http://code.google.com/android/">Android</a> is another step towards connecting Google&#039;s services and users - at any time, on their mobile phones. They have even extended AdWords to implement <a href="https://www.google.com/adsense/www/en_US/tv/">ads on television</a>.</p>
<p>I am constantly using Google whenever I&#039;m on the internet. Since January, 2007, I have made over 23,000 searches. How many searches have you done? (<em>I got this stat from Web History</em>)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=ScvTL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=ScvTL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=bOPJl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=bOPJl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=fKT7l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=fKT7l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=9ewil"><img src="http://feeds.feedburner.com/~f/making-the-web?i=9ewil" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404536226" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/27/google-is-10/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F27%2Fgoogle-is-10%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/27/google-is-10/</feedburner:origLink></item>
		<item>
		<title>Writer Needed: Paid-per-post</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169541/</link>
		<comments>http://www.making-the-web.com/2008/09/18/writer-needed-paid-per-post/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 17:18:02 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=356</guid>
		<description><![CDATA[As I become busier, it becomes harder for me to write new articles for Making the Web. You may have noticed that I have not been publishing articles as often as I used to.
I am looking for a writer who is willing to write useful and relevant articles for Making the Web, alongside myself. I [...]]]></description>
			<content:encoded><![CDATA[<p>As I become busier, it becomes harder for me to write new articles for <em>Making the Web</em>. You may have noticed that I have not been publishing articles as often as I used to.</p>
<p>I am looking for a writer who is willing to write useful and relevant articles for <em>Making the Web</em>, alongside myself. I am willing to pay up to <strong>$10 per article</strong>, subject to quality, relevancy and popularity.</p>
<p>If you would like to write for Making the Web, about website development, then please <a href="http://making-the-web.com/contact/">contact me</a> for more information or if you have any questions.</p>
<p>Thank you,</p>
<p>Brendon.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=y3IKL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=y3IKL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=nG3sl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=nG3sl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=M3ZLl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=M3ZLl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=JTlel"><img src="http://feeds.feedburner.com/~f/making-the-web?i=JTlel" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169541" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/18/writer-needed-paid-per-post/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F18%2Fwriter-needed-paid-per-post%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/18/writer-needed-paid-per-post/</feedburner:origLink></item>
		<item>
		<title>Increase Your Blog's Readership Size</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169542/</link>
		<comments>http://www.making-the-web.com/2008/09/07/increase-your-blogs-readership-size/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 19:56:46 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[readers]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=325</guid>
		<description><![CDATA[Blogs are all about readers. Without them, blogging would be worthless and quite boring. Two similar blogs, with similar content, can have a vast gap in subscriber numbers.
In this article, I&#039;ll be discussing ways to increase the number of readers for your blog&#8230;
Is your writing engaging?
Express your opinion. Ask questions. Be critical.
Your blog should be [...]]]></description>
			<content:encoded><![CDATA[<p>Blogs are all about readers. Without them, blogging would be worthless and quite boring. Two similar blogs, with similar content, can have a vast gap in subscriber numbers.</p>
<p>In this article, I&#039;ll be discussing ways to increase the number of readers for your blog&#8230;</p>
<h3>Is your writing engaging?</h3>
<p>Express your opinion. Ask questions. Be critical.<span id="more-325"></span></p>
<p>Your blog should be full of your opinion. If you have an opinion about a topic, write about it, and make it clear! Most of the time, readers will come back because <strong>they like you</strong>, more than they like your content.</p>
<p>Do readers have an opinion, too? Yes, they do — and that&#039;s why you should ask questions. Questions, direct or indirect, will get readers thinking and they become more engaged in your article. Who knows, they might even leave a comment!</p>
<h3>Talk to your readers</h3>
<p>When a reader leaves a comment, comment back and maybe send them an email directly. That <a href="http://www.youtube.com/watch?v=0Li1N3onfyg">personal touc</a><a href="http://www.youtube.com/watch?v=0Li1N3onfyg">h</a> is what gives you that little bit extra. For a reader, there&#039;s nothing more frustrating than thinking: &#034;Did he hear me? Is he going to write back? Does he even like me?&#034;</p>
<p>Look at an <a href="http://adsense.blogspot.com/2008/08/site-maintenance-on-saturday-august-23.html">article on Inside AdSense</a>. So many comments and questions, but not one response. You&#039;d think a company as big as Google could go to the <a href="http://www.mint.com/">expense</a> of at least one comment. The only reason we subscribe is because it serves us with useful information, not because we like the writers.</p>
<h3>Show off your work&#8230;</h3>
<p>&#8230;and take the criticism.</p>
<p>Whatever you do, there will be at least one person who doesn&#039;t like it. Don&#039;t ignore this person. This person is significant: they are telling you there&#039;s room for improvement. 1 comment may represent the views of 100 other readers.</p>
<p>We can never satisfy the needs and wants of 100% of everybody, but we can try our best to approach this figure. <a href="http://labnol.blogspot.com/2006/05/develop-thick-skin-to-handle-blog.html">Listen</a> to the critics, and improve your writing and your blog to satisfy them (within reason, of course).</p>
<h3>A little bonus</h3>
<p>This one isn&#039;t really as significant as the others, but can help in a little way. If you use WordPress (which you probably do), you can use one of my plugins, <a href="http://making-the-web.com/2008/08/27/plugin-thank-me-later/">Thank Me Later</a>, to send a &#034;thank you&#034; email to readers when they comment. This has the benefit of &#034;pulling back&#034; one-time readers, and will prompt readers to engage further.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=FHTWL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=FHTWL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=fDtOl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=fDtOl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=ETKJl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=ETKJl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=GE1Hl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=GE1Hl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169542" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/07/increase-your-blogs-readership-size/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F07%2Fincrease-your-blogs-readership-size%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/07/increase-your-blogs-readership-size/</feedburner:origLink></item>
		<item>
		<title>Google Chrome Now Available</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169543/</link>
		<comments>http://www.making-the-web.com/2008/09/02/google-chrome-now-available/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 19:36:17 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=299</guid>
		<description><![CDATA[Google Chrome, a recently anounced web browser, has today been released (in BETA) and is now availabe for download in over 100 countries. Download Chrome Here



Google Chrome by default

Google said they were going for simplicity, and that&#039;s what they provided. Google Chrome is a 100% clean and not-needed-not-implemented browser. I can&#039;t help but think that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/chrome/">Google Chrome</a>, a <a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html">recently anounced</a> web browser, has today been <a href="http://googleblog.blogspot.com/2008/09/google-chrome-now-live.html">released</a> (in BETA) and is now availabe for download in over 100 countries. <strong><a href="http://www.google.com/chrome/">Download Chrome Here<br />
</a></strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-309" style="border: 1px solid #CCCCCC; padding:5px;" title="google_chrome2" src="http://making-the-web.com/wp-content/uploads/2008/09/google_chrome2.jpg" alt="" width="423" height="144" /></p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/09/chrome_default.png"><img class="size-medium wp-image-305 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="Google Chrome" src="http://making-the-web.com/wp-content/uploads/2008/09/chrome_default-300x238.png" alt="" width="300" height="238" /></a></p>
<p style="text-align: center;">Google Chrome by default</p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/09/google_chrome_google.png"><img class="alignnone size-medium wp-image-306" style="border: 1px solid #CCCCCC; padding:5px;" title="google_chrome_google" src="http://making-the-web.com/wp-content/uploads/2008/09/google_chrome_google-300x237.png" alt="" width="300" height="237" /></a></p>
<p style="text-align: left;">Google <a href="http://making-the-web.com/2008/09/02/google-to-launch-web-browser-today/">said</a> they were going for simplicity, and that&#039;s what they provided. Google Chrome is a 100% clean and not-needed-not-implemented browser. I can&#039;t help but think that it&#039;s too simple, though. Under &#034;Options&#034;, there are few settings that can be changed. There seems to be no option to disable Javascript or images! There is also no support for plug-ins or add-ons, though I suspect this will be implemented in the future.</p>
<p style="text-align: left;">I do like the &#034;Most visited&#034; page that comes up when you open a new tab. It offers quick access to some of your favourite websites, without having to put them on a bookmarks toolbar. And I also like the &#034;incognito&#034; window which allows you to browse without storing browsing history or cookies.</p>
<p style="text-align: left;">Oh, and closing the last tab seems to close the whole browser, a behaviour which seems crazy to me (???)</p>
<p style="text-align: left;">Here&#039;s a video from Google:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/JGmO7Oximw8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/JGmO7Oximw8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p style="text-align: left;">What are your thoughts?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=OAUhL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=OAUhL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=sVarl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=sVarl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=w9Lal"><img src="http://feeds.feedburner.com/~f/making-the-web?i=w9Lal" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=YEpil"><img src="http://feeds.feedburner.com/~f/making-the-web?i=YEpil" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169543" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/02/google-chrome-now-available/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F02%2Fgoogle-chrome-now-available%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/02/google-chrome-now-available/</feedburner:origLink></item>
		<item>
		<title>Google to Launch Web Browser, Today!</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169544/</link>
		<comments>http://www.making-the-web.com/2008/09/02/google-to-launch-web-browser-today/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 13:42:06 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=294</guid>
		<description><![CDATA[Internet giant Google yesterday announced they will be releasing a new product. Google Chrome is an open source web browser which will &#034;add value for users and, at the same time, help drive innovation on the web&#034;.

The guys at Google seem to be focusing on security and robustness: &#034;By keeping each tab in an isolated [...]]]></description>
			<content:encoded><![CDATA[<p>Internet giant Google yesterday <a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html">announced</a> they will be releasing a new product. <strong>Google Chrome</strong> is an open source web browser which will &#034;add value for users and, at the same time, help drive innovation on the web&#034;.</p>
<p style="text-align: center;"><img class="size-full wp-image-295 aligncenter" title="logo_sm1" src="http://making-the-web.com/wp-content/uploads/2008/09/logo_sm1.jpg" alt="" width="150" height="55" /></p>
<p>The guys at Google seem to be focusing on security and robustness: &#034;By keeping each tab in an isolated &#034;sandbox&#034;, we were able to prevent one tab from crashing another and provide improved protection from rogue sites&#034;&#8230;</p>
<p>&#8230;And performance: &#034;We also built a more powerful JavaScript engine, V8, to power the next generation of web applications that aren&#039;t even possible in today&#039;s browsers&#034;&#8230;</p>
<p>&#8230;And simplicity: &#034;We designed a browser window that is streamlined and simple&#034;&#8230;</p>
<p>&#8230;And cross-platform availability: &#034;We&#039;re hard at work building versions for Mac and Linux too&#034;.</p>
<p>When available, you should be able to download the BETA version here: <a href="http://gears.google.com/chrome/">http://gears.google.com/chrome/</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=8rh3L"><img src="http://feeds.feedburner.com/~f/making-the-web?i=8rh3L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=WDahl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=WDahl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=OpEAl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=OpEAl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=IqT3l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=IqT3l" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169544" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/09/02/google-to-launch-web-browser-today/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F09%2F02%2Fgoogle-to-launch-web-browser-today%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/09/02/google-to-launch-web-browser-today/</feedburner:origLink></item>
		<item>
		<title>Google Ad Manager Goes Public</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169545/</link>
		<comments>http://www.making-the-web.com/2008/08/27/google-ad-manager-goes-public/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 17:51:24 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Advertising]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=271</guid>
		<description><![CDATA[Today, Google announced the availability of Ad Manager, a system to manage all of your third-party and AdSense advertisements, to everyone!

Ad Manager is a powerful, and equally complex application. It allows you to set-up ad slots and placements, manage orders for them, and display sales and performance reports. Correctly used, it can help you get [...]]]></description>
			<content:encoded><![CDATA[<p>Today, <a href="http://adsense.blogspot.com/2008/08/ad-serving-for-everyone.html">Google announced</a> the availability of <a href="https://www.google.com/admanager/">Ad Manager</a>, a system to manage all of your third-party and AdSense advertisements, to everyone!</p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/08/ad_manager.png"><img class="size-full wp-image-272 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="ad_manager" src="http://making-the-web.com/wp-content/uploads/2008/08/ad_manager.png" border="0" alt="Google Ad Manager" width="500" height="267" /></a></p>
<p style="text-align: left;">Ad Manager is a powerful, and equally complex application. It allows you to set-up ad slots and <a href="http://www.google.com/support/admanager/publisher/bin/answer.py?answer=79296&amp;ctx=tltp&amp;hl=en_GB">placements</a>, manage orders for them, and display sales and performance reports. Correctly used, it can help you get the maximum revenue from your site&#039;s ads, and will automatically <a href="http://www.google.com/support/admanager/publisher/bin/answer.py?answer=79210&amp;ctx=tltp&amp;hl=en_GB">compete</a> with AdSense to get you the best price.</p>
<p style="text-align: left;">The application allows you to set-up ad-slots, and package them in placements for advertisers. I&#039;m particularly interested in &#034;targeting&#034;, the ability to specify criteria for an ad&#039;s audience. This includes targeting visitors by geography, browser and language, and by custom criteria:</p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/08/targeting.png"><img class="size-full aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="targeting" src="http://making-the-web.com/wp-content/uploads/2008/08/targeting.png" alt="" width="573" height="227" /></a></p>
<p>The &#034;orders&#034; tab allows you to take and manage orders, and check availability. &#034;Check Inventory&#034; allows you to determine whether your site can satisfy the number of impressions ordered.</p>
<p>Overall, the service is pretty much a hybrid between AdWords and Analytics and the interface is easy enough to get used to. I&#039;d recommend you give it a try, even if you don&#039;t actually use it live. <a href="https://www.google.com/admanager/">Check it out</a>! There a nice <a href="https://www.google.com/admanager/help/en_US/tutorials/introduction/">video</a> which will teach you the basics.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=U6FBL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=U6FBL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=P81il"><img src="http://feeds.feedburner.com/~f/making-the-web?i=P81il" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=uqkvl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=uqkvl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=Dn4sl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=Dn4sl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169545" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/27/google-ad-manager-goes-public/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F27%2Fgoogle-ad-manager-goes-public%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/27/google-ad-manager-goes-public/</feedburner:origLink></item>
		<item>
		<title>My First WordPress Plugin: Thank Me Later</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169546/</link>
		<comments>http://www.making-the-web.com/2008/08/27/my-first-wordpress-plugin-thank-me-later/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 15:11:44 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=265</guid>
		<description><![CDATA[Today, I have finished and released my first ever WordPress plugin. Thank Me Later is a plugin which will send a &#034;thank you&#034; message to readers a few days after they sent the message. It has a vast array of features and options, and is highly customizable.

Sending a &#034;thank you&#034; email to contributors is highly [...]]]></description>
			<content:encoded><![CDATA[<p><!--<!-no-adsense-->Today, I have finished and released my first ever WordPress plugin. <a href="http://making-the-web.com/2008/08/27/plugin-thank-me-later/"><strong>Thank Me Later</strong></a> is a plugin which will send a &#034;thank you&#034; message to readers a few days after they sent the message. It has a vast array of features and options, and is highly customizable.</p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/08/screenshot-1.png"><img class="size-full wp-image-261 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="screenshot-1" src="http://making-the-web.com/wp-content/uploads/2008/08/screenshot-1.png" border="0" alt="" width="500" height="335" /></a></p>
<p>Sending a &#034;thank you&#034; email to contributors is highly effective, as it reminds them of your blog and their relationship with the blog (however small that may be). It is especially useful for attracting &#034;one time&#034; users - those who read and post one comment, without subscribing to or re-visiting your blog.</p>
<p>Previously, there have been plugins which would send an email to the user instantly. While these were somewhat effective, they are often dismissed or ignored. It&#039;s highly unlikely a reader will visit your blog again just a few minutes after they left.</p>
<p><strong>Thank Me Later</strong> sends a thank-you email in the future. So, for example, if a reader left a comment on your blog today, they would receive an email tomorrow. Because the &#034;thank you&#034; is sent later, the user is more inclined to see if there have been any updates or follow-ups. It also removes the &#034;automated&#034; feel from the process.</p>
<p>I believe Thank Me Later could increase the number of readers to your blog, and prompt readers to become more engaged in discussion.</p>
<p>The plugin features:</p>
<ul>
<li>Static and dynamic customisation of the from, subject and message fields,</li>
<li>Option to choose when to send the message in seconds, minutes, hours, days and weeks.</li>
<li>Option to limit how many time a user receives a message. Can be set to send emails to first-time contributors only,</li>
<li>Option to limit how often a user is sent an email. For example, once every day, week, month, etc,</li>
<li>Ability to use variable tags and PHP-code to create personal messages.</li>
</ul>
<p>Please give it a try and tell me what you think. <a href="http://making-the-web.com/2008/08/27/plugin-thank-me-later/">Download Now</a>.</p>
<p>-Brendon.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=kMuFL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=kMuFL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=eMVAl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=eMVAl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=Blndl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=Blndl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=fxJbl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=fxJbl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169546" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/27/my-first-wordpress-plugin-thank-me-later/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F27%2Fmy-first-wordpress-plugin-thank-me-later%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/27/my-first-wordpress-plugin-thank-me-later/</feedburner:origLink></item>
		<item>
		<title>How to Write Good Articles</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169547/</link>
		<comments>http://www.making-the-web.com/2008/08/25/how-to-write-good-articles/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 20:56:17 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[punctuation]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=223</guid>
		<description><![CDATA[Articles are the most important element of every blog, so it&#039;s only right that we discuss how best to write a good quality article.


Planning
You might remember all those years ago at school, that planning was essential for any essay or piece of writing. Well, a blog article is also a piece of writing, and don&#039;t [...]]]></description>
			<content:encoded><![CDATA[<p>Articles are the most important element of every blog, so it&#039;s only right that we discuss how best to write a good quality article.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-245" title="blog" src="http://making-the-web.com/wp-content/uploads/2008/08/blog.jpg" alt="" width="310" height="92" /></p>
<p style="text-align: center;"><span id="more-223"></span></p>
<h3>Planning</h3>
<p>You might remember all those years ago at school, that <a href="http://www.mantex.co.uk/samples/plan.htm">planning</a> was essential for any essay or piece of writing. Well, a blog article is also a piece of writing, and don&#039;t forget it! It is greatly beneficial to <a href="http://www.wikihow.com/Plan-an-Essay-Using-a-Mind-Map">jot down</a> all your notes about an article, and link them together, organise them, splice them, or even remove them.</p>
<p>Using this method may seem useless to some people, but it does work. Primarily, plans are not there to record information, but rather get you thinking about it. And, the more you think about articles, the better they will become.</p>
<h3>Language</h3>
<p>Language is a very complex concept. Just like any other writers, bloggers are <a href="http://freelancewrite.about.com/b/2008/03/22/blogs-arent-legit-writing.htm">judged</a> on their ability to use and manipulate language. Your writing should be interesting and engaging, as well as informative. Read through your articles with an open-minded view to judge quality. Getting a second opinion is great, as it removes the possibility for &#034;quality blindness&#034; from the writer.</p>
<p>Getting the balance between informal and formal language is important. For most blogs, writing should have a <em>sense</em> of informality to make the writing more personal and &#034;chatty&#034;. This should not, however, inhibit the article&#039;s ability to be useful and informative.</p>
<p>Strongly expressing your own opinion in articles is essential. It gives argument to the writing, and therefore engages readers and leads to discussion and debate.</p>
<p style="text-align: center;"><img class="size-full wp-image-231 aligncenter" title="punctuation" src="http://making-the-web.com/wp-content/uploads/2008/08/punctuation.png" alt="" width="344" height="185" /></p>
<p>Punctuation is a powerful part of language, and can completely change meaning in a piece of writing. If you don&#039;t get punctuation 100% <a href="http://www.wilbers.com/punct12.htm">right</a>, your sentences will be ambiguous and reading becomes very difficult. If you feel you don&#039;t use the semi-colon, colon, dash, or even simpler marks as often or as correctly as you should, you should <a href="http://www.wikihow.com/Use-English-Punctuation-Correctly">learn</a> now. A <a href="http://making-the-web.com/2007/09/21/becoming-php-6-compatible/#comment-201">reader</a> recommended <a href="http://www.amazon.co.uk/Eats-shoots-leaves-Tolerance-Punctuation/dp/1861976127">Eats, Shoots and Leaves</a>, a fantastic book on punctuation.</p>
<p>(Oh, and using a spelling and grammar checker can identify many mistakes.)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=JAWjL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=JAWjL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=eTVWl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=eTVWl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=C09fl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=C09fl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=2YZbl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=2YZbl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169547" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/25/how-to-write-good-articles/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F25%2Fhow-to-write-good-articles%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/25/how-to-write-good-articles/</feedburner:origLink></item>
		<item>
		<title>New: AdSense for Feeds</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169548/</link>
		<comments>http://www.making-the-web.com/2008/08/18/new-adsense-for-feeds/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 11:00:16 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Advertising]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=216</guid>
		<description><![CDATA[For a while now, FeedBurner has offered feed advertising via the &#034;Monetize&#034; tab. But, a few days ago, Google announced the addition for &#034;AdSense for Feeds&#034; directly into AdSense itself for all publishers. Although this seems to have been in BETA for some time, it is now available to everyone.
It seems they have &#034;copied&#034; Feedburner [...]]]></description>
			<content:encoded><![CDATA[<p>For a while now, FeedBurner has offered feed advertising via the &#034;Monetize&#034; tab. But, a few days ago, Google <a href="http://adsense.blogspot.com/2008/08/i-feel-need-need-for-feeds.html">announced</a> the addition for &#034;AdSense for Feeds&#034; directly into AdSense itself for all publishers. Although this seems to have been in BETA for <a href="http://googleblog.blogspot.com/2005/05/feed-me.html">some time</a>, it is now available to everyone.</p>
<p>It seems they have &#034;copied&#034; Feedburner to <a href="http://feedburner.google.com"><strong>feedburner.google.com</strong></a> (this happened some time ago, which I didn&#039;t know), and made some improvements. You can now &#034;manage&#034; your feeds from AdSense (in the manage tab), so you can change your feed ads using the same-old interface (<em>for better or for worse</em>). The improvement I like is the graphs similar to Analytics, rather than the plain-old vertical bars:</p>
<p style="text-align: center;"><img class="size-full wp-image-217 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="feedburner" src="http://making-the-web.com/wp-content/uploads/2008/08/feedburner.png" alt="" width="500" height="219" /></p>
<p style="text-align: left;">So it looks like we FeedBurner users will soon be <a href="http://www.google.com/support/feedburner/bin/answer.py?answer=99648">switching</a> to &#034;Google&#039;s&#034; Feedburner.</p>
<p style="text-align: left;">I&#039;ve checked out the AdSense for Feeds feature, and it is quite customizable: You can change the frequency of the ads (every 2nd post for example), position (top/bottom) and only show ads on posts which are longer than 50, 100, 250 or 500 words.</p>
<p style="text-align: left;">Although I will probably never use them, I think it&#039;s good that Google have integrated feed advertising directly with AdSense.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=2YYIL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=2YYIL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=UDVIl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=UDVIl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=alh4l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=alh4l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=uFn1l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=uFn1l" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169548" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/18/new-adsense-for-feeds/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F18%2Fnew-adsense-for-feeds%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/18/new-adsense-for-feeds/</feedburner:origLink></item>
		<item>
		<title>Revenue Sharing at Making the Web</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169549/</link>
		<comments>http://www.making-the-web.com/2008/08/17/revenue-sharing-at-making-the-web/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 20:06:18 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=209</guid>
		<description><![CDATA[Hi,
For a while, I&#039;ve been looking into ways to get the community involved with contributing to Making the Web. I respect that readers will rarely contribute unless there is something in it for them (quite rightly). Well, with a lot of tweaking and modification of WordPress and various plugins, I&#039;ve created the perfect solution:
You contribute [...]]]></description>
			<content:encoded><![CDATA[<p><!--no-adsense-->Hi,</p>
<p>For a while, I&#039;ve been looking into ways to get the community involved with contributing to Making the Web. I respect that readers will rarely contribute unless there is something in it for them (quite rightly). Well, with a lot of tweaking and modification of WordPress and various plugins, I&#039;ve created the perfect solution:</p>
<p><strong>You contribute to Making the Web, and I&#039;ll give you a share of the advertising revenue</strong></p>
<p>All you need is a Google AdSense account&#8230;</p>
<p>OK, so this is what you need to do:</p>
<ol>
<li><a href="http://making-the-web.com/wp-login.php?action=register">Register</a> an account with MTW</li>
<li><a href="http://making-the-web.com/wp-login.php">Login</a> with your username and password and go to <a href="http://making-the-web.com/wp-admin/profile.php">your profile</a>.</li>
<li>Under &#034;Extra Fields&#034;, enter your Google AdSense publisher ID. This is the one that starts with pub-. Click Update.</li>
<li><a href="http://making-the-web.com/wp-admin/post-new.php">Write</a> quality articles for Making the Web.</li>
</ol>
<p>Your articles are subject to review. AdSense ads on the <em>single post </em>page will be rotated between MTW&#039;s publisher ID, and the author&#039;s ID. The author&#039;s ID will be shown 50% of the time*</p>
<p><em>* Until February 2008 the author&#039;s ID will be shown at least </em><span style="font-size: 2em;"><strong>75%</strong></span> <em>of the time!</em></p>
<p>There is no limit to how many articles you can write, and you can even re-publish useful articles from your blog.</p>
<p>Terms:</p>
<ul>
<li>Articles must be useful and relevant. Making the Web may remove any article it deems unsuitable.</li>
<li>You must own your content and it must be original. You may not re-post content unless you own it.</li>
<li>If you are re-posting content from your blog, we recommend you remove the article from your blog first. Although this is not required, it avoids a quality article becoming &#034;just another&#034; copy.</li>
<li>We do not share revenue, rather we share advertising space. We only rotate the Google AdSense ads. Other forms of revenue (form Text Link Ads and other services) are not shared.</li>
<li>You agree that Making the Web, or I, have no legal duty towards the service or scheme. We reserve the right to change or cancel the service or scheme at any time, with or without prior notice.</li>
</ul>
<p>Your ads are never shown to you while you are logged in to your MTW account.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=sn1lL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=sn1lL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=jgHBl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=jgHBl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=G3gBl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=G3gBl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=iOCGl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=iOCGl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169549" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/17/revenue-sharing-at-making-the-web/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F17%2Frevenue-sharing-at-making-the-web%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/17/revenue-sharing-at-making-the-web/</feedburner:origLink></item>
		<item>
		<title>Populate The Web: Real-Time Website Traffic Map</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169550/</link>
		<comments>http://www.making-the-web.com/2008/08/16/populate-the-web-real-time-website-traffic-map/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 15:17:15 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Website Reviews]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=197</guid>
		<description><![CDATA[I just stumbled upon this website about 20 minutes ago, and still haven&#039;t left. Basically, it shows you a fascinating map of the world and a live of view of the hits from across the internet.
If you own a website or a blog, you can also add your own website to the system, and your [...]]]></description>
			<content:encoded><![CDATA[<p>I just stumbled upon <a href="http://www.populatetheweb.com/who_populates_map.php">this website</a> about 20 minutes ago, and still haven&#039;t left. Basically, it shows you a fascinating map of the world and a live of view of the hits from across the internet.</p>
<p>If you own a website or a blog, you can also add your own website to the system, and your hits will be counted on the homepage, and your very own map. This is the code you&#039;ll need:</p>
<blockquote><p>&lt;a href=&#034;http://www.populatetheweb.com/&#034;&gt;&lt;img width=&#034;50&#034; height=&#034;50&#034; src=&#034;http://www.populatetheweb.com/populate.php?b=3&amp;s=_YOURSITE_&#034; alt=&#034;Who&#039;s Populating The Web?&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;</p></blockquote>
<p>Replace _YOURSITE_ with the web address of your site, excluding <em>http://www</em>. Once you&#039;ve done that, live hits will be displayed on the <a href="http://www.populatetheweb.com/who_populates_map.php">&#034;global&#034; map</a>, and you can access your individual site map via this URL:</p>
<blockquote><p>http://www.populatetheweb.com/who_populates_map.php?s=_YOURSITE_</p></blockquote>
<p>Again, replace _YOURSITE_ with your URL. It&#039;s a great service, and I&#039;m sure you&#039;ll have lots of fun with it&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=roDPL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=roDPL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=gEiyl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=gEiyl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=FGTUl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=FGTUl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=ITVdl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=ITVdl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169550" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/16/populate-the-web-real-time-website-traffic-map/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F16%2Fpopulate-the-web-real-time-website-traffic-map%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/16/populate-the-web-real-time-website-traffic-map/</feedburner:origLink></item>
		<item>
		<title>Making the Web Gets New Theme</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169552/</link>
		<comments>http://www.making-the-web.com/2008/08/15/making-the-web-gets-new-theme/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:24:37 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=158</guid>
		<description><![CDATA[Today, I have put live a new version of the theme for Making the Web&#039;s blog.
The first change you&#039;ll notice is the header. Instead of just a solid colour (previously green), I have decided to buy a suitable stock image. This is the first time I&#039;ve ever used stock photography in any website, but I [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I have put live a new version of the theme for Making the Web&#039;s blog.</p>
<p>The first change you&#039;ll notice is the header. Instead of just a solid colour (previously green), I have decided to buy a suitable stock image. This is the first time I&#039;ve ever used stock photography in any website, but I hope to use it more often - it is easier, more than sufficient, and reasonably cheap.</p>
<p style="text-align: center;"><a href="http://www.istockphoto.com/bbosh" target="_blank"><img class="aligncenter" src="http://istockphoto.com/images/referral_badges/languages/english/486x60_olive.gif" border="0" alt="View My Portfolio" /></a></p>
<p>I have also tried to eliminate the green colour from the website. Although green seemed like a good choice to begin with, I saw it as uglier every time I looked at it. Green also seems to be quite inconsistent across different displays.</p>
<p>And apart from a few font size and colour changes, that is pretty much it. Please tell me what you think, and tell me of any recommendations you may have.</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=h8FSL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=h8FSL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=AaT7l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=AaT7l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=yQkCl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=yQkCl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=99pll"><img src="http://feeds.feedburner.com/~f/making-the-web?i=99pll" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169552" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/15/making-the-web-gets-new-theme/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F15%2Fmaking-the-web-gets-new-theme%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/15/making-the-web-gets-new-theme/</feedburner:origLink></item>
		<item>
		<title>Bitfilm.net Now For Sale at NamePros</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169553/</link>
		<comments>http://www.making-the-web.com/2008/08/13/bitfilmnet-now-for-sale-at-namepros/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 20:30:42 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=146</guid>
		<description><![CDATA[Hi,
After having limited success with selling bitfilm.net, the domain for the older Making the Web, at Sedo, I have listed the domain on NamePros. Although the domain has deteriorated in ranking and popular due to some &#034;neglect&#034; since moving domain, it still receives up to 180 pageviews and 89 visitors per day with the existing [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>After having limited success with selling bitfilm.net, the domain for the older <em>Making the Web</em>, at Sedo, I have listed the <a href="http://www.namepros.com/domains-for-sale-auctions/502308-bitfilm-net-180-pageviews-day-starting.html">domain on NamePros</a>. Although the domain has deteriorated in ranking and popular due to some &#034;neglect&#034; since moving domain, it still receives up to 180 pageviews and 89 visitors per day with the existing articles on the blog.</p>
<p>The domain brings in about $65 per month with Text Link Ads, and has some popular articles. The homepage is currently PR 2 (due to moving domain), but some articles have OK ranking: 1 at PR4, 2 at PR3, 3 at PR2 and 3 at PR1.</p>
<p>I&#039;m sure that this blog can continue earning with Text Link Ads and other advertising networks, and with a little bit of effort can regain its previous popularity and ranking. Prior to moving to making-the-web.com in March, bitfilm.net had a PageRank of 5 with some articles having PR of 6, 5 and 4.</p>
<p>I&#039;m selling the domain in an auction, starting at $250. Articles currently at bitfilm.net can be purchased at $20 each, if the buyer would like to use the domain for the same purpose.</p>
<p>If you are interested in buying bitfilm.net, please see the NamePro&#039;s <a href="http://www.namepros.com/domains-for-sale-auctions/502308-bitfilm-net-180-pageviews-day-starting.html">auction</a>.</p>
<p>If you have any questions about the domain, please leave me a comment or <a href="http://making-the-web.com/contact/">contact me</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=T7ScL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=T7ScL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=k5HQl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=k5HQl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=33Vul"><img src="http://feeds.feedburner.com/~f/making-the-web?i=33Vul" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=rlXTl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=rlXTl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169553" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/13/bitfilmnet-now-for-sale-at-namepros/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F13%2Fbitfilmnet-now-for-sale-at-namepros%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/13/bitfilmnet-now-for-sale-at-namepros/</feedburner:origLink></item>
		<item>
		<title>ALIEN REd WOLf: A Great Unpopular Website</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169554/</link>
		<comments>http://www.making-the-web.com/2008/08/12/alien-red-wolf-a-great-unpopular-website/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 21:06:42 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Website Reviews]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=140</guid>
		<description><![CDATA[Websites are being created everyday by individuals and organisations hoping to provide useful information or a useful service. Unfortunately, due to the internet being a busy place with high demands, it is too often that websites go unnoticed and fall into the &#034;unpopular&#034; category.
Also unfortunately, it is too often that these websites have a wonderful [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Websites are being created everyday by individuals and organisations hoping to provide useful information or a useful service. Unfortunately, due to the internet being a busy place with high demands, it is too often that websites go unnoticed and fall into the &#034;unpopular&#034; category.</p>
<p style="text-align: left;">Also unfortunately, it is too often that these websites have a wonderful design and great content, and have a designer who has been considerate at every stage. I believe these websites should be known by everyone, and I will be bringing articles about unique and great websites in the &#034;Great Unpopular Website&#034; series. Number 1&#8230;</p>
<p style="text-align: center;"><a href="http://www.alienredwolf.com/"><img class="alignnone size-full wp-image-116" style="border: 1px solid #CCCCCC; padding:5px;" title="alienredwolf" src="http://making-the-web.com/wp-content/uploads/2008/06/alienredwolf.png" border="0" alt="" width="500" height="337" /></a></p>
<p style="text-align: left;">I found this website a couple of days ago, while playing a game called <a href="http://www.raitendo.com/games/doeo">Doeo</a>. This is the website of a <a href="http://www.alienredwolf.com/firsttimehere.html">musician who makes music with his face</a>, and provides some wonderful soundtracks to the game Doeo (Look at &#034;We Filled Nora&#034; on the listen page).</p>
<p style="text-align: left;">But, the reason I am voting for this website is because it has a very unique design which made me shout &#034;Wow!&#034; as soon as I opened it*. I was surprised to find out that the website has a page rank of just 2, and no rank from Alexa.</p>
<p style="text-align: left;">* <em>Metaphorically, of course</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=0v0uL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=0v0uL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=OlKYl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=OlKYl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=lb8el"><img src="http://feeds.feedburner.com/~f/making-the-web?i=lb8el" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=aCV3l"><img src="http://feeds.feedburner.com/~f/making-the-web?i=aCV3l" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169554" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/12/alien-red-wolf-a-great-unpopular-website/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F12%2Falien-red-wolf-a-great-unpopular-website%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/12/alien-red-wolf-a-great-unpopular-website/</feedburner:origLink></item>
		<item>
		<title>Increasing your PageRank</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169555/</link>
		<comments>http://www.making-the-web.com/2008/08/09/increasing-your-pagerank/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 18:33:56 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[pagerank]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=130</guid>
		<description><![CDATA[Little over a week ago, I announced that Google had updated PageRank, a figure which gives an insight to your site&#039;s popularity on the internet. With only small changes with my sites&#039; PR, I&#039;ve been looking for ways to increase my PageRank and get higher placement in search results.
Although PageRank is updated every 3-4 months, [...]]]></description>
			<content:encoded><![CDATA[<p>Little over a week ago, I <a href="http://making-the-web.com/2008/07/31/google-pr-update/">announced</a> that Google had updated PageRank, a figure which gives an insight to your site&#039;s popularity on the internet. With only small changes with my sites&#039; PR, I&#039;ve been looking for ways to increase my PageRank and get higher placement in search results.</p>
<p>Although PageRank is <a href="http://www.seocompany.ca/pagerank/page-rank-update-list.html">updated</a> every 3-4 months, or so, Google pretty much uses day-by-day statistics to generate &#034;internal PageRank.&#034; This can not be seen by anyone, but does impact result page placement for specific keywords. I have noticed some improvement with these techniques, and expect to see more in the long term.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-131 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="pagerank" src="http://making-the-web.com/wp-content/uploads/2008/08/pagerank.png" alt="" width="493" height="65" /></p>
<h3>Backlinks</h3>
<p>One of the main factors in determining your PageRank is to look at the PageRank for your backlinks. There are <a href="http://www.domainleft.com/how-your-pagerank-is-determined/">three general rules</a> for estimating PageRank:</p>
<ul>
<li>4 PRx backlinks will give you a PageRank of (x-1)</li>
<li>19 PRx backlinks will give you a PageRank of x</li>
<li>101 PRx backlinks will give you a PageRank of (x+1)</li>
</ul>
<p>So, for example, 4 PR5 backlinks should theoretically give us a PageRank of 4. Of course, this is just a rough figure, and we&#039;ll never be able to tell how Google truly calculates PageRank.</p>
<h3>Step 1: Get Natural Backlinks</h3>
<p>Natural backlinks tend to have PageRank ranging between 0-4. This generally allows many pages, commonly blog posts, to achieve PR3 or PR4, with the homepage PR4-5. To get higher ranking backlinks, your content has to be of high quality and you site must be quite popular.</p>
<p>Pages which naturally get huge numbers of backlinks are called linkbait. To be linkbait, an article or content should be written by a unique point of view and be valuable information. This isn&#039;t really the time or place for a guide on how to write linkbait, so I&#039;ll leave that to <a href="http://www.1stsearchenginerankings.com/2007/02/25/a-natural-way-of-linkbuilding-how-to-create-a-linkbait/">someone else</a>.</p>
<h3>Step 2: Trade Links</h3>
<p>One method of getting backlinks is to trade links with other webmasters. This is where you ask a webmaster to link to your webpage, if you link to theirs. The best thing is the fact that it is free, and all you have to do is ask. In the past, I&#039;ve been &#034;afraid&#034; of asking for link exchanges, despite many websites being happy for such a scheme. Generally it is a win-win situation, but having too many exchanged links may have <a href="http://www.webpronews.com/insiderreports/2007/08/16/reciprocal-links-whats-excessive-anyway">negative effects</a>.</p>
<p>If you are thinking about asking, or have been asked, to trade links, then you have got to judge whether you will benefit. Their page should have a decent PageRank which is not extreme to your PageRank. For example, if your page was PR6 and theirs PR3, it would not be beneficial to exchange.</p>
<p>Trading links can also bring some good quality traffic to a page, so it is best to negotiate a good link positioning and only trade with sites on the same topic, and with a similar point of view and similar content.</p>
<h3>Step 3: Buy Links</h3>
<p>Another way of getting backlinks, which <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66356">Google doesn&#039;t like</a>, is to buy links from services such as <a rel="nofollow" href="http://www.tnx.net/?p=119614652">TNX</a> (<abbr title="Affiliated Link">aff</abbr>) and <a rel="nofollow" href="http://www.text-link-ads.com/?ref=128652">Text Link Ads</a> (<abbr title="Affiliated Link">aff</abbr>). Although many people express their <a href="http://www.wilsonweb.com/linking/ward-buying-links.htm">concerns</a> about these services, they are pretty much safe in my point of view. Your link that is sold through TNX or Text Link Ads will have absolutely no associated with the two companies, meaning Google should never find out. So, in my view, it is worth the extremely minimal risk (if you have the money).</p>
<p>On the other hand, buying links might not give you the return you wanted. Some links can be expensive and offer little advantage to you. Traffic is a by-product of buying links for PR, so be sure you link has good placement. I would only buy links as a last resort, so be careful and do make rash decisions.</p>
<h3>Step 4: Make your own luck</h3>
<p>Many websites present the opportunity to link back to your site, often passively. The best examples are blogs and forums, where you can usually provide your website address.</p>
<p>Many blogs allow you to link your name to your website in comments, and you may occasionally have an excuse to place a link in the actual comment itself. These links often have impact on your PageRank and can bring a little traffic.</p>
<p>With forums, you can link to your site from your profile and in <a href="http://www.confidenceblog.com/forum_signatures.php">your signature</a>. I believe this is less effective than blog comments, but it can still contribute to your PageRank.</p>
<p>These links <em>may </em>contribute to your PageRank. They will not affect PR if they are <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=96569"><em>no-follow</em></a>, so it is worthwhile to make sure they do follow before using any of your effort. <a href="http://www.quirk.biz/searchstatus/">SearchStatus</a> for Firefox will tell you straight away whether links follow or not.</p>
<h3>Step 5: Get Links from .gov and .edu Sites</h3>
<p>PageRank is a measure of importance, so it makes sense to weigh official links when generating PageRank. <em>.gov</em> and <em>.edu</em> pages are highly regarded by Google because they are associated to the government, and education.</p>
<p><em><a href="http://www.hmrc.gov.uk/">HMRC.gov.uk</a> </em>has a PageRank of 7, apparently with <a href="http://siteexplorer.search.yahoo.com/uk/advsearch;_ylt=AipgppGR.qyuio4ZroinD4N_PRh.?p=http%3A%2F%2Fhmrc.gov.uk&amp;bwm=i&amp;bwmf=a&amp;bwms=p">64 inlinks</a>. <a href="http://www.problogger.net/"><em>ProBlogger</em></a>, a non-official website, has PR 6, with nearly <a href="http://siteexplorer.search.yahoo.com/uk/advsearch;_ylt=AipgppGR.qyuio4ZroinD4N_PRh.?p=http%3A%2F%2Fproblogger.net&amp;bwm=i&amp;bwmf=a&amp;bwms=p">40,000 inlinks</a>.</p>
<p>It is very difficult to get natural links from these official websites, as many of us have little association with the government. However, a lot of blogs, particularly from universities, exist with these extensions. Leaving comments, linking back to your site/page*, on these blogs can be very useful. Try searching with these queries for blogs, forums and guesbooks:</p>
<ul>
<li><a href="http://www.google.co.uk/search?q=site%3Aedu+inurl%3Ablog+computer+security">site:edu inurl:blog computer security</a> - replace &#034;computer security&#034; with a relevant topic.</li>
<li><a href="http://www.google.co.uk/search?q=site%3Aedu+%22powered+by+wordpress%22">site:edu &#034;powered by wordpress&#034;</a></li>
<li><a href="http://www.google.co.uk/search?q=site%3Aedu+inurl%3Aforum">site:edu inurl:forum</a></li>
<li><a href="http://www.google.co.uk/search?q=site%3Aedu+guestbook">site:edu guestbook</a></li>
</ul>
<p>Replace edu with other extensions, such as gov, gov.uk and other international variants.</p>
<p>* By &#034;linking back&#034;, I do not mean spamming. Just have your name link in comments, or reference and link to your page when relevant to the content.</p>
<p>See my notes in step 4 about <em>no-follow</em> links.</p>
<h3>Let&#039;s get started</h3>
<p>Thank you for reading. Lukily, <em>Making the Web</em> doesn&#039;t use <em>no-follow</em> links, so you can start with step 4 and leave a comment. Have you got any other ideas or suggestions? I&#039;d like to hear them&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=N2f1L"><img src="http://feeds.feedburner.com/~f/making-the-web?i=N2f1L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=P6fQl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=P6fQl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=H8hul"><img src="http://feeds.feedburner.com/~f/making-the-web?i=H8hul" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=cJnfl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=cJnfl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169555" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/09/increasing-your-pagerank/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F09%2Fincreasing-your-pagerank%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/09/increasing-your-pagerank/</feedburner:origLink></item>
		<item>
		<title>3 Legalities when running a website</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169556/</link>
		<comments>http://www.making-the-web.com/2008/08/06/3-legalities-when-running-a-website/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 11:01:43 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[legal]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=129</guid>
		<description><![CDATA[Most of us are pretty good at creating, operating and maintaining websites. But, we often forget about or overlook the legal rights, restrictions and regulations that are in place. For me, the legal side of website development has always been tricky.
I&#039;ve written this article to share the most common legalities which I have encountered. As [...]]]></description>
			<content:encoded><![CDATA[<p>Most of us are pretty good at creating, operating and maintaining websites. But, we often forget about or overlook the legal rights, restrictions and regulations that are in place. For me, the legal side of website development has always been tricky.</p>
<p>I&#039;ve written this article to share the most common legalities which I have encountered. As I am in the UK, most of this article will be about the UK legal system.</p>
<h3>1. Data Protection</h3>
<p>The <a href="http://www.opsi.gov.uk/Acts/Acts1998/ukpga_19980029_en_1"><em>Data Protection Act</em></a> is often oversimplified and misunderstood by many people.</p>
<p>You should have a privacy policy on all your websites, linked from every page. The purpose of the privacy policy is to tell users how you are collecting and using their information. This is essential as the DPA states that individuals are entitled &#034;<span class="LegDS LegRHS LegP3Text">to be informed by any data controller whether personal data of which that individual is the data subject are being processed by or on behalf of that data controller&#034;. Look at <a href="http://www.opsi.gov.uk/Acts/Acts1998/ukpga_19980029_en_3#pt2-l1g7">section 7</a> for an idea of what you need to include in your policy.</span></p>
<p>Another important obligation of the act is to <a href="http://www.ico.gov.uk/what_we_cover/data_protection/notification.aspx">notify the Information Commissioner</a> before processing personal information. Although this is important, many people do not notify and may be subjected to criminal charges.</p>
<h3>2. Copyright</h3>
<p>Copyright is a big and sensitive issue. I have been in a few situations of finding my content on other blogs and websites, without my permission and with no acknowledgement.</p>
<p>The <em><a href="http://en.wikipedia.org/wiki/Copyright,_Designs_and_Patents_Act_1988">Copyright, Designs and Patents Act</a>, </em>in the UK at least, means all literature, music, film and works of art are protected by law. Legally you need permission to use any copyrighted material (Permission can be granted personally, or through a general license). Most web content creators find it acceptable to let others re-use material (such as articles from blogs) as long as it is clearly acknowledged.</p>
<p>A copyright notice is never required, but is a good idea.</p>
<h3>3. Disability Discrimination</h3>
<p>Websites should be accessible to disabled users, in the same way that business buildings must be accessible.</p>
<p>Although it doesn&#039;t mention websites and services specifically, the <a href="http://www.opsi.gov.uk/Acts/acts2005/ukpga_20050013_en_1"><em>Disability Discrimination Act</em></a> does state that any &#034;provider of a service&#034; must ensure the service is accessible to disabled people, within reason.</p>
<p>You should make sure your website is accessible to those with visual or aural impairment, and to those who use alternative forms of navigation without the mouse or keyboard. You should aim to meet the guideless of the <a href="http://www.w3.org/TR/WCAG10/#Guidelines"><em>Web Accessibility Initiative&#039;s Web Content Accessibility Guidelines</em></a>.</p>
<p>I hope that you&#039;ve been inspired by the legal side of website development, and take actions to meet them in every aspect. If you&#039;ve ever been on the wrong side of the law, please let me know.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=WK9PL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=WK9PL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=qJDkl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=qJDkl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=4xczl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=4xczl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=Ua7Il"><img src="http://feeds.feedburner.com/~f/making-the-web?i=Ua7Il" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169556" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/08/06/3-legalities-when-running-a-website/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F08%2F06%2F3-legalities-when-running-a-website%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/08/06/3-legalities-when-running-a-website/</feedburner:origLink></item>
		<item>
		<title>Google PR Update</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169557/</link>
		<comments>http://www.making-the-web.com/2008/07/31/google-pr-update/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 09:16:27 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=128</guid>
		<description><![CDATA[Hi,
I&#039;ve just noticed that Google&#039;s PageRank seems to have been updated again. Overall, I&#039;m OK with the updates. This is how it has worked out for me:
making-the-web.com has gone from PR 0 to PR 3.
file-encryptor.com has gone from PR 3 to PR 4.
And, bitfilm.net has gone from PR 3 to PR 2, since the blog [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#039;ve just noticed that Google&#039;s PageRank seems to have been updated again. Overall, I&#039;m OK with the updates. This is how it has worked out for me:</p>
<p><a href="http://making-the-web.com"><em>making-the-web.com</em></a> has gone from PR 0 to PR 3.</p>
<p><a href="http://file-encryptor.com"><em>file-encryptor.com</em></a> has gone from PR 3 to PR 4.</p>
<p>And, <a href="http://bitfilm.net"><em>bitfilm.net</em></a> has gone from PR 3 to PR 2, since the blog moving domain.</p>
<p>Are you happy with you&#039;re PageRank changes, or have you seen an unexpected PR change on the internet? Please leave a comment&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=zUz7L"><img src="http://feeds.feedburner.com/~f/making-the-web?i=zUz7L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=FLial"><img src="http://feeds.feedburner.com/~f/making-the-web?i=FLial" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=iNzUl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=iNzUl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=jJNll"><img src="http://feeds.feedburner.com/~f/making-the-web?i=jJNll" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169557" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/07/31/google-pr-update/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F07%2F31%2Fgoogle-pr-update%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/07/31/google-pr-update/</feedburner:origLink></item>
		<item>
		<title>Introducing Cuil</title>
		<link>http://feeds.feedburner.com/~r/making-the-web/~3/404169558/</link>
		<comments>http://www.making-the-web.com/2008/07/28/introducing-cuil/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 17:22:49 +0000</pubDate>
		<dc:creator>Brendon</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://making-the-web.com/?p=126</guid>
		<description><![CDATA[Cuil is yet another search engine that was introduced recently. The most interesting feature of the service is its index size: about 120 billion pages. They claim this is three times as big as Google&#039;s index and ten times as big as Microsoft&#039;s. However, Google recently announced that their index size in fact nears 1 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cuil.com">Cuil</a> is yet another search engine that was introduced recently. The most interesting feature of the service is its index size: about 120 billion pages. They claim this is three times as big as Google&#039;s index and ten times as big as Microsoft&#039;s. However, Google recently <a href="http://googleblog.blogspot.com/2008/07/we-knew-web-was-big.html">announced</a> that their index size in fact nears 1 trillion pages, 960 billion away from Cuil&#039;s guess.</p>
<p>Three founders are past employees of Google, and it appears they want to compete with the search giant. However, with its unintuitive interface, lack of features and search preferences, and constant errors, Cuil is unlikely to succeed - at least not today.</p>
<p>Although the homepage looks just like another search engine, the way results are presented is totally different:</p>
<p style="text-align: center;"><a href="http://making-the-web.com/wp-content/uploads/2008/07/cuil.png"><img class="alignnone size-full wp-image-127 aligncenter" style="border: 1px solid #CCCCCC; padding:5px;" title="cuil" src="http://making-the-web.com/wp-content/uploads/2008/07/cuil.png" border="0" alt="" width="500" height="236" /></a></p>
<p>It may be unique and original, but, put simply, I don&#039;t like it! It just looks too congested and it takes the element of simplicity that should be in every search engine.</p>
<p>What do you think?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/making-the-web?a=m6hsL"><img src="http://feeds.feedburner.com/~f/making-the-web?i=m6hsL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=8X6el"><img src="http://feeds.feedburner.com/~f/making-the-web?i=8X6el" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=yAqzl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=yAqzl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/making-the-web?a=yhMYl"><img src="http://feeds.feedburner.com/~f/making-the-web?i=yhMYl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/making-the-web/~4/404169558" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.making-the-web.com/2008/07/28/introducing-cuil/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=making-the-web&amp;itemurl=http%3A%2F%2Fwww.making-the-web.com%2F2008%2F07%2F28%2Fintroducing-cuil%2F</feedburner:awareness><feedburner:origLink>http://www.making-the-web.com/2008/07/28/introducing-cuil/</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=making-the-web</feedburner:awareness></channel>
</rss>
