<?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>Gray&#039;s blog</title>
	<atom:link href="http://graysblog.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://graysblog.org</link>
	<description>Web Developer, Platform Coder, Coding Samurai, Person.</description>
	<lastBuildDate>Thu, 06 May 2010 20:06:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Holy ****!</title>
		<link>http://graysblog.org/2010/05/06/holy/</link>
		<comments>http://graysblog.org/2010/05/06/holy/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:06:03 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[new posts]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=271</guid>
		<description><![CDATA[It&#8217;s been a while since my last post, mainly since I have little to nothing to write about these days. It&#8217;s nearing summer, the air is getting warmer (and then in Seattle, suddenly colder..).
Looking back today I realized something like 60% of the posts on my blog are absolute crap. And I mean absolute-crap. Eventually, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since my last post, mainly since I have little to nothing to write about these days. It&#8217;s nearing summer, the air is getting warmer (and then in Seattle, suddenly colder..).</p>
<p>Looking back today I realized something like 60% of the posts on my blog are absolute crap. And I mean absolute-crap. Eventually, sometime around this summer I&#8217;ll be posting a new portfolio/blog site for myself that will contain newer, better content.</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2010/05/06/holy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing webapps in QuickBasic 4.5</title>
		<link>http://graysblog.org/2010/02/27/writing-webapps-in-quickbasic-4-5/</link>
		<comments>http://graysblog.org/2010/02/27/writing-webapps-in-quickbasic-4-5/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 04:04:07 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[cgi-bin]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[qb]]></category>
		<category><![CDATA[qbasic]]></category>
		<category><![CDATA[quickbasic]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=260</guid>
		<description><![CDATA[Disclaimer: I realize this has no real valuable use whatsoever.
First off, credit where credit is due, when I initially had to setup the CGI I ran into a problem solved buy a guy on reddit, who managed to write a website clone in quickbasic. You have to do a simple C++ stub app that can [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Disclaimer: I realize this has no real valuable use whatsoever.</em></strong></p>
<p>First off, credit where credit is due, when I initially had to setup the CGI I ran into a problem solved buy a guy on reddit, who managed to write a website clone in quickbasic. You have to do a simple C++ stub app that can direct the output from quickbasic apps into the server.</p>
<p>In order to pull this off, you&#8217;ll need a copy of the following tools:<br />
<strong>1.</strong> Dev C++ (For compiling the stub app, to make your life easier, grab the one with a compiler built into the install) <a href="http://www.bloodshed.net/devcpp.html">here</a></p>
<p><strong>2.</strong>Quickbasic 4.5 (capable of generating EXE files) <a href="http://www.phatcode.net/downloads.php?id=172">here</a></p>
<p>I also recommend xampp, very quick installation, works perfectly for this example. Grab it <a href="http://www.apachefriends.org/en/xampp.html">here</a></p>
<hr />
<p>Now, to actually install quickbasic from this zip on windows, you have to create a fake A drive, or copy the files to a floppy.</p>
<p>The trick to doing this is a command line trick called <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/subst.mspx?mfr=true">subst</a></p>
<p>So, copy the quickbasic disk1 folder from the download, place it in a folder on C: like, FLOPPY1 and run this:<br />
subst a: C:\FLOPPY1</p>
<p>Run the quickbasic setup app on the fake disk, when prompted to insert another disk, copy the contents of disk2 into the fake drive. Hopefully you&#8217;ll be able to run quickbasic now, and be greeted by this screen:</p>
<div id="attachment_261" class="wp-caption alignleft" style="width: 310px"><a href="http://graysblog.org/wp-content/uploads/2010/02/qb.png"><img class="size-medium wp-image-261" title="qb" src="http://graysblog.org/wp-content/uploads/2010/02/qb-300x155.png" alt="QuickBasic 4.5 welcome screen" width="300" height="155" /></a><p class="wp-caption-text">QuickBasic 4.5 welcome screen</p></div>
<p>Once your in quickbasic, navigate the menus with ALT or your mouse, type out this simple program:</p>
<div class="codesnip-container" >PRINT &#8220;Content-Type: text/html&#8221;<br />
PRINT &#8220;&#8221;<br />
PRINT &#8220;&#8221;</div>
<div class="codesnip-container" >PRINT &#8220;</div>
<div class="codesnip-container" >&lt;h1&gt;Hello World!&lt;/h1&gt;</div>
<div class="codesnip-container" >&#8221;<br />
PRINT &#8220;&#8221;</div>
<p>Move over to the run menu and hit make EXE file, save your app. The app will be in the saved file directory, take it, rename it something simple (e.g. &#8216;app.exe&#8217;) and close.</p>
<p>Now, open up dev C++, navigate to File-&gt;New-&gt;Project and select console application, select C++ for the language, copy and paste this code into main.cpp:</p>
<div class="codesnip-container" >#include &lt;iostream&gt;<br />
#include &lt;string&gt;<br />
#include &lt;stdio.h&gt;<br />
int main(int argc, char *argv[])<br />
{<br />
std::string piper;<br />
FILE* data = popen(&#8220;app.exe&#8221;,&#8221;r&#8221;);</p>
<p>for(char c = getc(data);c != EOF;c = getc(data))<br />
{<br />
piper.push_back(c);<br />
}<br />
pclose(data);</p></div>
<div class="codesnip-container" >std::cout &lt;&lt; piper;<br />
return 0;<br />
}</div>
<p>Press ctrl+F9 to compile or select compile from the menu. Open the directory where you saved the project, and copy the generated EXE file over to your cgi-bin directory (in htdocs for apache, with xampp it&#8217;s in the root directory of xampp/cgi-bin).</p>
<p>Now, with the stub in cgi-bin, rename your compiled quickbasic app to &#8216;app.exe&#8217;, and copy it to cgi-bin. Navigate to <a href="http://localhost/cgi-bin/stub.exe">http://localhost/cgi-bin/stub.exe</a> where stub.exe is whatever your compiled C++ application is called, you should now see a screen something like this:</p>
<div id="attachment_263" class="wp-caption alignleft" style="width: 310px"><a href="http://graysblog.org/wp-content/uploads/2010/02/helloworld.png"><img class="size-medium wp-image-263" title="hello world" src="http://graysblog.org/wp-content/uploads/2010/02/helloworld-300x107.png" alt="hello world from quickbasic" width="300" height="107" /></a><p class="wp-caption-text">hello world from quickbasic</p></div>
<p>Now you can run your webapps and display output in the browser, all you need now is to parse CGI variables, which is done via the ENVIRON$ function.</p>
<div class="codesnip-container" >PRINT &#8220;Content-Type: text/html&#8221;<br />
PRINT &#8220;&#8221;<br />
PRINT &#8220;&#8221;<br />
PRINT &#8220;</div>
<div class="codesnip-container" >&lt;h1&gt;Hello World!&lt;/h1&gt;</div>
<div class="codesnip-container" >&#8221;<br />
PRINT ENVIRON$(&#8220;QUERY_STRING&#8221;)<br />
PRINT &#8220;&#8221;</div>
<p>QUERY_STRING is set by the CGI gateway, accessing this page with a url like http://localhost/cgi-bin/qload.exe?bla would print:<br />
&#8220;Hello World! bla&#8221;</p>
<p>This has no real practical use anymore, but it&#8217;s just interesting to try out. Also, sorry about the code blocks here being screwed up, wordpress managed to mangle them.</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2010/02/27/writing-webapps-in-quickbasic-4-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>X-ID3 header in modern web servers</title>
		<link>http://graysblog.org/2010/01/18/x-id3-header-in-modern-web-servers/</link>
		<comments>http://graysblog.org/2010/01/18/x-id3-header-in-modern-web-servers/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:38:04 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[id3]]></category>
		<category><![CDATA[lighthttpd]]></category>
		<category><![CDATA[x-id3]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=258</guid>
		<description><![CDATA[I&#8217;ll keep this post short and straight to the point, it just seems like this idea should have followed suit right after streaming media became a common feature in HTTP Servers (e.g. lighthttpd).
With the standard format for online music being MP3 files, and the versatile format of streaming MP3&#8217;s (can be played while downloading), I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll keep this post short and straight to the point, it just seems like this idea should have followed suit right after streaming media became a common feature in HTTP Servers (e.g. lighthttpd).</p>
<p>With the standard format for online music being MP3 files, and the versatile format of streaming MP3&#8217;s (can be played while downloading), I see no reason why we shouldn&#8217;t be able to add some minimal support for these files in the web server.</p>
<p>It seems like a good idea to me to build an apache module in for MP3 metadata. It could be configured / disabled &amp; enabled via the apache.conf file, preferably something that works with ID3 and HTTP headers. Which is why I propose the x-id3 header standard.</p>
<p>It should be simple enough, basically parsed Mp3 metadata in the Id3 format, passed in the HTTP headers in the following format:</p>
<div class="codesnip-container" >x-id3-(id3 field name): Content</div>
<p>Just like every other HTTP header, I don&#8217;t know. Seems pretty basic and overlooked to me. I&#8217;d like to hear your thoughts though, so leave a comment with your opinion / ideas.</p>
<p><em>[Disclaimer: wrote this after pulling an all-nighter, so if it's written poorly, my bad]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2010/01/18/x-id3-header-in-modern-web-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome to 2010. (And some new years resolutions..)</title>
		<link>http://graysblog.org/2010/01/07/welcome-to-2010-and-some-new-years-resolutions/</link>
		<comments>http://graysblog.org/2010/01/07/welcome-to-2010-and-some-new-years-resolutions/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 06:57:47 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=256</guid>
		<description><![CDATA[Howdy,
Man it&#8217;s been a while since I posted, so much on my plate and not a ton to post about. And the whole &#8216;not having time&#8217; thing. Since I last posted we made it to 2010. Hell yea!
In my last year of blogging, looking back I did some pretty stupid stuff. Especially as far as [...]]]></description>
			<content:encoded><![CDATA[<p>Howdy,</p>
<p>Man it&#8217;s been a while since I posted, so much on my plate and not a ton to post about. And the whole &#8216;not having time&#8217; thing. Since I last posted we made it to 2010. Hell yea!</p>
<p>In my last year of blogging, looking back I did some pretty stupid stuff. Especially as far as my code went. Yikes.. But, although a bit late, this year I will actually set some <strong>solid</strong> new years goals that I can hopefully meet.</p>
<ol>
<li>By midyear, I hope to have a consistent revenue stream from online worth monthly. i.e. earning $xxxx a month. Would be nice to have a steady income stream.</li>
<li>Be more successful with managing money.</li>
<li>Post more on my blog in 2010, blog neglect must end!</li>
</ol>
<p>Hopefully I&#8217;ll be able to stick to these ones, it shouldn&#8217;t be <em>*too*</em> hard.  Also, hopefully I should be back into the posting routinely scenario next week.. Maybe..</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2010/01/07/welcome-to-2010-and-some-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch the week, #1</title>
		<link>http://graysblog.org/2009/10/26/watch-the-week-1/</link>
		<comments>http://graysblog.org/2009/10/26/watch-the-week-1/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 06:54:42 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Watch the week.]]></category>
		<category><![CDATA[boiler room]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[tv series]]></category>
		<category><![CDATA[usa tv]]></category>
		<category><![CDATA[white collar]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=245</guid>
		<description><![CDATA[Howdy,
So now that I&#8217;ve started blogging a bit more recently, I thought it was about time I come up with some weekly ritual-ish type of thing to do so that I get an incentive to post interesting content.
What I came up with, was &#8216;watch the week&#8217;. Basically I will post and embed what I&#8217;d say [...]]]></description>
			<content:encoded><![CDATA[<p>Howdy,</p>
<p>So now that I&#8217;ve started blogging a bit more recently, I thought it was about time I come up with some weekly ritual-ish type of thing to do so that I get an incentive to post interesting content.</p>
<p>What I came up with, was &#8216;watch the week&#8217;. Basically I will post and embed what I&#8217;d say are pretty damn good shows/movies. You&#8217;ll see them all for the most part here, with no ads or popups.</p>
<p>For each one I post, I&#8217;ll do about a paragraph review to go with it. Just so you get a feel for what your about to watch. I&#8217;ll also give each a rating out of 5.</p>
<p>So then, I&#8217;ll get started with the first one ever:</p>
<p><center><strong>TV Series:</strong></center></p>
<p>I&#8217;ll open this one with a pilot episode I just finished watching:</p>
<p><object width="512" height="296 "><param name="movie" value="http://www.hulu.com/embed/l0BmAQsXuHMKqMh_BWuNDw"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.hulu.com/embed/l0BmAQsXuHMKqMh_BWuNDw" type="application/x-shockwave-flash" allowFullScreen="true"  width="512" height="296"></embed></object></p>
<p><strong>Show:</strong> White Collar<br />
<strong>Hulu&#8217;s Description:</strong> When the trail of elusive criminal &#8220;The Dutchman&#8221; deadends, FBI Agent Peter Burke teams up with a most unlikely partner to catch him; the imprisoned Neal Caffrey: master criminal, con man extraordinaire and Peter&#8217;s most accomplished collar.<br />
<strong>Hulu Rating (At time of writing): </strong>4 out of 5.<br />
<strong>My Rating:</strong> 4 out of 5.</p>
<p>This episode is a very interesting pilot, for what looks like it will be a good season. Coming from USA network, which is starting to push some good ideas for new shows, this looks to be another good one.</p>
<p><center><strong>Movie of the week:</strong></center></p>
<p>For this one, I&#8217;ll go with a movie I just got around to watching based on reviews. It came out in 2000 but I hadn&#8217;t heard of it and don&#8217;t know how many people have seen it:</p>
<p><iframe style='overflow: hidden; border: 0; width: 600px; height: 480px' src='http://www.novamov.com/embed.php?v=4a86441f04709' scrolling='no'></iframe></p>
<p><strong>Movie:</strong> Boiler Room<br />
<strong>IMDB Plot: </strong> A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.<br />
<strong>IMDB Rating: </strong> 6.9 out of 10<br />
<strong>My Rating: </strong> 4 out of 5.</p>
<p>This is a very interesting movie to watch, the story moves quickly and is narrated in a style similar to &#8216;Fight Club&#8217;. As a forum member put it, &#8216;It&#8217;ll make you go out and want to make a million dollars.&#8217; Well worth the watch.</p>
<p>Anyways that&#8217;ll wrap it up for this first post. Just keeps getting me thinking what I should do with this blog. If you got anything you think would be cool to watch / listen to, feel free to drop a comment!</p>
<p>Ciao,</p>
<p>- Gray</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/10/26/watch-the-week-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Axcid Search Engine</title>
		<link>http://graysblog.org/2009/10/21/axcid-search-engine/</link>
		<comments>http://graysblog.org/2009/10/21/axcid-search-engine/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 00:52:44 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[axcid]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[riptune]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tunebin]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=243</guid>
		<description><![CDATA[Sup,
So last night (10-20-09) I made a tweak to the search engine part of Axcid that greatly improved the service. So before yesterday, keyword searches such as:
mac dre, dr dre, rem
would return nothing. Also words under 4 letters in length weren&#8217;t counted, resulting in less relevance in search results &#038; various other bugs. Last night [...]]]></description>
			<content:encoded><![CDATA[<p>Sup,</p>
<p>So last night (10-20-09) I made a tweak to the search engine part of Axcid that greatly improved the service. So before yesterday, keyword searches such as:</p>
<p>mac dre, dr dre, rem</p>
<p>would return nothing. Also words under 4 letters in length weren&#8217;t counted, resulting in less relevance in search results &#038; various other bugs. Last night I set out to correct that and did so successfully.</p>
<p>You&#8217;ll notice that specific searches now get more results, as well as the searches above which before returned nothing, now all return results.</p>
<p>This is just another step for Axcid&#8217;s future as a search engine, it gets better nearly every day.</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/10/21/axcid-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is clearwire</title>
		<link>http://graysblog.org/2009/10/12/this-is-clearwire/</link>
		<comments>http://graysblog.org/2009/10/12/this-is-clearwire/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 03:08:00 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Seattle Shiznit]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[clearwire]]></category>
		<category><![CDATA[clearwire sucks]]></category>
		<category><![CDATA[expedience]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet service]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[t-mobile]]></category>
		<category><![CDATA[tmobile]]></category>
		<category><![CDATA[wi-max]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=238</guid>
		<description><![CDATA[Alright, I&#8217;m fed up with this god damn service!
I have called &#8216;tech support&#8217; many times and heard all kinds of crazy stories &#038; ideas on how to fix my connection issues including but not limited to:
- Duct tape modem to window
- &#8216;Your modem is connecting to a tower across the lake when your surrounded by [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, I&#8217;m fed up with this god damn service!</p>
<p>I have called &#8216;tech support&#8217; many times and heard all kinds of crazy stories &#038; ideas on how to fix my connection issues including but not limited to:</p>
<p>- Duct tape modem to window<br />
- &#8216;Your modem is connecting to a tower across the lake when your surrounded by them&#8217;..<br />
- &#8216;We know it&#8217;s slow&#8217;<br />
- Youtube is not considered &#8216;normal internet use&#8217;</p>
<p>This bullshit is coming from a company that pitches &#8216;go beyond 3g&#8217; on their billboards. If anyone wants proof t-mobile&#8217;s 3g on a wifi tether is faster then this feel free to drop a comment, but rest assured it <strong>kills</strong> it.</p>
<p>Clearwire reps/tech support also admit that it is slow and much slower then T-Mobile&#8217;s 3g. They make claims about Wi-Max but I doubt that service will be better. Not to mention it hasn&#8217;t rolled out yet.</p>
<p>Let&#8217;s just see the average day on clearwire&#8217;s speedtest:<br />
<img src="http://www.speedtest.net/result/590536869.png" alt="Clearwire Speedtest" /></p>
<p>Which is about 1/3 the speed of decent dial up. Ugh.</p>
<p>This is with 5 out of 5 bars on the modem by the way. And this is on a day when the internet service itself actually works, outages are regular occurrences. I&#8217;m also on my second modem, due to the other one completely failing to connect _at_all_ after several months of use.</p>
<p>I have NEVER received the &#8216;1.5&#8242; mbps of speed my service plan dictates. Yesterday, a 10mb download ended up taking 2 hours.</p>
<p>This is, without a doubt, the worst internet service I&#8217;ve ever used.</p>
<p><strong>Edit:</strong></p>
<p>So I decided to speedtest T-Mobile&#8217;s 3g to compare. A couple things first:</p>
<p>- Contrary to the image, I am not in kansas.<br />
- The ping time went down about 200ms on average after I did this test.<br />
- This is the WORST it has ever been (Tethered 3g), although it still kills clearwire it&#8217;s not SUPER fast.</p>
<p><img src="http://www.speedtest.net/result/590606212.png" alt="T-Mobile's 3G" /></p>
<p>The proof is in the pudding here.</p>
<p><strong>Edit Again:</strong></p>
<p>So about a day after posting this (19 hours), my internet speed suddenly increased beyond anything it has before. Ever in 2 years of having it:<br />
<img src="http://www.speedtest.net/result/591372704.png" alt="Clearwire's New Speed" /></p>
<p>I also noticed the amount of bars went from 5 to 3, and the speed increased significantly. Meaning the tower I was connected to changed, although the positioning of the modem did not. I find it a bit odd that the time I get the fastest internet I have had comes a day after posting this, but that&#8217;s a bit I&#8217;m not going to touch on.</p>
<p>Ciao,<br />
Gray</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/10/12/this-is-clearwire/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Riptune</title>
		<link>http://graysblog.org/2009/09/27/riptune/</link>
		<comments>http://graysblog.org/2009/09/27/riptune/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:58:40 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=236</guid>
		<description><![CDATA[It&#8217;s like tunebin was a while ago:
http://riptune.org/
+ the conf*ulator radio/playlist thing. powered by the wonderful and awesome axcid.
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s like tunebin was a while ago:</p>
<p><a href="http://riptune.org/">http://riptune.org/</a></p>
<p>+ the conf*ulator radio/playlist thing. powered by the wonderful and awesome axcid.</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/09/27/riptune/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@Android Developers</title>
		<link>http://graysblog.org/2009/09/26/android-developers/</link>
		<comments>http://graysblog.org/2009/09/26/android-developers/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 06:16:58 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cyanogen]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=234</guid>
		<description><![CDATA[http://developer.yahoo.com/everything.html
It&#8217;s all there. Prettymuch everything that needs to be replaced. Collective effort anyone?
]]></description>
			<content:encoded><![CDATA[<p>http://developer.yahoo.com/everything.html</p>
<p>It&#8217;s all there. Prettymuch everything that needs to be replaced. Collective effort anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/09/26/android-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android got screwed over</title>
		<link>http://graysblog.org/2009/09/26/android-got-screwed-over/</link>
		<comments>http://graysblog.org/2009/09/26/android-got-screwed-over/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 05:28:59 +0000</pubDate>
		<dc:creator>Gray</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cyanogen]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://graysblog.org/?p=232</guid>
		<description><![CDATA[Let me just start by saying, since the start I have been an android supporter, and have invested a good $1000 or so into the platform as far as phones go.
Anyways, I did not use the &#8216;official&#8217; rom, I used the rooted Cyanogen Mod. Which just received a cease and desist order from Google. Google&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Let me just start by saying, since the start I have been an android supporter, and have invested a good $1000 or so into the platform as far as phones go.</p>
<p>Anyways, I did not use the &#8216;official&#8217; rom, I used the rooted Cyanogen Mod. Which just received a cease and desist order from Google. Google&#8217;s official response seems to boil down to &#8216;Android is open, but google apps are not&#8217;. The bottomline being the phone doesn&#8217;t really function without those apps.</p>
<p>So here&#8217;s whats out:<br />
-Contacts Sync<br />
-Maps<br />
-Youtube<br />
-Gmail<br />
-Google Talk<br />
-And last, but most important, the &#8216;android market&#8217;</p>
<p>And anything else not in the android source tree.</p>
<p>Most of the community could probably live without those except android market, after all, the latest maps.apk can be downloaded and installed from android market. Without the market there is no consumer friendly way to install apps on the phone. Ouch.</p>
<p>Some people (Including myself) have kicked around the solution of rebuilding those apps. I personally like that idea and the idea of a &#8216;google stripped&#8217; android. Most of what they provided could be recreated with public API&#8217;s.</p>
<p>It&#8217;s just something to think about though, with no real commercial open mobile os, developers are being placed in a walled garden no matter where they go.</p>
<p>I guess it&#8217;s a waiting game now for a developer to start the &#8216;openandroid&#8217; tree or whatever it will be called. But I look forward to the day when that project starts with curiosity.</p>
]]></content:encoded>
			<wfw:commentRss>http://graysblog.org/2009/09/26/android-got-screwed-over/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
