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

<channel>
	<title>Zomie.com - Clean Renewable Webovation Blog</title>
	<atom:link href="http://www.zomie.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zomie.com</link>
	<description>Clean Renewable Webovation Blog</description>
	<pubDate>Sat, 10 May 2008 21:51:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Flickr Style Image Note Part 1: Hacking the YUI Image Cropper Tool</title>
		<link>http://www.zomie.com/2008/05/09/hacking-the-yui-image-cropper-tool-part-1-flickr-style-image-note/</link>
		<comments>http://www.zomie.com/2008/05/09/hacking-the-yui-image-cropper-tool-part-1-flickr-style-image-note/#comments</comments>
		<pubDate>Fri, 09 May 2008 12:29:35 +0000</pubDate>
		<dc:creator>zomie</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

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

		<guid isPermaLink="false">http://www.zomie.com/?p=7</guid>
		<description><![CDATA[
I was thinking about how to go about building the image noting service built into flickr as seen above when I ran across the YUI Image Cropper Tool, which contained most of the functionality I wanted. You can view a functional example on YUI&#8217;s page at: http://developer.yahoo.com/yui/examples/imagecropper/feedback_crop.html
We are going to base our example from this, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.zomie.com/wp-content/uploads/2008/05/picture-14.png"><img class="alignnone size-medium wp-image-8" title="picture-14" src="http://www.zomie.com/wp-content/uploads/2008/05/picture-14-300x266.png" alt="" width="300" height="266" /></a></p>
<p>I was thinking about how to go about building the image noting service built into flickr as seen above when I ran across the <a href="http://developer.yahoo.com/yui/imagecropper/" target="_blank">YUI Image Cropper Tool</a>, which contained most of the functionality I wanted. You can view a functional example on YUI&#8217;s page at: <a href="http://developer.yahoo.com/yui/examples/imagecropper/feedback_crop.html" target="_blank">http://developer.yahoo.com/yui/examples/imagecropper/feedback_crop.html</a></p>
<p>We are going to base our example from this, and contunie to build onto it throughout many articles.  In this article we will focus on creating the form that moves with the crop tool.</p>
<p>The first step that comes to mind is attaching a form to the selection tool. The first thing to do was to check to see if the crop too is rendered. You can check this by checking to see if the crop tools onready event has fired:</p>
<pre>crop.on('contentReady', yourClosure(){});</pre>
<p>The second step is fairly straight forward and to create the div with an id and insert the related html:</p>
<pre>var tempnod=document.createElement('div');
tempnod.id='vote';
tempnoeinnerHTML='&lt;input type="text" id="comment" value="Comment Here!!"&gt;
&lt;br&gt;&lt;button id="save" type="button"&gt;Save&lt;/button&gt;
&lt;button id="cancel" type="button"&gt;Cancel&lt;/button&gt;';
Dom.get('yui_img_wrap').appendChild(tempnod);</pre>
<p>The Third step is to add the event listeners for the save and cancel buttons:</p>
<pre>Event.on('save','click',saveFun);
Event.on('cancel','click',cancelFun);</pre>
<p>The forth step set the style dynamically in the image cropper&#8217;s move event in order to position the form with the crop tool.  Please note the additon of 10 pixels as a bit of buffer space.:</p>
<pre>Dom.setStyle('vote','left',region.left+'px');
Dom.setStyle('vote','top',(region.top+region.height+10)+'px');</pre>
<p>Don&#8217;t forget to set up your styles to reflect your changes and set the orginal cordinates of your comment box:</p>
<pre>#vote {
position: absolute;
 left:20px;
 top:125px;
}
#comment{
 margin:2px;
 width:200px;
 background: #FFFFD3;
 text-align:center;
}
#save{
 background: #0063DC;
 color:#fff;
 font-weight:bold;
}
#cancel{
 background: #DDD;
 color:#666;
 font-weight:bold;
}</pre>
<p>Feel free to check out a working example at: <a href="http://www.zomie.com/examples/imagecomment.html">http://www.zomie.com/examples/imagecomment.html</a></p>
<p>Later on I will come up with something for the save and cancel functions&#8230;</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomie.com/2008/05/09/hacking-the-yui-image-cropper-tool-part-1-flickr-style-image-note/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo Media Tech Talk About Shine</title>
		<link>http://www.zomie.com/2008/05/06/yahoo-media-tech-talk/</link>
		<comments>http://www.zomie.com/2008/05/06/yahoo-media-tech-talk/#comments</comments>
		<pubDate>Tue, 06 May 2008 21:44:18 +0000</pubDate>
		<dc:creator>zomie</dc:creator>
		
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://www.zomie.com/?p=10</guid>
		<description><![CDATA[My colleagues and I from shine.yahoo.com were asked to give a presentation about the technologies that went into Shine for the Yahoo Media Group. The presentation was titled “The Good, The Bad, and The internalsystemnottobementioned”. My part of the presentation was in regards to the Rich Text Editor used on Shine. Since it was my [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">My colleagues and I from <a href="http://shine.yahoo.com" target="_blank">shine.yahoo.com</a> were asked to give a presentation about the technologies that went into Shine for the Yahoo Media Group. The presentation was titled “The Good, The Bad, and The internalsystemnottobementioned”. My part of the presentation was in regards to the Rich Text Editor used on Shine. Since it was my baby throughout the development of the site. My presentation was titled “How the Text was Won”.  I am sure you can see a theme here&#8230;</p>
<p style="text-align: center;"><img src="http://farm4.static.flickr.com/3152/2472932208_44a4371081.jpg?v=0" alt="" width="500" height="375" /></p>
<p>I have cut up a simple version of the presentation that can be viewed here if you are interested:<br />
<a href="http://zomie.com/examples/shinerte_simple.pdf">http://www.zomie.com/examples/shinerte_simple.pdf</a></p>
<p>Also feel free to see a few pictures from the tech talk:<br />
<a href="http://flickr.com/photos/14261072@N08/tags/ymgtalk/">http://flickr.com/photos/14261072@N08/tags/ymgtalk/</a></p>
<p>I will work to publish a few articles about customizing the Rich Text Editor in upcoming months.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomie.com/2008/05/06/yahoo-media-tech-talk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>YUI Tech Talk Mentions Shine&#8217;s Rich Text Editor</title>
		<link>http://www.zomie.com/2008/05/04/yui-tech-talk-mentions-shines-rich-text-editor/</link>
		<comments>http://www.zomie.com/2008/05/04/yui-tech-talk-mentions-shines-rich-text-editor/#comments</comments>
		<pubDate>Sun, 04 May 2008 11:36:01 +0000</pubDate>
		<dc:creator>zomie</dc:creator>
		
		<category><![CDATA[YUI]]></category>

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

		<guid isPermaLink="false">http://www.zomie.com/?p=6</guid>
		<description><![CDATA[I think you could say I hand a hand in it :P
Dav Glass did a wonderful job on the talk and the widget.  If you want to learn something about Rich Text Editors I suggest watching. 
He starts talking about Shine around 7 mins remaining:

]]></description>
			<content:encoded><![CDATA[<p>I think you could say I hand a hand in it :P</p>
<p>Dav Glass did a wonderful job on the talk and the widget.  If you want to learn something about Rich Text Editors I suggest watching. </p>
<p>He starts talking about Shine around 7 mins remaining:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="323" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="flashVars" value="id=7378948&amp;vid=2359450&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http://us.i1.yimg.com/us.yimg.com/p/i/bcst/videosearch/2719/62261130.jpeg" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.1.15" /><embed type="application/x-shockwave-flash" width="512" height="323" src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.1.15" allowfullscreen="true" flashvars="id=7378948&amp;vid=2359450&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http://us.i1.yimg.com/us.yimg.com/p/i/bcst/videosearch/2719/62261130.jpeg"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomie.com/2008/05/04/yui-tech-talk-mentions-shines-rich-text-editor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web 2.0 Expo</title>
		<link>http://www.zomie.com/2008/04/25/web-20-expo/</link>
		<comments>http://www.zomie.com/2008/04/25/web-20-expo/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 21:16:00 +0000</pubDate>
		<dc:creator>zomie</dc:creator>
		
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://www.zomie.com/?p=9</guid>
		<description><![CDATA[
I got the opprunity to work in the Yahoo booth at this year&#8217;s Web 2.0 Expo.  Nick Fogler of the Juku program was looking for someone to go up to spread the word.  Hopefully we recruited a few promising new Front End&#8217;s for Yahoo!. 
The main focus of the booth was on the Yahoo Developer Network and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://farm3.static.flickr.com/2286/2464917607_e7e4e73f3c.jpg?v=0" alt="" width="500" height="375" /></p>
<p>I got the opprunity to work in the Yahoo booth at this year&#8217;s <a href="http://www.web2expo.com/">Web 2.0 Expo</a>.  Nick Fogler of the <a href="http://yuiblog.com/blog/2007/12/06/juku/" target="_blank">Juku program </a>was looking for someone to go up to spread the word.  Hopefully we recruited a few promising new Front End&#8217;s for Yahoo!. </p>
<p>The main focus of the booth was on the <a href="http://developer.yahoo.com">Yahoo Developer Network</a> and on some new things like <a href="http://fireeagle.yahoo.net/" target="_blank">fire eagle</a> which is an awesome geolocating service. </p>
<p>If you are interested you can see a few pics at:<br />
<a href="http://flickr.com/photos/14261072@N08/tags/web20expo/">http://flickr.com/photos/14261072@N08/tags/web20expo/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomie.com/2008/04/25/web-20-expo/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
