<?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>NetMusician</title>
	<atom:link href="http://www.netmusician.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.netmusician.org</link>
	<description></description>
	<lastBuildDate>Fri, 20 Aug 2010 21:18:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CodeIgniter image_lib and Creating Multiple Sized Thumbs/Images</title>
		<link>http://www.netmusician.org/2010/08/codeigniterimagelibloop/</link>
		<comments>http://www.netmusician.org/2010/08/codeigniterimagelibloop/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 21:16:34 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[geekery]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=646</guid>
		<description><![CDATA[How to use CodeIgniter's Image Manipulation class to process multiple photos of multiple sizes]]></description>
			<content:encoded><![CDATA[<p>I found the documentation on using CodeIgniter&#8217;s Image Manipulation class (image_lib) in a loop, creating multiple sizes of a graphic a little confusing and hard to get a handle on, so the following is an example of how to do this&#8230;</p>
<p><span id="more-646"></span>I found the documentation on using CodeIgniter&#8217;s Image Manipulation class (image_lib) in a loop, creating multiple sizes of a graphic a little confusing and hard to get a handle on, so the following is an example of how to do this&#8230; This example assumes that you are also using CodeIgniter&#8217;s File Uploading Class to upload the image you wish to resize (if this isn&#8217;t the case, you can replace the &#8220;uploaddata&#8221; variable with whatever you want. I opted not to use the &#8220;create_thumb&#8221; parameter, as I want to keep my file names identical.</p>
<p>The big catch for me was understanding that, as far as I understand it, the initialize function is used each time through a loop iteration to read in a new config, and that while you can provide a config when the class is initially loaded (&#8220;$this->load->library&#8221;), this should only be done once. I&#8217;m not completely clear on whether both clearing out the &#8220;$config&#8221; array and running &#8220;$this->image_lib->clear()&#8221; is necessary, but this worked for me.</p>
<p><code><br />
// uploaddata contains an array of information about the file you just uploaded using<br />
// CodeIgniter's File Uploading Class (http://codeigniter.com/user_guide/libraries/file_uploading.html)<br />
$uploaddata = $this->upload->data();</p>
<p>// clear config array<br />
$config = array();</p>
<p>// create resized image<br />
$config['image_library'] = 'GD2';<br />
$config['source_image']	= $uploaddata['full_path'];<br />
$config['new_image'] = '/path/to/new/image';<br />
$config['create_thumb'] = false;<br />
$config['maintain_ratio'] = true;<br />
$config['width'] = <whatever width>;<br />
$config['height'] = <whatever height>;</p>
<p>$this->load->library('image_lib', $config);<br />
$this->image_lib->resize();</p>
<p>//$this->image_lib->display_errors();</p>
<p>$this->image_lib->clear();</p>
<p>$config = array();</p>
<p>// create thumb<br />
$config['image_library'] = 'GD2';<br />
$config['source_image']	= $uploaddata['full_path'];<br />
$config['new_image'] = '/another/path/to/thumb',<br />
$config['create_thumb'] = false;<br />
$config['maintain_ratio'] = true;<br />
$config['width'] = <whatever width>;<br />
$config['height'] = <whatever height>;</p>
<p>$this->image_lib->initialize($config);<br />
$this->image_lib->resize();</p>
<p>//$this->image_lib->display_errors();<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/08/codeigniterimagelibloop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Access to Local VMs When the Internet Is Not Available</title>
		<link>http://www.netmusician.org/2010/07/networklocalvms/</link>
		<comments>http://www.netmusician.org/2010/07/networklocalvms/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 16:51:45 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[geekery]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=638</guid>
		<description><![CDATA[How to establish network connections to local VMs when the internet is not available]]></description>
			<content:encoded><![CDATA[<p>There may be times when you wish to SSH or establish some sort of network connection to a local VM guest while you don&#8217;t have an internet connection. Using bridged networking you can facilitate this. Here&#8217;s how&#8230;</p>
<p><span id="more-638"></span>There may be times when you wish to SSH or establish some sort of network connection to a local VM guest while you don&#8217;t have an internet connection. Using bridged networking you can facilitate this. By default your VM host and guests are probably using DHCP, which means that without the internet connection they will have no IP address (or a self assigned IP). You can &#8220;force&#8221; an IP address by doing the following:</p>
<p><code>sudo ifconfig en0 192.168.0.10 netmask 255.255.255.0</code></p>
<p>where &#8220;en0&#8243; is an available network interface (this is the ethernet adapter in OS X), and 192.168.0.10 is some sort of private IP address. If you do this on both your VM host and guest, they will be reachable internally using these respective IP addresses despite having no route to the internet. You can verify that these machines are reachable with a ping to these respective IP addresses. To check to see what interfaces you have available and what IP addresses they have been assigned you can do the following:</p>
<p><code>ifconfig</code></p>
<p>As implied, all of this works in OS X as well as other BSD OSes and Linux. Be sure to update any firewall rules to recognize your new IP and/or interface, where applicable, or else just disable your firewall while you are not connected to the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/07/networklocalvms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canadian Brass Album &#8220;Stars and Stripes Forever&#8221; Scores #2 on Billboard!</title>
		<link>http://www.netmusician.org/2010/06/cbbillboard/</link>
		<comments>http://www.netmusician.org/2010/06/cbbillboard/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 01:04:26 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=621</guid>
		<description><![CDATA[The Canadian Brass Scored #2 on Billboard in the "Classical Traditional" category]]></description>
			<content:encoded><![CDATA[<p>The Canadian Brass&#8217; latest album <em>Stars and Stripes Forever</em> has recently scored second in the Billboard &#8220;Classical Traditional&#8221; category, week ending June 13th.  Congratulations guys! Unfortunately, this particular category requires a Billboard subscription to view, so you&#8217;ll just have to take us at our word here!</p>
<p>More information about this release and the Canadian Brass can be found on <a href="http://www.canadianbrass.com">their website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/cbbillboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Earn Money With Referrals!</title>
		<link>http://www.netmusician.org/2010/06/referralprogram/</link>
		<comments>http://www.netmusician.org/2010/06/referralprogram/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:46:01 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=614</guid>
		<description><![CDATA[Information about the new NetMusician referral program, effective immediately]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce a new referral program that effective immediately is available to everybody! The deal is simple: refer somebody to NetMusician, have them request a custom designed website similar to yours, once they agree to our service agreement and pay us their initial installment you earn $100 in cash or credit! Please contact us if you have any questions about this, we thank you in advance for your referrals…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/referralprogram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Sell Individual CD Tracks and Other Downloads On Your Site</title>
		<link>http://www.netmusician.org/2010/06/nmstore/</link>
		<comments>http://www.netmusician.org/2010/06/nmstore/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:33:56 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=609</guid>
		<description><![CDATA[Information pertaining to the upcoming version of the NetMusician store, it's new features and capabilities which includes an enhancement to downloadable content and more flexible options for establishing sales]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce the near completion of a brand new version of the NetMusician Store software. This new version includes many improvements which will be detailed shortly here. As always, you can receive notifications of updates such as this by <a href="http://www.facebook.com/group.php?gid=278783024997&amp;ref=nf " target="_blank">joining our Facebook group</a> or <a href="http://twitter.com/netmusicianorg" target="_blank">following us on Twitter</a>.</p>
<p>For now we&#8217;d like to highlight two of the most important new features of this new version…<span id="more-609"></span>We are pleased to announce the near completion of a brand new version of the NetMusician Store software. This new version includes many improvements which will be detailed shortly here. As always, you can receive notifications of updates such as this by <a href="http://www.facebook.com/group.php?gid=278783024997&amp;ref=nf " target="_blank">joining our Facebook group</a> or <a href="http://twitter.com/netmusicianorg" target="_blank">following us on Twitter</a>.</p>
<p>For now we&#8217;d like to highlight two of the most important new features of this new version…</p>
<p>One is the simplification and advancement of being able to sell tracks from your CDs (and/or other downloadables), and/or complete albums as downloads from within your store. When a customer has selected to download a product from your store, at checkout time the customer is quickly prompted to enter a password to go along with their email address, they are automatically logged on using this information, and upon successful payment they are automatically sent an email where they can login to your site (if necessary) and access the materials they purchased at any time, from any computer. Additionally, the store continues to support the shipment of products (shipping prices can be configured to your liking), and any order can include a mix of physical to-be-shipped items as well as downloadable ones.</p>
<p>Another important new feature to the new store is increased pricing flexibility, including the ability to create sales and highlight these sales and/or special deals, new products, etc. throughout your site. The store will launch with a single sale calculator you can use right away which will discount certain items when other items are also purchased, but additional sale types including percent discounts, referral codes, and others can be easily installed as well. Sales can be set on shipped purchases from the US, Canada, or elsewhere, and also can be set on downloadable items.</p>
<p>We will be providing a working demo once it has been completed, and will be working to upgrade all existing stores to this new version free-of-charge. Please contact us if you are interested in selling downloads from your store!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/nmstore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free &#8220;Starter&#8221; Websites: Coming Soon!</title>
		<link>http://www.netmusician.org/2010/06/starterwebsites/</link>
		<comments>http://www.netmusician.org/2010/06/starterwebsites/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:19:34 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=606</guid>
		<description><![CDATA[Information about the upcoming free "starter" NetMusician websites, including terms and features of this service.]]></description>
			<content:encoded><![CDATA[<p>After many, many years of nearly constant work, this is a very exciting time for NetMusician!</p>
<p>With work to the new NetMusician Store module nearly complete, we are just about ready to market NetMusician to a wider audience and support the creation of free websites that can be managed through the Webkit.<span id="more-606"></span>After many, many years of nearly constant work, this is a very exciting time for NetMusician!</p>
<p>With work to the new NetMusician Store module nearly complete, we are just about ready to market NetMusician to a wider audience and support the creation of free websites that can be managed through the Webkit.</p>
<p>This service is not intended to be a replacement for our custom designed websites, but is intended for those who want a quick website, perhaps for a one-time event or a project that doesn&#8217;t justify a financial expense, and don&#8217;t mind having their site based on the design of a pre-made template and the capabilities of their site limited in comparison to the full set of Webkit features. Unlike other free sites (such as those on wordpress.com), for an additional fee we support template alterations and a (paid) upgrade path to support all Webkit modules including the Store and Events Calendar, both of these tools custom &#8220;skinned&#8221; and configured for your site, additional support options, and we even support having the look and feel of your site completely redesigned at some point in the future for the cost of the graphic design work and a modest install fee.</p>
<p>Ultimately, these &#8220;starter&#8221; websites will remain free for those that don&#8217;t want any template alterations and don&#8217;t mind not having their site hosted under their own domain, but by paying the usual $10/month for NetMusician hosting these users will be able to host these websites under their own domain.</p>
<p>Please stay tuned for the full announcement of this service and when it will be available to the general public… It is currently undergoing testing by our current members.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/starterwebsites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verisign to Increase Prices of .com and .net Domains</title>
		<link>http://www.netmusician.org/2010/06/versignpriceincrease/</link>
		<comments>http://www.netmusician.org/2010/06/versignpriceincrease/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 22:54:16 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=616</guid>
		<description><![CDATA[Notification of the Verisign .com and .net registration price increase]]></description>
			<content:encoded><![CDATA[<p>Verisign <a href="https://press.verisign.com/easyir/customrel.do?easyirid=AFC0FF0DB5C560D3&amp;version=live&amp;prid=570292&amp;releasejsp=custom_97" target="_blank">has announced</a> a price increase in the costs of .com and .net domain registration. Many domain registrars are actually dependent on Verisign, so these costs will likely be reflected by many of these resellers as well.</p>
<p>If you are thinking of purchasing a .com or .net domain, now might not be a bad time to do so! NetMusician is not a domain registrar, so this registration will have to come via a third party. Please contact us if you have any questions&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/versignpriceincrease/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Witz Apple Certified Training Site Redesign Complete</title>
		<link>http://www.netmusician.org/2010/06/witzsitelaunch/</link>
		<comments>http://www.netmusician.org/2010/06/witzsitelaunch/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 00:13:29 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=598</guid>
		<description><![CDATA[Witz Apple Certified Training provides IT training specializing in Apple software, including Apple operating systems and content creation software. We are pleased to launch a very substantial redesign to their site which now includes far more in-depth information about their course offerings and special bundle deals, support in their calendar (powered by the NetMusician Webkit Events Calendar module) for multiple locations, and a far more robust system for providing timely news, including their "genius tips", "case studies", and "showcase articles"]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-599" title="witzsite" src="http://www.netmusician.org/wordpress/wp-content/uploads/2010/06/witzsite.jpg" alt="" width="400" height="269" />Witz Apple Certified Training provides IT training specializing in Apple software, including Apple operating systems and content creation software. We are pleased to launch a very substantial redesign to their site which now includes far more in-depth information about their course offerings and special bundle deals, support in their calendar (powered by the NetMusician Webkit Events Calendar module) for multiple locations, and a far more robust system for providing timely news, including their &#8220;genius tips&#8221;, &#8220;case studies&#8221;, and &#8220;showcase articles&#8221;. Their registration page has been revamped to support sign up of multiple employees, bundle registration, and more!</p>
<p>Their site also features the NetMusician Mailing List Webkit module which provides their customers a painless way to subscribe and unsubscribe from their newsletter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/witzsitelaunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jeff Nelsen Website Launched!</title>
		<link>http://www.netmusician.org/2010/06/jeffnelsensitelaunch/</link>
		<comments>http://www.netmusician.org/2010/06/jeffnelsensitelaunch/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 23:40:32 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=594</guid>
		<description><![CDATA[Website of Canadian Brass french hornist and Yamaha performing artist Jeff Nelsen. Jeff's website features information about his performance career which includes numerous recordings, films, and live performance with the likes of Michael Bolton, Barry Manilow and others, as well as information about his "fearless performance" teachings, and his affiliation with Indiana University.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-595" title="jeffnelsen" src="http://www.netmusician.org/wordpress/wp-content/uploads/2010/06/jeffnelsen.jpg" alt="" width="400" height="269" />We are proud to unveil the website of french hornist and Canadian Brass member Jeff Nelsen. Jeff&#8217;s website features information about his performance career which includes numerous recordings, films, and live performance with the likes of Michael Bolton, Barry Manilow and others, as well as information about his &#8220;fearless performance&#8221; teachings, and his affiliation with Indiana University.</p>
<p>His website features the NetMusician Webkit Events Calendar, Twitter Status, TweetMeme and Facebook integration, Photo Gallery, YouTube Gallery, Discography, Sound Clips, Mailing List, Press Kit, and Email modules, as well as a blog and the ability to post news items. His Events Calendar events are automatically synced with the Canadian Brass event data, also hosted by the NetMusician Webkit, since he performs with this group regularly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/jeffnelsensitelaunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery: Nathaniel Fox Beversluis and Social Networking</title>
		<link>http://www.netmusician.org/2010/06/nfbgallery/</link>
		<comments>http://www.netmusician.org/2010/06/nfbgallery/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 14:24:25 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.netmusician.org/?p=520</guid>
		<description><![CDATA[How Nathaniel Fox Beversluis has used social networking to communicate with his students, colleagues, and audience about the many musical projects he will be involved with as the result of being appointed Assistant Conductor of the Greensboro Symphony Orchestra and Music Director of the Greensboro Symphony Youth Orchestra.]]></description>
			<content:encoded><![CDATA[<p>Nathaniel Fox Beversluis has been appointed Assistant Conductor of the Greensboro Symphony Orchestra and Music Director of the Greensboro Symphony Youth Orchestra, and wanted to use his site to communicate with his students,  colleagues, and audience about the many musical projects he will be involved with through these new collaborations. His site did include a blog where we would post news relating to his musical projects, but there was little to connect the discussions already taking place on Facebook with his site, and little to make visitors to his site aware of his Facebook community or Twitter &#8220;tweets&#8221;.</p>
<p><span id="more-520"></span>Nathaniel Fox Beversluis has been appointed Assistant Conductor of the Greensboro Symphony Orchestra and Music Director of the Greensboro Symphony Youth Orchestra, and wanted to use his site to communicate with his students,  colleagues, and audience about the many musical projects he will be involved with through these new collaborations. His site did include a blog where we would post news relating to his musical projects, but there was little to connect the discussions already taking place on Facebook with his site, and little to make visitors to his site aware of his Facebook community or Twitter &#8220;tweets&#8221;.</p>
<p>By adding the &#8220;Like&#8221; and &#8220;Share&#8221; Facebook widgets to <a href="http://www.nathanielfoxbeversluis.com/blog" target="_blank">his blog</a>, Nathaniel will make the visitors to his site aware of his presence on Facebook, and will provide an easy way to grow his fan base by making it easy for visitors to post news stories that catch their attention to their Facebook walls where potentially hundreds of avid Facebook friends can read and help spread his news.</p>
<p>Nathaniel has also started using his Twitter account to &#8220;micro-blog&#8221; events in his life, providing the people interested in his musical projects, which include friends, colleagues, and students, with a sense of exactly what he is working on and thinking about, or simply a general status update.</p>
<p>The popularity of the social networks including Facebook and Twitter have clearly become the next &#8220;killer app&#8221;. Recently Facebook has been surrounded by controversy due to their, some would say, overreaching privacy policies, but despite these dents in their armor it is clear that the services that Facebook offers are of great value to the world and will therefore remain intertwined with our culture whether it is Facebook or some other company providing these services. Some believe these applications to have become the most familiar and frequently used applications in the world, surpassing Microsoft Office. However, while some people have become virtually addicted to social networks such as Facebook and Twitter, some haven&#8217;t, and many don&#8217;t really grasp the attraction to being this connected to events that may seem relatively mundane in the mind of the musician.</p>
<p>I understand this best in thinking about who I idolize or respect greatly, and watch how this same sort of devotion manifests in people younger than myself. There seems to be a natural curiosity that goes along with this, a curiosity in wondering &#8220;what does he/she listen to?&#8221;, &#8220;what is life like on the road?&#8221;, &#8220;what is it like to be him/her?&#8221;, or &#8220;what does he/she feel about the press and attention they are getting?&#8221; If you aren&#8217;t yet a big superstar and don&#8217;t have hordes of adoring fans, there is still a natural, perhaps less intense curiosity that might exist perhaps with your local fans: &#8220;what is it like making this music?&#8221;, &#8220;what is it like trying to make it in the world of music?&#8221;, or simply &#8220;how is so and so doing? How are they feeling?&#8221;</p>
<p>In addition, Nathaniel transformed his homepage into a very convenient portal showcasing a summary of his upcoming events, excerpts from his latest blog postings, and his latest Twitter status update. It is a good idea to keep your homepage fresh, as not only does Google visit and index your homepage more frequently than your inner pages, but often times repeat visitors to your site won&#8217;t even bother poking around if they don&#8217;t have the impression that the site has changed or new content has been added since they last visited.</p>
<p>Using the NetMusician Webkit Nathaniel can specify how many upcoming events should be displayed and how many blog posts should be displayed on his homepage, and he can even have his Twitter status update automatically hidden if he hasn&#8217;t updated it recently. The NetMusician Webkit also drives his blog, and every other piece of content featured on his website. It provides him with an easy way for him to update his content on his own, or get somebody else without any experience in HTML or web programming to do this on his behalf. The NetMusician Webkit is tightly integrated with the popular content management and blogging tool <a href="http://www.wordpress.org" target="_blank">WordPress</a> which includes its own application for the iPhone, iPad, and iPod Touch, allowing Nathaniel to update his site when he is away from his computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netmusician.org/2010/06/nfbgallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
	<title>NetMusician: Home</title>
	<meta name="description" content="NetMusician helps musicians and artists create custom designed websites that are easy to maintain and to integrate with popular social networks." />
<link type='image/ico' href='/favicon.ico' rel='icon' />		<link type='text/css' href='/nm_webkit/libs/yahooresetcss/contentbase.css' rel='stylesheet' />
		<link type='text/css' href='/nm_webkit/libs/yahooresetcss/reset-fonts.css' rel='stylesheet' />
		<link type='text/css' href='/nm_webkit/CSS/general_defaults.css' rel='stylesheet' />
		<link type='text/css' href='/nm_webkit/libs/modalbox/modalbox.css' rel='stylesheet' />
		<link type='text/css' href='/styles/main.css' rel='stylesheet' />
		<script type='text/javascript' src='/nm_webkit/libs/prototype.js'></script>
		<script type='text/javascript' src='/nm_webkit/libs/scriptaculous/src/effects.js'></script>
		<script type='text/javascript' src='/nm_webkit/libs/yui/yui/yui-min.js'></script>
		<script type='text/javascript' src='/nm_webkit/libs/webkit.js'></script>
		<script type='text/javascript' src='/nm_webkit/libs/swfobject1-5/swfobject.js'></script>
<style type="text/css" id="styleoverrides"></style>		<script type='text/javascript' src='/nm_webkit/libs/modalbox/modalbox.js'></script>
		<script type='text/javascript' src='/js/main.js'></script>
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/feed" /></head>
<body class='nm_currentPage_home'>
<div id='nm_container2'>
	<div id='nm_container'>
		<div id='nm_header'>
			<div id='webkitlogin'><a href = 'https://netmusician.org/webkit'><span id='webkitlogin_text'>netmusician webkit login</span></a></div>
			<h1><a href = '/'><span id='nmlogo'>NetMusician</span></a></h1>
		</div>
		<div id='pagecontent' class='content'>
<h3>Error</h3>

<p>The page you requested cannot be found</p>			</div><div id="sitefooter"><a class="smallfont footerwidget" id="jobsfooter" href = "/jobs">Jobs at <span class="nmlogo"><span class="nmgray">net</span>musician</span></a><span class="footerbrace">|</span><a id="mailinglist" class="email smallfont footerwidget" href="/mailinglist">Subscribe/Unsubscribe to mailing list</a><span class="footerbrace">|</span>Follow us on: <div class="footerwidget socialicon"><a id="twitter" href = "http://www.twitter.com/netmusicianorg" target = "new">Twitter</a></div><div class="footerwidget socialicon"><a id="facebook" href = "http://www.facebook.com/group.php?gid=278783024997" target="new">Facebook</a></div></div>
			<div id='menublock'>
	<h2>Site Navigation</h2>
	<ul id='menublock_menu'>
			<li id='nm_id_learnmore' class='nm_learnmore'><a class='topLink' href='/learnmore' accesskey='z'>Learn More</a>
			</li>
			<li id='nm_id_websites' class='nm_websites'><a class='topLink' href='/websites' accesskey='b'>Websites</a>
			</li>
			<li id='nm_id_services' class='nm_services'><a class='topLink' href='/services' accesskey='r'>Services</a>
			</li>
			<li id='nm_id_support' class='nm_support'><a class='topLink' href='/support' accesskey='a'>Support</a>
			</li>
			<li id='nm_id_blog' class='nm_blog'><a class='topLink' href='/blog' accesskey='p'>Blog</a>
			</li>
			<li id='nm_id_contact' class='nm_contact'><a class='topLink' href='/contact' accesskey='s'>Contact</a>
			</li>
	</ul>
	</div>
<div class="jsondatablock" id="jsondata">{"iswpdriven":false,"cisite":true,"nm_menuItems":{"learnmore":{"title":"Learn More","href":"\/learnmore","accesskey":"z"},"websites":{"title":"Websites","href":"\/websites","accesskey":"b"},"services":{"title":"Services","href":"\/services","accesskey":"r"},"support":{"title":"Support","href":"\/support","accesskey":"a"},"blog":{"title":"Blog","href":"\/blog","accesskey":"p"},"contact":{"title":"Contact","href":"\/contact","accesskey":"s"}},"nm_siteTitle":"NetMusician"}</div><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-3342602-1");
pageTracker._setDomainName(".netmusician.org");
pageTracker._trackPageview();
} catch(err) {}</script>
		</div>
	</div>
</body>
</html>
