<?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"
	>

<channel>
	<title>Stefan Goodchild</title>
	<atom:link href="http://www.stefangoodchild.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://stefangoodchild.com</link>
	<description>Old Enough To Know Better</description>
	<pubDate>Fri, 05 Dec 2008 01:22:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>TouchOSC and Processing Accelerometer Example Code</title>
		<link>http://stefangoodchild.com/journal/2008/12/touchosc-and-processing-accelerometer-example-code/</link>
		<comments>http://stefangoodchild.com/journal/2008/12/touchosc-and-processing-accelerometer-example-code/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 00:23:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[Processing]]></category>

		<category><![CDATA[TouchOSC]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=194</guid>
		<description><![CDATA[Playing with my iPhone and Processing v1 on the train last night I started messing with TouchOSC and thought that this super simple (and fairly rough) example code using the oscP5 library may help someone on their way to interactive wobbly&#160;nirvana.
Code after the&#160;jump.


import processing.opengl.*;
import oscP5.*;

OscP5 oscP5;

float xrot = 0;
float zrot = 0;

float xrot_targ = 0;
float [...]]]></description>
			<content:encoded><![CDATA[<p>Playing with my iPhone and <a href="http://processing.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://processing.org/');">Processing v1</a> on the train last night I started messing with <a href="http://hexler.net/touchosc" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://hexler.net/touchosc');">TouchOSC</a> and thought that this super simple (and fairly rough) example code using the <a href="http://www.sojamo.de/libraries/oscP5/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.sojamo.de/libraries/oscP5/');">oscP5</a> library may help someone on their way to interactive wobbly&nbsp;nirvana.</p>
<p>Code after the&nbsp;jump.</p>
<p><span id="more-194"></span></p>
<pre class="syntax-highlight:java">
import processing.opengl.*;
import oscP5.*;

OscP5 oscP5;

float xrot = 0;
float zrot = 0;

float xrot_targ = 0;
float zrot_targ = 0;
float orientation = 0;

float dampSpeed = 5;

void setup() {
  size(400,400, OPENGL);
  oscP5 = new OscP5(this,8000);
  smooth();
}

void draw() {
  camera(  0, 0, 300,
         0, 0, 0,
         0.0, 1.0, 0.0
     );
  background(0); 

  // Basic value smoothing

  if (xrot_targ &gt; xrot) {
    xrot = xrot + ((xrot_targ - xrot) / dampSpeed);
  } else {
    xrot = xrot - ((xrot - xrot_targ) / dampSpeed);
  }

  if (zrot_targ &gt; zrot) {
    zrot = zrot + ((zrot_targ - zrot) / dampSpeed);
  } else {
    zrot = zrot - ((zrot - zrot_targ) / dampSpeed);
  }

 // Detection for if the iPhone is upsidedown or not

  if (orientation &lt; 0) {
    fill(255,0,0);
    rotateX(radians(xrot));
    rotateZ(radians(zrot));
  } else {
    fill(255,255,0);
    rotateX(radians(xrot*-1));
    rotateZ(radians(zrot*-1));
  }
  box(130,10,60);

}

void oscEvent(OscMessage theOscMessage) {
  if(theOscMessage.checkAddrPattern(&quot;/accxyz&quot;)==true) {
      xrot_targ = (theOscMessage.get(0).floatValue()*90);
      zrot_targ = (theOscMessage.get(1).floatValue()*90)*-1;
      orientation = theOscMessage.get(2).floatValue();
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/12/touchosc-and-processing-accelerometer-example-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Frederik Vanhoutte Generative Art on Flickr</title>
		<link>http://stefangoodchild.com/journal/2008/11/frederik-vanhoutte-generative-art-on-flickr/</link>
		<comments>http://stefangoodchild.com/journal/2008/11/frederik-vanhoutte-generative-art-on-flickr/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 20:23:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Art]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=167</guid>
		<description><![CDATA[
Absolutely loving the latest work from Frederik that popped up on my Flickr Processing Group feed.  The neon colour scheme is almost 80&#8217;s in feel but it really works for&#160;me.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/wblut/3011629359/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/wblut/3011629359/');"><img src="http://stefangoodchild.com/wp-content/uploads/2008/11/wblut.jpg" alt="" title="Strange Symmetry 2 by wblut" width="468" height="297" class="alignnone size-full wp-image-168" /></a></p>
<p>Absolutely loving the latest work from Frederik that popped up on my Flickr Processing Group feed.  The neon colour scheme is almost 80&#8217;s in feel but it really works for&nbsp;me.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/11/frederik-vanhoutte-generative-art-on-flickr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>By Way Of An Apology&#8230;</title>
		<link>http://stefangoodchild.com/journal/2008/11/by-way-of-an-apology/</link>
		<comments>http://stefangoodchild.com/journal/2008/11/by-way-of-an-apology/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 16:38:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=153</guid>
		<description><![CDATA[
&#8230;to my mate Marc for letting him down royally and not doing his website for him when I said I probably could I thought I&#8217;d at least let you know that his site is up and full of yummy graphic design that he&#8217;s&#160;done.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://marcbessant.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://marcbessant.com');"><img src="http://stefangoodchild.com/wp-content/uploads/2008/11/marcbessent.jpg" alt="" title="Some Of Marc&#039;s Work" width="468" height="162" class="alignnone size-full wp-image-163" /></a></p>
<p>&#8230;to my mate Marc for letting him down royally and not doing his website for him when I said I probably could I thought I&#8217;d at least let you know that his <a href="http://marcbessant.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://marcbessant.com');">site is up</a> and full of yummy graphic design that he&#8217;s&nbsp;done.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/11/by-way-of-an-apology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Audio DNA Source Code</title>
		<link>http://stefangoodchild.com/journal/2008/11/audio-dna-source-code/</link>
		<comments>http://stefangoodchild.com/journal/2008/11/audio-dna-source-code/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 22:01:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Art]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=136</guid>
		<description><![CDATA[After some prompting I though I would publish some of my Processing source code to see what people made of it.  Probably not the tidiest code out there, but these are essentially sketches so figured it didn&#8217;t matter too&#160;much.
To make this work you&#8217;ll need a few bits from around the internets.  First up [...]]]></description>
			<content:encoded><![CDATA[<p>After some prompting I though I would publish some of my <a href="http://processing.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://processing.org');">Processing</a> source code to see what people made of it.  Probably not the tidiest code out there, but these are essentially sketches so figured it didn&#8217;t matter too&nbsp;much.</p>
<p>To make this work you&#8217;ll need a few bits from around the internets.  First up is the <a href="http://www.davebollinger.com/works/p5/fftoctana/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.davebollinger.com/works/p5/fftoctana/');">FFTOctaveAnalyser</a> class from Dave Bollinger which you need to put in the root of your sketch directory, then you&#8217;ll need to download the <a href="http://www.tree-axis.com/Ess/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.tree-axis.com/Ess/');">Ess&nbsp;library</a>.</p>
<p>Finally you&#8217;ll need something like <a href="http://audacity.sourceforge.net/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://audacity.sourceforge.net/');">Audacity</a> to split an audio file into it&#8217;s left and right channels.  Save them as two mono wav files (for some reason AIFF seems to upset it) called &lt;audiofile&gt;.L and &lt;audiofile&gt;.R and pop them in the sketch data&nbsp;directory.</p>
<p>Assuming all this has gone to plan all you need to do is edit the source code on line 4 so the audioFilename variable is the same as the &lt;audiofile&gt; referenced above and click the play button.  Give it a second or two (depending on the length of the audio file) and you should see the Audio DNA displayed and find a TIFF version sitting in a folder called &#8216;out&#8217; in your sketch&nbsp;folder.</p>
<p>Onto the source.  The key to this is it&#8217;s not real time.  It scans the audio file chunk by chunk so in this instance it&#8217;s faster than real-time.  With some tweaks a similar technique can be used to render out audio reactive Processing sketches that run slower than real-time if that&#8217;s your&nbsp;bag.</p>
<p><span id="more-136"></span></p>
<pre class="syntax-highlight:java">
import krister.Ess.*;

String audioFilename = &quot;md&quot;;
String audioFilenameL = audioFilename+&quot;.L&quot;;
String audioFilenameR = audioFilename+&quot;.R&quot;;

int imgSize = 500;

// SinCos Lookup tables from Toxi (i think via flight404...) He&#039;s a clever chap, look him up.
public static final float sinLUT[];
public static final float cosLUT[];
public static final float SINCOS_PRECISION=1f;
public static final int SINCOS_LENGTH= (int) (360f/SINCOS_PRECISION);
static {
  sinLUT=new float[SINCOS_LENGTH];
  cosLUT=new float[SINCOS_LENGTH];
  for (int i=0; i&lt;SINCOS_LENGTH; i++) {
    sinLUT[i]= (float)Math.sin(i*DEG_TO_RAD*SINCOS_PRECISION);
    cosLUT[i]= (float)Math.cos(i*DEG_TO_RAD*SINCOS_PRECISION);
  }
}

AudioChannel chnL;
AudioChannel chnR;
FFT fftL;
FFT fftR;
FFTOctaveAnalyzer octL;
FFTOctaveAnalyzer octR;
int bufferSize = 1024;
int samplingRate = 44100;

int frameL = 0;
int frameR = 360; 

int samplesPerDegree;
int section;

float[] limits = new float[9];
float[] radii = new float[9];
float[] linethick = new float[9];

float radStep;

void setup() {
  size(imgSize, imgSize, P3D);
  noStroke();
  Ess.start(this);
  chnL = new AudioChannel(dataPath(audioFilenameL));
  chnR = new AudioChannel(dataPath(audioFilenameR));
  samplesPerDegree = chnL.size/181;
  fftL = new FFT(bufferSize*2);
  fftR = new FFT(bufferSize*2);
  fftL.limits();
  fftR.limits();
  fftL.damp(.5);
  fftR.damp(.5);
  octL = new FFTOctaveAnalyzer(fftL, samplingRate, 1);
  octR = new FFTOctaveAnalyzer(fftR, samplingRate, 1);
  octL.peakHoldTime = 10; // hold longer
  octL.peakDecayRate = 3; // decay slower
  octL.linearEQIntercept = 0.7; // reduced gain at lowest frequency
  octL.linearEQSlope = 0.02; // increasing gain at higher frequencies
  octR.peakHoldTime = 10; // hold longer
  octR.peakDecayRate = 3; // decay slower
  octR.linearEQIntercept = 0.7; // reduced gain at lowest frequency
  octR.linearEQSlope = 0.02; // increasing gain at higher frequencies
  background(255);
  fill(0);
  noLoop();
}

void draw() {
    limits[0] = 0.3;
    limits[1] = 0.6;
    limits[2] = 0.5;
    limits[3] = 0.4;
    limits[4] = 0.4;
    limits[5] = 0.4;
    limits[6] = 0.3;
    limits[7] = 0.3;
    limits[8] = 0.3;

    float radStart = imgSize/10;
    float radEnd = imgSize*0.9;
    radStep = (radEnd-radStart)/9;
    float radCurrent = radStart;

    for (int r = 0; r &lt; 9; r++) {
      radii[r] = radCurrent/2;
      radCurrent = radCurrent+radStep;
    }

  for (int frm = 0; frm &lt; 181; frm++) {
    analyze();
    render();
    advance();
  }
  saveFrame(&quot;out/&quot;+audioFilename+&quot;.tif&quot;);
} 

void analyze() {
  section = (int)(frameL * samplesPerDegree);
  fftL.getSpectrum(chnL.samples, section);
  fftR.getSpectrum(chnR.samples, section);
  octL.calculate();
  octR.calculate();
} 

void render() {
  for (int i = 0; i &lt; 9; i++) {
    if (octL.averages[i]&gt;limits[i]) myArc(width/2,height/2,frameL,frameL+2,radii[i],radStep/2.5,.5);
    if (octR.averages[i]&gt;limits[i]) myArc(width/2,height/2,frameR,frameR+2,radii[i],radStep/2.5,.5);
  }
}

void advance() {
    frameL ++;
    frameR --;
} 

public void stop() {
  Ess.stop();
  super.stop();
}

void arc(float x,float y,float degS,float degE,float rad,float w) {
  int start=(int)min (degS/SINCOS_PRECISION,SINCOS_LENGTH-1);
  int end=(int)min (degE/SINCOS_PRECISION,SINCOS_LENGTH-1);
  beginShape(QUAD_STRIP);
  for(int i=start; i&lt;end; i++) {
    vertex(cosLUT[i]*(rad)+x,sinLUT[i]*(rad)+y);
    vertex(cosLUT[i]*(rad+w)+x,sinLUT[i]*(rad+w)+y);
  }
  endShape();
}

void myArc(float x,float y,float degS,float degE,float rad,float w, float step) {
  beginShape(QUAD_STRIP);
  noStroke();
  for (float i = degS; i &lt; degE; i=i+step) {
    vertex(rad*cos(radians(i))+x,rad*sin(radians(i))+y);
    vertex((rad+w)*cos(radians(i))+x,(rad+w)*sin(radians(i))+y);
  }
  endShape();
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/11/audio-dna-source-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Audio Fingerprints</title>
		<link>http://stefangoodchild.com/journal/2008/10/audio-fingerprints/</link>
		<comments>http://stefangoodchild.com/journal/2008/10/audio-fingerprints/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 12:11:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Art]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=105</guid>
		<description><![CDATA[
I&#8217;ve been tinkering with audio visualisations in Processing for a few years now.  The three animated ones I was happy enough with to show I have been adding to Vimeo but the still versions had never seen the light of day apart from glimpses as part of the audio player on this&#160;site.
I finally signed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-129" title="phfingerprints" src="http://stefangoodchild.com/wp-content/uploads/2008/10/phfingerprints.jpg" alt="Portishead Visualisations" width="468" height="226" /></p>
<p>I&#8217;ve been tinkering with audio visualisations in <a href="http://processing.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://processing.org/');">Processing</a> for a few years now.  The three animated ones I was happy enough with to show I have been adding to <a href="http://vimeo.com/stefangoodchild" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://vimeo.com/stefangoodchild');">Vimeo</a> but the still versions had never seen the light of day apart from glimpses as part of the audio player on this&nbsp;site.</p>
<p>I finally signed up to <a href="http://www.flickr.com/photos/31276926@N05/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/31276926@N05/');">Flickr</a> and added a few higher res artifacts of the experiments over there as <a href="http://lifeonmarc.blogspot.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://lifeonmarc.blogspot.com/');">Marc Bessant</a> had posted about them on his <a href="http://lifeonmarc.blogspot.com/2008/10/audio-fingerprints.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://lifeonmarc.blogspot.com/2008/10/audio-fingerprints.html');">blog</a> recently so thought I should out the rest myself. There are two kinds that I&#8217;ve done.  The &#8216;Fingerprint&#8217; and the &#8216;DNA&#8217; styles are very closely linked in terms of back end code but produce very different&nbsp;results.</p>
<p>&#8216;Fingerprint&#8217; was the first one chronologically  I wanted to get something organic feeling and at higher resolutions and with the right colour palette they can look almost watercolour like.  &#8216;DNA&#8217; was the offshoot. The result of a conversation with the aforementioned Marc Bessent about creating something to etch onto the empty side of a 12&#8221; single release.  The release happened, but the band in question didn&#8217;t go for the designs.  Not sure what was used in it&#8217;s&nbsp;place.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/10/audio-fingerprints/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Small Pieces</title>
		<link>http://stefangoodchild.com/journal/2008/10/small-pieces/</link>
		<comments>http://stefangoodchild.com/journal/2008/10/small-pieces/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 23:33:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://stefangoodchild.com/?p=101</guid>
		<description><![CDATA[The regular visitor or two I have may notice a new look around these here parts as I&#8217;ve finally got round to updating the look of my site and moving it back to a Wordpress&#160;backend.
Over tonight the audio files and some images may well be missing as they upload on my terrible connection so apologies [...]]]></description>
			<content:encoded><![CDATA[<p>The regular visitor or two I have may notice a new look around these here parts as I&#8217;ve finally got round to updating the look of my site and moving it back to a Wordpress&nbsp;backend.</p>
<p>Over tonight the audio files and some images may well be missing as they upload on my terrible connection so apologies if things are missing. Hopefully as things calm down I&#8217;m actually gonna start putting some posts up but in the meantime you could always look at some of the photos I&#8217;ve taken recently and read the occasional tweet I&nbsp;post.</p>
<p>&#8212;update&#8212;</p>
<p>Content should all be up now and it should be fairly un-borked in IE7.  If you use IE6 then to be honest you&#8217;ve only got yourselves (or your stalinist IT dept) to blame.  Firefox and recent webkit browsers get the rounded corner love, which means I&#8217;ve chucked CSS validation out the window and I&#8217;ve got a stray p tag that&#8217;s appearing as part of the audio players that is breaking HTML validation. Despite this the world turns still upon it&#8217;s&nbsp;axis.</p>
<p>I will track it down eventually and squish that little bugger.  But not&nbsp;tonight.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/10/small-pieces/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Still</title>
		<link>http://stefangoodchild.com/discography/2008/10/still/</link>
		<comments>http://stefangoodchild.com/discography/2008/10/still/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Discography]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Remix]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/10/still/</guid>
		<description><![CDATA[Still (Stefan Goodchild&#160;Mix)
A remix continuing in my current leftfield direction for the mighty Sound of Habib label.  The original track is a collaboration between the label head honcho Johan SOH and Canadian breakbeat wonderkid&#160;Myagi.
Originally conceived in a basement flat in Hackney (owned by my adopted bruv Bobafat) on a pair of lovely custom speakers [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_64"></div><img src="http://stefangoodchild.com/content/discography/93.jpg" alt="" /><ul><li><a rel="flashplayer_64" href="http://stefangoodchild.com/content/discography/93.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/93.mp3');">Still (Stefan Goodchild&nbsp;Mix)</a></li></ul></div>
<p>A remix continuing in my current leftfield direction for the mighty <a href="http://soundofhabib.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://soundofhabib.com/');">Sound of Habib</a> label.  The original track is a collaboration between the label head honcho Johan SOH and Canadian breakbeat wonderkid&nbsp;Myagi.</p>
<p>Originally conceived in a basement flat in Hackney (owned by my adopted bruv <a href="http://www.myspace.com/bobafatt" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.myspace.com/bobafatt');">Bobafat</a>) on a pair of lovely custom speakers owned by his flatmate this remix has a dirty edge and scratchy beats underpinning the floating vocals of Sandra&nbsp;Nagano.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/discography/2008/10/still/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Farewell, Real World.  Hello Jiva</title>
		<link>http://stefangoodchild.com/journal/2008/09/farewell-real-world-hello-jiva/</link>
		<comments>http://stefangoodchild.com/journal/2008/09/farewell-real-world-hello-jiva/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/09/farewell-real-world-hello-jiva/</guid>
		<description><![CDATA[It&#8217;s day two at my new home - Jiva Technology -  following a rousing send off from Real World.  My seven years in the Real World were both enjoyable and challenging but we all have to move on at some point and I felt my time was&#160;now.
My new home at Jiva is a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s day two at my new home - <a href="http://jivatechnology.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://jivatechnology.com/');">Jiva Technology</a> -  following a rousing send off from <a href="http://realworld.co.uk/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://realworld.co.uk/');">Real World</a>.  My seven years in the Real World were both enjoyable and challenging but we all have to move on at some point and I felt my time was&nbsp;now.</p>
<p>My new home at <a href="http://jivatechnology.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://jivatechnology.com/');">Jiva</a> is a startup company building web services to help people find other people who can help.  The first product is a website called <a href="http://beanbaglearning.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://beanbaglearning.com/');">Beanbag Learning</a> and it&#8217;s purpose is to help parents find tutors in their local area for their children.  Moving the &#8216;word of mouth&#8217; culture onto the Internet in short if you&nbsp;will.</p>
<p>I&#8217;m excited to find out that my first project is an <a href="http://www.adobe.com/products/air/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.adobe.com/products/air/');">Adobe AIR</a> application built round communication.  This is something very interesting to both design and build as the technologies and UI paradigms involved are pretty well defined these days so the basics of the interaction are pretty much in stone and assumed so that leaves all the fun stuff.  The&nbsp;details.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/09/farewell-real-world-hello-jiva/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Processing Camera Classes</title>
		<link>http://stefangoodchild.com/journal/2008/08/processing-camera-classes/</link>
		<comments>http://stefangoodchild.com/journal/2008/08/processing-camera-classes/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/08/processing-camera-classes/</guid>
		<description><![CDATA[Inspired by the feedback from my latest vimeo video I&#8217;ve finally got my simple &#8216;Chase&#8217; and &#8216;Sphere&#8217; camera classes tidied up and available.  Probably not the greatest programming feat of the decade but may help some of you starting out with&#160;Processing.
You can see a simplified applet and get the source code&#160;here.
If you have any [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by the feedback from my latest vimeo video I&#8217;ve finally got my simple &#8216;Chase&#8217; and &#8216;Sphere&#8217; camera classes tidied up and available.  Probably not the greatest programming feat of the decade but may help some of you starting out with&nbsp;<a href="http://processing.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://processing.org');">Processing</a>.</p>
<p>You can see a simplified applet and get the source code&nbsp;<a href="http://stefangoodchild.com/processing/CameraClasses/" >here</a>.</p>
<p>If you have any feedback or suggestions to how to improve them please <a href="http://stefangoodchild.com/contact/" >get in&nbsp;touch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/08/processing-camera-classes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>reSonate Live Show at the Masonic Hall, Frome</title>
		<link>http://stefangoodchild.com/journal/2008/07/resonate-live-show-at-the-masonic-hall-frome/</link>
		<comments>http://stefangoodchild.com/journal/2008/07/resonate-live-show-at-the-masonic-hall-frome/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/07/resonate-live-show-at-the-masonic-hall-frome/</guid>
		<description><![CDATA[Resonate is taking over the Masonic Hall in Frome on Wednesday 9th of July as part of the 2008 Frome Festival. This promises to be the biggest and best Resonate so far this&#160;year.
My second ever performance of my wonky downtempo live show with added spicy visuals&#8230;  If you are in the area it would [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Resonate is taking over the Masonic Hall in Frome on Wednesday 9th of July as part of the 2008 Frome Festival. This promises to be the biggest and best Resonate so far this&nbsp;year.</p></blockquote>
<p>My second ever performance of my wonky downtempo live show with added spicy visuals&#8230;  If you are in the area it would be great to see you&nbsp;there.</p>
<p><a href="http://www.resonantfrequency.co.uk/?q=node/42" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.resonantfrequency.co.uk/?q=node/42');">More Info&nbsp;Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/07/resonate-live-show-at-the-masonic-hall-frome/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Real World Records</title>
		<link>http://stefangoodchild.com/portfolio/2008/06/real-world-records/</link>
		<comments>http://stefangoodchild.com/portfolio/2008/06/real-world-records/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/06/real-world-records/</guid>
		<description><![CDATA[
Real World Records - Website / Backend Design and&#160;Development

I had the majority of the site built and working locally before the server theft but with no design or UI in place. The design came together very quickly and was designed from the ground up to be easily improved&#160;upon.
This is a temporary site and as such [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio_img"><img src="http://stefangoodchild.com/content/portfolio_images/main/real-world-records.jpg" alt="realworldrecords.com" />
<p>Real World Records - Website / Backend Design and&nbsp;Development</p>
</div>
<p>I had the majority of the site built and working locally before the server theft but with no design or UI in place. The design came together very quickly and was designed from the ground up to be easily improved&nbsp;upon.</p>
<p>This is a temporary site and as such there are some rough edges but I think for only a few days work on the UI and design it holds up pretty well with a simple and clean design, free from Web 2.0 clichés, a full search, clean URLs and sound samples for every track in the Realworld catalogue so in many ways is a vast improvement on the original&nbsp;site.</p>
<p><a href="http://www.realworldrecords.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.realworldrecords.com');">www.realworldrecords.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/portfolio/2008/06/real-world-records/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WOMAD</title>
		<link>http://stefangoodchild.com/portfolio/2008/06/womad/</link>
		<comments>http://stefangoodchild.com/portfolio/2008/06/womad/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/06/womad/</guid>
		<description><![CDATA[
WOMAD - Website / Backend Design and&#160;Development

The replacement WOMAD site following our decision to drop the old Lasso site after the server theft.  A new OO based forum code is the main new feature on the code&#160;front.  
Nothing really new up front as yet in terms of features but - like Real World [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio_img"><img src="http://stefangoodchild.com/content/portfolio_images/main/womad.jpg" alt="womad.org" />
<p>WOMAD - Website / Backend Design and&nbsp;Development</p>
</div>
<p>The replacement WOMAD site following our decision to drop the old Lasso site after the server theft.  A new OO based forum code is the main new feature on the code&nbsp;front.  </p>
<p>Nothing really new up front as yet in terms of features but - like Real World Records - the site has been designed to be extended easily over the coming months with plenty of scope for custom&nbsp;areas.</p>
<p>Standards based, with proper separation and where possible semantic markup this is the final Real World site to move to PHP from Lasso and the final missing site after the&nbsp;theft.</p>
<p><a href="http://www.womad.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.womad.org');">www.womad.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/portfolio/2008/06/womad/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Habibe</title>
		<link>http://stefangoodchild.com/discography/2008/06/habibe/</link>
		<comments>http://stefangoodchild.com/discography/2008/06/habibe/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Discography]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Remix]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/06/habibe/</guid>
		<description><![CDATA[Habibe (Stefan Goodchild&#160;Mix)
Another remix for Real World of a track taken from the Big Blue Ball album that was initially started at the legendary Real World recording weeks nearly eighteen years ago by Peter Gabriel and Karl Wallinger and featuring a huge range of artists from around the&#160;world.
Habibe features vocals from Natacha Atlas from Transglobal&#160;Underground
The [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_71"></div><img src="http://stefangoodchild.com/content/discography/92.jpg" alt="" /><ul><li><a rel="flashplayer_71" href="http://stefangoodchild.com/content/discography/92.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/92.mp3');">Habibe (Stefan Goodchild&nbsp;Mix)</a></li></ul></div>
<p>Another remix for Real World of a track taken from the <a href="http://bigblueball.realworldrecords.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://bigblueball.realworldrecords.com/');">Big Blue Ball</a> album that was initially started at the legendary Real World recording weeks nearly eighteen years ago by <a href="http://petergabriel.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://petergabriel.com/');">Peter Gabriel</a> and <a href="http://www.worldparty.net/worldparty.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.worldparty.net/worldparty.html');">Karl Wallinger</a> and featuring a huge range of artists from around the&nbsp;world.</p>
<p>Habibe features vocals from <a href="http://en.wikipedia.org/wiki/Natacha_Atlas" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Natacha_Atlas');">Natacha Atlas</a> from Transglobal&nbsp;Underground</p>
<p>The remix is available as a bonus track on the <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPreorder?id=283357681&amp;s=143441" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPreorder?id=283357681&amp;s=143441');">Big Blue Ball download from&nbsp;iTunes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/discography/2008/06/habibe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Realworld Records New Website Live</title>
		<link>http://stefangoodchild.com/journal/2008/05/realworld-records-new-website-live/</link>
		<comments>http://stefangoodchild.com/journal/2008/05/realworld-records-new-website-live/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/05/realworld-records-new-website-live/</guid>
		<description><![CDATA[
Finally managed to get the replacement Realworld Records website online last friday.  It was the website that along with WOMAD&#8217;s website that was based on a very old version of Lasso that we decided to finally put out to pasture so this new version is based on a LAMP&#160;backend.
I had the majority of the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefangoodchild.com/content/journal_images/realworldrecords.jpg" alt="" /></p>
<p>Finally managed to get the replacement <a href="http://realworldrecords.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://realworldrecords.com');">Realworld Records</a> website online last friday.  It was the website that along with <a href="http://womad.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://womad.org');">WOMAD&#8217;s website</a> that was based on a very old version of Lasso that we decided to finally put out to pasture so this new version is based on a LAMP&nbsp;backend.</p>
<p>I had the majority of the site built and working locally before the server theft but with no design or UI in place.  The design came together very quickly and was designed from the ground up to be easily improved&nbsp;upon.</p>
<p>This is a temporary site and as such there are some rough edges but I think for only a few days work on the UI and design it holds up pretty well with a simple and clean design, free from Web 2.0 clichés, a full search, clean URLs and sound samples for every track in the Realworld catalogue so in many ways is a vast improvement on the original&nbsp;site.</p>
<p>None of this would have been possible however without the hard work of the Records staff who have spent some of the last year on data entry of the catalogue information into the new discography system, so many thanks to&nbsp;Jon!</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/05/realworld-records-new-website-live/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FAW Circle Demo Track</title>
		<link>http://stefangoodchild.com/journal/2008/05/faw-circle-demo-track/</link>
		<comments>http://stefangoodchild.com/journal/2008/05/faw-circle-demo-track/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Music Tech]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/05/faw-circle-demo-track/</guid>
		<description><![CDATA[Circle Demo&#160;Tune
Been doing a little testing and preset design for the FAW guys for their new synth,&#160;Circle.
I have to say it&#8217;s been a delight to use.  Very intuitive and lovely sounding with some very unique features that make getting oddness out of this synth a&#160;breeze.
Came up with this track in a few evenings and [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_73"></div><img src="http://stefangoodchild.com/content/discography/91.jpg" alt="" /><ul><li><a rel="flashplayer_73" href="http://stefangoodchild.com/content/discography/91.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/91.mp3');">Circle Demo&nbsp;Tune</a></li></ul></div>
<p>Been doing a little testing and preset design for the FAW guys for their new synth,&nbsp;<a href="http://futureaudioworkshop.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://futureaudioworkshop.com/');">Circle</a>.</p>
<p>I have to say it&#8217;s been a delight to use.  Very intuitive and lovely sounding with some very unique features that make getting oddness out of this synth a&nbsp;breeze.</p>
<p>Came up with this track in a few evenings and it&#8217;s 100% Circle.  The only other bits are a touch of Reverence (Audio Damage reverb plug in) and the built in Ableton Live compressors and&nbsp;EQs.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/05/faw-circle-demo-track/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cubescape</title>
		<link>http://stefangoodchild.com/journal/2008/05/cubescape/</link>
		<comments>http://stefangoodchild.com/journal/2008/05/cubescape/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/05/cubescape/</guid>
		<description><![CDATA[
Amazing piece of HTML/CSS/jQuery hackery by Cameron Adams that just begs to be played with.  It looks like my future will mainly involve creating nostalgic Q-Bert&#160;landscapes.
Cubescape
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefangoodchild.com/content/journal_images/cubescape.jpg" alt="" /></p>
<p>Amazing piece of HTML/CSS/jQuery hackery by Cameron Adams that just begs to be played with.  It looks like my future will mainly involve creating nostalgic Q-Bert&nbsp;landscapes.</p>
<p><a href="http://www.themaninblue.com/experiment/Cubescape/new.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.themaninblue.com/experiment/Cubescape/new.php');">Cubescape</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/05/cubescape/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Filthy Robbers Stole Our Servers!</title>
		<link>http://stefangoodchild.com/journal/2008/05/filthy-robbers-stole-our-severs/</link>
		<comments>http://stefangoodchild.com/journal/2008/05/filthy-robbers-stole-our-severs/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/05/filthy-robbers-stole-our-severs/</guid>
		<description><![CDATA[You may have seen it on the interweb news already (Techcrunch, Slashdot, The Register etc) so I&#8217;m late to the party, mainly due to the fact I&#8217;ve been hard at work restoring our lost servers.  I say lost.  I mean&#160;nicked.  
Stolen.
So a note to all you admins out there in charge of [...]]]></description>
			<content:encoded><![CDATA[<p>You may have seen it on the interweb news already (Techcrunch, Slashdot, The Register etc) so I&#8217;m late to the party, mainly due to the fact I&#8217;ve been hard at work restoring our lost servers.  I say lost.  I mean&nbsp;nicked.  </p>
<p>Stolen.</p>
<p>So a note to all you admins out there in charge of sites.  Have a think about what your strategy is in case on not just hardware failure, but total loss.  Not something you think about too&nbsp;often.</p>
<p>We are mainly back after 4 days of frantic work, but have made some harsh decisions about the very old sites based on some archaic tech that we have just cut free and plan to remake.  The only main one missing as of now is Real World Records which we are planning to get online in a new form this&nbsp;week.  </p>
<p>Alongside the restore we moved hosts, and switched to a hosted system rather than a co-located server so had to get elbow deep to reconfigure most of the sites to get them working on the new server so this wasn&#8217;t just a simple backup&nbsp;restore.</p>
<p>The only missing thing are the video assets.  We will be re-encoding and re-uploading those over time to take advantage of the new flash based video player we switched to earlier this&nbsp;year.  </p>
<p>As ever having Peter&#8217;s name attached gives it legs in the blog world and here is some of the&nbsp;reporting.</p>
<p><a href="http://www.techcrunch.com/2008/05/06/heres-a-hosting-provider-youll-probably-want-to-avoid/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.techcrunch.com/2008/05/06/heres-a-hosting-provider-youll-probably-want-to-avoid/');">Techcrunch</a> | <a href="http://blogs.wsj.com/biztech/2008/05/06/peter-gabriels-servers-stolen/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blogs.wsj.com/biztech/2008/05/06/peter-gabriels-servers-stolen/');">Wall Street Journal</a> | <a href="http://hardware.slashdot.org/article.pl?sid=08/05/06/1639257&amp;from=rss" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://hardware.slashdot.org/article.pl?sid=08/05/06/1639257&amp;from=rss');">Slashdot</a> | <a href="http://www.theregister.co.uk/2008/05/05/peter_gabriel_server_theft/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.theregister.co.uk/2008/05/05/peter_gabriel_server_theft/');">The&nbsp;Register</a></p>
<p>Always interesting to read the comments (apart from the endless Sledgehammer jokes) and see what people on the outside think our setup is like.  Most appear to assume a large enterprise type setup with a team of devs, designers and editors.  The reality is much more&nbsp;modest.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/05/filthy-robbers-stole-our-severs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Big Blue Ball</title>
		<link>http://stefangoodchild.com/portfolio/2008/05/big-blue-ball/</link>
		<comments>http://stefangoodchild.com/portfolio/2008/05/big-blue-ball/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/05/big-blue-ball/</guid>
		<description><![CDATA[
Big Blue Ball - Website / Backend Design and&#160;Development

A microsite (but a big one!) for the new release from Real World Records.  Features custom flash audio and video players and pulls data from the custom Real World&#160;CMS.
&#160;bigblueball.realworldrecords.com
]]></description>
			<content:encoded><![CDATA[<div class="portfolio_img"><img src="http://stefangoodchild.com/content/portfolio_images/main/big-blue-ball.jpg" alt="bigblueball.realworldrecords.com" />
<p>Big Blue Ball - Website / Backend Design and&nbsp;Development</p>
</div>
<p>A microsite (but a big one!) for the new release from Real World Records.  Features custom flash audio and video players and pulls data from the custom Real World&nbsp;CMS.</p>
<p><a href="http://bigblueball.realworldrecords.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://bigblueball.realworldrecords.com');">&nbsp;bigblueball.realworldrecords.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/portfolio/2008/05/big-blue-ball/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Womad Shop</title>
		<link>http://stefangoodchild.com/portfolio/2008/03/womad-shop/</link>
		<comments>http://stefangoodchild.com/portfolio/2008/03/womad-shop/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/03/womad-shop/</guid>
		<description><![CDATA[
WOMAD Shop - Website / Backend Design and&#160;Development

Brand new replacement shop for Real World which currently has a 7 figure turnover thanks to the exclusive stocking of WOMAD&#160;tickets.  
Front and back end rebuilt from the ground up to enable products to be grouped in dynamic ways so digital downloads can be incorporated in the [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio_img"><img src="http://stefangoodchild.com/content/portfolio_images/main/womad-shop.jpg" alt="womadshop.com" />
<p>WOMAD Shop - Website / Backend Design and&nbsp;Development</p>
</div>
<p>Brand new replacement shop for Real World which currently has a 7 figure turnover thanks to the exclusive stocking of WOMAD&nbsp;tickets.  </p>
<p>Front and back end rebuilt from the ground up to enable products to be grouped in dynamic ways so digital downloads can be incorporated in the next phase with lots of work done to make the front end as simple as possible to create a higher conversion rate despite the relatively high amount of information required&nbsp;on-screen.</p>
<p><a href="http://www.womadshop.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.womadshop.com');">www.womadshop.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/portfolio/2008/03/womad-shop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Anaïs Pin</title>
		<link>http://stefangoodchild.com/portfolio/2008/03/anais-pin/</link>
		<comments>http://stefangoodchild.com/portfolio/2008/03/anais-pin/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[Moonlance]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/03/anais-pin/</guid>
		<description><![CDATA[
Anaïs Pin- Website Design and&#160;Development

A &#8220;Moonlance&#8221; job outside of my full time Real World duties this site is for an up and coming female writer to publish her new voice.  The brief was feminine but editorial so I went with the obvious paper / courier combo to reflect the kind of thing a 50&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio_img"><img src="http://stefangoodchild.com/content/portfolio_images/main/anais-pin.jpg" alt="anaispin.com" />
<p>Anaïs Pin- Website Design and&nbsp;Development</p>
</div>
<p>A &#8220;Moonlance&#8221; job outside of my full time Real World duties this site is for an up and coming female writer to publish her new voice.  The brief was feminine but editorial so I went with the obvious paper / courier combo to reflect the kind of thing a 50&#8217;s copy editor might see on his desk. Sometimes the obvious design choice I would ordinarily avoid is the right one for a particular&nbsp;client.</p>
<p>Custom admin screen and simple CMS system was developed to enable the client to update her own&nbsp;stories.</p>
<p><a href="http://www.anaispin.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.anaispin.com');">www.anaispin.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/portfolio/2008/03/anais-pin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sherwood Lays Down The Knowledge</title>
		<link>http://stefangoodchild.com/journal/2008/02/sherwood-lays-down-the-knowledge/</link>
		<comments>http://stefangoodchild.com/journal/2008/02/sherwood-lays-down-the-knowledge/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/02/sherwood-lays-down-the-knowledge/</guid>
		<description><![CDATA[
It&#8217;s not often you get to meet a legend, but working at Real World you get more than your fair&#160;share.
Not long ago I was scared half to death by Robert Plant when he excused a sneeze in my office when I thought I was alone and obsorbed with code and today I got to meet [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefangoodchild.com/content/journal_images/sherwood.jpg" alt="" /></p>
<p>It&#8217;s not often you get to meet a legend, but working at Real World you get more than your fair&nbsp;share.</p>
<p>Not long ago I was scared half to death by Robert Plant when he excused a sneeze in my office when I thought I was alone and obsorbed with code and today I got to meet (again) one of the kingpin producers in my world, <a href="http://www.obsolete.com/on-u/sherwood.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.obsolete.com/on-u/sherwood.html');">Adrian&nbsp;Sherwood</a>.</p>
<p>Adrian is at Real World Studios mixing a project for <a href="http://realworldrecords.com/littleaxe/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://realworldrecords.com/littleaxe/');">Little Axe</a> - one of my favourite Real World artists -  and I was there trying to capture some moments on video for the forthcoming EPK but during some downtime we chatted for a moment about music production and he offered up some top tips and my boss, York Tillyer, captured the moment when Sherwood laid down the&nbsp;knowledge.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/02/sherwood-lays-down-the-knowledge/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shiny Colours Distract Me</title>
		<link>http://stefangoodchild.com/journal/2008/02/shiny-colours-distract-me/</link>
		<comments>http://stefangoodchild.com/journal/2008/02/shiny-colours-distract-me/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/02/shiny-colours-distract-me/</guid>
		<description><![CDATA[Minor site update and some sneaky features last night.  The main visual change was the addition of some new colourful Aurora Borealis inspired glows peeking out from behind the content panel just to add a bit of colour to my drab winter night, and I&#8217;ve sneaked in some minor tweaks here and there to [...]]]></description>
			<content:encoded><![CDATA[<p>Minor site update and some sneaky features last night.  The main visual change was the addition of some new colourful <a href="http://en.wikipedia.org/wiki/Aurora_(astronomy)" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Aurora_(astronomy)');">Aurora Borealis</a> inspired glows peeking out from behind the content panel just to add a bit of colour to my drab winter night, and I&#8217;ve sneaked in some minor tweaks here and there to fix it up a&nbsp;bit.</p>
<p>Also I&#8217;ve remembered that there is a fully functioning URL based search function that I&#8217;ve not got round to creating a form for.  Simply stick search/searchterm on the root URL and it&#8217;ll work fine and dandy.  Try it out&nbsp;<a href="http://stefangoodchild.com/search/drum" >here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/02/shiny-colours-distract-me/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Serge Gainsbourg Vs Royce Da 5&#8242;9 Booty</title>
		<link>http://stefangoodchild.com/journal/2008/02/serge-gainsbourg-vs-royce-da-59-booty/</link>
		<comments>http://stefangoodchild.com/journal/2008/02/serge-gainsbourg-vs-royce-da-59-booty/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/02/serge-gainsbourg-vs-royce-da-59-booty/</guid>
		<description><![CDATA[Le Hop Du&#160;Hip
Been off work sick over last week and so finally get round to doing a proper version of this mashup (ugh!) I used to do live when I was a&#160;DJ.  
2 Serge Gainsbourg tracks (Initial BB and Bonnie &#38; Clyde), a Royce Da 5&#8221;9 Vocal from a bit of vinyl I bought [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_51"></div><img src="http://stefangoodchild.com/content/discography/90.jpg" alt="" /><ul><li><a rel="flashplayer_51" href="http://stefangoodchild.com/content/discography/90.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/90.mp3');">Le Hop Du&nbsp;Hip</a></li></ul></div>
<p>Been off work sick over last week and so finally get round to doing a proper version of this mashup (ugh!) I used to do live when I was a&nbsp;DJ.  </p>
<p>2 Serge Gainsbourg tracks (Initial BB and Bonnie &amp; Clyde), a Royce Da 5&#8221;9 Vocal from a bit of vinyl I bought a few years back, two little audio surprises at the end and a dollop of boom&nbsp;bap.</p>
<p>Annoyed Kylie has nicked the same B&amp;C loop I&#8217;ve been using for years but hey ho - Life, as they say,&nbsp;sucks.</p>
<p>Preview it above in the flash player and if you like you can get the 320k DL&nbsp;below.</p>
<p><a href="http://stefangoodchild.com/content/audio_downloads/LeHopDuHip.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/audio_downloads/LeHopDuHip.mp3');">Download 320kbps MP3&nbsp;Version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/02/serge-gainsbourg-vs-royce-da-59-booty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Things A Producer&#8230;</title>
		<link>http://stefangoodchild.com/journal/2008/01/things-a-producer/</link>
		<comments>http://stefangoodchild.com/journal/2008/01/things-a-producer/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/01/things-a-producer/</guid>
		<description><![CDATA[Nice short checklist from Chris Randall at Analog Industries. This one&#8217;s my&#160;favourite.
&#8220;Hey, I think this track needs some percussion.&#8221; Sigh. Nobody but percussionists can actually play percussion worth a shit. See #3. If you own a studio, and you want to increase your hourly billing, just leave some maracas and a tambo lying about the [...]]]></description>
			<content:encoded><![CDATA[<p>Nice short checklist from Chris Randall at <a href="http://www.analogindustries.com/blog/entry.jsp?msgid=1201593066963" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.analogindustries.com/blog/entry.jsp?msgid=1201593066963');">Analog Industries</a>. This one&#8217;s my&nbsp;favourite.</p>
<blockquote><p>&#8220;Hey, I think this track needs some percussion.&#8221; Sigh. Nobody but percussionists can actually play percussion worth a shit. See #3. If you own a studio, and you want to increase your hourly billing, just leave some maracas and a tambo lying about the control&nbsp;room.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/01/things-a-producer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Truth About Trouble</title>
		<link>http://stefangoodchild.com/journal/2008/01/the-truth-about-trouble/</link>
		<comments>http://stefangoodchild.com/journal/2008/01/the-truth-about-trouble/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/01/the-truth-about-trouble/</guid>
		<description><![CDATA[The fundamental cause of the trouble is that in the modern world the stupid are cocksure while the intelligent are full of doubt. - Bertrand&#160;Russell
]]></description>
			<content:encoded><![CDATA[<blockquote><p>The fundamental cause of the trouble is that in the modern world the stupid are cocksure while the intelligent are full of doubt. - Bertrand&nbsp;Russell</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/01/the-truth-about-trouble/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drum Machines Have No Soul</title>
		<link>http://stefangoodchild.com/journal/2008/01/drum-machines-have-no-soul/</link>
		<comments>http://stefangoodchild.com/journal/2008/01/drum-machines-have-no-soul/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music Tech]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/01/drum-machines-have-no-soul/</guid>
		<description><![CDATA[
I love this photo.  Only drum machine geeks need apply mind as that&#8217;s Roger&#160;Linn.
Blatantly nicked from Create Digital&#160;Music
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefangoodchild.com/content/journal_images/linnhasnosoul.jpg" alt="" /></p>
<p>I love this photo.  Only drum machine geeks need apply mind as that&#8217;s Roger&nbsp;Linn.</p>
<p>Blatantly nicked from <a href="http://createdigitalmusic.com/2008/01/23/namm-show-floor-anomalies-the-winfail-list-pt-ii-wins/#more-2915" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://createdigitalmusic.com/2008/01/23/namm-show-floor-anomalies-the-winfail-list-pt-ii-wins/#more-2915');">Create Digital&nbsp;Music</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/01/drum-machines-have-no-soul/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alphatool</title>
		<link>http://stefangoodchild.com/discography/2008/01/alphatool/</link>
		<comments>http://stefangoodchild.com/discography/2008/01/alphatool/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Discography]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Single]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/01/alphatool/</guid>
		<description><![CDATA[Alphatool
Not sure when this one came out but it is now finally out on vinyl.  It may have been out for weeks or even months but no one told me.  I love record labels.&#160;Not.
Available from Juno.co.uk and possibly a few others in other countries as well,  who&#160;knows.
Maybe one day I&#8217;ll find a [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_75"></div><img src="http://stefangoodchild.com/content/discography/84.jpg" alt="" /><ul><li><a rel="flashplayer_75" href="http://stefangoodchild.com/content/discography/84.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/84.mp3');">Alphatool</a></li></ul></div>
<p>Not sure when this one came out but it is now finally out on vinyl.  It may have been out for weeks or even months but no one told me.  I love record labels.&nbsp;Not.</p>
<p>Available from <a href="http://www.juno.co.uk/ppps/products/295267-01.htm&amp;highlight=Stabilizer" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.juno.co.uk/ppps/products/295267-01.htm&amp;highlight=Stabilizer');">Juno.co.uk</a> and possibly a few others in other countries as well,  who&nbsp;knows.</p>
<p>Maybe one day I&#8217;ll find a label that releases stuff when they say they will and tell me about&nbsp;it.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/discography/2008/01/alphatool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Site</title>
		<link>http://stefangoodchild.com/journal/2008/01/new-site/</link>
		<comments>http://stefangoodchild.com/journal/2008/01/new-site/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2008/01/new-site/</guid>
		<description><![CDATA[
Taken a while and there were some last minute hitches - namely Media Temple&#8217;s lack of a set_charset() command and the Grid Server performance problems but I&#8217;ve finally uploaded most of my new&#160;home.
Portfolio section is ready but waiting on content so that shouldn&#8217;t take too long&#160;hopefully.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.stefangoodchild.com/content/journal_images/newsite0108.jpg" alt="" /></p>
<p>Taken a while and there were some last minute hitches - namely Media Temple&#8217;s lack of a set_charset() command and the Grid Server performance problems but I&#8217;ve finally uploaded most of my new&nbsp;home.</p>
<p>Portfolio section is ready but waiting on content so that shouldn&#8217;t take too long&nbsp;hopefully.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2008/01/new-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Warning</title>
		<link>http://stefangoodchild.com/discography/2007/11/the-warning/</link>
		<comments>http://stefangoodchild.com/discography/2007/11/the-warning/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Discography]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Remix]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2007/11/the-warning/</guid>
		<description><![CDATA[The Warning Real World Mix by Stefan Goodchild (featuring Doudou N&#8217;Diaye&#160;Rose)
Real World Records was asked to commission a remix of &#8216;The Warning&#8217; by Nine Inch Nails to appear on the Y34RZ3R0R3MIX3D remix album and I was delighted when they asked me to do it as I was a big fan of NiN back in the [...]]]></description>
			<content:encoded><![CDATA[<p><div class="tracklist"><div class="flashplayer" id="flashplayer_83"></div><img src="http://stefangoodchild.com/content/discography/83.jpg" alt="" /><ul><li><a rel="flashplayer_83" href="http://stefangoodchild.com/content/discography/83.mp3" onclick="javascript:pageTracker._trackPageview('/downloads/content/discography/83.mp3');">The Warning Real World Mix by Stefan Goodchild (featuring Doudou N&#8217;Diaye&nbsp;Rose)</a></li></ul></div></p>
<p>Real World Records was asked to commission a remix of &#8216;The Warning&#8217; by Nine Inch Nails to appear on the Y34RZ3R0R3MIX3D remix album and I was delighted when they asked me to do it as I was a big fan of NiN back in the day and the chance to remix your heroes is always a&nbsp;treat.</p>
<p>Mixing African drumming from Doudou N&#8217;Diaye Rose&#8217;s amazing Rose Rhythm and the source Nine Inch Nails multitrack was more a case of not messing up what was already great about the two songs and injecting just enough of my touches to make it feel like mine&nbsp;again.</p>
<p>It appears (though I&#8217;ve not confirmed it) that this remix has been licensed into the game <a href="http://www.needforspeed.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.needforspeed.com/');">Need For Speed: Undercover</a> which would be pretty cool had the game not been universally panned for it&#8217;s inherent&nbsp;flaws.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/discography/2007/11/the-warning/feed/</wfw:commentRss>
<enclosure url="http://stefangoodchild.com/content/discography/83.mp3" length="2783619" type="audio/mpeg" />
		</item>
		<item>
		<title>Ableton Live Next?</title>
		<link>http://stefangoodchild.com/journal/2007/09/ableton-live-next/</link>
		<comments>http://stefangoodchild.com/journal/2007/09/ableton-live-next/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 23:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Music Tech]]></category>

		<guid isPermaLink="false">http://localhost:8888/journal/2007/09/ableton-live-next/</guid>
		<description><![CDATA[
A post from long time tech writer Jim Aikin on Create Digital Music contains this interesting ine of&#160;text&#8230;
As a huge fan of the software this seemed like one of two things. The article was written last year, or there really is a new version of Live on the way as I can&#8217;t see a book [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://stefangoodchild.com/content/journal_images/abletonlive.jpg" alt="" /></p>
<p>A post from long time tech writer Jim Aikin on <a href="http://createdigitalmusic.com/2007/09/24/opinion-life-beyond-the-magazine-how-to/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://createdigitalmusic.com/2007/09/24/opinion-life-beyond-the-magazine-how-to/');">Create Digital Music</a> contains this interesting ine of&nbsp;text&#8230;</p>
<p>As a huge fan of the software this seemed like one of two things. The article was written last year, or there really is a new version of Live on the way as I can&#8217;t see a book being written about Live 6&nbsp;LE.</p>
<p>Even if it&#8217;s a while away I&#8217;m looking forward to the next version as I&#8217;m one of those tech musicians who thrive on learning new features and the ideas that spring from them to make my&nbsp;music.</p>
]]></content:encoded>
			<wfw:commentRss>http://stefangoodchild.com/journal/2007/09/ableton-live-next/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
