<?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>S. Friss - Design + Technology</title>
	<atom:link href="http://blog.shalomfriss.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.shalomfriss.com</link>
	<description>Freelance Interactive Design and Development</description>
	<lastBuildDate>Fri, 04 Jun 2010 04:43:35 +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>Even Better Firebug</title>
		<link>http://blog.shalomfriss.com/?p=398</link>
		<comments>http://blog.shalomfriss.com/?p=398#comments</comments>
		<pubDate>Fri, 04 Jun 2010 04:43:04 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=398</guid>
		<description><![CDATA[&#160; package &#123; import flash.external.ExternalInterface; public function bug&#40;... args&#41;:void &#123; ExternalInterface.call&#40;&#34;console.log&#34;, args&#41;; &#125; &#125; &#160; Place that in a file called bug.as and drop it in your classpath, now you have a top level function called bug, that takes as many arguments as you want that even traces out objects and their contents. I'm convinced [...]]]></description>
			<content:encoded><![CDATA[<pre class="actionscript">&nbsp;
package
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">external</span>.<span style="color: #006600;">ExternalInterface</span>;
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> bug<span style="color: #66cc66;">&#40;</span>... <span style="color: #006600;">args</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
	<span style="color: #66cc66;">&#123;</span>
		ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;console.log&quot;</span>, args<span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>Place that in a file called bug.as and drop it in your classpath, now you have a top level function called bug, that takes as many arguments as you want that even traces out objects and their contents. I'm convinced this is the easiest way to trace from the browser. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=398</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebug Extended</title>
		<link>http://blog.shalomfriss.com/?p=389</link>
		<comments>http://blog.shalomfriss.com/?p=389#comments</comments>
		<pubDate>Sun, 23 May 2010 17:12:38 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=389</guid>
		<description><![CDATA[I recently started using Firebug for outputting, I usually use Monster Debugger, but Firebug turns out to be really impressive and to have some surprising capabilities. I came across this article on Blitz's blog.  Here is a quick recap: Can take multiple arguments console.log(a, b, c); Has message levels console.debug("message"); console.info("message"); console.warn("message"); console.error("message"); Can group [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started using Firebug for outputting, I usually use Monster Debugger, but Firebug turns out to be really impressive and to have some surprising capabilities.  I came across <a href="http://labs.blitzagency.com/?p=2101" target="_self">this</a> article on Blitz's blog.  Here is a quick recap:</p>
<p>Can take multiple arguments</p>
<p>console.log(a, b, c);</p>
<p>Has message levels</p>
<p>console.debug("message");<br />
console.info("message");<br />
console.warn("message");<br />
console.error("message");<span id="more-389"></span></p>
<p>Can group messages</p>
<p>console.group("Parent group");<br />
console.log("Mother");<br />
console.log("Father");<br />
console.group("Child group"); // nested groupings<br />
console.log("Daughter");<br />
console.log("Son");<br />
console.groupEnd(); // end  child grouping<br />
console.groupEnd();</p>
<p>Can output objects and XML</p>
<p>console.dir(document.location);<br />
console.dirxml(document.getElementsByTagName("body")[0]);</p>
<p>Read the full article, good stuff.  In the meantime here's a quickstart class.  You can do this:<br />
Firebug.t("whatever", someobject, anInteger);<br />
or if you want print_r style output you can do this:<br />
Firebut.dir(someObject);</p>
<pre class="actionscript">package
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">external</span>.<span style="color: #006600;">ExternalInterface</span>;
&nbsp;
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Firebug
	<span style="color: #66cc66;">&#123;</span>
		<span style="color: #0066CC;">public</span> <span style="color: #0066CC;">static</span> <span style="color: #000000; font-weight: bold;">function</span> t<span style="color: #66cc66;">&#40;</span>... <span style="color: #006600;">args</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
		<span style="color: #66cc66;">&#123;</span>
			ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;console.log&quot;</span>, args<span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
&nbsp;
		<span style="color: #0066CC;">public</span> <span style="color: #0066CC;">static</span> <span style="color: #000000; font-weight: bold;">function</span> dir<span style="color: #66cc66;">&#40;</span>msg:*<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
		<span style="color: #66cc66;">&#123;</span>
			ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;console.dir&quot;</span>, msg<span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=389</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracing to Firebug from Flash</title>
		<link>http://blog.shalomfriss.com/?p=385</link>
		<comments>http://blog.shalomfriss.com/?p=385#comments</comments>
		<pubDate>Fri, 21 May 2010 00:54:52 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=385</guid>
		<description><![CDATA[import flash.external.ExternalInterface; &#160; function t&#40;msg:*&#41;:void &#123; ExternalInterface.call&#40;&#34;console.log&#34;, msg.toString&#40;&#41;&#41;; &#125; &#160; Very useful.]]></description>
			<content:encoded><![CDATA[<pre class="actionscript"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">external</span>.<span style="color: #006600;">ExternalInterface</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> t<span style="color: #66cc66;">&#40;</span>msg:*<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
<span style="color: #66cc66;">&#123;</span>
     ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;console.log&quot;</span>, msg.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>Very useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=385</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Thumbnails for YouTube Videos</title>
		<link>http://blog.shalomfriss.com/?p=382</link>
		<comments>http://blog.shalomfriss.com/?p=382#comments</comments>
		<pubDate>Thu, 13 May 2010 03:38:09 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=382</guid>
		<description><![CDATA[Youtube generates 3 thumbnails for their videos, just swap out &#60;video id&#62; with your video's id. http://img.youtube.com/vi/&#60;video id&#62;/1.jpg http://img.youtube.com/vi/&#60;video id&#62;/2.jpg http://img.youtube.com/vi/&#60;video id&#62;/3.jpg]]></description>
			<content:encoded><![CDATA[<p>Youtube generates 3 thumbnails for their videos, just swap out &lt;video id&gt; with your video's id.</p>
<p>http://img.youtube.com/vi/&lt;video id&gt;/1.jpg</p>
<p>http://img.youtube.com/vi/&lt;video id&gt;/2.jpg</p>
<p>http://img.youtube.com/vi/&lt;video id&gt;/3.jpg</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=382</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 Refernce</title>
		<link>http://blog.shalomfriss.com/?p=376</link>
		<comments>http://blog.shalomfriss.com/?p=376#comments</comments>
		<pubDate>Wed, 21 Apr 2010 18:23:06 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[Docs]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=376</guid>
		<description><![CDATA[I just ran across this on Senocular's blog.  It's a comprehensive Actionscript 3.0 reference, I'm surprised I never ran across this before, the beauty of it is that it allows to browse by platform and provides other filtering options as well.  If you are a FP (Flash Platform) developer, check it out --&#62; AS3 Ref.  [...]]]></description>
			<content:encoded><![CDATA[<p>I just ran across this on Senocular's blog.  It's a comprehensive Actionscript 3.0 reference, I'm surprised I never ran across this before, the beauty of it is that it allows to browse by platform and provides other filtering options as well.  If you are a FP (Flash Platform) developer, check it out --&gt; <a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/index.html" target="_blank">AS3 Ref</a>.  Also, check this out too, for your documentation needs --&gt; <a href="http://airdoc.be/" target="_blank">DOC?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=376</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Populating an NSArray from XML</title>
		<link>http://blog.shalomfriss.com/?p=364</link>
		<comments>http://blog.shalomfriss.com/?p=364#comments</comments>
		<pubDate>Sun, 14 Mar 2010 17:29:54 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=364</guid>
		<description><![CDATA[1.) Create a file with a.plist extension (this is just an xml file that contains your data) &#160; &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62; &#60;!DOCTYPE plist PUBLIC &#34;-//Apple//DTD PLIST 1.0//EN&#34; &#34;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#34;&#62; &#60;plist version=&#34;1.0&#34;&#62; &#60;array&#62; &#60;dict&#62; &#60;key&#62;label&#60;/key&#62; &#60;string&#62;Test 1xxxxx&#60;/string&#62; &#60;key&#62;image&#60;/key&#62; &#60;string&#62;image.jpg&#60;/string&#62; &#60;/dict&#62; &#60;dict&#62; &#60;key&#62;label&#60;/key&#62; &#60;string&#62;Test 2&#60;/string&#62; &#60;key&#62;image&#60;/key&#62; &#60;string&#62;image.jpg&#60;/string&#62; &#60;/dict&#62; &#60;dict&#62; &#60;key&#62;label&#60;/key&#62; &#60;string&#62;Test 2&#60;/string&#62; &#60;key&#62;image&#60;/key&#62; &#60;string&#62;image.jpg&#60;/string&#62; &#60;/dict&#62; &#60;/array&#62; &#60;/plist&#62; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>1.) Create a file with a.plist extension (this is just an xml file that contains your data)<span id="more-364"></span></p>
<pre class="xml">&nbsp;
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="font-weight: bold; color: black;">?&gt;</span></span>
<span style="color: #00bbdd;">&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot;</span>
<span style="color: #00bbdd;">                &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;plist</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;array<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>label<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>Test 1xxxxx<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>image<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>image.jpg<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>label<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>Test 2<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>image<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>image.jpg<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>label<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>Test 2<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;key<span style="font-weight: bold; color: black;">&gt;</span></span></span>image<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/key<span style="font-weight: bold; color: black;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;string<span style="font-weight: bold; color: black;">&gt;</span></span></span>image.jpg<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/string<span style="font-weight: bold; color: black;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/dict<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/array<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/plist<span style="font-weight: bold; color: black;">&gt;</span></span></span>
&nbsp;</pre>
<p>2.) Place the file in your Resources-iPhone folder (my file is called itemList.plist) and load it into an array</p>
<pre class="c">NSString* plistPath = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#91;</span>NSBundle mainBundle<span style="color: #66cc66;">&#93;</span>
                                     pathForResource:@<span style="color: #ff0000;">&quot;itemList&quot;</span> ofType:@<span style="color: #ff0000;">&quot;plist&quot;</span><span style="color: #66cc66;">&#93;</span>;
NSArray *items = <span style="color: #66cc66;">&#91;</span>NSArray arrayWithContentsOfFile:plistPath<span style="color: #66cc66;">&#93;</span>;</pre>
<p>Simple!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=364</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QATool + Banner workflow</title>
		<link>http://blog.shalomfriss.com/?p=358</link>
		<comments>http://blog.shalomfriss.com/?p=358#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:02:28 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[banners]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[qatool]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=358</guid>
		<description><![CDATA[I have recently had some banner work for a client and had to present multiple banners.  I coincidentally came across this. Here is an example of the tool in action. Pretty close to the perfect solution for banner presentation for your clients.  Installation is super easy. For mac all you do is run these commands [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently had some banner work for a client and had to present multiple banners.  I coincidentally came across <a href="http://codeendeavor.com/banner-qa-tool" target="_blank">this.</a> <a href="http://qatool.codeendeavor.com/preview/__qatool.html" target="_blank">Here is an example</a> of the tool in action.<a href="http://codeendeavor.com/banner-qa-tool" target="_blank"> </a>Pretty close to the perfect solution for banner presentation for your clients.  Installation is super easy. For mac all you do is run these commands in terminal</p>
<ol>
<li><em>sudo gem update --system</em></li>
<li><em>gem sources --add http://gems.codeendeavor.com</em></li>
<li><em>sudo gem install builder</em></li>
<li><em>gem install roo</em></li>
<li><em>gem install spreadsheet</em></li>
<li><em>gem install nokogiri</em></li>
<li><em>gem install rubyzip</em></li>
<li><em>gem install google-spreadsheet-ruby</em></li>
<li><em>gem install qatool</em></li>
</ol>
<p><em>If you have any problems just use sudo in front of the command.  After you create your banners you can use <a href="http://code.google.com/p/cdto/" target="_blank">this</a> little tool, which will open a terminal window that corresponds to where you are in finder.  After that just type qatool and you're done! Super easy.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=358</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Portfolio Preview</title>
		<link>http://blog.shalomfriss.com/?p=355</link>
		<comments>http://blog.shalomfriss.com/?p=355#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:44:33 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=355</guid>
		<description><![CDATA[Here... feedback is welcome]]></description>
			<content:encoded><![CDATA[<p><a href="http://shalomfriss.com/site.html" target="_blank">Here</a>... feedback is welcome <img src='http://blog.shalomfriss.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=355</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m available for freelance!</title>
		<link>http://blog.shalomfriss.com/?p=347</link>
		<comments>http://blog.shalomfriss.com/?p=347#comments</comments>
		<pubDate>Sat, 16 Jan 2010 17:43:04 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=347</guid>
		<description><![CDATA[contact me at info@shalomfriss.com or shalomfriss@gmail.com]]></description>
			<content:encoded><![CDATA[<p>contact me at info@shalomfriss.com or shalomfriss@gmail.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=347</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWFObject on Google</title>
		<link>http://blog.shalomfriss.com/?p=329</link>
		<comments>http://blog.shalomfriss.com/?p=329#comments</comments>
		<pubDate>Mon, 07 Dec 2009 22:27:41 +0000</pubDate>
		<dc:creator>Shiggs</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.shalomfriss.com/?p=329</guid>
		<description><![CDATA[I like seeing that many JS libraries are being hosted online.  Saves me a few minutes, but mostly it's just nice to have.  SWFObject is now hosted on google here http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js, check it out here.  If that's not enough for you here is a generator in AIR to produce embed code for you.]]></description>
			<content:encoded><![CDATA[<p>I like seeing that many JS libraries are being hosted online.  Saves me a few minutes, but mostly it's just nice to have.  SWFObject is now hosted on google here http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js, check it out <a href="http://code.google.com/p/swfobject/wiki/hosted_library" target="_blank">here</a>.  If that's not enough for you <a href="http://code.google.com/p/swfobject/downloads/list" target="_blank">here</a> is a generator in AIR to produce embed code for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shalomfriss.com/?feed=rss2&amp;p=329</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
