<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-878722313808987895</id><updated>2011-08-02T08:19:05.683+08:00</updated><category term='install'/><category term='linux'/><category term='ror'/><category term='xml'/><category term='flShow'/><category term='jquery'/><category term='flash'/><category term='carousel'/><category term='javascript'/><category term='ie'/><category term='tar'/><category term='onfocus'/><title type='text'>me and my techy life</title><subtitle type='html'>just some techy stuff i've either found on the web or discovered by myself</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-1023699670935985997</id><published>2009-06-18T15:04:00.005+08:00</published><updated>2009-06-18T15:32:40.921+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ror'/><category scheme='http://www.blogger.com/atom/ns#' term='javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='flShow'/><category scheme='http://www.blogger.com/atom/ns#' term='jquery'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='carousel'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>flash carousel with dynamic data</title><content type='html'>so in this project i'm working on, the client wants a flash carousel of images. easy right? easy if the images don't have to change. my problem here is that the images needs to be replaced everytime the user clicks on a tab.&lt;br /&gt;&lt;br /&gt;so for example, if i click on a "celebrity" tab, it'll show me images of the recent celebrities added. same goes if i click on "photos", "groups", and etc.&lt;br /&gt;&lt;br /&gt;so here's how i did it:&lt;br /&gt;&lt;br /&gt;i used &lt;a href="http://www.flshow.net/carousel.php"&gt;&lt;span style="font-weight: bold;"&gt;flShow Carousel&lt;/span&gt;&lt;/a&gt; for the flash carousel, jQuery and RoR.&lt;br /&gt;&lt;br /&gt;first, i embedded the flash carousel in my index.html.erb.&lt;br /&gt;&lt;blockquote&gt;        &amp;lt;div style="width:605px;height:200px;"&amp;gt;&lt;br /&gt;   &amp;lt;object width="605" height="200"&amp;gt;&lt;br /&gt;     &amp;lt;param name="movie" value="/flash/Carousel.swf"&amp;gt;&lt;br /&gt;     &amp;lt;param name="flashvars" value="xmlfile=&lt;%= url_for :action =&gt; "carousel_data", :type =&gt; 'Person', :only_path =&gt; true %&gt;"/&amp;gt;&lt;br /&gt;     &amp;lt;embed src="/flash/Carousel.swf?xmlfile=&lt;%= url_for :action =&gt; "carousel_data", :type =&gt; 'Person', :only_path =&gt; true %&gt;" width="605" height="200"&amp;gt;&lt;br /&gt;     &amp;lt;/embed&amp;gt;&lt;br /&gt;   &amp;lt;/object&amp;gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;/blockquote&gt;then, i added a method in my controller to generate the xml.&lt;br /&gt;&lt;blockquote&gt;  def carousel_data&lt;br /&gt; @data = params[:type].constantize.find_recent&lt;br /&gt;&lt;br /&gt; render :file =&gt; "data.xml", :layout =&gt; false&lt;br /&gt; return @data&lt;br /&gt;end&lt;br /&gt;&lt;/blockquote&gt;then, i added my jQuery script binded to the onclick event of each tab.&lt;br /&gt;&lt;blockquote&gt;embed_flash = '&amp;lt;div style="width:605px;height:200px;"&amp;gt;&amp;lt;object width="605" height="200"&amp;gt;&amp;lt;param name="movie" value="/flash/Carousel.swf"&amp;gt;&amp;lt;param name="flashvars" value="xmlfile=&lt;%= url_for :action =&gt; "carousel_data", :type =&gt; 'Blog', :only_path =&gt; true %&gt;"/&amp;gt;&amp;lt;embed src="/flash/Carousel.swf?xmlfile=&lt;%= url_for :action =&gt; "carousel_data", :type =&gt; 'Blog', :only_path =&gt; true %&gt;" width="605" height="200"&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;$('#coverflow').html(embed_flash);&lt;br /&gt;return false;&lt;br /&gt;&lt;/blockquote&gt;in my data.xml file, i added the following:&lt;br /&gt;&lt;blockquote&gt;&amp;lt;slide_show&amp;gt;&lt;br /&gt;&lt;% @data.each do |d| %&gt;&lt;br /&gt;&amp;lt;photo&amp;gt;&lt;%= d.image.url(:small) %&gt;&amp;lt;/photo&amp;gt;&lt;br /&gt;&lt;% end %&gt;&lt;br /&gt;&amp;lt;/slide_show&amp;gt;&lt;/blockquote&gt;for more info on the options for configuring the flShow Carousel through xml, view the &lt;a href="http://www.flshow.net/dokuwiki/doku.php?id=carousel:home"&gt;flShow docuwiki&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-1023699670935985997?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/1023699670935985997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/06/flash-carousel-with-dynamic-data.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/1023699670935985997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/1023699670935985997'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/06/flash-carousel-with-dynamic-data.html' title='flash carousel with dynamic data'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-1349256967188798942</id><published>2009-06-05T16:51:00.006+08:00</published><updated>2009-06-05T17:14:10.858+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ror'/><category scheme='http://www.blogger.com/atom/ns#' term='javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='ie'/><title type='text'>ror's javascript_tag and html script tag</title><content type='html'>I had this dilemma in my current project. Somebody created a variable, assigned some stuff to it and placed it in an separate js file. Now in the html file (erb file in ror), he used the ff:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;% javascript_tag do%&gt;&lt;br /&gt;//some javascript stuff here&lt;br /&gt;&lt;% end %&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;This returned the ff:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;  //&amp;lt;![CDATA[   //some javascript here //]]&amp;gt;&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/blockquote&gt;&lt;br /&gt;It rendered the correct functionality on FF but it won't render on IE (6 &amp;amp; 7). Didn't realize the solution was that simple. lol! I just had to change his code in the main html page to the ff:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;﻿&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;  //some javascript here&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/blockquote&gt;&lt;br /&gt;voila! it worked! :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-1349256967188798942?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/1349256967188798942/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/06/rors-javascripttag-and-html-script-tag.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/1349256967188798942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/1349256967188798942'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/06/rors-javascripttag-and-html-script-tag.html' title='ror&apos;s javascript_tag and html script tag'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-8162611422605170040</id><published>2009-05-22T15:19:00.003+08:00</published><updated>2009-05-22T15:32:06.093+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ror'/><title type='text'>check box list in RoR</title><content type='html'>&lt;blockquote style="font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;      &lt;% form_for :consult, :url =&gt; results_consults_path do |f| %&gt;&lt;br /&gt;&lt;br /&gt;      &lt;dl class="consult"&gt;&lt;br /&gt;        &lt;dt&gt;1. Please select your gender&lt;/dt&gt;&lt;br /&gt;        &lt;dd&gt;&lt;br /&gt;          &lt;ul&gt;&lt;br /&gt;            &lt;li class="fifth"&gt;&lt;%= f.radio_button :gender, "F" %&gt; Female&lt;/li&gt;&lt;br /&gt;            &lt;li class="fifth"&gt;&lt;%= f.radio_button :gender, "M" %&gt; Male&lt;/li&gt;     &lt;br /&gt;          &lt;/ul&gt;&lt;br /&gt;        &lt;/dd&gt;&lt;br /&gt;        ...&lt;br /&gt;        ...&lt;br /&gt;        &lt;dt&gt;18. Do you have any of the following hair conditions?&lt;/dt&gt;&lt;br /&gt;        &lt;dd&gt;&lt;br /&gt;            &lt;ul&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'oily' %&gt; oily&lt;/li&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'dry' %&gt; dry&lt;/li&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'chemically_dry' %&gt; chemically dry&lt;/li&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'dandruff' %&gt; dandruff&lt;/li&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'split_ends' %&gt; split ends&lt;/li&gt;&lt;br /&gt;                &lt;li&gt;&lt;%= check_box_tag "consult[conditions][]", 'irritation' %&gt; irritation&lt;/li&gt;&lt;br /&gt;            &lt;/ul&gt;&lt;br /&gt;        &lt;/dd&gt;&lt;br /&gt;        ...&lt;br /&gt;        ...&lt;br /&gt;      &lt;/dl&gt;&lt;br /&gt;    &lt;% end %&gt;&lt;br /&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight: normal;"&gt;this will result into:&lt;/span&gt;&lt;br /&gt;&lt;blockquote style="font-weight: bold;"&gt;Parameters: {"consult" =&gt; {"conditions" =&gt; [oily, dry]}}&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-8162611422605170040?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/8162611422605170040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/check-box-list-in-ror.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8162611422605170040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8162611422605170040'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/check-box-list-in-ror.html' title='check box list in RoR'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-4850390274651680631</id><published>2009-05-22T14:58:00.002+08:00</published><updated>2009-05-22T15:06:51.707+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>installing flash plugin for linux</title><content type='html'>&lt;span style="font-family: arial;"&gt;1) check adobe's &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.adobe.com"&gt;site&lt;/a&gt;&lt;span style="font-family: arial;"&gt; for the latest flash player for linux and download it.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;2) open the terminal&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;3) change directory to the directory where you saved the plugin file&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;4) type in sudo dpkg -i install_flash_player_10_linux.deb&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;font-size:78%;" &gt;&lt;span style="font-style: italic;"&gt;*substitute install_flash_player_10_linux.deb with the plugin's filename&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-4850390274651680631?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/4850390274651680631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/installing-flash-plugin-for-linux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/4850390274651680631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/4850390274651680631'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/installing-flash-plugin-for-linux.html' title='installing flash plugin for linux'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-8552514394218954618</id><published>2009-05-22T14:54:00.002+08:00</published><updated>2009-05-22T14:57:53.291+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tar'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><title type='text'>how to unzip a tar.gz file</title><content type='html'>&lt;span style="font-family: arial;"&gt;1) open terminal&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;2) change directory to the directory where you saved the tar.gz file&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;"&gt;3) type in tar -xzf foo.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial;font-size:78%;" &gt;&lt;span style="font-style: italic;"&gt;*substitute foo.tar.gz with the filename of your tar.gz file&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-8552514394218954618?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/8552514394218954618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/how-to-unzip-targz-file.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8552514394218954618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8552514394218954618'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/how-to-unzip-targz-file.html' title='how to unzip a tar.gz file'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-5003130966790452796</id><published>2009-05-04T14:14:00.003+08:00</published><updated>2009-05-04T14:26:23.033+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='onfocus'/><category scheme='http://www.blogger.com/atom/ns#' term='jquery'/><title type='text'>clearing the search field on focus</title><content type='html'>as i was doing a project, the client wanted the search field to display "search for..." on page load. that's quite easy. so we just added a default value. now they wanted that default value to be cleared when the user focuses on the search field. the first thing we did, we added an attribute to the input tag. "onfocus" was set to change the value to blank.&lt;br /&gt;&lt;br /&gt;since it was a search field, the client requested that an autocomplete functionality be added. that was cool. there was a jquery plugin that did just that. so i went ahead and added the plugin and tested the app. now i discovered that when i clicked on one of the results, instead of the value of the result being transferred to the search field, the search field was blank. this was due to the "onfocus" attribute that was added before.&lt;br /&gt;&lt;br /&gt;as i'm pretty new to jquery, i decided to experiment with .bind function for 'onfocus'. this didn't work. so i tried some other ways but still couldn't find one that worked. then i finally gave up and asked google for help. so here's the code for clearing the search field on focus.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;$("#s").focus(function() {&lt;br /&gt;if( this.value == this.defaultValue ) {&lt;br /&gt; this.value = "";&lt;br /&gt;}&lt;br /&gt;})&lt;/code&gt;&lt;/pre&gt;i got the above code from &lt;a href="http://bassistance.de/2007/01/23/unobtrusive-clear-searchfield-on-focus/"&gt;this blog&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-5003130966790452796?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/5003130966790452796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/clearing-search-field-on-focus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/5003130966790452796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/5003130966790452796'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/clearing-search-field-on-focus.html' title='clearing the search field on focus'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-878722313808987895.post-8965900917363176577</id><published>2009-05-04T13:45:00.000+08:00</published><updated>2009-05-04T13:51:26.936+08:00</updated><title type='text'>first things first</title><content type='html'>i created this blog not for other people but for me. i have been in the IT industry for quite some time now and i have just realized (after so long) that i need a place to keep the stuff that i find or to keep the stuff that i discover how to do. i'm very forgetful. so this should help me remember.&lt;br /&gt;&lt;br /&gt;if you do find my posts useful, then i'm glad i've helped in some way.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/878722313808987895-8965900917363176577?l=meandmytechylife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://meandmytechylife.blogspot.com/feeds/8965900917363176577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/first-things-first.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8965900917363176577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/878722313808987895/posts/default/8965900917363176577'/><link rel='alternate' type='text/html' href='http://meandmytechylife.blogspot.com/2009/05/first-things-first.html' title='first things first'/><author><name>rachel</name><uri>http://www.blogger.com/profile/14340218468547161437</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://4.bp.blogspot.com/_FWugPWvINTo/Sf6FH_D4qCI/AAAAAAAAAAM/TD4HxkoXOm4/S220/IMG-7331.JPG'/></author><thr:total>0</thr:total></entry></feed>
