<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Yusuf's blog supplemental</title>
	
	<link>http://www.yusufk.za.net</link>
	<description>Stardate 2008-12-18, decided to spawn a digital projection of my mental self</description>
	<lastBuildDate>Tue, 24 Aug 2010 09:30:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/YusufsBlogSupplemental" /><feedburner:info uri="yusufsblogsupplemental" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Android Web Gallery Example</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/yQT9icMcjoU/</link>
		<comments>http://www.yusufk.za.net/?p=538#comments</comments>
		<pubDate>Tue, 24 Aug 2010 09:26:59 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=538</guid>
		<description><![CDATA[I’ve been dabbling since last Friday with Android development. So far, I’ve already released one app on the marketplace because its pretty straight-forward to get something done on the Android platform. My next challenge was to implement a picture gallery app and I found the following example: http://www.androidpeople.com/android-gallery-imageview-example/ Also found an example of how to [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been dabbling since last Friday with Android development. So far, I’ve already released <a href="http://market.android.com/details?id=za.co.mtn">one app</a> on the marketplace because its pretty straight-forward to get something done on the Android platform.</p>
<p>My next challenge was to implement a picture gallery app and I found the following example:</p>
<p><a href="http://www.androidpeople.com/android-gallery-imageview-example/">http://www.androidpeople.com/android-gallery-imageview-example/</a></p>
<p>Also found an example of how to fetch images from the Web:</p>
<p><a href="http://www.androidpeople.com/android-load-image-from-url-example/">http://www.androidpeople.com/android-load-image-from-url-example/</a></p>
<p>So, all I needed to do was merge the two together…</p>
<p>main.xml</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;LinearLayout android:id=&#8221;@+id/LinearLayout01&#8243;<br />
android:layout_width=&#8221;fill_parent&#8221; android:layout_height=&#8221;fill_parent&#8221;<br />
xmlns:android=&#8221;<a href="http://schemas.android.com/apk/res/android&quot;">http://schemas.android.com/apk/res/android&#8221;</a><br />
android:orientation=&#8221;vertical&#8221;&gt;<br />
&lt;Gallery xmlns:android=&#8221;<a href="http://schemas.android.com/apk/res/android&quot;">http://schemas.android.com/apk/res/android&#8221;</a><br />
android:id=&#8221;@+id/gallery&#8221;<br />
android:layout_width=&#8221;fill_parent&#8221;<br />
android:layout_height=&#8221;wrap_content&#8221;<br />
/&gt;<br />
&lt;ImageView android:id=&#8221;@+id/ImageView01&#8243;<br />
android:layout_width=&#8221;wrap_content&#8221;<br />
android:layout_height=&#8221;wrap_content&#8221;<br />
/&gt;<br />
&lt;/LinearLayout&gt;</p></blockquote>
<p>webGalleryExample.java</p>
<blockquote><p>package za.co.mtn.webGalleryExample;</p>
<p>import java.io.InputStream;<br />
import java.net.URL;</p>
<p>import android.app.Activity;<br />
import android.content.Context;<br />
import android.content.res.TypedArray;<br />
import android.graphics.drawable.Drawable;<br />
import android.os.Bundle;<br />
import android.view.View;<br />
import android.view.ViewGroup;<br />
import android.widget.AdapterView;<br />
import android.widget.BaseAdapter;<br />
import android.widget.Gallery;<br />
import android.widget.ImageView;<br />
import android.widget.AdapterView.OnItemClickListener;</p>
<p>public class GalleryExample extends Activity {<br />
private String[] jamCamURLs = {<br />
“<a href="http://path.to.image1.jpg">http://path.to.image1.jpg</a>”,<br />
“<a href="http://path.to.image2.jpg">http://path.to.image2.jpg</a>”,<br />
“<a href="http://path.to.image3.jpg">http://path.to.image3.jpg</a>”,</p>
<p>};<br />
Drawable[] drawablesFromUrl = new Drawable[3];<br />
/** Called when the activity is first created. */<br />
@Override<br />
public void onCreate(Bundle savedInstanceState) {<br />
super.onCreate(savedInstanceState);<br />
setContentView(R.layout.main);<br />
for (int i = 0; i &lt; drawablesFromUrl.length; i++){<br />
drawablesFromUrl[i] = LoadImageFromURL(jamCamURLs[i]);<br />
}<br />
final ImageView imgView = (ImageView)findViewById(R.id.ImageView01);<br />
imgView.setImageDrawable(drawablesFromUrl[0]);<br />
Gallery g = (Gallery) findViewById(R.id.gallery);<br />
g.setAdapter(new ImageAdapter(this));</p>
<p>g.setOnItemClickListener(new OnItemClickListener() {<br />
public void onItemClick(AdapterView parent, View v, int position, long id) {<br />
imgView.setImageDrawable(drawablesFromUrl[position]);<br />
}<br />
});<br />
}<br />
private Drawable LoadImageFromURL(String url)<br />
{<br />
try<br />
{<br />
InputStream is = (InputStream) new URL(url).getContent();<br />
Drawable d = Drawable.createFromStream(is, &#8220;src name&#8221;);<br />
return d;<br />
}catch (Exception e) {<br />
System.out.println(&#8220;Exc=&#8221;+e);<br />
return null;<br />
}<br />
}<br />
/*public static boolean StoreByteImage(Context mContext, byte[] imageData,<br />
int quality, String expName) {</p>
<p>File sdImageMainDirectory = new File(&#8220;/sdcard/myImages&#8221;);<br />
FileOutputStream fileOutputStream = null;<br />
String nameFile = null;<br />
try {</p>
<p>BitmapFactory.Options options=new BitmapFactory.Options();<br />
options.inSampleSize = 5;<br />
Bitmap myImage = BitmapFactory.decodeByteArray(imageData, 0,<br />
imageData.length,options);</p>
<p>fileOutputStream = new FileOutputStream(<br />
sdImageMainDirectory.toString() +&#8221;/&#8221; + nameFile + &#8220;.jpg&#8221;);<br />
BufferedOutputStream bos = new BufferedOutputStream(<br />
fileOutputStream);</p>
<p>myImage.compress(CompressFormat.JPEG, quality, bos);</p>
<p>bos.flush();<br />
bos.close();</p>
<p>} catch (FileNotFoundException e) {<br />
// TODO Auto-generated catch block<br />
e.printStackTrace();<br />
} catch (IOException e) {<br />
// TODO Auto-generated catch block<br />
e.printStackTrace();<br />
}</p>
<p>return true;<br />
}*/</p>
<p>public class ImageAdapter extends BaseAdapter {<br />
int mGalleryItemBackground;<br />
private Context mContext;</p>
<p>public ImageAdapter(Context c) {<br />
mContext = c;<br />
TypedArray a = obtainStyledAttributes(R.styleable.JamCam);<br />
mGalleryItemBackground = a.getResourceId(<br />
R.styleable.JamCam_android_galleryItemBackground, 0);<br />
a.recycle();<br />
}</p>
<p>public int getCount() {<br />
return jamCamURLs.length;<br />
//return mImageIds.length;<br />
}</p>
<p>public Object getItem(int position) {<br />
return position;<br />
}</p>
<p>public long getItemId(int position) {<br />
return position;<br />
}</p>
<p>public View getView(int position, View convertView, ViewGroup parent) {<br />
ImageView i = new ImageView(mContext);</p>
<p>i.setImageDrawable(drawablesFromUrl[position]);<br />
i.setLayoutParams(new Gallery.LayoutParams(70, 57));<br />
i.setScaleType(ImageView.ScaleType.FIT_XY);<br />
i.setBackgroundResource(mGalleryItemBackground);</p>
<p>return i;<br />
}<br />
}<br />
}</p></blockquote>
<p><span style="color: #777777;">And voila!</span></p>
<p><span style="color: #777777;"><br />
</span></p>

<p><a href="http://feedads.g.doubleclick.net/~a/2D9rMOVGfkmEztveD7U2LgGGMjo/0/da"><img src="http://feedads.g.doubleclick.net/~a/2D9rMOVGfkmEztveD7U2LgGGMjo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2D9rMOVGfkmEztveD7U2LgGGMjo/1/da"><img src="http://feedads.g.doubleclick.net/~a/2D9rMOVGfkmEztveD7U2LgGGMjo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/yQT9icMcjoU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=538</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=538</feedburner:origLink></item>
		<item>
		<title>The Mountain</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/uE_LpsSCOwk/</link>
		<comments>http://www.yusufk.za.net/?p=528#comments</comments>
		<pubDate>Mon, 23 Aug 2010 06:42:23 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=528</guid>
		<description><![CDATA[Table Mountain Live Webcam]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 432px"><a href="http://ota.mtn.co.za/jamwebcam/"><img class=" " title="The Mountain" src="http://ota.mtn.co.za/jamwebcam/0107_TableMountain.jpg" alt="uhhh, like where's mountain dude? " width="422" height="346" /></a><p class="wp-caption-text">Dude, its the mountain. Like fully. Wicked.</p></div>
<p>Table Mountain Live Webcam</p>

<p><a href="http://feedads.g.doubleclick.net/~a/qr8rUnQmVhn6BCDOB5YAQTy1AT8/0/da"><img src="http://feedads.g.doubleclick.net/~a/qr8rUnQmVhn6BCDOB5YAQTy1AT8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qr8rUnQmVhn6BCDOB5YAQTy1AT8/1/da"><img src="http://feedads.g.doubleclick.net/~a/qr8rUnQmVhn6BCDOB5YAQTy1AT8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/uE_LpsSCOwk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=528</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=528</feedburner:origLink></item>
		<item>
		<title>Howto: Vuvuzela filter using Linux (Ubuntu)</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/3IZrn6WLvMk/</link>
		<comments>http://www.yusufk.za.net/?p=520#comments</comments>
		<pubDate>Tue, 15 Jun 2010 10:50:04 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=520</guid>
		<description><![CDATA[By now there are more than a few bog posts like this on how to filter out the resonant frequencies produced by the vuvuzela. I wasn&#8217;t too happy with any of them and thought I&#8217;d share what I came up with after some tinkering. For the impatient: To install required tools: sudo apt-get install sox [...]]]></description>
			<content:encoded><![CDATA[<p>By now there are more than a few bog posts like this on how to filter out the resonant frequencies produced by the vuvuzela.</p>
<p>I wasn&#8217;t too happy with any of them and thought I&#8217;d share what I came up with after some tinkering.</p>
<p>For the impatient:</p>
<p>To install required tools:</p>
<blockquote><p>sudo apt-get install sox</p></blockquote>
<p>To test:</p>
<blockquote><p>play vuvuzela.wav vol 0.9 bandreject 116.56 3.4q bandreject 233.12 3.4q bandreject 466.24 3.4q bandreject 932.48 3.4q bandreject 1864 3.4q</p></blockquote>
<div>The test file can be downloaded <a href="http://ubuntuone.com/p/78M/">here</a>.</div>
<div>My starting point for this was <a href="http://www.russellbeattie.com/blog/linux-command-line-streaming-vuvuzela-filter">a post by</a> Russell Beattie, where he describes his attempts at using <a href="http://sox.sourceforge.net">SoX</a>.</div>
<div>You can test both approaches (using an equalizer vs. using a band-reject filter), and I think the latter does a better job. I also used slighty more accurate frequencies as suggested <a href="http://fetzig.org/2010/06/13/vuvuzela-filter-using-fedora/#comment-190">here</a> and added an additional lower resonant frequency at 116.56 because I could still here a faint toot.</div>
<div>Russell chose to use <a href="http://en.wikipedia.org/wiki/Octave">Octave</a> to define the width around the central frequency that is removed (.1o), whereas I prefer using the <a href="http://en.wikipedia.org/wiki/Q_factor">Q-factor</a> as did the <a href="http://www.surfpoeten.de/tube/vuvuzela_filter">original German Blog post on this</a> subject (3.4q)</div>
<p>To use:</p>
<blockquote><p>rec -d|play -d vol 0.9 bandreject 116.56 3.4q bandreject 233.12 3.4q bandreject 466.24 3.4q bandreject 932.48 3.4q bandreject 1864 3.4q</p></blockquote>
<p>Assuming your default sound input source is the your line-in or tv-tuner.</p>
<p>Updated: I updated the fundamental and harmonics as per <a href="http://decibel.ni.com/content/blogs/Simon/2010/06/16/world-cup-2010--filtering-the-annoying-vuvuzela-noise">this site</a>.</p>
<p>Updated again: The above update should have been better, theoretically, but it isn&#8217;t.</p>
<p>Vuvuzela Frequencies</p>
<p>Fundamental: 232.4 Hz</p>
<p>Harmonic 1: 464.8</p>
<p>Harmonic 2: 697.2</p>
<p>Harmonic 3: 929.6</p>
<p>Harmonic 4: 1162</p>
<p>Harmonic 5: 1394.4</p>
<p>Harmonic 6: 1626.8</p>
<p>Harmonic 7: 1859.3</p>

<p><a href="http://feedads.g.doubleclick.net/~a/EBfsbWf-TCDRh-kmGlSnHQzb-KY/0/da"><img src="http://feedads.g.doubleclick.net/~a/EBfsbWf-TCDRh-kmGlSnHQzb-KY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EBfsbWf-TCDRh-kmGlSnHQzb-KY/1/da"><img src="http://feedads.g.doubleclick.net/~a/EBfsbWf-TCDRh-kmGlSnHQzb-KY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/3IZrn6WLvMk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=520</wfw:commentRss>
		<slash:comments>8</slash:comments>
<enclosure url="http://ubuntuone.com/p/78M/" length="12393179" type="audio/wav" />
		<feedburner:origLink>http://www.yusufk.za.net/?p=520</feedburner:origLink></item>
		<item>
		<title>Kiddo and I are playing outside despite cold because…</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/2QijaSP15so/</link>
		<comments>http://www.yusufk.za.net/?p=519#comments</comments>
		<pubDate>Wed, 12 May 2010 18:18:02 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=519</guid>
		<description><![CDATA[Sent from my BlackBerry® wireless device Posted via email from yusufk&#8217;s posterous]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><a href='http://posterous.com/getfile/files.posterous.com/yusufk/SXIq2BAYm1HDrlvgez44I9igVV1xA2wGhSsmR4nn7MGoHSfr8tXtzr8LGK2W/IMG00045-20100512-2015.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/yusufk/IYbX9maV5nWw0RfzfrPjFFiDAlMYxlpvC27SXKO9shihwA6HliPt0U9WpX4S/IMG00045-20100512-2015.jpg.scaled.500.jpg" width="500" height="375"/></a>
<p>Sent from my BlackBerry® wireless device</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://yusufk.posterous.com/kiddo-and-i-are-playing-outside-despite-cold">yusufk&#8217;s posterous</a>  </p>
</p></div>

<p><a href="http://feedads.g.doubleclick.net/~a/zab0cZsGvMTdkSmf2cUhpmwZHzs/0/da"><img src="http://feedads.g.doubleclick.net/~a/zab0cZsGvMTdkSmf2cUhpmwZHzs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zab0cZsGvMTdkSmf2cUhpmwZHzs/1/da"><img src="http://feedads.g.doubleclick.net/~a/zab0cZsGvMTdkSmf2cUhpmwZHzs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/2QijaSP15so" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=519</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=519</feedburner:origLink></item>
		<item>
		<title>Johannesburg(emmerentia) at its prettiest</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/FJ9oRPFcIBk/</link>
		<comments>http://www.yusufk.za.net/?p=518#comments</comments>
		<pubDate>Fri, 30 Apr 2010 06:00:13 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=518</guid>
		<description><![CDATA[Sent from my BlackBerry® wireless device Posted via email from yusufk&#8217;s posterous]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><a href='http://posterous.com/getfile/files.posterous.com/yusufk/KyUFoBWWK9aWPBqaTqbvQ5Pg9LQyOny2q0O7CrmizUtPaHnHCRmm68l4JY4h/IMG00034-20100430-0755.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/yusufk/GVt9493mGGJIdf34pHiCuXhROWyhcE3034VocaYKqaZtoiWixEDRmMa5eh4r/IMG00034-20100430-0755.jpg.scaled.500.jpg" width="500" height="375"/></a>
<p>Sent from my BlackBerry® wireless device</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://yusufk.posterous.com/johannesburgemmerentia-at-its-prettiest">yusufk&#8217;s posterous</a>  </p>
</p></div>

<p><a href="http://feedads.g.doubleclick.net/~a/BSaJHu-fNAAXUVchwVaP10MHvZU/0/da"><img src="http://feedads.g.doubleclick.net/~a/BSaJHu-fNAAXUVchwVaP10MHvZU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BSaJHu-fNAAXUVchwVaP10MHvZU/1/da"><img src="http://feedads.g.doubleclick.net/~a/BSaJHu-fNAAXUVchwVaP10MHvZU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/FJ9oRPFcIBk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=518</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=518</feedburner:origLink></item>
		<item>
		<title>South African poor Service levels extend to the Web too.</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/zHmG03ckMgY/</link>
		<comments>http://www.yusufk.za.net/?p=516#comments</comments>
		<pubDate>Thu, 15 Apr 2010 08:11:23 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=516</guid>
		<description><![CDATA[One of the reasons that I was most keen to adopt Online shopping was that I would not have to deal with the typically pathetic service levels that we South Africans have come to expect as the norm. Whether its the company tuck shop or the post-office, we all know the frustration experienced while staring [...]]]></description>
			<content:encoded><![CDATA[<p>One of the reasons that I was most keen to adopt Online shopping was that I would not have to deal with the typically pathetic service levels that we South Africans have come to expect as the norm. Whether its the company tuck shop or the post-office, we all know the frustration experienced while staring at the totally unenthusiastic person behind the counter, as she avoids looking at you, clicks on her chewing gum, has a conversation with her co-workers and decides to have an impromptu tea break when you finally get to the front of the queue. Have you seen the look on the faces of foreigners when they 1st encounter our sales people?</p>
<p>Anyway, I’ve made a few purchases online from various providers including Amazon, eBay etc. and have had nothing but good experiences, until now…</p>
<p>If I had to choose which of the outlets in South Africa have the worst service and have the people with the worst attitude, there would be many contenders, but one clear winner: The South Africa Post Office. And, much to my dismay, I’ve discovered that they’ve tried so hard to be bad, that they’ve actually provided the same disservice via the Internet too!</p>
<p>Long story short, I ordered an item from the online store eXpansys South Africa. The item had an estimated shipping time of 7-10 days, which I confirmed telephonically (the agent confirmed that they had stock). 2 Weeks later and all I had was email confirmation of the order and payment, even after asking for information via their email based tracking system. 13 days later after, I received a Speed Services Courier (powered by non other than South African Post Office) tracking code. And then, nothing.</p>
<p>The tracking system on the Speed Services Courier website showed that the item was received and nothing else, till today, almost a month later.</p>
<p>After several calls to eXpansys and SAPO, I’ve discovered that the item was stolen and that an enquiry will have to be initiated by eXpansys.</p>
<p>So, that’s the last time I order anything from eXpansys or anyone that uses Speed Services Courier to deliver items. Even though the theft is probably SAPO’s issue, eXpansys could have handled it much better by actually replying to emails to their tracking system and informing me of what was going on. Naughty eXpansys, naughty.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/fW-Ycp5txmlfgETCt_8vIAlAXgM/0/da"><img src="http://feedads.g.doubleclick.net/~a/fW-Ycp5txmlfgETCt_8vIAlAXgM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fW-Ycp5txmlfgETCt_8vIAlAXgM/1/da"><img src="http://feedads.g.doubleclick.net/~a/fW-Ycp5txmlfgETCt_8vIAlAXgM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/zHmG03ckMgY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=516</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=516</feedburner:origLink></item>
		<item>
		<title>3d TV? I think not!</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/Kv7c7m2ELW0/</link>
		<comments>http://www.yusufk.za.net/?p=514#comments</comments>
		<pubDate>Sun, 11 Apr 2010 19:51:14 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=514</guid>
		<description><![CDATA[I watched &#8220;How to train your dragon&#8221; this weekend, in &#8220;3D&#8221;. But it wasn&#8217;t really 3D&#8230; Awesome as it was, all that I really perceived was&#8230; depth. Yep, my eyes were fed the necessary extra information required for it to work out the relative distances of objects in the movie. Is that 3D? Or is [...]]]></description>
			<content:encoded><![CDATA[<p>I watched &#8220;How to train your dragon&#8221; this weekend, in &#8220;3D&#8221;.</p>
<p>But it wasn&#8217;t really 3D&#8230; Awesome as it was, all that I really perceived was&#8230; depth.</p>
<p>Yep, my eyes were fed the necessary extra information required for it to work out the relative distances of objects in the movie.</p>
<p>Is that 3D? Or is that true 1D? The much talked about next generation of TVs will also be True 1D and no more I&#8217;m afraid.</p>
<p>I know I&#8217;m bein pedantic, but in all honesty, I just want to make sure that we get the terminology right up front. I will not be satisfied until we truly have 3D.</p>
<p>So what will True 3D be? The answer is actually visible in another True 1D movie: Avatar. The control desk showing the layout of the forest, used by the planners, now that is 3D. </p>
<p>True 3D for me, is the representation of an image on all spacial planes. One should be able to view a scene from at least 5 viewpoints, if the bottom up view is left out. The 3D tv of the future will not be mounted on the far wall. It will be mounted on the coffee table in the center instead. You will get a different view depending on which side of it you are.</p>
<p>Best part is that you will like not require special glasses to trick youe eyes into perceiving depth, because the depth will be a side effect of the fact that the image is projected in a 3 dimensional space.</p>
<p>So, Sony, Samsung, LG, if you&#8217;re reading this, how about considering a change in name for your upcoming technology? It will give us something to look forward to after True 1D becomes the norm.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/Csy6Gq_jez8bWjUM0303Mqqmpso/0/da"><img src="http://feedads.g.doubleclick.net/~a/Csy6Gq_jez8bWjUM0303Mqqmpso/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Csy6Gq_jez8bWjUM0303Mqqmpso/1/da"><img src="http://feedads.g.doubleclick.net/~a/Csy6Gq_jez8bWjUM0303Mqqmpso/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/Kv7c7m2ELW0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=514</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=514</feedburner:origLink></item>
		<item>
		<title>BREAKING NEWS: Time Travel theories disproved in simple blog experiment.</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/g58X1LuRUgw/</link>
		<comments>http://www.yusufk.za.net/?p=510#comments</comments>
		<pubDate>Thu, 01 Apr 2010 15:23:22 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=510</guid>
		<description><![CDATA[It&#8217;s official. We can all let go of those fantastic idea&#8217;s of going back in time to fix mistakes of the past or passing back information such as lottery numbers and share prices. Marty McFly has not visited unfortunately and if you&#8217;ve read my previous blog post you would have realised by now that all [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official. We can all let go of those fantastic idea&#8217;s of going back in time to fix mistakes of the past or passing back information such as lottery numbers and share prices.</p>
<p>Marty McFly has not visited unfortunately and if you&#8217;ve read my <a href="http://www.yusufk.za.net/?p=506">previous blog post</a> you would have realised by now that all is lost in this field of theoretical physics.</p>
<p>Just in case any Time Travelling wannabe attempted to dupe me into believing that he/she was from the future, I left out one important part of my (ingenious) plan; A password: wormhole</p>
<p>The password is only mentioned in this post, which only a true Time Traveller would&#8217;ve had access to while reading the previous post, before today. You know what I mean.</p>
<p>So there, scientists, theoretical physicists, bored engineers and the like, you can cross off one waste of time theory and concentrate on something with more substance, like teleportation now.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/poSTVbH_zoXJL5_tejKRY84m8cU/0/da"><img src="http://feedads.g.doubleclick.net/~a/poSTVbH_zoXJL5_tejKRY84m8cU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/poSTVbH_zoXJL5_tejKRY84m8cU/1/da"><img src="http://feedads.g.doubleclick.net/~a/poSTVbH_zoXJL5_tejKRY84m8cU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/g58X1LuRUgw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=510</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=510</feedburner:origLink></item>
		<item>
		<title>Calling all time travellers.</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/vwRRvWDAHCk/</link>
		<comments>http://www.yusufk.za.net/?p=506#comments</comments>
		<pubDate>Wed, 31 Mar 2010 14:16:03 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[Time Travel]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=506</guid>
		<description><![CDATA[It&#8217;s time to end all debate on time travel. Here and now. With this blog post, I aim to settle the matter of time travel once and for all. How will I do this? Simple. Read and learn! Dear Time Traveller. I&#8217;m guessing that prior to having invented time travel, you 1st embarked on a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s time to end all debate on time travel. Here and now. With this blog post, I aim to settle the matter of time travel once and for all. How will I do this? Simple. Read and learn!</p>
<p><img class="alignnone" title="Warped Clock" src="http://www.wizardsontheroad.com/storage/design-files/warped-clock.jpg" alt="" width="200" height="156" /></p>
<p>Dear Time Traveller.</p>
<p>I&#8217;m guessing that prior to having invented time travel, you 1st embarked on a literature survey. I&#8217;m also hoping that Google still exists, whenever you are and that this blog post is still archived somewhere. I&#8217;m also hoping that the millions of readers that read my blog have raised the Page Rank of this post significantly so that you would have found it during your literature survey.</p>
<p>If you are about to embark on some time travel adventure, I want you to please set your destination clock to a time that allows you the opportunity to convince me that it is possible. You will need to travel down to now (check post date and time), and to Johannesburg, South Africa, and come say hello. If you do, I will update this post, verifying that Time Travel is indeed possible.</p>
<p>If however you don&#8217;t make it, Time Travel shall, in 24 hours time, be deemed impossible. Humanity will give up hope in the possibility and either you or your project will no longer exist as a result.</p>
<p>Your clock starts now.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/elknuzCr_g9CrPhVXpbHuLK3cDw/0/da"><img src="http://feedads.g.doubleclick.net/~a/elknuzCr_g9CrPhVXpbHuLK3cDw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/elknuzCr_g9CrPhVXpbHuLK3cDw/1/da"><img src="http://feedads.g.doubleclick.net/~a/elknuzCr_g9CrPhVXpbHuLK3cDw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/vwRRvWDAHCk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=506</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=506</feedburner:origLink></item>
		<item>
		<title>FIFA World Cup 2010 stadium construction, time lapse video</title>
		<link>http://feedproxy.google.com/~r/YusufsBlogSupplemental/~3/AqGwOb7RgTU/</link>
		<comments>http://www.yusufk.za.net/?p=503#comments</comments>
		<pubDate>Wed, 17 Feb 2010 15:30:21 +0000</pubDate>
		<dc:creator>Yusuf</dc:creator>
				<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.yusufk.za.net/?p=503</guid>
		<description><![CDATA[Fifa World Cup 2010 Stadium Construction, Moses Mabhida Stadium, by MTN My 1st video upload to Youtube..]]></description>
			<content:encoded><![CDATA[<p><b>Fifa World Cup 2010 Stadium Construction, Moses Mabhida Stadium, by MTN</b><br />
<object width="425" height="350"><param name="movie" value="http://youtube.com/v/gOl2W_MJsUU"></param><embed src="http://youtube.com/v/gOl2W_MJsUU" type="application/x-shockwave-flash" width="425" height="350"></embed></object><br />My 1st video upload to Youtube..</p>

<p><a href="http://feedads.g.doubleclick.net/~a/cTusaNUDI_rdZ3sDfuFXgY43NrQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/cTusaNUDI_rdZ3sDfuFXgY43NrQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cTusaNUDI_rdZ3sDfuFXgY43NrQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/cTusaNUDI_rdZ3sDfuFXgY43NrQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YusufsBlogSupplemental/~4/AqGwOb7RgTU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.yusufk.za.net/?feed=rss2&amp;p=503</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.yusufk.za.net/?p=503</feedburner:origLink></item>
	</channel>
</rss>
