<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Matthew&apos;s Blog</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/" />
    <link rel="self" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/matthew/atom.xml" />
   <id>tag:www.wearetheoriginals.co.uk,2007:/matthew/7</id>
    <link rel="service.post" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7" title="Matthew's Blog" />
    <updated>2007-06-15T12:01:10Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 3.2</generator>
 
<entry>
    <title>The Imagination</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/02/the_imagination.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=111" title="The Imagination" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.111</id>
    
    <published>2007-02-06T22:09:46Z</published>
    <updated>2007-06-15T12:01:10Z</updated>
    
    <summary>The Paths to the Formation of Symptoms (p.419) As the Ego is slowly educated by the pressure of everyday necessity it is forced to give up the objects and aims which provide pleasure. Phantasy allows us to dwell on imaginary...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>The Paths to the Formation of Symptoms (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.419</a>)</p>

<p><br />
As the <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">Ego</a> is slowly educated by the pressure of everyday necessity it is forced to give up the objects and aims which provide pleasure. Phantasy allows us to dwell on imaginary wish fulfillment.</p>

<p>Here in the imagination we can build a natural realm free from necessity where everything including all the noxious and useless can grow and proliferate.<br />
</p>]]>
        
    </content>
</entry>
<entry>
    <title>Primal Phantasies</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/02/primal_phantasies.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=108" title="Primal Phantasies" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.108</id>
    
    <published>2007-02-05T08:21:23Z</published>
    <updated>2007-06-15T12:01:27Z</updated>
    
    <summary>The Paths to the Formation of Symptoms (p.416) Among neurotics there are three youthful experiences that occur repeatedly. These events are as likely to be phantasies as they are real – in both cases they will be equally important. Freud...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>The Paths to the Formation of Symptoms (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.416</a>)</p>

<p><br />
Among neurotics there are three youthful experiences that occur repeatedly. These events are as likely to be phantasies as they are real – in both cases they will be equally important. Freud called these ‘Primal Phantasies’.</p>

<p>The thee phantasies are listed below followed by the cause.</p>

<p><br />
• The observation of parental intercourse:<br />
The unsatisfied socophilic (voyeuristic) instincts during puberty</p>

<p>• Seduction by an adult:<br />
This phantasy is created as a screen against the shame of masturbation </p>

<p>• The threat of castration:<br />
This is interpreted as a punishment for masturbation</p>]]>
        
    </content>
</entry>
<entry>
    <title>A Simple Actionscript Class Definition</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/a_simple_actionscript_class_de.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=103" title="A Simple Actionscript Class Definition" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.103</id>
    
    <published>2007-01-31T23:18:54Z</published>
    <updated>2007-06-15T12:01:43Z</updated>
    
    <summary>I know I’m a little late to the party on this one but I finally cracked Flash Classes last weekend - yay! To be honest there wasn’t really a whole lot to crack, just the definitions of private and public...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Tech" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>I know I’m a little late to the party on this one but I finally cracked Flash Classes last weekend - yay!</p>

<p>To be honest there wasn’t really a whole lot to crack, just the definitions of private and public functions.</p>

<p>Essentially a public function will execute when the class is initialised, and a private function will wait to be called, and that’s all there is to it .</p>

<p>Try this out:</p>

<p>In a text editor create a file and name it TestClass.as</p>

<p>Type the following:</p>

<p><br />
class TestClass{<br />
	<br />
	public function foo(){<br />
		trace(“Hello from Foo”);<br />
	}<br />
	<br />
	private function baa(){<br />
		trace(“Hello from Baa”);<br />
	}</p>

<p>}</p>

<p>Now create a new Flash document and save it in the same folder as TestClass.as</p>

<p>On frame one (or any other) type:</p>

<p>var myTestClass = new TestClass();</p>

<p>now publish your movie and you should get the output “Hello from Foo”</p>

<p>If you now add the following line:</p>

<p>myTestClass.baa();</p>

<p>publish your movie and you should get the output “Hello from Foo”, “Hello from Baa”</p>

<p>Yes, it really is that easy.</p>]]>
        
    </content>
</entry>
<entry>
    <title>The Path to Perversion</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_path_to_perversion.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=100" title="The Path to Perversion" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.100</id>
    
    <published>2007-01-30T22:02:19Z</published>
    <updated>2007-06-15T12:07:00Z</updated>
    
    <summary><![CDATA[The Paths to the Formation of Symptoms (p.405) The path to perversion begins in same way as the construction of neurotic symptoms. Repulsed by reality the Libido seeks other paths to satisfaction &rarr; it is lured into regression by earlier...]]></summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>The Paths to the Formation of Symptoms (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.405</a>)</p>

<p>The path to perversion begins in same way as <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_construction_of_symptoms.html">the construction of neurotic symptoms</a>.</p>

<p>Repulsed by reality the <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">Libido</a> seeks other paths to satisfaction &rarr; it is lured into regression by earlier fixations &rarr; here the Libido may find satisfaction in these earlier organizations or from an object earlier abandoned &rarr; if the Libido meets no objection from the <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">Ego</a> a perversion arises. <br />
</p>]]>
        
    </content>
</entry>
<entry>
    <title>The Ego and the Libido</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=96" title="The Ego and the Libido" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.96</id>
    
    <published>2007-01-28T00:35:27Z</published>
    <updated>2007-06-15T12:07:57Z</updated>
    
    <summary>Development and Regression (p.401) The Libido and the Ego instincts behave in different ways towards real necessity. • The Ego complies with necessity, and develops in accordance with the instruction of reality. • The Libido begins development withdrawn from reality...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Development and Regression (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.401</a>)</p>

<p>The Libido and the Ego instincts behave in different ways towards real necessity.</p>

<p>• The Ego complies with necessity, and develops in accordance with the instruction of reality.</p>

<p>• The Libido begins development withdrawn from reality of necessity and often will remain inacessable to infulence.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Postmodern Climbing Frame</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/postmodern_climbing_frame.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=94" title="Postmodern Climbing Frame" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.94</id>
    
    <published>2007-01-25T23:41:10Z</published>
    <updated>2007-06-15T12:08:43Z</updated>
    
    <summary> Last weekend I discovered that Channel 4 has a secret public garden behind their beautiful HQ on Horseferry Road. I know that Richard Rodgers designed the building but I’m not sure if he had a hand in the climbing...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p><img alt="postModern.jpg" src="http://www.wearetheoriginals.co.uk/matthew/images/postModern.jpg" width="500" height="300" /></p>

<p><br />
Last weekend I discovered that Channel 4 has a secret public garden behind their beautiful HQ on Horseferry Road. I know that Richard Rodgers designed the building but I’m not sure if he had a hand in the climbing frame. </p>]]>
        
    </content>
</entry>
<entry>
    <title>Make your fortune, only $10</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/make_your_fortune_only_10.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=90" title="Make your fortune, only $10" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.90</id>
    
    <published>2007-01-23T23:28:43Z</published>
    <updated>2007-06-15T12:09:31Z</updated>
    
    <summary>Ever since I first saw an internet kiosk on the street I always knew that whatever happened from this point on it would always be possible to operate a business and therefore make money, whoever you were. Looks as if...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Ever since I first saw an internet kiosk on the street I always knew that whatever happened from this point on it would always be possible to operate a business and therefore make money, whoever you were.</p>

<p>Looks as if <a href="http://www.roughtype.com/archives/2006/12/your_new_it_bud.php">Google have had the same idea</a> too, but they acted on it, and now stand to make zillions of dollars.</p>

<p>Your $10 investment capital will buy you:</p>

<p>• A complete, web-based IT infrastructure for its business <br />
• A custom corporate portal/intranet for its employees<br />
• Corporate e-mail service<br />
• Corporate instant messaging<br />
• Calendar software and services<br />
• Web-site design software <br />
• Web-site hosting</p>

<p>And, by incorporating some other free Google services, the company also gets:</p>

<p>• Word-processing software <br />
• Spreadsheet software<br />
• Web-site analytics</p>

<p>Canny would-be zillionaires might be advised to hang on before splashing any cash as I have a feeling that Microsoft might try punching back with an offer of their own, which of course will be free.</p>

<p>Watch this space.</p>]]>
        
    </content>
</entry>
<entry>
    <title>My Hidden Agenda</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/my_hidden_agenda.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=88" title="My Hidden Agenda" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.88</id>
    
    <published>2007-01-22T22:58:57Z</published>
    <updated>2007-06-21T17:22:38Z</updated>
    
    <summary>As yesterday was my 30th post I think this would be a good time to share the inspiration behind this blog. For the last month I’ve been trying out one of Steve Pavlina’s 30 day free trials, in fact I’ve...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>As yesterday was my 30th post I think this would be a good time to share the inspiration behind this blog. For the last month I’ve been trying out one of <a href="http://www.stevepavlina.com/blog/2005/04/30-days-to-success/">Steve Pavlina’s 30 day free trials</a>, in fact I’ve been trying out several of these free trials, but I’ll save them for another day.</p>

<p>Self improvement is easy. All you need do is keep practising the same positive things every day, like cycling to work, blogging, playing the guitar, giving up watching TV, reading for an hour, you get the picture.</p>

<p>This particular trial has helped me to develop several subject areas that I feel real passion about, and now 30 days on I’m better able to develop them further. </p>

<p>The process of getting your thoughts down everyday also allows you to move on intellectually. When inspiration hits, get it down, or forget about it.</p>

<p>And so, if this is the end of the trial, what’s next? Well, being as this is post 31 I suppose the answer is already pretty obvious.</p>

<p>See you tomorrow.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Neurosis</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/neurosis.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=86" title="Neurosis" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.86</id>
    
    <published>2007-01-21T23:02:20Z</published>
    <updated>2007-06-21T17:23:32Z</updated>
    
    <summary>Development and Regression (p.394-400) Neurosis arises from a contention between wishful impulses, or a physical conflict. A physical conflict consists of: • An external frustration – the Ego • An internal frustration – the Libido Preconditions for Neurosis: • Frustration...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Development and Regression (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.394-400</a>)</p>

<p><br />
Neurosis arises from a contention between wishful impulses, or a physical conflict.</p>

<p><br />
A physical conflict consists of:<br />
• An external frustration – the <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">Ego</a><br />
• An internal frustration – the <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">Libido</a></p>

<p><br />
Preconditions for Neurosis:<br />
• Frustration<br />
• Fixation – Forcing the libido in a particular direction<br />
• A tendency to conflict</p>

<p><br />
A tendency to conflict:</p>

<p>The Ego and the Libido develop independently, but still they have influence over one another.</p>

<p>If at some point during the development of the Libido a strong enough fixation is left behind &rarr; the Ego may accept this and become perverse / infantile &rarr; alternatively it may reject this point and repress the fixation.<br />
</p>]]>
        
    </content>
</entry>
<entry>
    <title>The Full English</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_full_english.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=81" title="The Full English" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.81</id>
    
    <published>2007-01-20T01:31:59Z</published>
    <updated>2007-06-21T17:24:21Z</updated>
    
    <summary>Beers in my favorite London Pub with surprise resident magician, back to West London with some friends, £1.50 ready-made pizza x2, BB eviction night, a nice cup of tea or three, strong headwind almost the entire way home with a...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Beers in my favorite London Pub with surprise resident magician, back to West London with some friends, £1.50 ready-made pizza x2, BB eviction night, a nice cup of tea or three, strong headwind almost the entire way home with a few merciful gaps of quiet, five huge trees snapped like dry twigs by yesterdays storm are strewn across the edge of the common, chores, and to bed.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Should the BBC stand on its own two feet?</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/should_the_bbc_stand_on_its_own_feet.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=79" title="Should the BBC stand on its own two feet?" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.79</id>
    
    <published>2007-01-18T21:23:02Z</published>
    <updated>2007-06-21T17:25:02Z</updated>
    
    <summary>Today the BBC announced that the TV license fee will rise by 3% p/a over the next two years, with a projected target of £151.50 by 2012. Firstly let me be clear, I don’t think there is any debate about...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Today <a href="http://news.bbc.co.uk/1/hi/entertainment/6274851.stm">the BBC announced</a> that the TV license fee will rise by 3% p/a over the next two years, with a projected target of £151.50 by 2012. Firstly let me be clear, I don’t think there is any debate about the BBC’s ability to make quality programs, so I’ll leave this alone. However, we should be asking ourselves, would the BBC be better off with or without the license fee?</p>

<p>In most respects the BBC operates like any normal business. It makes a good living from syndicating its programs at home and abroad. News 24 carries adverts in the form of sponsorship. And it also sells DVDs, books, and a range of other merchandise.</p>

<p>Why then is there a fear that commercialisation would stifle the BBC’s innovation and creativity? This makes no sense.</p>

<p>The TV License also gives the BBC a competitive advantage over every other British media and production company. Surly there is an argument then that any company who produces free, quality television is also entitled to a share of the TV License revenue?</p>

<p>In my opinion the BBC is a world class brand and is tough enough to fend for itself.</p>

<p><br />
BTW Thanks very much to the BBC’s director-general Mark Thompson for publishing my initial comment (I’m sure he rubber stamps them all).</p>]]>
        
    </content>
</entry>
<entry>
    <title>The Construction of Symptoms</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_construction_of_symptoms.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=77" title="The Construction of Symptoms" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.77</id>
    
    <published>2007-01-18T00:26:23Z</published>
    <updated>2007-06-21T17:25:24Z</updated>
    
    <summary><![CDATA[Development and Regression (p.394) The libido is unsatisfied when it is in conflict &rarr; this gives rise to frustration &rarr; forcing the libido to look for other paths to satisfaction &rarr; if these paths arose displeasure and force a veto...]]></summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Freud" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>Development and Regression (<a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/introductory_lectures_on_psych.html">p.394</a>)</p>

<p>The <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_ego_and_the_libido.html">libido</a> is unsatisfied when it is in conflict &rarr; this gives rise to frustration &rarr; forcing the libido to look for other paths to satisfaction &rarr; if these paths arose displeasure and force a veto &rarr; symptoms are constructed as a substitute satisfaction.</p>]]>
        
    </content>
</entry>
<entry>
    <title>The Automotive Design Brief</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/the_automotive_design_brief.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=76" title="The Automotive Design Brief" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.76</id>
    
    <published>2007-01-17T23:35:56Z</published>
    <updated>2007-06-21T17:25:54Z</updated>
    
    <summary>The two biggest issues facing the Automotive Industry are: The Energy Crunch and The Harmful effect the product has on the consumer. The Energy Crunch: • The oil supply is being squeezed, so the cost of energy is increasing, this...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>The two biggest issues facing the Automotive Industry are: The Energy Crunch and The Harmful effect the product has on the consumer.<br />
<br><br />
The Energy Crunch:</p>

<p>• The oil supply is being squeezed, so the cost of energy is increasing, this had lead to higher manufacturing costs, making cars more expensive.</p>

<p>• Using your car is also more expensive, further decreasing its value.<br />
<br><br />
The Harmful effect the product has on the consumer:</p>

<p>• Manufacturing and using cars damages the environment</p>

<p>• Cars don’t recycle easily, again damaging the environment<br />
<br><br />
Tapping progress on the shoulder and saying “More forwards!”. Is a computer that can walk up a flight of stairs how you define progress? </p>

<p>Progress for the Automotive Industry would be a small unit that bolts onto the engine of a Honda Civic improving the gas mileage and removing the pollution from the exhaust.</p>

<p>I’d also like a factory where old Civics roll in one end and the new ones out the other, that would be progess too.</p>

<p>Henry Ford was defiantly onto something when he began using the wooden planks from the shipping crates as floor boards for his <a href="http://en.wikipedia.org/wiki/Ford_Model_T">Model-T</a>.</p></p>]]>
        
    </content>
</entry>
<entry>
    <title>Loosing Touch with Products</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/loosing_touch_with_products.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=75" title="Loosing Touch with Products" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.75</id>
    
    <published>2007-01-16T23:06:28Z</published>
    <updated>2007-06-21T17:27:42Z</updated>
    
    <summary>On Monday The Guardian ran an article on how difficult it was to find somebody to repair broken household products. Three journalists attempted to get a cheap toaster (£20), DVD player (£30?), and a vacuum cleaner ( They did manage...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Diary" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p>On Monday The Guardian ran <a href="http://www.guardian.co.uk/g2/story/0,,1990421,00.html">an article</a> on how difficult it was to find somebody to repair broken household products. Three journalists attempted to get a cheap toaster (£20), DVD player (£30?), and a vacuum cleaner (<£50) repaired. In each case they failed.</p>

<p>They did manage however to get some clear insights from the repairmen they interviewed. There were no spare parts for the products they wanted mending, and the cost of any labour would always exceed the value of a replacement. The effect of this combination was putting the repairmen out of business.</p>

<p>We also learnt that the products keeping the repair business alive are the Dyson Vacuum Cleaner, and the Dualit toaster. If you own either of these it’s obvious why. Both are constructed with bolts instead of glue, both are very rugged and both have easy to obtain spare parts.</p>

<p>I expect my Dyson will last me at least 20 years.</p>

<p>So what about the repairmen? Well, companies must only design <a href="http://www.wearetheoriginals.co.uk/matthew/2007/01/designing_stuff_that_breaks.html">Responsible Products</a>, we should only buy Responsible Products – they will give better service and be cheaper in the long run and finally, products need to be linked at the point of purchase with a local repairman. </p>]]>
        
    </content>
</entry>
<entry>
    <title>Adding Style to the Flash List Component</title>
    <link rel="alternate" type="text/html" href="http://www.wearetheoriginals.co.uk/matthew/2007/01/adding_style_to_the_flash_list.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.wearetheoriginals.co.uk/movabletype/mt-atom.cgi/weblog/blog_id=7/entry_id=72" title="Adding Style to the Flash List Component" />
    <id>tag:www.wearetheoriginals.co.uk,2007:/matthew//7.72</id>
    
    <published>2007-01-16T00:01:35Z</published>
    <updated>2007-06-21T17:28:47Z</updated>
    
    <summary> If you’d like to jazz up the stock Flash List component - like the one I made in this tutorial, you only need a few extra lines of code. It’s all fairly self explanatory, just make sure the instance...</summary>
    <author>
        <name>Matt</name>
        
    </author>
            <category term="Tech" />
    
    <content type="html" xml:lang="en" xml:base="http://www.wearetheoriginals.co.uk/matthew/">
        <![CDATA[<p><img src="http://www.wearetheoriginals.co.uk/images/aListWithStyle.jpg" alt="Flash List Component"></p>

<p>If you’d like to jazz up the stock Flash List component - like the one I made in <a href="http://www.wearetheoriginals.co.uk/matthew/2006/12/flash_xml_connector.html">this tutorial</a>, you only need a few extra lines of code. It’s all fairly self explanatory, just make sure the instance name ‘aList’ matches the name of your list. </p>

<p>aList.setStyle("fontFamily", "impact");<br />
aList.setStyle("fontSize", 14);<br />
aList.setStyle("color", 0xD20000);<br />
aList.setStyle("rollOverColor", "white");<br />
aList.setStyle("backgroundColor", 0xF1D951);<br />
aList.setStyle("selectionColor", "black");<br />
aList.setStyle("textSelectedColor", "white");<br />
</p>]]>
        
    </content>
</entry>

</feed> 

