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

<channel>
	<title>Mike Street Media - Freelance Website Designer</title>
	<atom:link href="http://www.mikestreetmedia.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikestreetmedia.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 11:03:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Create a WordPress Page with Posts and Custom Code</title>
		<link>http://www.mikestreetmedia.com/blog/2010/08/create-a-wordpress-page-with-posts-and-custom-code/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/08/create-a-wordpress-page-with-posts-and-custom-code/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 11:03:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[The Internet]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=415</guid>
		<description><![CDATA[I have recently been creating a website where the client wanted a soundcloud player at the top of the page, with the posts from a certain category underneath within their wordpress powered site.. Obviously, I could create a sticky post, but that would be messy. Instead I created a WordPress Page template with the soundcloud [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been creating a website where the client wanted a soundcloud player at the top of the page, with the posts from a certain category underneath within their wordpress powered site.. Obviously, I could create a sticky post, but that would be messy.</p>
<p>Instead I created a WordPress Page template with the soundcloud code at the top, underneath I then included the code which inserts the posts from that category.</p>
<p>First create a new WordPress Page Template.</p>
<p>Next, copy and paste the following code into your php page</p>
<div class="code">
<p>&lt;!&#8211; insert Code here  &#8211;&gt;</p>
<p>&lt;div&gt;<br />
&lt;?php<br />
if (is_page() ) {<br />
$category = 3;<br />
}<br />
if ($category) {<br />
$cat = 3;<br />
$paged = (get_query_var(&#8216;paged&#8217;)) ? get_query_var(&#8216;paged&#8217;) : 1;<br />
$post_per_page = 5; // -1 shows all posts<br />
$do_not_show_stickies = 1; // 0 to show stickies<br />
$args=array(<br />
&#8216;category__in&#8217; =&gt; array($cat),<br />
&#8216;orderby&#8217; =&gt; &#8216;date&#8217;,<br />
&#8216;order&#8217; =&gt; &#8216;DESC&#8217;,<br />
&#8216;paged&#8217; =&gt; $paged,<br />
&#8216;posts_per_page&#8217; =&gt; $post_per_page,<br />
&#8216;caller_get_posts&#8217; =&gt; $do_not_show_stickies<br />
);<br />
$temp = $wp_query;  // assign orginal query to temp variable for later use<br />
$wp_query = null;<br />
$wp_query = new WP_Query($args);<br />
if( have_posts() ) :<br />
while ($wp_query-&gt;have_posts()) : $wp_query-&gt;the_post(); ?&gt;</p>
<p>&lt;div &lt;?php post_class() ?&gt; id=&#8221;post-&lt;?php the_ID(); ?&gt;&#8221;&gt;<br />
&lt;h2&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</p>
<p>&lt;div&gt;&lt;small&gt;&lt;?php the_time(&#8216;F jS, Y&#8217;) ?&gt; &amp;mdash; &lt;?php the_time(&#8216;g:ia&#8217;) ?&gt; &lt;?php edit_post_link(&#8216;Edit&#8217;,'&lt;strong&gt; |&lt;/strong&gt; &#8216;,&#8221;); ?&gt; &lt;/small&gt;&lt;/div&gt;</p>
<p>&lt;div&gt;</p>
<p>&lt;?php the_content(&#8216;Continue reading &amp;raquo;&#8217;); ?&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;?php endwhile; ?&gt;<br />
&lt;div&gt;<br />
&lt;div&gt;&lt;?php next_posts_link(&#8216;´ Older Entries&#8217;) ?&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;?php previous_posts_link(&#8216;Newer Entries ª&#8217;) ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php else : ?&gt;</p>
<p>&lt;h2&gt;Not Found&lt;/h2&gt;<br />
&lt;p&gt;Sorry, but you are looking for something that isn&#8217;t here.&lt;/p&gt;<br />
&lt;?php get_search_form(); ?&gt;</p>
<p>&lt;?php endif;</p>
<p>$wp_query = $temp;  //reset back to original query</p>
<p>}  // if ($category)<br />
?&gt;</p>
<p>&lt;/div&gt;</p>
</div>
<p>Replace the line of code</p>
<div class="code">&lt;!&#8211; insert Code here  &#8211;&gt;</div>
<p>With the sound cloud, or youtube code you wish to appear on the page before the posts .</p>
<p>Change the category number (4 in the provided) and the number of posts you wish to appear,</p>
<div class="code">if (is_page() ) {<br />
$category = 4;<br />
}<br />
if ($category) {<br />
$cat = 4;<br />
$paged = (get_query_var(&#8216;paged&#8217;)) ? get_query_var(&#8216;paged&#8217;) : 1;<br />
$post_per_page = 5; // -1 shows all posts</div>
<p>Upload, slelect it in your page settings and hey presto! Your page is dual functioning!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/08/create-a-wordpress-page-with-posts-and-custom-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making a WordPress Page</title>
		<link>http://www.mikestreetmedia.com/blog/2010/08/making-a-wordpress-page/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/08/making-a-wordpress-page/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:30:30 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[The Internet]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[php pages]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=409</guid>
		<description><![CDATA[To make a page template in WordPress is quite simple: Create a new php page in your favorite text editor and at the top place: &#60;?php /* Template Name: NameofNewTemplate */ ?&#62; Done! On your new page you can do things such as including posts from a certain category, have a static html page or [...]]]></description>
			<content:encoded><![CDATA[<p>To make a page template in WordPress is quite simple:</p>
<p>Create a new php page in your favorite text editor and at the top place:</p>
<div class="code">&lt;?php<br />
/*<br />
Template Name: NameofNewTemplate<br />
*/<br />
?&gt;</div>
<p>Done!</p>
<p>On your new page you can do things such as including posts from a certain category, have a static html page or even combine the two!<br />
You may wish to start off by including your header, sidebar and footer</p>
<div class="code">&lt;?php get_header(); ?&gt;</p>
<p>&lt;?php get_sidebar(); ?&gt;</p>
<p>&lt;?php get_footer(); ?&gt;</p></div>
<p>If you include the header, make sure you follow suit with the other pages and make sure you &lt;body&gt; and &lt;html&gt; tags are closed correctly</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/08/making-a-wordpress-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiitar: Combining the Wiimote, MAX/MSP and Mainstage</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/wiitar-combining-the-wiimote-maxmsp-and-mainstage/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/wiitar-combining-the-wiimote-maxmsp-and-mainstage/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 21:27:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[ableton]]></category>
		<category><![CDATA[bass]]></category>
		<category><![CDATA[cubase]]></category>
		<category><![CDATA[electronic]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[laptops]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mainstage]]></category>
		<category><![CDATA[max/msp]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[musical instruments]]></category>
		<category><![CDATA[synthesized music]]></category>
		<category><![CDATA[synthesizer]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wiimote]]></category>
		<category><![CDATA[wiitar]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=384</guid>
		<description><![CDATA[For the final year of my degree, I was required to create an Experimental System Design. At the time, I was heavily involved with a live version of  The Red Attack, my electronic music played with instruments rather than computers. My set up consisted of an electric guitar running through Logic’s MainStage which was a [...]]]></description>
			<content:encoded><![CDATA[<p>For the final year of my degree, I was required to create an Experimental System Design. At the time, I was heavily involved with a live version of  The Red Attack, my electronic music played with instruments rather than computers.</p>
<p>My set up consisted of an electric guitar running through Logic’s MainStage which was a theoretical amp. This allowed me to apply effects to the guitar sound, which would have been a very expensive pedal board!</p>
<p>To complement this set up, I wanted a method of altering the effect parameters while playing.  I was after a hands-free method, which could be controlled with simple gestures of the guitar. That’s where the Wiimote steps in. Using <a href="http://www.osculator.net/">OSCulator</a>, I was able to access the accelerometers and motion sensors, convert them into MIDI using MAX/MSP, which was then taken into MainStage.</p>
<p>The Wiitar (Wiimote &amp; Guitar) and Mainstage makes a brand new instrument, with a brand new way of playing. Its takes a while getting used to but it is worth it. Your playing will never be the same!</p>
<p>Now fully developed, the MAX patch is hugely versatile. It can be used by a singer, by a drummer or by a piano player. Any instrument or sound, which can be fed into MainStage, can be effected with the Wii remote.</p>
<p>The MAX/MSP patch, in reality, is just sending out MIDI messages, so the patch can be used with Cubase, Logic, Ableton or any other sequencer.</p>
<p>For my project I had to create an example video of it in use, below is that video. I apologise for the awful playing but you get the idea!</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/HKg-A42Mvqw&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/HKg-A42Mvqw&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Below, I have included the Wiitar application, the OSCulator patch and the Sample MainStage Patch. The Max patch can work on both Windows PC and Apple Mac, although MainStage is only available for Mac.</p>
<p style="text-align: center;"><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Wiitar-Instruction-Manual.Appendix.pdf"><img class="size-full wp-image-402 alignnone" title="appendix" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/appendix.jpg" alt="" width="128" height="178" /></a><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Wiitar-Instruction-Manual.pdf"><img class="size-full wp-image-403 alignnone" title="instructionmanual" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/instructionmanual.jpg" alt="" width="128" height="178" /></a><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/07/Wiitar.zip"><img class="size-full wp-image-404 alignnone" title="wiitar" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/wiitar.jpg" alt="" width="128" height="178" /></a></p>
<p style="text-align: left;">If you do end up using the Wiitar for something practical, then please let me know. Alternatively, if you would like the source file of the Wiitar application, then do not hesitate to <a href="http://www.mikestreetmedia.com/contact.php">contact me</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/wiitar-combining-the-wiimote-maxmsp-and-mainstage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show WordPress Post Titles &amp; Posts On Your Website</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/show-wordpress-post-titles-posts-on-your-website/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/show-wordpress-post-titles-posts-on-your-website/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 13:29:58 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[The Internet]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[archives.php]]></category>
		<category><![CDATA[blog posts]]></category>
		<category><![CDATA[blog titles]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[customised]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[Feederr]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[monthly]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=366</guid>
		<description><![CDATA[If you use WordPress for your blog, but your blog is not your home page, you may wish to display the latest blog posts on your homepage, or any other page for that matter, to entice people into your blog. WordPress Pages If you use WordPress for your whole site (pages and all) then this [...]]]></description>
			<content:encoded><![CDATA[<p>If you use WordPress for your blog, but your blog is not your home page, you may wish to display the latest blog posts on your homepage, or any other page for that matter, to entice people into your blog.</p>
<h2><strong>WordPress Pages<br />
</strong></h2>
<p>If you use WordPress for your whole site (pages and all) then this is relatively easy to add the code in the code. It can be placed in your footer (where I have it), sidebar or anywhere else you want it. Unfortunately, as with most WordPress code, it cannot be pasted straight into a post or a page.</p>
<p>The code to show your latest 3 posts is:</p>
<div class="code">&lt;?php wp_get_archives(&#8216;type=postbypost&amp;limit=3&#8242;);  ?&gt;</div>
<p>Result:</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-16.41.44.png"><img class="aligncenter size-full wp-image-378" title="Screen shot 2010-06-22 at 16.41.44" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-16.41.44.png" alt="" width="127" height="132" /></a></p>
<p>The <em>wp_get_archives</em> code is hugely customiseable. It can show months, days, posts etc. The default code generated comes out as a list (<em>&lt;li&gt;</em>), but needs a <em>&lt;ul&gt;</em> tag around the php script.</p>
<p>To show, for example, the last 5 days where you have posted, with the post count next to it, you would use the following code:</p>
<div class="code">&lt;?php wp_get_archives(&#8216;type=daily&amp;limit=5&amp;show_post_count=true&#8217;); ?&gt;</div>
<p>Result:</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-15.17.24.png"><img class="aligncenter size-full wp-image-376" title="Screen shot 2010-06-22 at 15.17.24" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-15.17.24.png" alt="" width="115" height="87" /></a></p>
<p>One last example; If you would like to show Weekly posts for the last 7 weeks, with the word &#8216;Week:&#8217; before each link and the words &#8216;was a good week&#8217; after with each one in a <em>&lt;h3&gt; </em>tag, you would use the following code:</p>
<div class="code">&lt;?php wp_get_archives(&#8216;type=weekly&amp;limit=5&amp;format=custom&amp;before=&lt;h3&gt;Week: &amp;after= was a good week&lt;/h3&gt;&#8217;); ?&gt;</div>
<p>Result:</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-15.41.07.png"><img class="aligncenter size-full wp-image-377" title="Screen shot 2010-06-22 at 15.41.07" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-15.41.07.png" alt="" width="133" height="168" /></a></p>
<p>That single line code, as you can see, can be adapted to show exactly what you want. More details about the <em>wp_get_archives</em> reference, can be found in the <a href="http://codex.wordpress.org/Template_Tags/wp_get_archives">WordPress Codex</a>. For hard coding the <em>wp_get_archives</em> html, it can be found on line <strong>818</strong> in the <a href="http://core.trac.wordpress.org/browser/trunk/wp-includes/general-template.php">wp-includes/general-template.php</a></p>
<h2><strong>Non-Wordpress Pages</strong></h2>
<p>You can also include your latest blog post titles on your homepage, even if your pages are not generated within WordPress. (For example, my WordPress installation is located at <a href="../../blog">www.mikestreetmedia.com/blog</a> but I want my latest blog title to appear on my homepage, outside of the blog folder). It does not require complex database connections, but rather a call to the <em>wp-load.php</em> file.</p>
<p>To use the following code there are a couple of requirements:</p>
<p>1)   The WordPress installation is located on the same server as the file where the code is going (for example: in a /wordpress/ folder)</p>
<p>2)   Your page is a php page. If it is .html then rename to .php. unfortunately, you will need to upload the file to a server (or set up a local testing server) to make sure the code works.</p>
<p>Firstly copy the following code into your page:</p>
<div class="code">&lt;?php<br />
// Include WordPress<br />
define(&#8220;WP_USE_THEMES&#8221;, false);<br />
require(&#8220;./blog/wp-load.php&#8221;);<br />
query_posts(&#8220;showposts=3&#8243;);<br />
?&gt;</div>
<p>The &#8216;false&#8217; tells the code not to include your template, the following line says where the <em>wp-load.php</em> file is. If your blog is in a /blog/ folder, you would change /Wordpress/ to /blog/. Finally the <em>query_posts() </em>line allows a variety of customisation. For example: if you wanted to show the 3 most recent posts in category 3, you would use the following code:</p>
<div class="code">query_posts(&#8216;cat=3&amp;&#8217;showposts=1&#8242;);</div>
<p>Now you have called your posts, all you need to do now is include the loop and the information you want. The code is just the same as you would find in your index.php, or archives.php in your theme:</p>
<div class="code">&lt;?php while (have_posts()): the_post(); ?&gt;<br />
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;<br />
&lt;?php the_centent(); ?&gt;<br />
&lt;p&gt;&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221;&gt;Read more&#8230;&lt;/a&gt;&lt;/p&gt;<br />
&lt;?php endwhile; ?&gt;</div>
<p>This can be customised as you would when editing your theme.</p>
<p>Alternatively, you can use a website like <a href="http://www.feederr.com/">Feederr</a>, which will turn your latest blog post into an image, which updates each time. It walks you through step by step to get your box, which, when customised, looks something like this:</p>
<p><img src="http://www.feederr.com/2429/size/468x60/border/cccccc/bg/ffffff/title/24ab0c/text/db14a9/" alt="Mike Street media latest blog entry" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/show-wordpress-post-titles-posts-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Your iPhone or iPod Touch Launching iPhoto</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/stop-your-iphone-or-ipod-touch-launching-iphoto/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/stop-your-iphone-or-ipod-touch-launching-iphoto/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 09:33:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[image capture]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphoto]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[peripheral]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[pplug-in]]></category>
		<category><![CDATA[spotlight]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=358</guid>
		<description><![CDATA[Since I reformatted my mac, I have experienced a very annoying problem – whenever I plug in my iPod Touch, iPhoto would launch and show the pictures on there. To stop this behavior, the preference is located in an unexpected location: Plug in your offending apple product, and then the program you need to launch [...]]]></description>
			<content:encoded><![CDATA[<p>Since I reformatted my mac, I have experienced a very annoying problem – whenever I plug in my iPod Touch, iPhoto would launch and show the pictures on there.</p>
<p>To stop this behavior, the preference is located in an unexpected location:</p>
<p>Plug in your offending apple product, and then the program you need to launch is ‘<strong>image capture</strong>’. You can use spotlight to find it (as you may have moved it when you got your shiny new apple computer)</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-10.17.23.png"><img class="aligncenter size-full wp-image-360" title="Screen shot  2010-06-22 at 10.17.23" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-22-at-10.17.23.png" alt="" width="215" height="84" /></a></p>
<p>Once opened, you should see your peripheral in the left hand side. Select it, and in the bottom left hand corner you should see the preferences box. If not, click the little downwards arrow located in the bottom left-hand corner.</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-20-at-22.49.43.png"><img class="aligncenter size-medium wp-image-359" title="Image Capture screen" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-20-at-22.49.43-300x184.png" alt="screenshot of Image Capture application" width="300" height="184" /></a></p>
<p>In the options box you then have the option to select which application opens when your iPhone/iPod touch is plugged in. Simply select your preference or <strong>‘No Application’</strong> and you’re done! Close the application, eject your music player/phone. Plug it back in just to double check – worked for me!</p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-20-at-22.49.50.png"><img class="aligncenter  size-full wp-image-361" title="Screen shot 2010-06-20 at 22.49.50" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-20-at-22.49.50.png" alt="" width="191" height="151" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/stop-your-iphone-or-ipod-touch-launching-iphoto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whats Happened to My Blog?</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/whats-happened-to-my-blog/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/whats-happened-to-my-blog/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 19:49:55 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=346</guid>
		<description><![CDATA[I am currently going under a big re-design of my website. Recently I have been introduced into the world of jQuery (a plug-in for making fancy things) and so I am redesigning my website. Along with the website re-deisgn, comes a wordpress blog redesign, so I have based it on the theme Depo Sinny. From [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently going under a big re-design of my website. Recently I have been introduced into the world of jQuery (a plug-in for making fancy things) and so I am redesigning my website.</p>
<p>Along with the website re-deisgn, comes a wordpress blog redesign, so I have based it on the theme <a href="http://powazek.com/depo-skinny">Depo Sinny</a>. From there I will slowly redesign each page on the blog and slowly integrate the new design into the site. So hold tight.</p>
<p>If you notice the site go funny don&#8217;t worry &#8211; i&#8217;m working on it!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/whats-happened-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Where Have I Been?</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/where-have-i-been/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/where-have-i-been/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 17:53:07 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[dj]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mike street media]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[recruitment]]></category>
		<category><![CDATA[world cup]]></category>
		<category><![CDATA[worldcup]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=341</guid>
		<description><![CDATA[These last few weeks have been quiet on the blog front – so where have i been and what have I been doing? Tim Healey Mr DJ Tim Healey (www.myspace.com/djtimehealy) has asked be to re do the layouts for both his person myspace and his record label Surfer Rosa Records. I have been working hard [...]]]></description>
			<content:encoded><![CDATA[<p>These last few weeks have been quiet on the blog front – so where have i been and what have I been doing?</p>
<p><strong>Tim Healey</strong></p>
<p>Mr DJ Tim Healey (<a href="http://www.myspace.com/djtimehealy">www.myspace.com/djtimehealy</a>) has asked be to re do the layouts for both his person myspace and his record label Surfer Rosa Records.</p>
<p>I have been working hard getting these layouts perfect before I transfer them over to the proper myspace accounts (no, I didn’t do the current ones – mine are much better!). You will be told when they go live.</p>
<p><strong>Lobster Recruitment</strong></p>
<p>Lobster Recruitment contacted me enquiring as to whether I would redesign their website for their recruitment agency in Crawley. I have agreed and have been creating wireframes and designs for their new website.</p>
<p><strong>Mike Street Media</strong></p>
<p>Yes, once more Mike Street Media is getting a redesign. Since I have become a full time web designer I have come across such a thing called jQuery. It’s actually amazing and will be making several appearances throughout my new site and all the other sites I will be developing.</p>
<p>Because of this, my blog will be getting a redesign (hurrah!) as I have never liked the layout of the blog.</p>
<p>A sneak preview can be found on my ‘playground’ domain: <a href="http://www.mikestreety.co.uk/">www.mikestreety.co.uk</a></p>
<p><strong>World cup</strong></p>
<p>I hate football, in fact ,I loathe it. Except the World cup. That and the Euro football tournament are the only two bits of football I watch and actively enjoy. Don’t ask me why!</p>
<p>Apart from that I’ve been working at Boz Boz!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/where-have-i-been/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting Emails With Google Apps</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/hosting-emails-with-google-apps/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/hosting-emails-with-google-apps/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 19:56:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[CNAME]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[hosted]]></category>
		<category><![CDATA[MX Entry]]></category>
		<category><![CDATA[standard edition]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=335</guid>
		<description><![CDATA[I wanted to set up Google Apps so that the mail for one of my clients used GMail rather than the SquirrelMail/Horde/Roundcube that comes with cPanel. I struggled to find a proper, helpful blog – so I thought I would make one! First off you need to have your own domain (obviously!) Unless you want [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to set up Google Apps so that the mail for one of my clients used GMail rather than the SquirrelMail/Horde/Roundcube that comes with cPanel. I struggled to find a proper, helpful blog – so I thought I would make one!</p>
<p>First off you need to have your own domain (obviously!)</p>
<p>Unless you want the Premier Edition of Google Apps, you need to head to the hidden <a href="http://www.google.com/apps/intl/en/group/index.html">Standard Edition Google Apps page</a></p>
<p><a href="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-08-at-21.36.46.png"><img class="aligncenter size-medium wp-image-338" title="Screen shot 2010-06-08 at 21.36.46" src="http://www.mikestreetmedia.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-08-at-21.36.46-300x128.png" alt="" width="393" height="167" /></a></p>
<p>Once you’ve clicked Get Started, you’ll be prompt to enter your domain name (without the http://). After that you are grilled for your personal information (to once again – give away your soul to google!)</p>
<p>Step 3 of 3 is to choose an admin username and password for your email account.</p>
<p>You will then be asked to verify your website – may as well do it now while you are in the ‘zone!’</p>
<p>After set up you will then be taken to the dashboard of your emails. Don’t be fooled, you are not finished! You now need to edit the MX Entry for your domain, I’ll be doing it through cPanel, but you may need to do it elsewhere. <a href="http://www.google.com/support/a/bin/static.py?page=guide.cs&amp;guide=22229&amp;topic=22230#148937">Google provides a step by step guide</a> of how to do it for most common control panels.</p>
<p>Once the MX records have changed, you just need to wait! Like DNS, MX Entries usually take a little while to switch over.</p>
<p><strong>N.B. You might be able to receive emails but you will need to wait a little while until you can send them!</strong></p>
<p>Once you’re done, check on the <a href="http://www.google.com/support/a/bin/answer.py?answer=140038">MX Record Lookup Checker</a>.</p>
<p>If you would like to change the URL, so that when you go to mail.yourdomain.com it directs you to your new GMail account, then you will need to create a CNAME entry using your control panel. Google will help you with this. If you go to your Dashboard:</p>
<blockquote><p>https://www.google.com/a/cpanel/YOURDOMAIN.COM/Dashboard</p></blockquote>
<p>Replacing YOURDOMAIN.COM with your domain, click Email and then click change URL, Google will assist you with changing your URL.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/hosting-emails-with-google-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack a Music MySpace Profile</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/hack-a-music-myspace-profile/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/hack-a-music-myspace-profile/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 21:17:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[add a comment]]></category>
		<category><![CDATA[add me]]></category>
		<category><![CDATA[edit myspace music]]></category>
		<category><![CDATA[edit profile]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[message me]]></category>
		<category><![CDATA[music page]]></category>
		<category><![CDATA[music profile]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[myspace music]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[profile 2.0 editor]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=331</guid>
		<description><![CDATA[I was tasked to redesign a Music MySpace Profile Page – below is the outcome: Recently a client approached me and asked me to redesign their MySpace music page. I had recently helped someone redesign their personal page using the Profile 2.0 editor built into MySpace and found it very easy, so I thought the [...]]]></description>
			<content:encoded><![CDATA[<p>I was tasked to redesign a Music MySpace Profile Page – below is the outcome:</p>
<p>Recently a client approached me and asked me to redesign their MySpace music page. I had recently helped someone redesign their personal page using the Profile 2.0 editor built into MySpace and found it very easy, so I thought the music ones would be a doddle.</p>
<p>How very wrong I was. The Profile 2.0 editor has not yet made it onto the Music side of MySpace. In order to get a profile looking swish and out of the ordinary, some serious jiggery pokery is required.</p>
<p>I spent several hours searching the Internet for an easy, basic start to editing the MySpace music page on which I could build up the profile to something I wanted.</p>
<p>I eventually found a forum designated specifically to hacking myspace layouts with a section committed just to music layouts.</p>
<p>The code I used was from  <a href="http://myspacedivs.8forum.net/div-overlay-tutorials-f1/music-profiles-t2.htm">MySpaceDivs.info</a></p>
<p>This code essentially hides all the basic elements of the Myspace Music profile and lets you build it up yourself using absolutely position DIVs. The method is quite unnatural for me, by Myspace layouts are generally for looks and concentrate less on SEO or Accessibility – which is a shame.</p>
<p>You are then required to design the page again, including the Add Me, Friends etc buttons yourself. To do this, you can design your own button/image and link it up using the following code.</p>
<p>To do this, you will need to find out your friend ID. To find your Friend ID, view your own friends and your address bar should look something like this:</p>
<blockquote><p>http://friends.myspace.com/index.cfm?fuseaction=user.viewfriends&amp;friendID= 538154926</p></blockquote>
<p>At the end of myone, you can see it says ‘<strong>friendID= 538154926</strong>’. That number is the friend ID. Armed with that, you can now create your own Message Me, Add Me etc buttons</p>
<p><strong><em>Creating an Add Me button:</em></strong></p>
<p>Create a link to the following location. Make sure you change your ‘friend ID’ (the bit in bold) to your own ID!</p>
<blockquote><p>http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&amp;friendID=538154926</p></blockquote>
<p><em><strong>Creating a Message Me button:</strong></em></p>
<p>Create a link to the following location. Make sure you change your ‘friend ID’ (the bit in bold) to your own ID.</p>
<blockquote><p>http://messaging.myspace.com/index.cfm?fuseaction=mail.message&amp;friendID= 538154926</p></blockquote>
<p><em><strong>Add a Comment link:</strong></em></p>
<p>If you want to be really flash, you can make your own comment box (using a textarea) and button using the following link (with your own friend ID)</p>
<blockquote><p>http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&amp;friendID=538154926</p></blockquote>
<p>All these enable you to ‘rebuild’ your MySpace profile – exactly how you want it!</p>
<p>There are rumors that Profile 2.0 editor is coming to MySpace music, so soon this code will be obsolete, but until then, these were the best codes I found.</p>
<p>Many thanks to the interweb</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/hack-a-music-myspace-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The next step&#8230;</title>
		<link>http://www.mikestreetmedia.com/blog/2010/06/the-next-step/</link>
		<comments>http://www.mikestreetmedia.com/blog/2010/06/the-next-step/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 18:53:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[bandcamp]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[getting yourself heard]]></category>
		<category><![CDATA[mailing list]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[publicity]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[soundcloud]]></category>
		<category><![CDATA[spreading the word]]></category>
		<category><![CDATA[tracks]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.mikestreetmedia.com/blog/?p=320</guid>
		<description><![CDATA[So you&#8217;ve got a brand new website that you want to promote? Recently I finished a website for Frag Records. Once completed they asked me for some hints and tips on how to get their name out there and how to be heard. Off the top of my head I came up with several promotional [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve got a brand new website that you want to promote?</p>
<p>Recently I finished a website for <a href="http://www.fragrecords.co.uk">Frag Records</a>. Once completed they asked me for some hints and tips on how to get their name out there and how to be heard. Off the top of my head I came up with several promotional techniques that are expected of artists, labels, companies etc but are not always that obvious, so I thought I would share these points. They do not all need to be done or they may not all appeal to you, but keep them in mind.</p>
<p>These steps are mainly for the music industry people, but can also be applied to any company.</p>
<p><strong>Set up a <a href="http://www.facebook.com">facebook</a> page and keep it regularly updated! Offer things to fans</strong> &#8211;  people love being fans of things, especially if it means they might get  freebies. Offer out a free track here and there, or discount to a night  out that only fans can use. You can send out a private message to them all and print off a list of fans for a guest list.</p>
<p>With that, you can then <strong>set up a <a href="http://www.twitter.com">twitter</a> account</strong>. Facebook and twitter can now talk to each other very easily, so you can update one account and the other updates automagically. If you want to offer Twitter or Facebook only offers, if you have it set up right, you can still log in and post separately.</p>
<p><strong>Sign Up to </strong><a href="http://www.myspace.com"><strong>MySpace</strong></a> &#8211; chuck some sample tracks up there. It is not crucial that you keep this one updated as much, but having a MySpace means more exposure, more chance of being found. Twitter can also update your MySpace status, so no need to keep logging in!</p>
<p><strong>Set up a <a href="http://www.bandcamp.com">bandcamp</a></strong> &#8211; This site is fairly new, but  this lets you upload your tracks and sell them &#8211; For free! You can also include mini media players from bandcamp onto your new website, giving people the chance to buy the tracks there and then.</p>
<p>Along the lines of bandcamp, use <a href="http://www.soundcloud.com"><strong>Soundcloud</strong></a>. This is another place to upload tracks but also lets people comment on others. Once signed up, find individuals who make music similar to you and comment on them. This gets you more attention, thus meaning more publicity!</p>
<p>All you&#8217;ve got to remember is that the more websites you&#8217;re on, the more chance there is of being found and it gives people the option to use whichever service they prefer.</p>
<p><strong>Set up a mailing list</strong> &#8211; People love signing up to mailing lists if it means they get offers that no-one else does. To entice people, offer a introductory offer, be it a free track or free sample etc. and then once in a while give something away.</p>
<p><strong>Set up a blog</strong> &#8211; this way you can post about upcoming gigs, the  latest track and how it was made, gigs you went to, new albums you love,  classic S Club 7 tracks&#8230; all this helps boost search engine  optimisation, the more you talk, the more noticed you&#8217;ll get. The more  you link, the more traffic, the more sales&#8230; the list goes on. If you  do set up a blog, you can have it set up so it updates your twitter and  facebook telling your fans that there is a new post.</p>
<p><strong>Set up a shop</strong> &#8211; merchandise merchandise merchandise! You can use something like <a href="http://www.spreadshirt.co.uk/"> spreadshirt.co.uk</a> if you want clothing, but if you want to sell CDs  (even as an mp3 download) then either do it yourself or see above (bandcamp)</p>
<p>This is just the start of your campaign, but its worth taking these points into consideration for boosting your website traffic</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikestreetmedia.com/blog/2010/06/the-next-step/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
