<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Logicfish &#187; Featured Post</title>
	<atom:link href="http://logicfish.me.uk/category/feature/feed/" rel="self" type="application/rss+xml" />
	<link>http://logicfish.me.uk</link>
	<description>Independant reviews, software, internet, how to promote your site</description>
	<lastBuildDate>Tue, 05 Jan 2010 20:44:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://logicfish.me.uk</link>
<url>http://logicfish.me.uk/wp-content/plugins/maxblogpress-favicon/icons/favicon-82.ico</url>
<title>Logicfish</title>
</image>
		<item>
		<title>Web 3.0 for beginners</title>
		<link>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/</link>
		<comments>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:27:59 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Cataloguing]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Data Formats]]></category>
		<category><![CDATA[Featured Post]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Libraries]]></category>
		<category><![CDATA[Library and Information Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technical Services]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Webmaster Resources]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=126</guid>
		<description><![CDATA[In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.
I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.
Basic concepts
URI
When [...]]]></description>
			<content:encoded><![CDATA[<p>In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.</p>
<p>I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.</p>
<h3>Basic concepts</h3>
<h4>URI</h4>
<p>When using semantic information architectures,  any artifact may be addressed by a symbol known as a URI or &#8220;unique resource indicator&#8221;.  By artifact we mean any kind of information at all.</p>
<p>For example &#8220;rdf:type&#8221;  is a property that may exist for any meta data;  it is referenced by the following URI &#8220;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#8221;.  In this case, the URI is also a URL meaning that you can go to this address in your browser (unless you can  read xml/rdf or you are a machine, this will not make much sense).  However, there is no requirement for a URI to address anything over the internet. nor for it to return anything meaningful  if it does.</p>
<p>A URI is similar to a URL in that it has the same token structure.  However a URL is assumed to be directly addressable over the internet, whereas a URI is an identifier.  URIs will often start with &#8220;http:&#8221; &#8211; this is merely a convention and does not mean that any web content will exist at that location.</p>
<h4>Meta-Data</h4>
<p>Meta-data means information about information.   Humans do not generally use meta-data themselves, however to classify documents using machines, we need an easy way to identify which information is contained in which document.  We also need to be able to embed information in the document.</p>
<p>For example, say we have document X.  Within X, part of the text will represent the title of the document, part will represent for example the author, and so on.  A human may easily discern which part of the text refers to which type;  however, for a machine there exists no easy way to distinguish parts of the document.   For this reason we use meta-tags, either within the document or in a separate meta-document, to tell the machine that part A refers to the title, part B to the author, C to the date.</p>
<p>The semantic web exisits to define meta-data around data that we already have, and to create concept maps called ontologies, describing the various types of meta-data.</p>
<h4>Ontologies</h4>
<p>An ontology represents a classification system by which we may categorize meta-data.  For example, the Dublin Core ontology contains properties such as &#8220;dc:title&#8221; and &#8220;dc:author&#8221; which refer directly to the title and the author of the document respectively.</p>
<p>Ontologies, and meta-data, are arranged in structures known as graphs.  Within these structures we have two types of entity;  nodes and arcs.  Nodes represent individuals or items within the graph;  arcs represent the relations between them.  A node has an identifier (in RDF we use the URI to identify any unique instance);  an arc has two nodes (in RDF we call these Subject and Object) and a predicate which specifies the type of relation,.  For example, &#8220;rdf:instanceOf&#8221; represents a predicate which links an individual to the definition of the type that the individual represents.</p>
<p>A URI forms a functional identifier for a node;  that is, any two elements with the same URI, refer to the same node.</p>
<h4>Types</h4>
<p>Any individual in Web3 must have a type;  we specify the type using the &#8220;instanceOf&#8221; property (in rdf).  Basic types are simple definitions, for example we may create a type &#8220;car&#8221; which has a supertype &#8220;automobile&#8221;.  However the semantic web allows us to create more complex types using built-in rules; if our software has inferencing capabilities. we may make full use of these.  Here is an example:  we can define a type &#8220;4 wheeled objects&#8221; where the property &#8220;numberOfWheels&#8221; is equal to 4.  If we create an individual, and assign it the property &#8220;numberOfWheels&#8221; with the value 4,  our software will automatically infer that our individual is a member of the type &#8220;4 wheeled objects&#8221; with no further effort on our part.</p>
<h4>Properties</h4>
<p>Properties are assignments of some artifact, to another artifact.  Two types of properties exists;  object properties, where the value of the property represents another individual, and data properties, where the value of the property represents a known data type such as string or integer.  Much like types, properties may be arranged in a heirarchy with the more general properties higher in the graph.</p>
<h4>Individuals</h4>
<p>An individual represents an instance of a type;  this is similar to an &#8220;object&#8221; in oop.  Basically, it represents a single &#8220;thing&#8221; rather than a type of thing.</p>
<h3>Core Ontologies</h3>
<p>There now follows a list of the most common ontologies</p>
<h4>Dublin Core</h4>
<p>Basic meta-data such as author, copyright, and other document related artifacts.</p>
<h4>FOAF &#8211; Friend-of-a-friend</h4>
<p>This ontology deals with relationships between people.  For example, I could use &#8220;foaf:knows&#8221; in my document when linking to the homepages of people that I know.</p>
<h4>SIOC Senantically Interlinked Online Communities</h4>
<p>Similar to FOAF;  allows me to specify metadata relating to social networking.</p>
<h4>SKOS Simple Knowledge Organization System</h4>
<p>Deals with concepts, and allows classification by grouping concepts into schemas.  One may also specify semantic relationships between concepts; for exmaple,  the &#8220;skos:broader&#8221; property links to a conecpt more general that the concept it links from (ie trees-&gt;plants, kilogram-&gt;wieght measurement, fly-&gt;insect).</p>
<p>Hopefully this basic guide will start you off;   in the next part of the series, I will explain the various formats that may be used to express semantic meta data,  and show you how to start using these right away in your web content.</p>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://derivadow.com/2009/03/31/linking-bbccouk-to-the-linked-data-cloud/">Linking bbc.co.uk to the Linked Data cloud</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://derivadow.com/2009/03/26/what-does-the-history-of-the-web-tell-us-about-its-future/">What does the history of the web tell us about its future?</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://feedproxy.google.com/~r/Technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://www.cafeconleche.org/#June_17_2009_22911">Michael Kay has released version 9.1.0.7 of Saxon, his XSLT 2.0 and XQuery processor for Java and .NET.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://www.cafeconleche.org/#June_12_2009_23143">Andy Clark's updated his NekoHTML open source HTML parser to version 1.9.12.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://canoo.com/blog/2009/06/25/jazoon-09-semantic-web/">Jazoon '09: Semantic Web</a> :: <em><a href="http://canoo.com/blog">Rich Internet Applications (RIA)</a></em></li><li><a href="http://feedproxy.google.com/~r/technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://reinout.vanrees.org/weblog/2009/07/01/ep-web-of-data.html">Reinout van Rees: Tapping into the web of data (Cosmin Basca)</a> :: <em><a href="http://planet.python.org/">Planet Python</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/Resource%20Description%20Framework">Resource Description Framework</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20Web">Semantic Web</a></li><li><a href="http://en.wikipedia.org/wiki/Resource%20%28Web%29">Resource (Web)</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20publishing">Semantic publishing</a></li><li><a href="http://en.wikipedia.org/wiki/Ontology%20%28information%20science%29">Ontology (information science)</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51cg6YfvF%2BL._SL160_.jpg" width="120" alt="Semantic Web For Dummies (For Dummies (Computer/Tech))" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470396792&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web For Dummies (For Dummies (Computer/Tech))</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Semantic Web technology is already changing how we interact with data on the Web. By connecting random information on the Internet in new wa</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51AKYCHFG8L._SL160_.jpg" width="120" alt="A Semantic Web Primer (Cooperative Information Systems)" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0262012103&tag=wq2rx-20&camp=1789&creative=9325">A Semantic Web Primer (Cooperative Information Systems)</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The development of the Semantic Web, with machine-readable content, has the potential to revolutionize the World Wide Web and its use. A Sem</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41QS4JGT7TL._SL160_.jpg" width="120" alt="Semantic Web Technologies: Trends and Research in Ontology-based Systems" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470025964&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web Technologies: Trends and Research in Ontology-based Systems</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Semantic Web combines the descriptive languages RDF (Resource Description Framework) and OWL (Web Ontology Language), with the data-cent</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/511kc4wcgtL._SL160_.jpg" width="120" alt="Visualizing the Semantic Web: XML-based Internet and Information Visualization" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/1852339764&tag=wq2rx-20&camp=1789&creative=9325">Visualizing the Semantic Web: XML-based Internet and Information Visualization</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Web has evolved from HTML quite dramatically over the last few years with revolutionary techniques for content and structural modeling,</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51jUtuN60bL._SL160_.jpg" width="120" alt="Programming the Semantic Web" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0596153813&tag=wq2rx-20&camp=1789&creative=9325">Programming the Semantic Web</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>With this book, the promise of the Semantic Web -- in which machines can find, share, and combine data on the Web -- is not just a technical</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fave Software Roundup &#8211; Firefox Plugins</title>
		<link>http://logicfish.me.uk/2009/03/fave-software-roundup-firefox-plugins/</link>
		<comments>http://logicfish.me.uk/2009/03/fave-software-roundup-firefox-plugins/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 21:32:05 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Featured Post]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=40</guid>
		<description><![CDATA[



Image via Wikipedia



We`ve been having a firefox blitz!
I know,  it&#8217;s a resouce hog,  it crashes,  it forgets my passwords&#8230;  But it&#8217;s still the only browser that is suitable for everyday use,  mainly because of the extensive set of plugins.
We always use the latest beta, 3.1b3, because the javascript engine is so much faster &#8211; it [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 212px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Webkit_Logo.png"><img title="WebKit" src="http://upload.wikimedia.org/wikipedia/en/thumb/5/5a/Webkit_Logo.png/202px-Webkit_Logo.png" alt="WebKit" width="202" height="163" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:Webkit_Logo.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>We`ve been having a <a class="zem_slink" title="Mozilla Firefox" rel="geolocation" href="http://maps.google.com/maps?ll=45.1238,-123.1138&amp;spn=1.0,1.0&amp;q=45.1238,-123.1138%20%28Mozilla%20Firefox%29&amp;t=h">firefox</a> blitz!</p>
<p>I know,  it&#8217;s a resouce hog,  it crashes,  it forgets my passwords&#8230;  But it&#8217;s still the only browser that is suitable for everyday use,  mainly because of the extensive set of plugins.</p>
<p>We always use the latest beta, 3.1b3, because the javascript engine is so much faster &#8211; it has been completely rewritten for 3.1 and is now based on the <a class="zem_slink" title="WebKit" rel="homepage" href="http://webkit.org/">WebKit</a> engine (other browsers using WebKit are <a class="zem_slink" title="Google Chrome" rel="homepage" href="http://www.google.com/chrome">google chrome</a>, <a class="zem_slink" title="Arora (web browser)" rel="homepage" href="http://www.arora-browser.org">arora</a> and <a class="zem_slink" title="Midori (browser)" rel="homepage" href="http://www.twotoasts.de/">midori</a>).</p>
<p>Anyway,  here is a list of our favorite plugins</p>
<h3><a title="Interclue" href="http://interclue.com" target="_blank">Interclue</a></h3>
<p>This neat little tool allows you to preview any link before clicking.  It makes a lot of difference to browing &#8211; often I will miss out a link because my resource-hungry browser  has become to overloaded to start a new tab.  Now I can preview the page in a popup;  often this saves me from actualy visiting the site if the content does not meet my expectaitions.</p>
<p>Also,  it shows you lots of lovely indormation about the page such as headers and so on.</p>
<h3><a href="http://lazarus.interclue.com/">Lazurus</a></h3>
<p>This is a neat,  unobtrusive plugin.  Yyou see  an icon in the status bar and an additional context menu option if you right click inside a form.</p>
<p>What it does is it resurrects lost form content.  So if the browser bombs in the middle of writing your masterpiece on wordpress,  you can reload the page and restore the form content.  Its great for saving passwords too.</p>
<h3><a class="zem_slink" title="IMacros" rel="homepage" href="http://wiki.imacros.net/iMacros_for_Firefox">IMacros</a></h3>
<p>This plugin allows users to script firefox,  a bit like <a class="zem_slink" title="Greasemonkey" rel="homepage" href="http://www.greasespot.net">GreaseMonkey</a> but more advanced.  I havent had time to play with it much but it brings up all sorts of ideas (not all of them white-hat).  I`m going to have a proper look at this when I ger the chance;  it would be nice if I could automate many of the mundane tasks that seem to take so long in firefox.</p>
<h3><a href="http://www.ghostery.com/" target="_self">Ghostery</a></h3>
<p>This one shows web-bug scripts such as google analytics and allows you to see what is running in your browser from a webpage.</p>
<h3><a href="http://ff.seoquake.com/" target="_blank">SEOQuake</a></h3>
<p>This shows you everything you need to know about keywords,  page rank and SEO of a page.</p>
<h3><a href="http://www.wappalyzer.com/">Wappalyzer</a></h3>
<p>This neat plugin shows you meta-data about the software running on a page such as the server software.  Unfortunately,  this has not been updated for firefox 3.1b3.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://cutewriting.blogspot.com/2009/03/five-unavoidable-firefox-add-ons-for.html">Five Unavoidable Firefox Add-ons for Search Engine Optimization</a> (cutewriting.blogspot.com)</li>
<li class="zemanta-article-ul-li"><a href="http://gigaom.com/2009/03/03/flock-says-it-hasnt-switched-to-google-chrome-from-firefox/">Who Says Flock Switching to Chrome? Not Flock</a> (gigaom.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-1001_3-10118707-92.html?part=rss&amp;subj=news">Second Firefox 3.1 beta brings significant changes</a> (news.cnet.com)</li>
<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/02/03/flickr-firefox-extensions/">15 Great Flickr Extensions for Firefox</a> (mashable.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/9210e76d-c661-49f8-98fe-a552d607401d/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=9210e76d-c661-49f8-98fe-a552d607401d" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://news.cnet.com/8301-13505_3-10264368-16.html?part=rss&subj=news&tag=2547-1_3-0-20">Safari numbers still dwarfed by Firefox downloads</a> :: <em><a href="http://news.cnet.com/">CNET News.com</a></em></li><li><a href="http://feedproxy.google.com/~r/paulstamatiou/~3/Gq7zzOjsILo/first-impressions-safari-4-beta">First Impressions: Safari 4 Beta</a> :: <em><a href="http://paulstamatiou.com">PaulStamatiou.com</a></em></li><li><a href="http://www.wisdump.com/web-experience/google-plays-and-promotes-with-chrome-experiments-plus-browser-updates/">Google plays and promotes with Chrome Experiments (plus! browser updates)</a> :: <em><a href="http://www.wisdump.com">Wisdump</a></em></li><li><a href="http://www.teknobites.com/2009/05/30/wordpress-image-uploader-crashes-firefox-how-to-fix-it/">Wordpress Image Uploader crashes Firefox, how to fix it</a> :: <em><a href="http://www.teknobites.com">Technology Bites</a></em></li><li><a href="http://cleverclogs.org/2008/05/supercharging-summize-searches-in-firefox-and-flock.html">Supercharging Summize Searches in Firefox and Flock</a> :: <em><a href="http://cleverclogs.org">CleverClogs</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/Google%20Chrome">Google Chrome</a></li><li><a href="http://en.wikipedia.org/wiki/List%20of%20Firefox%20extensions">List of Firefox extensions</a></li><li><a href="http://en.wikipedia.org/wiki/History%20of%20Mozilla%20Firefox">History of Mozilla Firefox</a></li><li><a href="http://en.wikipedia.org/wiki/Mozilla%20Firefox">Mozilla Firefox</a></li><li><a href="http://en.wikipedia.org/wiki/Comparison%20of%20web%20browsers">Comparison of web browsers</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41RM9N5DfEL._SL160_.jpg" width="120" alt="Greater" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B0028V2P98&tag=wq2rx-20&camp=1789&creative=9325">Greater</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>No reward is greater than education. No education is greater than learning that websites that automatically resize your browser window suck</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51G4mjDSEML._SL160_.jpg" width="120" alt="Internet for Seniors - Windows Vista Edition" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B001F51MMY&tag=wq2rx-20&camp=1789&creative=9325">Internet for Seniors - Windows Vista Edition</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>This instructional video has been designed to give computer shy seniors a non-technical and easy to follow introduction to the World Wide We</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/515hpaiINDL._SL160_.jpg" width="120" alt="Internet for Seniors: a step-by-step guide for the computer shy" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B0015KLHH4&tag=wq2rx-20&camp=1789&creative=9325">Internet for Seniors: a step-by-step guide for the computer shy</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>This instructional video has been designed to give computer shy seniors a non-technical and easy to follow introduction to the World Wide We</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/516eULIRBBL._SL160_.jpg" width="120" alt="TextExpander" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B001AUSP2O&tag=wq2rx-20&camp=1789&creative=9325">TextExpander</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Save time and avoid repetitive typing with TextExpander. You can define customized abbreviations for frequently-used text and images, also k</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/31Ca6vJwLjL._SL160_.jpg" width="120" alt="JavaScript Video Tutorial Training. 13 Hours in 124 Video Lessons on 1 DVD" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000MUSR4Y&tag=wq2rx-20&camp=1789&creative=9325">JavaScript Video Tutorial Training. 13 Hours in 124 Video Lessons on 1 DVD</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Complete video tutorial training for JavaScript coding. Lessons are presented in step-by-step videos with a total running time of over 9 hou</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/03/fave-software-roundup-firefox-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why the recession occurred &#8211; should we be surprised?</title>
		<link>http://logicfish.me.uk/2009/03/why-the-economy-crashed-should-we-be-surprised/</link>
		<comments>http://logicfish.me.uk/2009/03/why-the-economy-crashed-should-we-be-surprised/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 06:43:15 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Commodities and Futures]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Economics]]></category>
		<category><![CDATA[Featured Post]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Financial services]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Promotion]]></category>
		<category><![CDATA[Recession]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Social Sciences]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Directories]]></category>
		<category><![CDATA[Euro Pacific Capital]]></category>
		<category><![CDATA[Fannie Mae]]></category>
		<category><![CDATA[Mortgage]]></category>
		<category><![CDATA[Oceania]]></category>
		<category><![CDATA[Peter Schiff]]></category>
		<category><![CDATA[PeterSchiff]]></category>
		<category><![CDATA[Shopping]]></category>
		<category><![CDATA[Society and Culture]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=10</guid>
		<description><![CDATA[Shopuld we have been surprised at the recent collapse of the financial sector?
In this viedo Peter Schiff (president of Euro Pacific Capital) explains what has happened.







RobinHoodSEO &#8211; Software , tutorials , e-books , knowledge base










RobinHoodSEO







Here he is in 2007 predicting the recession

For some great advice on how to make money during the recession, take a [...]]]></description>
			<content:encoded><![CDATA[<p>Shopuld we have been surprised at the recent collapse of the <a class="zem_slink" title="Financial Services" rel="wikinvest" href="http://www.wikinvest.com/industry/Financial_Services">financial sector</a>?</p>
<p>In this viedo <a class="zem_slink" title="Peter Schiff" rel="homepage" href="http://www.europac.net">Peter Schiff</a> (president of Euro Pacific Capital) explains what has happened.</p>
<table style="height: 499px;" border="1" width="438" align="center" bgcolor="#ffffff" bordercolor="#999999">
<tbody>
<tr>
<td width="470" height="344" align="center" valign="middle" bgcolor="#999999" background="http://robinhood.wq2rx.com/images/seed.jpg">
<table border="0" width="260" align="center">
<tbody>
<tr>
<td width="250" align="center"><span><span style="font-family: Helvetica; color: #64622b; font-size: small;"><span style="font-family: georgia,palatino;"><strong><span style="color: #99cc00;">RobinHood</span><span style="color: #ff0000;">SEO</span></strong></span> &#8211; Software , tutorials , e-books , knowledge base</span></span></td>
</tr>
</tbody>
</table>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="363" height="362" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="src" value="http://www.youtube.com/v/EgMclXX5msc&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><embed type="application/x-shockwave-flash" width="363" height="362" src="http://www.youtube.com/v/EgMclXX5msc&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowfullscreen="true"></embed></object></div>
<table style="height: 69px;" border="0" width="321">
<tbody>
<tr>
<td width="290" height="41" align="center"></td>
</tr>
<tr>
<td height="18" align="center"><span><span style="color: #0f57f1; font-size: x-small;"><a href="http://robinhoodseo.co.uk"><span style="font-family: georgia,palatino;"><strong>RobinHood</strong></span>SEO</a></span></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>Here he is in 2007 predicting the recession</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2I0QN-FYkpw&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2I0QN-FYkpw&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h6 class="zemanta-related-title" style="font-size: 1em;">For some great advice on how to make money during the recession, take a look at <a href="http://ezwealthcreation.co.uk/blog">this blog</a>.</h6>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.samizdata.net/blog/archives/2009/01/ponzi_economics.html">Ponzi economics</a> (samizdata.net)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/01/08/news/economy/case_against_stimulus/index.htm&amp;a=2581630&amp;rid=80619f43-a567-4f39-97d6-9a6366369474&amp;e=e0103681ef9f690ffe8af6376a5aa305">The case for doing nothing</a> (money.cnn.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/02/24/real_estate/Case_Shiller_December/index.htm&amp;a=3376187&amp;rid=80619f43-a567-4f39-97d6-9a6366369474&amp;e=57060e209e00272edd1745cc3abd7148">Home prices in record drop</a> (money.cnn.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/12/31/real_estate/home_price_drop/index.htm&amp;a=10985375&amp;rid=80619f43-a567-4f39-97d6-9a6366369474&amp;e=2762af23a70ff48a76a586231fe4ed99">3 reasons home prices are heading lower</a> (money.cnn.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.dailyfinance.com/2009/09/26/peter-schiff-says-gold-will-rise-to-5-000-again-but-is-he-rea/">Peter Schiff says gold will rise to $5,000. Again. But is he really a gold bug?</a> (dailyfinance.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.huffingtonpost.com/2010/01/05/nyt-on-housing-crisis-thi_n_411807.html">NYT On Housing Crisis: &#8216;Things Didn&#8217;t Have To Get This Bad&#8217; But We Can Still &#8216;Avert The Worst&#8217;</a> (huffingtonpost.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.dvorak.org/blog/2009/10/06/peter-schiff-now-predicts-demise-of-the-dollar/">Peter Schiff now predicts demise of the dollar</a> (dvorak.org)</li>
<li class="zemanta-article-ul-li"><a href="http://seattletimes.nwsource.com/html/businesstechnology/2010209542_apusforeclosuresrentals.html?syndication=rss">Fannie Mae offers borrowers option to foreclosure</a> (seattletimes.nwsource.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//www.msnbc.msn.com/id/33654593/ns/business-real_estate/&amp;a=9267627&amp;rid=80619f43-a567-4f39-97d6-9a6366369474&amp;e=f306537355c29aee2c4f7bafc3b512d1">Fannie Mae getting into home rental business</a> (msnbc.msn.com)</li>
<li class="zemanta-article-ul-li"><a href="http://econotwist.wordpress.com/2009/11/06/fighting-the-stimulus-addiction/">Fighting The Stimulus Addiction</a> (econotwist.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.huffingtonpost.com/2009/12/27/krugman-reasonably-high-c_n_404315.html">Krugman: &#8216;Reasonably High Chance&#8217; Economy Will Contract Next Year (VIDEO)</a> (huffingtonpost.com)</li>
<li class="zemanta-article-ul-li"><a href="http://lansner.freedomblogging.com/2009/10/07/peter-schiff/38911/">Hear why this guy saw home-price crash coming</a> (lansner.freedomblogging.com)</li>
<li class="zemanta-article-ul-li"><a href="http://paul.kedrosky.com/archives/2009/01/26/peter_schiff_wa.html">Peter Schiff was Right^H^H^H^H^HWrong</a> (paul.kedrosky.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/80619f43-a567-4f39-97d6-9a6366369474/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=80619f43-a567-4f39-97d6-9a6366369474" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://feeds.reuters.com/~r/reuters/politicsNews/~3/VwsAUHxYSOA/idUSTRE5593T720090610">Broker who predicted meltdown eyes Senate run</a> :: <em><a href="http://www.reuters.com">Reuters: Politics</a></em></li><li><a href="http://feedproxy.google.com/~r/ommalik/~3/_51LrllHfKc/">Microeconomics of the Consumer Web</a> :: <em><a href="http://gigaom.com">GigaOM</a></em></li><li><a href="http://feedproxy.google.com/~r/TheBigPicture/~3/h7Xrrgle8x4/">Governor Kevin Warsh: Defining Deviancy</a> :: <em><a href="http://www.ritholtz.com/blog">The Big Picture</a></em></li><li><a href="http://web.mit.edu/newsoffice/2009/teaching-0518.html">A watershed moment in economics and finance</a> :: <em><a href="http://web.mit.edu/newsoffice/">MIT News</a></em></li><li><a href="http://ctlocalpolitics.net/2009/06/12/handicapping-the-field-republican-us-senate-nomination/">Handicapping the Field: Republican U.S. Senate Nomination</a> :: <em><a href="http://ctlocalpolitics.net">Connecticut Local Politics</a></em></li><li><a href="http://feedproxy.google.com/~r/TheBigPicture/~3/dKxZOnvu5JY/">Words from the (investment) Wise June 28, 2009</a> :: <em><a href="http://www.ritholtz.com/blog">The Big Picture</a></em></li><li><a href="http://www.bbc.co.uk/go/rss/-/blogs/thereporters/stephanieflanders/">Stephanomics</a> :: <em><a href="http://news.bbc.co.uk/go/rss/-/1/hi/default.stm">BBC News | News Front Page | UK Edition</a></em></li><li><a href="http://clausvistesen.squarespace.com/alphasources-blog/2009/6/20/how-to-get-it-wrong-big-time.html">How to Get it Wrong (Big Time)</a> :: <em><a href="http://clausvistesen.squarespace.com/alphasources-blog/">Alpha.Sources blog</a></em></li><li><a href="http://news.bbc.co.uk/go/rss/-/2/hi/business/8116234.stm">Recession 'near bottom' says OECD</a> :: <em><a href="http://news.bbc.co.uk/go/rss/-/2/hi/business/default.stm">BBC News | Business | World Edition</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/United%20States%20housing%20bubble">United States housing bubble</a></li><li><a href="http://en.wikipedia.org/wiki/United%20States%20housing%20market%20correction">United States housing market correction</a></li><li><a href="http://en.wikipedia.org/wiki/Recession">Recession</a></li><li><a href="http://en.wikipedia.org/wiki/Peter%20Schiff">Peter Schiff</a></li><li><a href="http://en.wikipedia.org/wiki/Financial%20crisis">Financial crisis</a></li><li><a href="http://en.wikipedia.org/wiki/Economic%20crisis%20of%202008">Economic crisis of 2008</a></li><li><a href="http://en.wikipedia.org/wiki/Money%20supply">Money supply</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51TOxvdm6CL._SL160_.jpg" width="120" alt="2008 Global Conference: A Discussion with Nobel Laureates in Economics" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B001HL01GO&tag=wq2rx-20&camp=1789&creative=9325">2008 Global Conference: A Discussion with Nobel Laureates in Economics</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Marking an 11-year tradition at the Milken Institute Global Conference, the 2008 gathering brought together a group of Nobel Prize winners i</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51LFOZZcyoL._SL160_.jpg" width="120" alt="Methods to Predict & Profit in Any Market Cycle (DVD)" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000YPOMD2&tag=wq2rx-20&camp=1789&creative=9325">Methods to Predict & Profit in Any Market Cycle (DVD)</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Tired of racing to stay on top of every market turn? Gain the upper hand by understanding the fundamental economic forces at work that trigg</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51lQMjC%2Bp2L._SL160_.jpg" width="120" alt="Standard Deviants: Macroeconomics" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000VD9MLY&tag=wq2rx-20&camp=1789&creative=9325">Standard Deviants: Macroeconomics</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>EVERYTHING YOU NEED TO KNOW TO ACE MACROECONOMICS IS AT YOUR FINGERTIPS: economic theory, slope, consumption, production, scarcity, Gross Do</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41k7vFFtRzL._SL160_.jpg" width="120" alt="The Teaching Company Economics 3rd Edition" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000OQCF1W&tag=wq2rx-20&camp=1789&creative=9325">The Teaching Company Economics 3rd Edition</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Economics, 3rd Edition (36 lectures, 30 minutes/lecture) Course No. 550 Taught by Timothy Taylor Macalester College M.Econ., Stanford Univer</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/6157KPTBV0L._SL160_.jpg" width="120" alt="Understanding Money and Inflation DVD" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B00066D1J0&tag=wq2rx-20&camp=1789&creative=9325">Understanding Money and Inflation DVD</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Modern economics is a subject that today's students must understand in order to protect their tomorrows. Inflation, the creation of money, a</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/03/why-the-economy-crashed-should-we-be-surprised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
