<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ya know, stuff</title>
	<atom:link href="http://slypariah.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://slypariah.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 19 Jun 2007 04:46:10 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='slypariah.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ya know, stuff</title>
		<link>http://slypariah.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://slypariah.wordpress.com/osd.xml" title="Ya know, stuff" />
	<atom:link rel='hub' href='http://slypariah.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Complex UI with Monorail, Javascript &amp; Caching</title>
		<link>http://slypariah.wordpress.com/2007/06/19/complex-ui-with-monorail-javascript-caching/</link>
		<comments>http://slypariah.wordpress.com/2007/06/19/complex-ui-with-monorail-javascript-caching/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 04:46:10 +0000</pubDate>
		<dc:creator>nihm</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[monorail]]></category>

		<guid isPermaLink="false">http://slypariah.wordpress.com/2007/06/19/complex-ui-with-monorail-javascript-caching/</guid>
		<description><![CDATA[Coming to the end of the development cycle of a fairly large &#38; Javascript dependant project, a few issues have cropped up that will probably need resolving before going full production. Im glad that hammett seems to be having similar problems, &#38; it&#8217;s not something that has already been solved that I have ignored within [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=11&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Coming to the end of the development cycle of a fairly large &amp; Javascript dependant project, a few issues have cropped up that will probably need resolving before going full production. Im glad that hammett seems to be having <a href="http://hammett.castleproject.org/?p=161" title="similar problems">similar problems</a>, &amp; it&#8217;s not something that has already been solved that I have ignored within MonoRail.</p>
<p>The first is the fact that I have alot of dependencies in javascript files,  the front page of the application (&amp; probably where the user will spend a fair amount of time) in particular depends upon Prototype, Scriptaculous, Plotkit &amp; Mochikit and about 20 other random small javascript files, that may or may not need to be included. At the moment my BaseController exposes functions to bring in those javascript files, and code in my layout #includes the relevant nvelocity files. This is ascetically ugly as I am calling these in my controller methods (although it could be done in the views via $controller.IncludeSomeFile). Basically I Got It Working, knowing full well that it was going to be a thorn in my side, ascetically &amp; performance wise. So I want something akin to the Helper attributes that you can decorate your controllers (and perhaps methods) with.</p>
<p>The current Helper system in MonoRail works fine with the scriptaculous &amp; Prototype Helpers at the moment, but the current situation doesnt help with javascript dependencies, or caching/bundling the javascript. Ive learnt to live with manually dealing with dependencies, so that&#8217;s not a huge problem per se (I have been developing in .NET for a couple of years now <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , but I have a sneaking suspicion that the 40+ javascript files being pulled in is going to exacerbate performance problems, both on the client and server.</p>
<p>Starting afresh on an related project, allowed me to look afresh at the MonoRail offerings, and I of course first went to the ajax related stuff. Nice to see a BehaviourHelper, but my last project used <a href="http://encytemedia.com/event-selectors/" title="Javascript Event Selectors" target="_blank">event-selectors</a> as I liked how it works, and hinges on Prototypes $$() support, with the peformance gains and css-selector support that engenders. I also don&#8217;t like &#8216;meta-programming&#8217; as it pertains to the web, as it reminds me too much of the ol&#8217; PHP days:</p>
<p><code>$BehaviourHelper.Register("someId", "function(el){doSomething(*);}")</code></p>
<p>my javascript function often ended up with more that just a one liner, very ugly in quoted code within a nvelocity file (no syntax!). So I first baked up a solution for EventSelectors, the patch is <a href="http://support.castleproject.org/browse/MR-269" title="patch!">here</a>. Read the patch comments for what it does, &amp; how it builds a javascript file that contains all the relevant event selectors for that area/controller/view. I really do like convention over configuration. I hope it doesnt get lost in the castle-devel deluge&#8230;</p>
<p>So that&#8217;s event selectors sorted, next up I need to look at:</p>
<ul>
<li>Bringing in &#8216;standard&#8217; javascript libraries, which may also reference css files.</li>
<li>Handling dependency trees (i.e scriptaculous upon prototype)</li>
<li>Bringing in application javascript libraries, using a convention based approach, so your javascript application code is packaged cleanly in a folder structure.</li>
<li>Handling caching of the dependency trees, and outputting concatenated/compressed javascript, just like RoR!</li>
</ul>
<p>I&#8217;ll be putting up a class designer of my initial class design in my next post.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/slypariah.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/slypariah.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slypariah.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slypariah.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slypariah.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=11&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slypariah.wordpress.com/2007/06/19/complex-ui-with-monorail-javascript-caching/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc6bb35672944f0102c505b31ab61c88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">nihm</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogging while installing Ubuntu? No problem</title>
		<link>http://slypariah.wordpress.com/2007/05/17/blogging-while-installing-ubuntu-no-problem/</link>
		<comments>http://slypariah.wordpress.com/2007/05/17/blogging-while-installing-ubuntu-no-problem/#comments</comments>
		<pubDate>Thu, 17 May 2007 11:31:42 +0000</pubDate>
		<dc:creator>nihm</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://slypariah.wordpress.com/2007/05/17/blogging-while-installing-ubuntu-no-problem/</guid>
		<description><![CDATA[Shit, cool. Granted this is very doable (now that I have thought about it) using linux: livecd + install program running in background. But it is very cool nonetheless. I also setup this wordpress blog (I could import old stuff from blogger), and took this screenshot. wow, nice. OK, so the install took 30 minutes, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=10&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://slypariah.files.wordpress.com/2007/05/screenshot.png" title="Installing Ubuntu and blogging"><img src="http://slypariah.files.wordpress.com/2007/05/screenshot.thumbnail.png?w=470" alt="Installing Ubuntu and blogging" /></a></p>
<p>Shit, cool. Granted this is very doable (now that I have thought about it) using linux: livecd + install program running in background. But it is very cool nonetheless.</p>
<p>I also setup this wordpress blog (I could import old stuff from blogger), and took this screenshot. wow, nice. OK, so the install took 30 minutes, my personal best, although I must admit, I didnt really do anything. Time to go get a bottle of wine while I reboot the computer.</p>
<p>OK, glass of vino in hand. Time to setup Beryl, and the wiimote I got today.back soon.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/slypariah.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/slypariah.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slypariah.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slypariah.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slypariah.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=10&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slypariah.wordpress.com/2007/05/17/blogging-while-installing-ubuntu-no-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc6bb35672944f0102c505b31ab61c88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">nihm</media:title>
		</media:content>

		<media:content url="http://slypariah.files.wordpress.com/2007/05/screenshot.thumbnail.png" medium="image">
			<media:title type="html">Installing Ubuntu and blogging</media:title>
		</media:content>
	</item>
		<item>
		<title>Yes I had my own, yes I had spam, no BBlog didnt c&#8230;</title>
		<link>http://slypariah.wordpress.com/2006/11/10/yes-i-had-my-own-yes-i-had-spam-no-bblog-didnt-c/</link>
		<comments>http://slypariah.wordpress.com/2006/11/10/yes-i-had-my-own-yes-i-had-spam-no-bblog-didnt-c/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 03:21:00 +0000</pubDate>
		<dc:creator>nihm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://slypariah.wordpress.com/2006/11/10/yes-i-had-my-own-yes-i-had-spam-no-bblog-didnt-c/</guid>
		<description><![CDATA[Yes I had my own, yes I had spam, no BBlog didnt cut it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=3&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yes I had my own, yes I had spam, no BBlog didnt cut it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/slypariah.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/slypariah.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slypariah.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slypariah.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slypariah.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slypariah.wordpress.com&amp;blog=1115583&amp;post=3&amp;subd=slypariah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slypariah.wordpress.com/2006/11/10/yes-i-had-my-own-yes-i-had-spam-no-bblog-didnt-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc6bb35672944f0102c505b31ab61c88?s=96&#38;d=identicon" medium="image">
			<media:title type="html">nihm</media:title>
		</media:content>
	</item>
	</channel>
</rss>
