<?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>sybersnake &#187; General</title>
	<atom:link href="http://sybersnake.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://sybersnake.com</link>
	<description>Bender called me a flesh bag.</description>
	<lastBuildDate>Tue, 10 May 2011 20:25:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Netatalk on Solaris ZFS</title>
		<link>http://sybersnake.com/2011/02/03/netatalk-on-solaris-zfs/</link>
		<comments>http://sybersnake.com/2011/02/03/netatalk-on-solaris-zfs/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 16:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=228</guid>
		<description><![CDATA[I&#8217;m working on some performance tuning with Netatalk on Solaris 11 Express. The following volume configuration increases performance 4 fold for high file operation small writes such as transferring 1 gb folders with subversion metadata. allow:@staff rwlist:@staff ea:sys options:caseinsensitive,usedots,nohex,noadouble,volcharset ZFS must be set to caseinsensitive. I also move the dbpath to another disk or nvram. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on some performance tuning with Netatalk on Solaris 11 Express.</p>
<p>The following volume configuration increases performance 4 fold for high file operation small writes such as transferring 1 gb folders with subversion metadata.</p>
<blockquote><p>allow:@staff rwlist:@staff ea:sys options:caseinsensitive,usedots,nohex,noadouble,volcharset</p></blockquote>
<p>ZFS must be set to caseinsensitive.</p>
<p>I also move the dbpath to another disk or nvram.</p>
<blockquote><p>:DEFAULT: options:usedots,nohex,nostat,nofileid dbpath:/var/netatalk-$v/</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2011/02/03/netatalk-on-solaris-zfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex, AIR Projects without Flex, Part 1</title>
		<link>http://sybersnake.com/2010/08/15/flex-air-projects-without-flex-part-1/</link>
		<comments>http://sybersnake.com/2010/08/15/flex-air-projects-without-flex-part-1/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 00:41:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=212</guid>
		<description><![CDATA[MXML is a great markup language. It is getting more extensible all the time and, often, is something you want to use in non-flex projects. In order to provide complete understanding on how to build MXML web and desktop applications ( Adobe AIR ) without the Flex framework; I am embarking on this multi-part journey [...]]]></description>
			<content:encoded><![CDATA[<p>MXML is a great markup language.  It is getting more extensible all the time and, often, is something you want to use in non-flex projects.  In order to provide complete understanding on how to build MXML web and desktop applications ( Adobe AIR ) without the Flex framework; I am embarking on this multi-part journey to divulge the inner workings of Flex and AIR.</p>
<p>Flash Builder ( i.e. Flex Builder ) provides a very convenient wrapper and configuration for building Flex and AIR applications.  It does not allow, by code-hinting, extending a non IUIComponent or UIComponent object in MXML e.g. &lt;l:Sprite /&gt; .  So we do this with a little trickery.</p>
<p>After creating your default application ( be it either Flex or AIR ) you will need to create a ActionScript main file.  Unlike other languages, the main in ActionScript becomes implemented at the flash.display.Stage and all of your other assets build from there.  I tend to call this class Main.as, it can be placed anywhere in the source folder.  Next you will have to manually change the &#8220;Default Application&#8221; MXML file to extend your Main.as.  This is simply done by adding the namespace xmlns:local=&#8221;*&#8221; ( whereas * is the same package the Main exists in ).  Then change &lt;s:WindowedApplication /&gt; or &lt;s:Application/&gt; to &lt;local:Main /&gt;.  The application should compile without errors.</p>
<p>Note, however, nothing displays on the screen.  I usually add a trace statement in the Main constructor that allows me to verify that everything just started ok.</p>
<p>The ability to inject code at the stage level easily allows for not only bootstrapping of Pure ActionScript projects but also the ability to do a variety of tasks before starting Flex at all.  Some instances, this may be a dependency checker/updater of some kind.  In AIR, this could be a splash screen or some other useful action.</p>
<p>Here is a Zip file containing an example AIR application.<br />
<a href='http://sybersnake.com/wp-content/uploads/2010/08/NoFlexAir.zip'>NoFlexAir.zip</a></p>
<p>Thats it for the first post, hope it was helpful.  My email is at the top of this page if you have any questions.</p>
<p>P.S.<br />
Using the non-system-chrome takes a lot of resources and essentially allows draw space over your entire screen estate.  I have a inkling that the Popup / Context Components draw in some super-layer however I will cover that in another post.</p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2010/08/15/flex-air-projects-without-flex-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progressive Flash Video Publish</title>
		<link>http://sybersnake.com/2010/08/02/progressive-flash-video-publish/</link>
		<comments>http://sybersnake.com/2010/08/02/progressive-flash-video-publish/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 15:44:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=196</guid>
		<description><![CDATA[I was working on something this week and was unable to find any help on google on how to publish ultra quality video with the flash player. The idea was to just buffer the entire video&#8217;s contents and slowly upload it. Its actually more simple than it looks however the ActionScript 3 docs don&#8217;t cover [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on something this week and was unable to find any help on google on how to publish ultra quality video with the flash player.  The idea was to just buffer the entire video&#8217;s contents and slowly upload it.  Its actually more simple than it looks however the ActionScript 3 docs don&#8217;t cover this at all.</p>
<p><strong>Configuration</strong><br />
Here is the low down, the Camera.quality setting always drops frames &#8212; even when you also have the bandwidth setting enabled.  Setting Camera.quality to 0 then the bandwidth setting to something large such as 500,000 kb/s will provide an excellent video.  In the mean time, also maximize your camera frame-size and frame-rate.  </p>
<p><strong>The Buffer</strong><br />
Watching the bufferLength property to see the size of your buffer.  Removing the devices from the NetStream when you want to finish recording but remember that you have to wait for bufferLength to 0 out before closing the connection or your upload will be lost forever.</p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2010/08/02/progressive-flash-video-publish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CommitOnly is broken on BindingUtils, vote now!</title>
		<link>http://sybersnake.com/2010/07/26/commitonly-is-broken-on-bindingutils-vote-now/</link>
		<comments>http://sybersnake.com/2010/07/26/commitonly-is-broken-on-bindingutils-vote-now/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=200</guid>
		<description><![CDATA[BindingUtils.bindSetter CommitOnly is broken and it got marked community so vote on this issue now! https://bugs.adobe.com/jira/browse/SDK-26901]]></description>
			<content:encoded><![CDATA[<p>BindingUtils.bindSetter CommitOnly is broken and it got marked community so vote on this issue now!</p>
<p><a href="https://bugs.adobe.com/jira/browse/SDK-26901">https://bugs.adobe.com/jira/browse/SDK-26901</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2010/07/26/commitonly-is-broken-on-bindingutils-vote-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I know you don&#8217;t need to hear from me regarding semantics but..</title>
		<link>http://sybersnake.com/2010/07/13/i-know-you-dont-need-to-hear-from-me-regarding-semantics-but/</link>
		<comments>http://sybersnake.com/2010/07/13/i-know-you-dont-need-to-hear-from-me-regarding-semantics-but/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 03:40:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=193</guid>
		<description><![CDATA[The use of &#8216;on&#8217; and &#8216;handle&#8217; seems to daunt me. Some people do it the way I think is correct but most don&#8217;t; so here it is. &#8216;ON&#8217; is used when self or this is the dispatcher of said event you are listening to. If you extend spark Group and listen to Creation Complete then [...]]]></description>
			<content:encoded><![CDATA[<p>The use of &#8216;on&#8217; and &#8216;handle&#8217; seems to daunt me.  Some people do it the way I think is correct but most don&#8217;t; so here it is.</p>
<p>&#8216;ON&#8217; is used when self or this is the dispatcher of said event you are listening to.  If you extend spark Group and listen to Creation Complete then it should be onCreationComplete</p>
<p>but..</p>
<p>&#8220;HANDLE&#8217; if the dispatcher is external.  If Class A is listening to Class B&#8217;s CreationComplete then you should name the internal handler handle{ObjectName}_CreationComplete.</p>
<p>Hope that helps. This will keep your code much easier to read in the future to determine the external and internal dependencies.</p>
<p>That is all!</p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2010/07/13/i-know-you-dont-need-to-hear-from-me-regarding-semantics-but/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari 4 Tabs</title>
		<link>http://sybersnake.com/2009/06/16/safari-4-tabs/</link>
		<comments>http://sybersnake.com/2009/06/16/safari-4-tabs/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 04:28:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=125</guid>
		<description><![CDATA[With Safari 4 final, we lost our beloved top-tabs. However, hope is not lost. All you have to do is replace Safari.app with the beta version (15MB) and you&#8217;ve got your tabs back. Sadly, I cannot host the file so you need to get it some other way.]]></description>
			<content:encoded><![CDATA[<p>With Safari 4 final, we lost our beloved top-tabs.  However, hope is not lost.  All you have to do is replace Safari.app with the beta version (15MB) and you&#8217;ve got your tabs back.  Sadly, I cannot host the file so you need to get it some other way.</p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2009/06/16/safari-4-tabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yumm, Vegan Brownies</title>
		<link>http://sybersnake.com/2009/06/01/yumm-vegan-brownies/</link>
		<comments>http://sybersnake.com/2009/06/01/yumm-vegan-brownies/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 05:48:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=107</guid>
		<description><![CDATA[This is an extension of this recipe. Ingredients: 2 cups unbleached all-purpose flour 1 1/4 cup unbleached evaporated cane sugar 3/4 cup brown sugar 3/4 cup unsweetened cocoa powder 1 teaspoon baking powder 1 teaspoon salt 1/2 cup water 1/2 &#8211; 3/4 cup Coconut Milk 1 cup vegetable oil 1 teaspoon vanilla extract 3-4 tablespoon [...]]]></description>
			<content:encoded><![CDATA[<p>This is an extension of <a href="http://allrecipes.com/Recipe-Tools/Print/Recipe.aspx?RecipeID=68436&#038;servings=16">this</a> recipe.</p>
<p><strong>Ingredients:</strong></p>
<ul>
<li>2 cups unbleached all-purpose flour</li>
<li>1 1/4 cup unbleached evaporated cane sugar</li>
<li>3/4 cup brown sugar</li>
<li>3/4 cup unsweetened cocoa powder</li>
<li>1 teaspoon baking powder</li>
<li>1 teaspoon salt</li>
<li>1/2 cup water</li>
<li>1/2 &#8211; 3/4 cup Coconut Milk</li>
<li>1 cup vegetable oil</li>
<li>1 teaspoon vanilla extract</li>
<li>3-4 tablespoon extra creamy peanut butter</li>
<li>1 teaspoon Omega 3 &#038; 6 oil</li>
</ul>
<p>350 degrees, 9&#215;13 pan is about 30 minutes. 8&#215;8 pan is 55 minutes.  And yes, when you mix this it will clump into one massive mix blob instead of a smooth batter you get with off the shelf mixes.  Bake until it passes the penetration test. ( no gunk sticks to whatever your poking the brownies with )</p>
<p>Note: I added a few pieces of baking bittersweet chocolate, being made with Milk Fat turns this recipe into &#8220;Vegetarian&#8221; so I left it out here.</p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2009/06/01/yumm-vegan-brownies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross Platform CD-ROM Flash Dev</title>
		<link>http://sybersnake.com/2007/06/04/cross-platform-cd-rom-flash-dev/</link>
		<comments>http://sybersnake.com/2007/06/04/cross-platform-cd-rom-flash-dev/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 00:13:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sybersnake.com/?p=52</guid>
		<description><![CDATA[I found this link from a HOW-TO I made a long time ago that used to be linked from the old blog. Cross-Platform CD-ROM Development PDF]]></description>
			<content:encoded><![CDATA[<p>I found this link from a HOW-TO I made a long time ago that used to be linked from the old blog.</p>
<p><a href="http://www.digisoftstudios.com/shared/blog/fscommands.pdf" target="_blank" class="offsite-link-inline">Cross-Platform CD-ROM Development PDF</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sybersnake.com/2007/06/04/cross-platform-cd-rom-flash-dev/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/

Served from: sybersnake.com @ 2012-02-07 03:14:14 -->
