<?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/"
	>

<channel>
	<title>Chris Martin's blog</title>
	<atom:link href="http://chris-martin.co.cc/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://chris-martin.co.cc</link>
	<description>What im up to, Mostly new and old Technology, Programing and Video Games.</description>
	<pubDate>Wed, 18 Mar 2009 16:20:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My Frist Pixel Bender Filter</title>
		<link>http://chris-martin.co.cc/?p=69</link>
		<comments>http://chris-martin.co.cc/?p=69#comments</comments>
		<pubDate>Wed, 18 Mar 2009 16:20:45 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[Pixel Bender]]></category>

		<category><![CDATA[Filters]]></category>

		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://chris-martin.co.cc/?p=69</guid>
		<description><![CDATA[I have been playing with pixel bender and I made my own filter. Its not very complicated but I think its an interesting effect here&#8217;s a flash preview  here’s the code for the filter

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
&#60;languageVersion : 1.0;&#62;
&#160;
kernel superalpha
&#60;   namespace : &#34;superalpha&#34;;
    vendor : &#34;chris-martin.co.cc&#34;;
    version : 1;
 [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing with pixel bender and I made my own filter. Its not very complicated but I think its an interesting effect here&#8217;s a flash <a class="thickbox" href="http://chris-martin.co.cc/wp-content/uploads/2009/03/pb.html?KeepThis=true&amp;TB_iframe=true&amp;height=645&amp;width=384">preview</a>  here’s the code for the filter<span id="more-69"></span></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
</pre></td><td class="code"><pre class="c" style="font-family:monospace;">&lt;languageVersion : 1.0;&gt;
&nbsp;
kernel superalpha
&lt;   namespace : &quot;superalpha&quot;;
    vendor : &quot;chris-martin.co.cc&quot;;
    version : 1;
    description : &quot;sets alpha of a pixle depending on how bright the pixle is&quot;; &gt;
{
   parameter float intensity;
&nbsp;
   input image4 Imagez;
&nbsp;
   output pixel4 dst;
&nbsp;
   void evaluatePixel()
   {
        float4 p = sampleNearest(Imagez, outCoord());
        float4 c;
        float avg;
        avg = (p.r+p.g+p.b)/3.0;
&nbsp;
        if( avg &lt;= intensity)
        {
        p.a=0.0;
        }
        dst = p;
&nbsp;
   }
}</pre></td></tr></table></div>

<p>It simply tests the current pixels brightness against the &#8220;intensity&#8221; parameter and if it less than or equal to the &#8220;intensity&#8221; parameter it sets the alpha of the current pixel to 0 (transparent).</p>
]]></content:encoded>
			<wfw:commentRss>http://chris-martin.co.cc/?feed=rss2&amp;p=69</wfw:commentRss>
		</item>
		<item>
		<title>Flash Panel Google spell checker</title>
		<link>http://chris-martin.co.cc/?p=20</link>
		<comments>http://chris-martin.co.cc/?p=20#comments</comments>
		<pubDate>Sat, 14 Mar 2009 20:51:06 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[dyslexic]]></category>

		<category><![CDATA[flash panel]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[spell checker]]></category>

		<guid isPermaLink="false">http://chris-martin.co.cc/?p=20</guid>
		<description><![CDATA[After making my other spellcheck panel for flash I decided that there was much that could be improved upon by using the unofficial google toolbar spellcheck API (you can read more about this here). the problem with this API being unofficial is that when I try to run it in a browser it will throw [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://chris-martin.co.cc/wp-content/uploads/2009/03/google_spell_checker1.jpg"><img class="alignright size-full wp-image-25" title="google_spell_checker1" src="http://chris-martin.co.cc/wp-content/uploads/2009/03/google_spell_checker1.jpg" alt="google_spell_checker1" width="324" height="272" /></a>After making my other spellcheck <a href="http://chris-martin.co.cc/?p=11" target="_blank">panel</a> for flash I decided that there was much that could be improved upon by using the unofficial google toolbar spellcheck API (you can read more about this <a href="http://weblogs.asp.net/pwelter34/archive/2005/07/19/419838.aspx">here</a>). the problem with this API being unofficial is that when I try to run it in a browser it will throw a security error so no preview this time but I did take a screen shot as you can see. The panel is in the CS4 color but should work in CS3 too.  It is possible to use this API online but you need to call it via some other sever side language and have socket support from your host you can read more about this <a href="http://orangoo.com/labs/GoogieSpell/Documentation/" target="_blank">here</a>.  So here is the <a href="http://chris-martin.co.cc/wp-content/uploads/2009/03/Google Spell Checker.mxp" target="_blank">mxp file</a> enjoy.<a href="http://chris-martin.co.cc/wp-content/uploads/2009/03/Google Spell Checker.mxp" target="_blank"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chris-martin.co.cc/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>Choppy video streaming on Vista</title>
		<link>http://chris-martin.co.cc/?p=18</link>
		<comments>http://chris-martin.co.cc/?p=18#comments</comments>
		<pubDate>Wed, 04 Mar 2009 15:27:04 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[Vista]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[choppy video]]></category>

		<guid isPermaLink="false">http://chris-martin.co.cc/?p=18</guid>
		<description><![CDATA[This is really a post about two bugs in vista the suggested cure for one causes the other (for me any way). The first error is the very slow large file operations like moving copying and deleting of large files you can read more about this here. One of the suggested cures for this is [...]]]></description>
			<content:encoded><![CDATA[<p>This is really a post about two bugs in vista the suggested cure for one causes the other (for me any way). The first error is the very slow large file operations like moving copying and deleting of large files you can read more about this <a href="http://ramblings.aaronballman.com/2007/05/vista_file_operation_speed_fix.html" target="_blank">here</a>. One of the suggested cures for this is to turn off &#8220;Remote Differential Compression&#8221; I did this in an effort to fix the problem I never really found out if that cured the issue as I don&#8217;t move large files around that often (and I&#8217;m unlikely to find out now as I will most likely leave &#8220;Remote Differential Compression&#8221; on now).  Disabling this caused all streaming video to be choppy unless it had buffered a lot of the video in advance. The bug seemed worse when in full-screen mode. I&#8217;m not sure if this is hardware specific or not but my video card is ATI Radeon HD 4870 X2 I&#8217;m almost 100% sure that its not to do with slow Internet connection which is what it might be confused with at first glance. As you might have already guessed this choppy video problem can be fixed by re/enabling &#8220;Remote Differential Compression&#8221; but if that was the fix for your slow file operations bug then I guess guess you will just have to choose slow file operations or choppy streaming video.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris-martin.co.cc/?feed=rss2&amp;p=18</wfw:commentRss>
		</item>
		<item>
		<title>Flash Panel Yahoo spell checker</title>
		<link>http://chris-martin.co.cc/?p=11</link>
		<comments>http://chris-martin.co.cc/?p=11#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:58:59 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[dyslexic]]></category>

		<category><![CDATA[flash panel]]></category>

		<category><![CDATA[spell checker]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://chris-martin.co.cc/?p=11</guid>
		<description><![CDATA[I&#8217;m dyslexic and and often I need a spell checker inside the Flash IDE so inspired by Lee Brimelow&#8217;s flash panel&#8217;s and his tutorial I made this little flash panel it uses the yahoo spell check API to check your spellings.Post a comment if you get any errors. Here is the mxp file. Here is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I&#8217;m dyslexic and and often I need a spell checker inside the Flash IDE so inspired by <a href="http://theflashblog.com/?cat=33" target="_blank">Lee Brimelow&#8217;s flash panel&#8217;s</a> and his <a href="http://www.gotoandlearn.com/play?id=66" target="_blank">tutorial</a> I made this little flash panel it uses the yahoo spell check API to check your spellings.Post a comment if you get any errors. <a href="http://chris-martin.co.cc/wp-content/uploads/2009/02/yahoo-spell-checker.mxp">Here is the mxp file</a>. Here is a preview:</p>
<pre><code>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_0" width="200" height="250">
      <param name="movie" value="http://chris-martin.co.cc/wp-content/uploads/2009/02/yahoo-spell-checker.swf" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://chris-martin.co.cc/wp-content/uploads/2009/02/yahoo-spell-checker.swf" width="200" height="250">
      <!--<![endif]-->
        <p>The Flash plugin is required to view this object.</p>
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
 

PS: I think the help button will only work inside the Flash IDE.
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://chris-martin.co.cc/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>Here we go first post. wordpress warning/error &#8220;include(admin-footer.php)&#8221;</title>
		<link>http://chris-martin.co.cc/?p=3</link>
		<comments>http://chris-martin.co.cc/?p=3#comments</comments>
		<pubDate>Sat, 07 Feb 2009 22:25:04 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Bloging]]></category>

		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://chris-martin.co.cc/?p=3</guid>
		<description><![CDATA[Here we go first post!, might as well make it about wordpress. Installing it was easy I just fallowed the instructions and used filezilla to upload everything but when I went to the admin page and logged in I kept getting this warning/error &#8220;include(admin-footer.php) failed to open stream: No such file&#8221; so a quick google [...]]]></description>
			<content:encoded><![CDATA[<p>Here we go first post!, might as well make it about <a href="http://wordpress.org/" target="_blank">wordpress</a>. Installing it was easy I just fallowed the instructions and used <a href="http://filezilla-project.org/" target="_blank">filezilla</a> to upload everything but when I went to the admin page and logged in I kept getting this warning/error &#8220;include(admin-footer.php) failed to open stream: No such file&#8221; so a quick google search turned up nothing really so I had a look for the file &#8220;admin-footer.php&#8221; on my sever and could not find it. I&#8217;m not sure why <a href="http://filezilla-project.org/" target="_blank">filezilla</a> did not upload it but i uploaded the individual file my self in to the &#8220;/wp-admin&#8221; folder and hey presto no more warning/error. Hope this helps some other <a href="http://wordpress.org/" target="_blank">wordpress</a> newbie like me.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris-martin.co.cc/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://stats.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->

