<?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>Spicer Matthews &#187; Cloud Services</title> <atom:link href="http://www.spicermatthews.com/tag/cloud-services/feed/" rel="self" type="application/rss+xml" /><link>http://www.spicermatthews.com</link> <description>Random Thoughts By Spicer Matthews</description> <lastBuildDate>Wed, 09 Jun 2010 20:00:17 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>AudioBox &#8211; Real Cloud Based Music</title><link>http://www.spicermatthews.com/audiobox-real-cloud-based-music/</link> <comments>http://www.spicermatthews.com/audiobox-real-cloud-based-music/#comments</comments> <pubDate>Sun, 16 May 2010 19:55:44 +0000</pubDate> <dc:creator>Spicer</dc:creator> <category><![CDATA[Cloud Services]]></category> <category><![CDATA[audiobox]]></category> <category><![CDATA[music]]></category> <category><![CDATA[saas]]></category> <category><![CDATA[Web 2.0]]></category><guid
isPermaLink="false">http://www.spicermatthews.com/?p=199</guid> <description><![CDATA[When it comes to hardware and operating systems I am one of the biggest Apple fan boys out there. When it comes to software and control I am truly annoyed by Apple. As a side note I am an Apple share holder and I love what they do from a business stand point. Apple has held back music players for years. They released iTunes a long time ago and it blew all the music players out of the water. Back then compiled desktop based software was cool. Then they went full speed ahead with the Apple iTunes music store. This was amazing from a lets kill cd's standpoint.I have a library of music that I have gotten from all different sources; Amazon, iTunes, cd rips, and so on. I want to stuff all this music in one bloat free place and have it with me everywhere I go. If I am 100% an Apple user this place is iTunes, but I am not. I have an Android phone, a windows netbook, linux laptop, Apple desktop, Apple laptop. There is no easy way with iTunes to keep all these devices in sync when it comes to my music. Nor do I want my 13 Gig music stash living on all these devices. The service that was about to do all this was Lala.com until Apple purchased then and closed them down. <a
href="https://www.grooveshark.com">Grooveshark.com</a> has sort of done it but their way of doing things is a little odd and they use way to much flash.]]></description> <content:encoded><![CDATA[<p><img
alt="scr01 small AudioBox   Real Cloud Based Music" src="http://audiobox.fm/images/screenshots/scr01_small.png" title="Audiobox" class="alignright" width="212" height="80" /><br
/> When it comes to hardware and operating systems I am one of the biggest Apple fan boys out there. When it comes to software and control I am truly annoyed by Apple. As a side note I am an Apple share holder and I love what they do from a business stand point. Apple has held back music players for years. They released iTunes a long time ago and it blew all the music players out of the water. Back then compiled desktop based software was cool. Then they went full speed ahead with the Apple iTunes music store. This was amazing from a lets kill cds standpoint.</p><p>I have a library of music that I have gotten from all different sources; Amazon, iTunes, cd rips, and so on. I want to stuff all this music in one bloat free place and have it with me everywhere I go. If I am 100% an Apple user this place is iTunes, but I am not. I have an Android phone, a windows netbook, linux laptop, Apple desktop, Apple laptop. There is no easy way with iTunes to keep all these devices in sync when it comes to my music. Nor do I want my 13 Gig music stash living on all these devices. The service that was about to do all this was Lala.com until Apple purchased them and closed them down. <a
href="https://www.grooveshark.com">Grooveshark.com</a> has sort of done it but their way of doing things is a little odd and they use way to much flash.</p><p>Finally!!! <a
href="https://audiobox.fm">AudioBox</a> to the rescue!! AudioBox is a service that gives me a complete cloud-based music solution. I pay them a small fee and can upload all my music. I can play their music from any web browser. They have a mobile platform, and best of all they exposed an API that allows me to have complete control over my music collection. While I am sure the rumors that Apple is working on a cloud-based version of iTunes is true, I am 100% sure they are not going to give you complete control over your music nor are they going to make it very easy for me to use my music on non-apple devices.</p><p>Below is a little PHP script I wrote to mass up load my music to AudioBox. I am using AudioBox 100% from now on! I am sick of plugging my phone into my computer. I am sick of writing sync scripts to keep my mp3&#8242;s up-to-date on all my devices.</p><p><code><br
/> <?php<br
/> /*<br
/> By: Spicer Matthews <spicer@cloudmanic.com><br
/> Date: 5/16/2010<br
/> */</p><p>$email = 'user@example.org';<br
/> $pass = '**********';<br
/> $dir = '/my/music/folder';<br
/> foreach(get_filenames($dir) AS $key => $row)<br
/> {<br
/> if(preg_match('/.mp3/', strtolower($row)))<br
/> exec("curl -F media=@'$row' -u $email:$pass https://audiobox.fm/api/tracks");<br
/> }</p><p>//<br
/> // Get all file names in directory. (thanks CI - http://codeigniter.com/user_guide/helpers/file_helper.html)<br
/> //<br
/> function get_filenames($source_dir, $include_path = TRUE, $_recursion = FALSE)<br
/> {<br
/> static $_filedata = array();</p><p> if ($fp = @opendir($source_dir))<br
/> {<br
/> if ($_recursion === FALSE)<br
/> {<br
/> $_filedata = array();<br
/> $source_dir = rtrim(realpath($source_dir), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR;<br
/> }</p><p> while (FALSE !== ($file = readdir($fp)))<br
/> {<br
/> if (@is_dir($source_dir.$file) &#038;&#038; strncmp($file, '.', 1) !== 0)<br
/> {<br
/> get_filenames($source_dir.$file.DIRECTORY_SEPARATOR, $include_path, TRUE);<br
/> }<br
/> elseif (strncmp($file, '.', 1) !== 0)<br
/> {</p><p> $_filedata[] = ($include_path == TRUE) ? $source_dir.$file : $file;<br
/> }<br
/> }<br
/> return $_filedata;<br
/> }<br
/> }<br
/> ?><br
/> </code></p> ]]></content:encoded> <wfw:commentRss>http://www.spicermatthews.com/audiobox-real-cloud-based-music/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>No More Compiled Software For Me</title><link>http://www.spicermatthews.com/no-more-compiled-software-for-me/</link> <comments>http://www.spicermatthews.com/no-more-compiled-software-for-me/#comments</comments> <pubDate>Wed, 25 Nov 2009 18:18:51 +0000</pubDate> <dc:creator>Spicer</dc:creator> <category><![CDATA[Cloud Services]]></category> <category><![CDATA[Web Programing]]></category> <category><![CDATA[Compiled Software]]></category> <category><![CDATA[Google Chrome OS]]></category> <category><![CDATA[Google Docs]]></category> <category><![CDATA[iTunes]]></category> <category><![CDATA[The Cloud]]></category><guid
isPermaLink="false">http://blog.spicermatthews.com/?p=50</guid> <description><![CDATA[As many of you know I am the founder and president of Cloudmanic Labs, LLC. At Cloudmanic Labs it is our goal to build web applications that traditionally were handled via compiled native software and stuff them in the Cloud. For a while now I have been not eating my own dog food (for a lack of a better term). I stilled was using a native mail client, still listening to my stored mp3s in iTunes, using word to type documents, still using some sort of compiled solution for a twitter client and so on. Then the recent preview release of Google's Chrome OS came out and it gave me a wake up call. ]]></description> <content:encoded><![CDATA[<div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Spicer Is Moving To The Cloud</div><div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">As many of you know I am the founder and president of Cloudmanic Labs, LLC. At Cloudmanic Labs it is our goal to build web applications that traditionally were handled via compiled native software and stuff them in the Cloud. For a while now I have been not eating my own dog food (for a lack of a better term). I stilled was using a native mail client, still listening to my stored mp3s in iTunes, using word to type documents, still using some sort of compiled solution for a twitter client and so on. Then the recent preview release of Google&#8217;s Chrome OS came out and it gave me a wake up call.</div><div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">A New Man, Thanks To Google</div><div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">So I watch the presentation that Google put on last week highlighting how the future of computing is just a web browser. Our documents, music, videos and more will live in the cloud through cloud services. For the record I am so excited to see Chrome OS mature. This type of overhaul of operating systems was a long time coming. So I spent a better part of this past weekend truly moving to the cloud. I officially use only a web browser for my everyday computing. There are a few things, which I will get to in a bit that still lack. I read and write all my email in gmail, I type of my documents in google docs, I tweet and listen to music all from my web browser. I even went as far as storing my files in the cloud. I am only storing files with Dropbox from now on. It is so nice to be able to pick up any computer and pick up where I left off. In fact I booted my Mac Book to Windows Xp a few days ago to test out a website and I have not found a need to boot back, a browser is a browser after all. I have even linked up as many services as possible to sync with my iPhone. My iPhone is in the cloud with me!</div><div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">A Few Things Holding Me Back From Being A Real Man</div><div
id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Music and Video. Where are we on this front? There are tons of services out there that have content I can stream or buy to enjoy on the Internet but I want a place that I can upload movies and music I already own and play it on the go on any computer. I know Google is heading in that direction but I want it now! I sure hope Apple is working their tails off to make a web based version of iTunes. I want a private web based version of iTunes that I can upload all my music and video to and Apple will &#8220;sync&#8221; it to my Apple Tv, iPhone, and more. This is something we need now not later. If Apple is not already far down this path they will lose to Google. We need to bridge the gap between already owned content and external media devices and we will have an Internet 100% ready to support cloud computing.</div><h2>Spicer Is Moving To The Cloud</h2><p><img
class="alignright size-full wp-image-51" title="Cloud Computing" src="http://blog.spicermatthews.com/wp-content/uploads/2009/11/cloud1.jpg" alt="Cloud Computing" width="320" height="320" />As many of you know I am the founder and president of Cloudmanic Labs, LLC. At <a
href="http://www.cloudmanic.com">Cloudmanic Labs</a> it is our goal to build web applications that traditionally were handled via compiled native software and stuff them in the Cloud. For a while now I have been not eating my own dog food (for a lack of a better term). I stilled was using a native mail client, still listening to my stored mp3s in iTunes, using word to type documents, still using some sort of compiled solution for a twitter client and so on. Then the recent preview release of Google&#8217;s Chrome OS came out and it gave me a wake up call.</p><h2>A New Man, Thanks To Google</h2><p>So I watch the presentation that <a
href="http://www.techcrunch.com/2009/11/19/chrome-os-event/">Google</a> put on last week highlighting how the future of computing is just a web browser. Our documents, music, videos and more will live in the cloud through cloud services. For the record I am so excited to see <a
href="http://www.chromium.org">Chrome OS</a> mature. This type of overhaul of operating systems was a long time coming. So I spent a better part of this past weekend truly moving to the cloud. I officially use only a web browser for my everyday computing. There are a few things, which I will get to in a bit that still lack. I read and write all my email in gmail, I type of my documents in google docs, I tweet and listen to music all from my web browser. I even went as far as storing my files in the cloud. I am only storing files with <a
href="http://www.dropbox.com/">Dropbox</a> from now on. It is so nice to be able to pick up any computer and pick up where I left off. In fact I booted my Mac Book to Windows Xp a few days ago to test out a website and I have not found a need to boot back, a browser is a browser after all. I have even linked up as many services as possible to sync with my iPhone. My iPhone is in the cloud with me!</p><h2>A Few Things Holding Me Back From Being A Real Man</h2><p>Music and Video. Where are we on this front? There are tons of services out there that have content I can stream or buy to enjoy on the Internet but I want a place that I can upload movies and music I already own and play it on the go on any computer. I know Google is heading in that direction but I want it now! I sure hope Apple is working their tails off to make a web based version of iTunes. I want a private web based version of iTunes that I can upload all my music and video to and Apple will &#8220;sync&#8221; it to my Apple Tv, iPhone, and more. This is something we need now not later. If Apple is not already far down this path they will lose to Google. We need to bridge the gap between already owned content and external media devices and we will have an Internet 100% ready to support cloud computing.</p> ]]></content:encoded> <wfw:commentRss>http://www.spicermatthews.com/no-more-compiled-software-for-me/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 11/18 queries in 0.004 seconds using disk

Served from: www.spicermatthews.com @ 2010-07-29 22:48:15 -->