<?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>Learning by breaking</title>
	<atom:link href="http://poweribo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://poweribo.wordpress.com</link>
	<description>break it, hack it, tear it apart. enlightenment.</description>
	<lastBuildDate>Wed, 03 Sep 2008 19:08:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='poweribo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Learning by breaking</title>
		<link>http://poweribo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://poweribo.wordpress.com/osd.xml" title="Learning by breaking" />
	<atom:link rel='hub' href='http://poweribo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>HDAPS on Thinkpad</title>
		<link>http://poweribo.wordpress.com/2007/12/31/hdaps-on-thinkpad/</link>
		<comments>http://poweribo.wordpress.com/2007/12/31/hdaps-on-thinkpad/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 20:23:24 +0000</pubDate>
		<dc:creator>poweribo</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[hdaps]]></category>
		<category><![CDATA[IBM Active Protection System]]></category>
		<category><![CDATA[thinkpad]]></category>

		<guid isPermaLink="false">http://poweribo.wordpress.com/2007/12/31/hdaps-on-thinkpad/</guid>
		<description><![CDATA[Its a common knowledge that Thinkpads have HDAPS feature (IBM Active Protection System). Its primary purpose, in Windows at least, is to detect falling motion (laptop about to crash into the ground) so that it can immediately park the hard disk heads to prevent data loss. How cool is that? In Linux, are are available [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=21&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Its a common knowledge that Thinkpads have HDAPS feature (IBM Active Protection System). Its primary purpose, in Windows at least, is to detect falling motion (laptop about to crash into the ground) so that it can immediately park the hard disk heads to prevent data loss. How cool is that?<br />
In Linux, are are available drivers that you can install in order for you to make use or access the built-in accelerometer. Users on YouTube have already posted demos of fun things you can do with it, from useful features such as tapping your laptop to switch workspaces, or changing the display orientation to silly ones like playing games by tilting the laptop itself and making it hum like Jedi swords. So what do you need to get started hacking? First, you&#8217;ll need the <a href="http://www.thinkwiki.org/wiki/Tp_smapi">TP_SMAPI</a>. Second? Imagination. Here&#8217;s a java port to get you started:</p>
<p><pre class="brush: java;">
int threshold = 2;
long numMillisecondsToSleep = 1000; // 1 second
int oldx=0, oldy=0, x, y;
boolean doupdate;

try {
    do {
        FileReader fr = new FileReader(&quot;/sys/devices/platform/hdaps/position&quot;);
        BufferedReader br = new BufferedReader(fr);
        String s = br.readLine();

        StringTokenizer st = new StringTokenizer(s, &quot;(,)&quot;);
        x = Integer.parseInt(st.nextToken());
        y = Integer.parseInt(st.nextToken());

        doupdate = false;

        if ((oldx != x) || (oldy != y)) {

            if (Math.abs(oldx - x) &gt; threshold) {
                oldx = (oldx != x) ? x : oldx;
                doupdate = true;
            }

            if (Math.abs(oldy - y) &gt; threshold) {
                oldy = (oldy != y) ? y : oldy;
                doupdate = true;
            }

            if (doupdate) {
                System.out.println(&quot;x = &quot; + oldx + &quot; | &quot; + &quot;y = &quot; + oldy);
            }

        }

        try {
            Thread.sleep(numMillisecondsToSleep);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    } while(true);

} catch (IOException e) {
    e.printStackTrace();
}

</pre></p>
<p>Ported from the original C code written by Jeff Molofee.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/poweribo.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/poweribo.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/poweribo.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/poweribo.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/poweribo.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=21&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://poweribo.wordpress.com/2007/12/31/hdaps-on-thinkpad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d1efbacc60225bfb5c1162c5ee9d3bc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">poweribo</media:title>
		</media:content>
	</item>
		<item>
		<title>PCLinuxOS 2007 on Thinkpad x60</title>
		<link>http://poweribo.wordpress.com/2007/12/31/pclinuxos-2007-on-thinkpad-x60/</link>
		<comments>http://poweribo.wordpress.com/2007/12/31/pclinuxos-2007-on-thinkpad-x60/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 19:56:32 +0000</pubDate>
		<dc:creator>poweribo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[thinkpad x60 pclinuxos 2007 linux lenovo]]></category>

		<guid isPermaLink="false">http://poweribo.wordpress.com/2007/12/31/pclinuxos-2007-on-thinkpad-x60/</guid>
		<description><![CDATA[I have been using Linux since 1996 and started with Slackware v1 and FreeBSD but I have never used linux on any of my PCs. Today, I have made the jump from Windows to Linux last month after buying a used Lenovo Thinkpad x60. I opted to use PCLinuxOS due to its rave reviews and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=19&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="jr_userreviewcomment">I have been using Linux since 1996 and started with Slackware v1 and FreeBSD but I have never used linux on any of my PCs. Today, I have made the jump from Windows to Linux last month after buying a used Lenovo Thinkpad x60. I opted to use PCLinuxOS due to its  rave reviews and growing popularity. Recently, it surpassed Ubuntu on the number of downloads based on Distrowatch stats. Based on my experience with Ubuntu and PCLinuxOS, I think Linux is finally ready on the desktop.<br />
</span></p>
<p>Almost everything works with PCLinuxOS2007 except for the IBM Action Protection System due to lack of available Linux drivers. Installation was smooth and never encountered problems (make sure you dont have any other programs running when you hit &#8220;install to hard disk&#8221;. I used a bootable USB drive since this model doesnt come with a CD/DVD drive. Ethernet, Bluetooth, Wifi, SD memory slot, USB, Sound, and Mic works perfectly. Can detect inserted drives and easily detects wifi and lan. My unit doesnt have the fingerprint feature.</p>
<p><img src="http://poweribo.files.wordpress.com/2007/12/tpx60_r.jpg?w=500" alt="Thinkpad x60" /><br />
<strong><br />
Specs:</strong></p>
<table border="1" width="534">
<tbody>
<tr>
<th width="89" scope="row">Processor</th>
<td width="429">Intel Core 2 Dou processor T5600 (1.8GHz)</td>
</tr>
<tr>
<th scope="row">Memory</th>
<td>2GB DDR2-667</td>
</tr>
<tr>
<th scope="row">Hard drive</th>
<td>Toshiba 100GB 5400RPM SATA</td>
</tr>
<tr>
<th scope="row">Display</th>
<td>12.1&#8243; TFT display</td>
</tr>
<tr>
<th scope="row">Graphics</th>
<td>Intel Graphics Media Accelerator 950</td>
</tr>
<tr>
<th scope="row">Wireless</th>
<td>Intel 3945 802.11a/b/g wireless, IBM Bluetooth 2.0</td>
</tr>
<tr>
<th scope="row">Networking</th>
<td>Intel Pro/1000 Gigabit Ethernet</td>
</tr>
<tr>
<th scope="row">Expansion</th>
<td>3 USB 2.0 ports, 1 4-pin Firewire (IEEE 1394) port, 1 Express Card, 1 Secure Digital</td>
</tr>
<tr>
<th scope="row">Battery</th>
<td>Lithium Ion 8 cell</td>
</tr>
</tbody>
</table>
<p><strong>Tips:</strong></p>
<p>* If you dont have CD/DVD drive, you only need a USB drive and ISO CD Image to install. Follow the instructions <a href="http://distrogue.blogspot.com/2007/08/how-to-turn-your-usb-key-into-bootable.html">here</a> if you are on Linux, or here if you are on <a href="http://www.pendrivelinux.com/2006/09/19/all-in-one-usb-pclinuxos-minimezip/">Windows</a>,<br />
* If you have at least 2Gb RAM, allocate a maximum of 1Gb or even less for Swap space. You will hardly use it.<br />
* To enable Thinkpad function buttons (Blue buttons), enable the KMilo plugin under KDE Control Center | System Administration.<br />
* Default video players didnt work on my fresh install. Had to Install VLC to watch avi files (tv shows for my case)<br />
* Additional Thinkpad-specific apps that you can install are: KThinkBat for better battery power usage detection and TP_SMAPI (HDAPS driver for the built-in accelerometer).<br />
* You can enable the frequency scaling feature by enabling the &#8220;powernowd&#8221; service at PCLOS Control Center | System | Enable or disable system services.<br />
* With the latest Wine version, you can still enjoy Windows apps like Photosop 7, Dreamweaver 8, Microsoft Office 2003 and Warcraft 3 &#8211; TFT as they can run on Linux w/o a hitch.</p>
<p><strong>Known problems and solutions:</strong></p>
<p>Solved: Sound doesnt work by default.<br />
Solution: Upgrade kernel to kernel-2.6.22.10.tex1 or higher<br />
Explanation: ALSA related bug in kernel 2.6.18.8.tex5<br />
&#8211;<br />
Solved: Fn + Home (Increase Brightness) will blank your screen<br />
Solution: edit the /etc/modprobe.conf and add the line &#8220;alias video off&#8221; (The blacklist solution doesnt work.)<br />
Explanation: There is a conflict with the ACPI video module.<br />
&#8211;<br />
Solved: Sending files to Bluetooth devices via GUI.<br />
Solution: Install kbluetooth<br />
Explanation: Not installed by default</p>
<p><strong> What doesnt work:</strong></p>
<p>* FN+F7, FN+F8, FN+F9.</p>
<p><strong> Untested:</strong></p>
<p>* Express Card slot<br />
* 56K Modem<br />
* Infrared</p>
<p><strong>The obligatory screenshot:</strong></p>
<p><a title="PCLOS2007 on Thinkpad x60" href="http://poweribo.files.wordpress.com/2007/12/pcloskaramba.png"><img src="http://poweribo.files.wordpress.com/2007/12/pcloskaramba.thumbnail.png?w=500" alt="PCLOS2007 on Thinkpad x60" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/poweribo.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/poweribo.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/poweribo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/poweribo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/poweribo.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=19&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://poweribo.wordpress.com/2007/12/31/pclinuxos-2007-on-thinkpad-x60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d1efbacc60225bfb5c1162c5ee9d3bc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">poweribo</media:title>
		</media:content>

		<media:content url="http://poweribo.files.wordpress.com/2007/12/tpx60_r.jpg" medium="image">
			<media:title type="html">Thinkpad x60</media:title>
		</media:content>

		<media:content url="http://poweribo.files.wordpress.com/2007/12/pcloskaramba.thumbnail.png" medium="image">
			<media:title type="html">PCLOS2007 on Thinkpad x60</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex 2 Books</title>
		<link>http://poweribo.wordpress.com/2007/06/24/flex-2-books/</link>
		<comments>http://poweribo.wordpress.com/2007/06/24/flex-2-books/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 10:55:29 +0000</pubDate>
		<dc:creator>poweribo</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://poweribo.wordpress.com/2007/06/24/flex-2-books/</guid>
		<description><![CDATA[Very Exciting weekend . Why? its because the Flex 2 books and Training Videos I ordered last week just arrived yesterday!. I wont be mentioning all the titles yet but so far from what I&#8217;ve seen and read, the Lynda.com : Flex 2 Advanced: Using Data Services Training Video is excellent stuff! I went thru [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=10&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Very Exciting weekend <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Why? its because the Flex 2 books and Training Videos I ordered last week just arrived yesterday!.  I wont be mentioning all the titles yet but so far from what I&#8217;ve seen and read, the <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=335">Lynda.com : Flex 2 Advanced: Using Data Services Training Video</a> is excellent stuff! I went thru chapter 3 to 9 (Im semi-advanced student ;P) and all I can say is, the money spent was all worth it. I&#8217;m now consuming the Adobe Flex &amp; Java book from the guys at Farata Systems. Im deep-diving on the data-integration stuff since its going to be the most crucial part of our enterprise application development. Will update on the book reviews as soon as I&#8217;ve covered some chapters. Right now I&#8217;m looking at how to replace or redesign our existing ACEGI-based security module.</p>
<p><b>Update: June 28, 2007<br />
</b></p>
<p>Disclaimer: I haven&#8217;t read the whole book yet but here&#8217;s my first impressions from the few chapters Ive read and jumping from one chapter to another. The Adobe Flex &amp; Java book: RIA Book was good but was kinda outdated. It featured a lot of working real-world examples which is good stuff. The books weren&#8217;t cheap so I was a little disappointed because I was expecting more of advanced Flex-Java stuff that takes on advanced custom component tricks/hacks, a bit of Cairngorm or other MVC frameworks, Modules, Security / ACLs, Migrating from web frameworks to pure Flex front-end. I was also looking for a bit about Spring integration or anything about a guide for former AJAX developers (for some who have been doing web apps all their lives, switching to event-based app is a paradigm shift). The ebook that came with the book is useless. Table of contents is unclickable and unsearchable. I am yet to check out the bundled Training Video.</p>
<p>I also have  the Actionscript  3 Cookboook from Oreilly. This book is excellent! I&#8217;ve read 3 whole chapters so far: XML, Arrays and Menus and I&#8217;m already smiling from ear to ear from what I&#8217;ve absorbed so quickly. I just realized how powerful E4X support is!!! and how AS3 easily handles XML data like a fish to a water. Highly recommended even for someone like me who never programmed in Actionscript before.</p>
<p>I also have Adobe Flex: Straight from the source and Oreilly Flex 2 Programming. Just browsed thru the pages and jumping from diff chapters . They are almost the same. Just a little better than the official Flex2 documentation which is available for free in PDF form. In fairness, the two books covered more examples than the official doc.</p>
<p>I also have Flex 2 Total Training training video. It covers how to use Flex builder and working with Flex 2 UI components. No advanced stuff. haven&#8217;t watched them all yet so I cant comment much.</p>
<p>Too much many books, too little time.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/poweribo.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/poweribo.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/poweribo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/poweribo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/poweribo.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=10&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://poweribo.wordpress.com/2007/06/24/flex-2-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d1efbacc60225bfb5c1162c5ee9d3bc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">poweribo</media:title>
		</media:content>
	</item>
		<item>
		<title>Spring+Flex integration, Cairngorm and Module slides</title>
		<link>http://poweribo.wordpress.com/2007/06/24/springflex-integration-cairngorm-and-module-slides/</link>
		<comments>http://poweribo.wordpress.com/2007/06/24/springflex-integration-cairngorm-and-module-slides/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 10:36:32 +0000</pubDate>
		<dc:creator>poweribo</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://poweribo.wordpress.com/2007/06/24/springflex-integration-cairngorm-and-module-slides/</guid>
		<description><![CDATA[Just finished cleaning up some slides I used for my Team&#8217;s training. Here it is: Quick guide on Integrating Flex 2, LiveCycle Data Services and Spring &#8211; For Java developers who wants to integrate Flex with new or existing J2EE applications. Cairngorm Microarchitecture &#8211; Advanced topic not meant for Flex/Actionscript beginners. Read this before taking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=7&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just finished cleaning up some slides I used for my Team&#8217;s training. Here it is:</p>
<p><a href="http://poweribo.files.wordpress.com/2007/06/quick-guide-to-flex-2-lds-and-spring.ppt" title="Quick guide on Integrating Flex 2, LiveCycle Data Services and Spring">Quick guide on Integrating Flex 2, LiveCycle Data Services and Spring</a> &#8211; For Java developers who wants to integrate Flex with new or existing J2EE applications.<a href="http://poweribo.files.wordpress.com/2007/06/cairngorm-microarchitecture.ppt" title="cairngorm-microarchitecture.ppt"><br />
Cairngorm Microarchitecture</a> &#8211; Advanced topic not meant for Flex/Actionscript beginners. Read <a href="http://weblogs.macromedia.com/swebster/archives/2006/08/why_i_think_you.cfm">this</a> before taking on Cairngorm.<br />
<a href="http://poweribo.files.wordpress.com/2007/06/modules.ppt" title="Flex Modules">Flex Modules</a> &#8211; Created by <a href="http://blogs.adobe.com/aharui/">Alex Harui</a>. Very useful for building big Flex 2 apps. Modules are used to break applications up into smaller pieces.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/poweribo.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/poweribo.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/poweribo.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/poweribo.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/poweribo.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=7&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://poweribo.wordpress.com/2007/06/24/springflex-integration-cairngorm-and-module-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d1efbacc60225bfb5c1162c5ee9d3bc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">poweribo</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex 2 Slides</title>
		<link>http://poweribo.wordpress.com/2007/06/12/hello-world/</link>
		<comments>http://poweribo.wordpress.com/2007/06/12/hello-world/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 15:21:04 +0000</pubDate>
		<dc:creator>poweribo</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve been reading tons of materials about Flex 2 and Cairngorm framework the past few weeks since May. Me and my team are looking at replacing the Struts v1 front-end of one of our flagship product (a Certified, standards-compliant web app for Healthcare industry). After studying the alternatives, client&#8217;s requirements, feedbacks, and expert opinions, I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=1&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading tons of materials about Flex 2 and Cairngorm framework the past few weeks since May. Me and my team are looking at replacing the Struts v1 front-end of one of our flagship product (a Certified, standards-compliant web app for Healthcare industry). After studying the alternatives, client&#8217;s requirements, feedbacks, and expert opinions, I have decided that RIA with Flex 2 is the way to go. We are now gearing towards ASP model all the way. I have prepared and &#8220;borrowed&#8221; bits and parts of contents from other slides publicly available on the net and aggregated all the good stuff into one presentation file. To the original authors, pls. forgive me <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I created this for my team and want to share the information back to the community. This slide is going to be my first installment on Flex category. Expect a lot more once I&#8217;ve cleaned up stuff on other slides. I&#8217;m also uploading my RSS feeds (OPML) for all Flex 2 related blogs I&#8217;m subscribed to. (so you don&#8217;t have to hunt for them one by one!)</p>
<p><a href="http://poweribo.files.wordpress.com/2007/06/introduction-to-flex-2_77ibo.ppt" title="Introduction to Flex 2"></a><a href="http://poweribo.files.wordpress.com/2007/06/introduction-to-flex-2.ppt" title="Introduction to Flex 2">Introduction to Flex 2</a> &#8211; Beginners guide to Flex 2 framework<br />
<a href="http://poweribo.files.wordpress.com/2007/06/myflexfeedsopml.doc" title="My Flex 2 RSS Feeds">My Flex 2 RSS Feeds</a> &#8211; My collection of RSS feeds related to Flex 2. Rename it to .opml extension and import it to your favorite RSS reader. I&#8217;d like to recommend <a href="http://www.jetbrains.com/omea/reader/">Omea Reader</a> (it&#8217;s free!).</p>
<p>If you are also interested to study Flex 2, I&#8217;d like to recommend the ff links below:</p>
<ul>
<li><a href="http://www.cairngormdocs.org/">CairnGorm Doc</a><a href="http://www.cairngormdocs.org/"><br />
</a></li>
<li><a href="http://www.flex.org/">Flex Developers community</a></li>
<li><a href="http://www.adobe.com/devnet/">Adobe DevNet</a></li>
<li><a href="http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html">Cairngorm Microarchitecture</a> &#8211; Dont miss this excellent 6-part article by Steven Webster!</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/poweribo.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/poweribo.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/poweribo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/poweribo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/poweribo.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=poweribo.wordpress.com&amp;blog=1228929&amp;post=1&amp;subd=poweribo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://poweribo.wordpress.com/2007/06/12/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d1efbacc60225bfb5c1162c5ee9d3bc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">poweribo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
