<?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>djitz.com</title>
	<atom:link href="http://djitz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://djitz.com</link>
	<description>Giving Positive Impact On People's Lives</description>
	<lastBuildDate>Sun, 15 Jan 2012 22:53:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Starting a Java Project with Maven &#8211; Step by step Guide for Mac</title>
		<link>http://djitz.com/guides/starting-a-java-project-with-maven-step-by-step-guide-for-mac/</link>
		<comments>http://djitz.com/guides/starting-a-java-project-with-maven-step-by-step-guide-for-mac/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 22:11:35 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=868</guid>
		<description><![CDATA[Thanks to my friend, Gandos, he got me interested to use Maven after I read his blog post (It&#8217;s in Indonesian). After consulting to another friend, I think it&#8217;s a good idea to use Maven for the LabGence project. The idea is also influenced from this question that I have, &#8220;What is the best practice [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/maventxt_logo_200.gif"><img src="http://djitz.com/wp-content/uploads/maventxt_logo_200.gif" alt="Apache Maven Logo" title="Apache Maven Logo" width="462" height="106" class="aligncenter size-full wp-image-870" /></a></p>
<p>Thanks to my friend, <a href="http://www.gandos.web.id">Gandos</a>, he got me interested to use Maven after I read his <a href="http://www.gandos.web.id/entry.php?id=menggunakan-apache-maven-bagian-1#">blog post</a> (It&#8217;s in Indonesian). After consulting to another friend, I think it&#8217;s a good idea to use Maven for the LabGence project.</p>
<p>The idea is also influenced from this question that I have, &#8220;What is the best practice to upload an open-source project?&#8221; and &#8220;What files that I should and probably shouldn&#8217;t upload?&#8221;.</p>
<p>I believe Maven can standardize the issue of libraries needed by the project, and also the build script needed. So I decided to give it a try.</p>
<p>Fortunately I found the best and brief introduction tutorial to Maven on <a href="http://javabrains.koushik.org/p/maven.html">JavaBrains.org</a>, you might want to check it out.</p>
<p>I also created the following step by step notes for Mac OSX (which might be applicable also to Linux and other Unix OS).<span id="more-868"></span></p>
<p><strong>Maven Installation<br />
</strong>Steps:<br />
1. Download Maven binary from the <a href="http://maven.apache.org/download.html">official website.</a> I use the Maven 3.0.3 as of this writing.</p>
<p>2. Extract the compressed files.</p>
<p>3. Execute these commands:<br />
<code># export M2_HOME=[path to the Maven extracted directory]<br />
example: # export M2_HOME=/home/djitz/dev/java/maven</code></p>
<p><code># export PATH=[path to the Maven extracted directory]/bin:${PATH}<br />
example: # export PATH=/home/djitz/dev/java/maven/bin:${PATH}</code></p>
<p>4. Test the maven installation, execute:<br />
<code># mvn --v<br />
</code><br />
If it shows something like:</p>
<p><code>Apache Maven 3.0.2 (r1056850; 2011-01-08 19:58:10-0500)<br />
Java version: 1.6.0_24, vendor: Apple Inc.<br />
Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home<br />
Default locale: en_US, platform encoding: MacRoman<br />
OS name: "mac os x", version: "10.6.5", arch: "x86_64", family: "mac"</code></p>
<p>then we&#8217;re done for the installation.</p>
<p><strong>Creating Project<br />
</strong>Steps:<br />
1. Go to the directory where we want to have the project.</p>
<p>2. Execute<br />
<code># mvn archetype:generate<br />
</code><br />
It will download files because it&#8217;s the first time we&#8217;re running it.</p>
<p>3. After it finished the download, it will ask for number, and show us the default number. Scroll up and we can see hundreds of different project templates that Maven knows.</p>
<p>For now, just press Enter to accept the default one.</p>
<p>4. Choose the Maven archetype quickstart version, just press Enter to accept the default.</p>
<p>5. For the groupId, input your package name.<br />
example: com.djitz.labgence</p>
<p>6. For the artifactId, input your application name.<br />
example: LabGence</p>
<p>7. Type the version, just press Enter to accept the default.</p>
<p>8. Type the package name, it will copy the value from step #5.</p>
<p>9. Confirm the values from step 5 &#8211; 8.</p>
<p>That&#8217;s it, we successfully created a new project using Maven.</p>
<p>Some more commands to try, go to the created project directory, then do the following commands:</p>
<p><code># mvn compile<br />
# mvn package</code></p>
<p>There are a lot more functions of Maven, but this can get us started. Sonatype.com does a lot of work with Maven, and they have a free Maven reference book in here. (http://www.sonatype.com/books/mvnref-book/reference/index.html<br />
)</p>
<p>Until the next post fellas! <img src='http://djitz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2285219071414372";
/* dj_L_Rectangle_mix */
google_ad_slot = "4606479639";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2285219071414372";
/* dj_L_Rectangle_mix_2 */
google_ad_slot = "4479753664";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=868&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/starting-a-java-project-with-maven-step-by-step-guide-for-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LabGence &#8211; Intelligent Clinical Laboratory Application</title>
		<link>http://djitz.com/portfolio/labgence-intelligent-clinical-laboratory-application/</link>
		<comments>http://djitz.com/portfolio/labgence-intelligent-clinical-laboratory-application/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 22:35:22 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[labgence]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=861</guid>
		<description><![CDATA[It&#8217;s been several years since I have the eagerness to develop a clinical laboratory application. The reason is primarily because although I&#8217;m a professional software programmer/developer now, my bachelor degree was in Medical Technology. Initially I was thinking of a LIS type of application, where the medtech can store the patients and test information in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/LabGence-logo.png"><img src="http://djitz.com/wp-content/uploads/LabGence-logo.png" alt="LabGence logo" title="LabGence-logo" width="550" height="246" class="alignnone size-full wp-image-863" /></a></p>
<p>It&#8217;s been several years since I have the eagerness to develop a clinical laboratory application. The reason is primarily because although I&#8217;m a professional software programmer/developer now, my bachelor degree was in Medical Technology.</p>
<p>Initially I was thinking of a LIS type of application, where the medtech can store the patients and test information in the database. But then I had the idea of taking it steps further, &#8220;Why not make it a smart application? Where it will be able to assist medtech by taking the patient&#8217;s profile and results history into account?&#8221;</p>
<p>Thus, the LabGence name is derived from &#8220;Laboratory Intelligence&#8221;, and it&#8217;s goal is to be the smart application that medtechs can rely on.<br />
<span id="more-861"></span></p>
<p><strong>For Software Developers / Programmers<br />
</strong><br />
During the course of the project I will post my notes on both software development practices and programming techniques. I don&#8217;t claim that I&#8217;m a know-it-all in this field, I&#8217;m just a student of the disciplines with a strong passion to learn and implement the best practices.</p>
<p>If you&#8217;re interested in software development best practices and agile methods, you may want to follow this project through my twitter <a href="http://twitter.com/djitz">@djitz</a>. </p>
<p>The project is open-source, and at this point in time is not under any license, so you can use any part of the project other than the &#8220;LabGence&#8221; name and logo.</p>
<p>The project source codes is available at GitHub: <a href="https://github.com/djitz/LabGence01">LabGence project on GitHub</a>.</p>
<p><strong>For Medical Technologist / Clinical Laboratory Scientist<br />
</strong><br />
While the project is in development stage, there may not be a be a user-friendly version of the application.</p>
<p>All posts related to the project can be accessed at this URL: <a href="http://djitz.com/tag/labgence">http://djitz.com/tag/labgence</a>. </p>
<img src="http://djitz.com/?ak_action=api_record_view&id=861&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/portfolio/labgence-intelligent-clinical-laboratory-application/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bose AE2i Headphones Review</title>
		<link>http://djitz.com/reviews/bose-ae2i-headphones-review/</link>
		<comments>http://djitz.com/reviews/bose-ae2i-headphones-review/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 03:59:30 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Cool Gadgets Review]]></category>
		<category><![CDATA[headphone]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=836</guid>
		<description><![CDATA[Well well, just on my last day of work in my co-op semester, I found out that one of my office friend has the Bose AE2i headphone. What a pleasant surprise, it&#8217;s about time for me to post another headphone review also before the year 2011 ends. So I immediately borrow the headphone and give [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/Bose-AE2i.jpg"><img src="http://djitz.com/wp-content/uploads/Bose-AE2i.jpg" alt="Bose AE2i Headphone" title="Bose AE2i Headphone" width="500" height="355" class="alignnone size-full wp-image-840" /></a></p>
<p>Well well, just on my last day of work in my co-op semester, I found out that one of my office friend has the <a href="http://www.bose.com/controller?url=/shop_online/headphones/audio_headphones/around_ear_headphones/index.jsp">Bose AE2i headphone</a>.</p>
<p>What a pleasant surprise, it&#8217;s about time for me to post another headphone review also before the year 2011 ends. So I immediately borrow the headphone and give it a quick test. So, does the sound quality justify the price tag? Let&#8217;s see..<span id="more-836"></span></p>
<h3>Sound</h3>
<p>Just a reminder, it&#8217;s an around-ear headphone so I expect a good sound isolation from the Bose AE2i, and it really has it, I can hear detail sounds clearly.</p>
<p>Bass test was a bit disappointing, PX100 beats it on the same volume level. You can get very good bass punch from AE2i if you raise the volume, but that also means raising the risk of having ear damage. This might be due to the impedance difference, but since Bose doesn&#8217;t release the specifications, we will never know.</p>
<p>There is no question for the mid and treble sound, they are just really good.</p>
<p>I tested different songs genre, and I think it doesn&#8217;t sound quite fit for any type of songs that have a lot of bass sounds (such as techno and some rock songs). If you prefer instrumental, R&#038;B, Jazz, or Pop, this headphones is a good choice.</p>
<p>Detail : 5/5</p>
<p>Bass: 3.5/5</p>
<p>Mid: 5/5</p>
<p>Treble: 5/5</p>
<h3>Physical Form</h3>
<p>Like all other Bose headphone, it looks aesthetically pleasing (it&#8217;s quite big, but not bulky) and also very comfortable to use. Besides, the Bose label is just too cool for people to unnoticed.</p>
<p>The one that my work colleague has is the AE2i version, so it can be connected to phones and it has microphone and volume control (unfortunately the volume control doesn&#8217;t work in my laptop).</p>
<h3>Price</h3>
<p>It&#8217;s $162 on <a href="http://www.amazon.com/gp/product/B005586PT2/ref=as_li_tf_tl?ie=UTF8&#038;tag=djitz-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B005586PT2">Amazon</a><img src="http://www.assoc-amazon.com/e/ir?t=djitz-20&#038;l=as2&#038;o=1&#038;a=B005586PT2" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />. What can you say, it&#8217;s Bose.</p>
<p></p>
<h3>Buy it or Not?</h3>
<p>Though it&#8217;s priced at over $100, it&#8217;s actually not so expensive as the other Bose headphones. But with the same price, I think you can find headphones with better sound quality from other brand. It&#8217;s just that it won&#8217;t have that &#8220;Bose&#8221; label.</p>
<p>I&#8217;m not saying that it&#8217;s not a good headphone, considering sound quality only, I think I can give it 9.0/10. But considering the price, I would give it 8.0/10.</p>
<p>The sound quality definitely more than enough for most of the people, but it won&#8217;t satisfy a hi-fi aficionados.</p>
<p>If look is a very important thing for you, then Bose AE2i can be your choice. It&#8217;s not $300, and it will instantly give you a cool factor when wearing it. <img src='http://djitz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Songs used in this review:</h3>
<p>Chicane &#8211; <a href="http://www.amazon.com/gp/product/B002ZJYULE/ref=as_li_tf_tl?ie=UTF8&#038;tag=djitz-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B002ZJYULE">Halcyon</a><img src="http://www.assoc-amazon.com/e/ir?t=djitz-20&#038;l=as2&#038;o=1&#038;a=B002ZJYULE" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> &#8211; MP3<br />
Linkin Park &#8211; <a href="http://www.amazon.com/gp/product/B002EHLNLC/ref=as_li_tf_tl?ie=UTF8&#038;tag=djitz-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B002EHLNLC">Hybrid Theory</a><img src="http://www.assoc-amazon.com/e/ir?t=djitz-20&#038;l=as2&#038;o=1&#038;a=B002EHLNLC" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (MP3) and <a href="http://www.amazon.com/gp/product/B001ERMYCA/ref=as_li_tf_tl?ie=UTF8&#038;tag=djitz-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B001ERMYCA">Meteora</a><img src="http://www.assoc-amazon.com/e/ir?t=djitz-20&#038;l=as2&#038;o=1&#038;a=B001ERMYCA" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (FLAC) Album<br />
Maliq &#038; D&#8217;Essentials &#8211; Heaven &#8211; MP3<br />
Bayu Risa &#8211; Fire &#8211; MP4</p>
<img src="http://djitz.com/?ak_action=api_record_view&id=836&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/reviews/bose-ae2i-headphones-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>American Airlines ADEPT 2011 Program Experience</title>
		<link>http://djitz.com/djitz-life-journey/american-airlines-adept-2011-program-experience/</link>
		<comments>http://djitz.com/djitz-life-journey/american-airlines-adept-2011-program-experience/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 03:57:11 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Djitz Life Journey]]></category>
		<category><![CDATA[adept]]></category>
		<category><![CDATA[american airlines]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=814</guid>
		<description><![CDATA[Last June 2011 I started my 6-months internship (co-op) in American Airlines (AA) headquerters in Dallas/Fort-Worth, Texas. I&#8217;m so blessed to be part of the ADEPT 2011 program. ADEPT stands for American Airlines Development Program for Technology, it is a two-year program designed to develop new hires for AA Information Technology Services (ITS). It was [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/ADEPT-logo.jpg"><img class="size-full wp-image-821 alignnone" title="American Airlines ADEPT logo" src="http://djitz.com/wp-content/uploads/ADEPT-logo.jpg" alt="American Airlines ADEPT" width="550" height="369" /></a></p>
<p>Last June 2011 I started my 6-months internship (co-op) in American Airlines (AA) headquerters in Dallas/Fort-Worth, Texas. I&#8217;m so blessed to be part of the ADEPT 2011 program.</p>
<p>ADEPT stands for <a href="http://www.aa.com/i18n/aboutUs/adept/overview.jsp">American Airlines Development Program for Technology</a>, it is a two-year program designed to develop new hires for AA Information Technology Services (ITS). It was first started in 2006. The ADEPT members are recruited from different universities, in the 2011 class we had members from UT-Austin, UT-Arlington, UT-PanAm, Texas A&amp;M, LSU, OU, etc.</p>
<p>So technically, I&#8217;m not a full ADEPT 2011 class member because I&#8217;m just having 6-month internship. But&#8230; for the whole six months I have been engaged in most of the courses, trainings, and programs they have, and that&#8217;s sweeet!</p>
<p>The purpose of this post is to give a picture of the ADEPT program from my perspective (co-op student from Northeastern University). <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <span id="more-814"></span></p>
<p></p>
<h3>Quick Outlines:</h3>
<p><strong>Pros:</strong></p>
<ul>
<li>Two weeks orientation program</li>
<li>FSU courses and trainings</li>
<li>Mentorship</li>
<li>Brown bag lunches with AA Managing Directors, and VPs once a month.</li>
<li>Walk-a-Mile (1-day to 1-week experience in other departments)</li>
<li>AA travel privileges</li>
</ul>
<p><strong>Cons:</strong><br />
* I almost have no cons, but if there should be any then this might do:</p>
<ul>
<li>Accommodation for out of state students might be tricky. (Housing and Transportation)</li>
</ul>
<h3>Two Weeks Orientation Program</h3>
<p>The first two weeks of the ADEPT program is orientation, and it was full of good stuff, too good I should say.</p>
<p><span style="text-decoration: underline;"><strong>Week 1</strong></span></p>
<p><strong>Day 1</strong><br />
Meet with AA CIO, <a href="http://www.aa.com/i18n/amrcorp/corporateInformation/bios/ford.jsp">Monte Ford</a>.<br />
ADEPT program overview<br />
Lunch with our going-to-be Managers<br />
Paperworks</p>
<p><strong>Day 2</strong><br />
Flagship University (FSU &#8211; AA training center) tour<br />
<a href="http://www.crsmithmuseum.org/home.aspx">C.R. Smith Museum</a> tour (yes, AA has a museum)<br />
Lunch with ADEPT mentors<br />
ROPES course</p>
<p><strong>Day 3</strong><br />
Data centers tour<br />
Some more ADEPT program overviews</p>
<p><strong>Day 4</strong><br />
Software Development Life Cycle (SDLC) and Agile training</p>
<p><strong>Day 5</strong><br />
Introduction to AA Employee Groups<br />
Brown bag lunch with one of AA VP<br />
Tetra Map training</p>
<p><span style="text-decoration: underline;"><strong>Week 2</strong></span></p>
<p><strong>Day 1</strong><br />
Creative and Innovation training</p>
<p><strong>Day 2</strong><br />
DFW Airport &#8211; Shadow a gate agent experience</p>
<p><strong>Day 3</strong><br />
More DFW airport tour &#8211; Baggage and Ramp, Gates, Backroom<br />
Central Baggage System Tour</p>
<p><strong>Day 4</strong><br />
Brown bag lunch with another AA VP<br />
Alliance Fort Worth tour (AFW &#8211; one of AA&#8217;s maintenance and engineering base)</p>
<p><strong>Day 5</strong><br />
AA Systems Operation Center (SOC) tour, Flight Training Academy tour<br />
ADEPT 2007-2011 group lunch<br />
Report to our managers</p>
<p>Pheeew&#8230; it even took me some time to wrote all of these. In short, our first two weeks were really good as you can see, and that&#8217;s just the beginning&#8230;</p>
<h3>FSU Courses and Trainings</h3>
<p>Flagship University (FSU) is AA training center, it&#8217;s just 5-minutes drive away from the headquarters. Some of the trainings and courses we had are:</p>
<ul>
<li><a href="http://www.tetramap.com/">Tetramap</a></li>
<li>SDLC and Agile training</li>
<li>Creativity and Innovation training</li>
<li><a href="http://www.amanet.org/training/seminars/The-7-Habits-of-Highly-Effective-People-3-Day-Signature-Program.aspx?wm_crID=4656506&#038;wm_lpID=21172527&#038;wm_ctID=152&#038;wm_kwID=7238051&#038;wm_mtID=3&#038;wm_content=0&#038;wm_g_crID=5605041524&#038;wm_g_kw=7+habits+of+highly+effective+people&#038;wm_g_pcmt=&#038;wm_g_cnt=0&#038;gclid=CIiJxaq94qwCFcdgTAodrFQRsg&#038;wm_kw=7+habits+of+highly+effective+people&#038;wm_sd=1">7 Habits of Highly Effective People</a> (3-day training and this is the best!)</li>
</ul>
<h3>Mentorship</h3>
<p>Every ADEPT class member has their mentor who is the one year earlier ADEPT class member. Having a mentor means that we can ask a lot of questions we have in mind. We also have someone who can guide us and giving us advise as we get familiar with the company. For me, I have one of the best mentor, she gave me a cool airplane model for my birthday! <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<h3>Brown bag lunches with AA Managing Directors and VPs</h3>
<p>This is one of the best things that I like from the ADEPT program, we get the opportunities to have lunches with the Managing Directors and VPs every month, how cool is that! We get to know the departments where they are working in, know their experiences in the company, and get great tips and advise from them.</p>
<h3>Walk-A-Mile (WAM &#8211; 1-day to 1-week experience in other departments)</h3>
<p>AA is really a huge company with a lot of different departments and groups, even for the ITS itself! WAM gives us the chance to spent and see what the other groups are doing, and most importantly, how what they do connect with the other parts of the company (including our group). I think this is great, because it encourages us to understand more about the process in the company, and not only the group that we are working in.</p>
<h3>Travel Privileges</h3>
<p>As if everything that I&#8217;ve mentioned above are not good enough, the travel privileges seals the deal! Have you ever thought of going somewhere on any weekend? The AA travel privileges made it happen. I went to Salt Lake City for a day on Sunday because I was so curious about the Mormon Tabernacle Choir, and I just had the idea on Friday morning. I visited my families in Seattle and Houston when I thought I want to, sometimes just the day before. Every weekend you can be anywhere you want (provided the flight is not full), the possibilities are endless.</p>
<h3>Accomodation for out of state students might be tricky. (Housing and Transportation)</h3>
<p>This is a negative thing for intern like me who is not going to spent more than few months in Dallas. I was lucky to know someone who I can rent a room in his house, and also I had my sister&#8217;s car that I can borrow. But for some others, this might be a bit tricky because the public transportation system in Dallas, though I believe is good enough, is not so convenient.</p>
<h3>Conclusion</h3>
<p>Me and all the other interns agree that the ADEPT program is so underrated. We didn&#8217;t really know about this obviously great program until we were hired. AA also has a great work culture that I like from the very first beginning, most of the people are open-minded and friendly. More than that, the airlines industry is a very fascinating and fast-speed one where challenges to stay competitive and profitable are always around.</p>
<p>I know that AA is not a perfect company. I&#8217;m aware with the customer complaints around the internet, and also how the company is struggling to make profit in the recent years. Just few days ago, the company also filed for Chapter 11 bankruptcy which makes some mixed comments around.</p>
<p>But, from what I&#8217;ve seen so far, AA is always determined to be the best airline it can be, and I am proud to be part of it for the last 6 months. <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=814&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/djitz-life-journey/american-airlines-adept-2011-program-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write JavaDoc in an Instant (Part 1) &#8211; Templates for Methods</title>
		<link>http://djitz.com/guides/write-javadoc-in-an-instant-part-1-templates-for-methods/</link>
		<comments>http://djitz.com/guides/write-javadoc-in-an-instant-part-1-templates-for-methods/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 03:46:42 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javadoc]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=807</guid>
		<description><![CDATA[We all love good and commented codes, but most of us either don&#8217;t know how to write a good comment for our codes, or just plain lazy to write one. In Java, JavaDoc is pretty much the industry standard when it comes to auto-generated code tool. And as a strong believer of good software development [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/Screen-shot-2011-11-27-at-9.38.08-PM.jpg"><img src="http://djitz.com/wp-content/uploads/Screen-shot-2011-11-27-at-9.38.08-PM.jpg" alt="Write JavaDoc Example" title="Write JavaDoc Example" width="541" height="234" class="alignnone size-full wp-image-810" /></a></p>
<p>We all love good and commented codes, but most of us either don&#8217;t know how to write a good comment for our codes, or just plain lazy to write one.</p>
<p>In Java, JavaDoc is pretty much the industry standard when it comes to auto-generated code tool. And as a strong believer of good software development practice, I always put comments on my code.</p>
<p>To save time, I created this template for methods so I can always refresh myself about how to write a good JavaDoc for my code. These codes are taken from the Java SDK source codes, so talk about how the creator of the Java write their comments (no one can be more expert than them I suppose).<span id="more-807"></span></p>
<p>*The template below is a slide presentation in Google Docs, to see the code expand its view to full screen, or you can download it as PDF or PPTX.</p>
<p></p>
<p><iframe src="https://docs.google.com/presentation/embed?id=1vn8W_9VTpdrh3AtP9ts2i0U1tMPfQop7aOLVkYORXEk&#038;start=false&#038;loop=false&#038;delayms=3000" frameborder="0" width="480" height="389" allowfullscreen="true" webkitallowfullscreen="true"></iframe></p>
<p></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=807&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/write-javadoc-in-an-instant-part-1-templates-for-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Eclipse ADT, Android SDK, and setup AVD Emulator</title>
		<link>http://djitz.com/guides/how-to-install-eclipse-adt-android-sdk-and-setup-avd-emulator/</link>
		<comments>http://djitz.com/guides/how-to-install-eclipse-adt-android-sdk-and-setup-avd-emulator/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 17:05:06 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=789</guid>
		<description><![CDATA[A couple of weeks ago I was so fortunate to get the opportunity working with the Android SDK development in my job (Samsung Galaxy Tab 10.1 ). Compared with Android mobile app development using the Adobe Flex 4.5, the Android SDK may be a bit more tricky to do, so to document my experience I [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_795" class="wp-caption alignnone" style="width: 560px"><a href="http://djitz.com/wp-content/uploads/android-honeycomb-3.1b.jpg"><img src="http://djitz.com/wp-content/uploads/android-honeycomb-3.1b.jpg" alt="Android Honeycomb 3.1" title="Android Honeycomb 3.1" width="550" height="323" class="size-full wp-image-795" /></a><p class="wp-caption-text">The Android Honeycomb</p></div>
<p>A couple of weeks ago I was so fortunate to get the opportunity working with the Android SDK development in my job (Samsung Galaxy Tab 10.1 <img src='http://djitz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ). </p>
<p>Compared with Android mobile app development using the Adobe Flex 4.5, the Android SDK may be a bit more tricky to do, so to document my experience I created this blog post (and maybe some more posts in the future).</p>
<p>To start developing Android apps, we need to install the Eclipse ADT, Android SDK (obviously..), and setup the AVD.<span id="more-789"></span></p>
<blockquote><p>ADT &#8211; Android Development Tools<br />
AVD &#8211; Android Virtual Device</p></blockquote>
<p>Prerequisite:<br />
- Familiar with Eclipse IDE</p>
<h3>Steps:</h3>
<p>1. Get Eclipse (I use Eclipse 3.7 &#8211; Indigo), download from:</p>
<ul>
<li><a href="http://www.eclipse.org/downloads/packages/" target="_blank">Eclipse.org</a> or <a href="http://eclipsesource.com/en/downloads/eclipse-helios-download/" target="_blank">EclipseSource</a> (cloud download &#8211; a lot faster!!! <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> )</li>
</ul>
<p>2. Get <a href="http://developer.android.com/sdk/index.html" target="_blank">Android SDK</a>, run the installation:</p>
<ul>
<li>After the installation, run the SDK Manager</li>
</ul>
<ul>
<li> Check &#8220;Tools&#8221; and the Android version you&#8217;re going to develop.</li>
</ul>
<p>3. Install the <a href="http://developer.android.com/sdk/eclipse-adt.html#installing" target="_blank">Eclipse ADT (Android Development Tools) Plugin</a>:</p>
<ul>
<li> Run Eclipse</li>
</ul>
<ul>
<li> Click Help &gt; Install New Software</li>
</ul>
<ul>
<li> Click Add, copy the following to the Location input: https://dl-ssl.google.com/android/eclipse/</li>
</ul>
<ul>
<li>Check &#8220;Developer Tools&#8221; and follow the rest of installation wizard.</li>
</ul>
<p>4. After restarting the Eclipse, check if the ADT picks-up the SDK directory correctly:</p>
<ul>
<li> Run Eclipse</li>
</ul>
<ul>
<li> Click Windows &gt; Preferences</li>
</ul>
<ul>
<li> Click Android on the left sidebar.</li>
</ul>
<p>5. Create the emulator:</p>
<ul>
<li> Run the Eclipse.</li>
</ul>
<ul>
<li> Go to Window &gt; AVD Manager.</li>
</ul>
<ul>
<li>Click &#8220;New&#8221; button.</li>
</ul>
<ul>
<li> Fill the fields:</li>
</ul>
<blockquote><p>Name: em31<br />
Target: Android 3.1 &#8211; API Level 12<br />
SD Card size: 64 MB<br />
Snapshot: enabled<br />
Hardware:<br />
Device ram size: 768</p></blockquote>
<ul>
<li> click &#8220;Create AVD&#8221;.</li>
</ul>
<ul>
<li> The new AVD should appear in the AVD Manager, click &#8220;Start&#8221; button to run it.</li>
</ul>
<p>*It takes time to start the AVD, in my machine it takes 7 mins.</p>
<p></p>
<h3>FAQ</h3>
<p><strong>Q: Why the AVD is so sloooooooww in my computer?</strong></p>
<blockquote><p>A: There&#8217;s nothing wrong with your computer, it&#8217;s really the problem with the AVD. If you followed my steps correctly, we should&#8217;ve set the RAM size to 768MB and enabled the snapshot. Enabling the snapshot means that whenever we run the emulator, it will bypass the longer boot process. Set the option save to snapshot on the first time, but un-check it whenever we run the emulator afterward, because saving to snapshot will take significant time as well. :p</p></blockquote>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2285219071414372";
/* dj_L_Rectangle_mix_2 */
google_ad_slot = "4479753664";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=789&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/how-to-install-eclipse-adt-android-sdk-and-setup-avd-emulator/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tempat Kursus GMAT di Indonesia</title>
		<link>http://djitz.com/gmat-toefl-gre/tempat-kursus-gmat-di-indonesia/</link>
		<comments>http://djitz.com/gmat-toefl-gre/tempat-kursus-gmat-di-indonesia/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 04:01:43 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[GMAT / TOEFL / GRE]]></category>
		<category><![CDATA[US School Guide]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=750</guid>
		<description><![CDATA[Akhir-akhir ini saya mendapat banyak pertanyaan melalui email mengenai tempat kursus GMAT di kota-kota besar di Indonesia selain Jakarta. Sayangnya, tempat kursus GMAT yg saya tahu sampai sekarang hanya di Jakarta. Di blog post ini saya akan list tempat kursus GMAT yg saya ketahui, dan bila anda tahu tempat-tempat kursus lainnya, atau bila anda salah [...]]]></description>
			<content:encoded><![CDATA[<p>Akhir-akhir ini saya mendapat banyak pertanyaan melalui email mengenai tempat kursus GMAT di kota-kota besar di Indonesia selain Jakarta. Sayangnya, tempat kursus GMAT yg saya tahu sampai sekarang hanya di Jakarta.</p>
<p>Di blog post ini saya akan list tempat kursus GMAT yg saya ketahui, dan bila anda tahu tempat-tempat kursus lainnya, atau bila anda salah satu penyelenggara kursus GMAT, silahkan isi comment section di bawah atau email saya di tridjito (at) yahoo.com.<br />
<span id="more-750"></span></p>
<h5>Jakarta</h5>
<p>
<strong>Lembaga Pendidikan Sastra Mandiri / Kaplan Test Prep &#038; Admissions</strong><br />
Plaza Kelapa Gading, Ruko Inkopal<br />
Jln. Boulevard Barat Raya Blok C No 33<br />
Jakarta, Indonesia 14240<br />
Courses offered at this location:</p>
<p>SAT, GMAT, TOEFL, IELTS<br />
For inquiries or to enroll:</p>
<p>Phone: 62-21-4585-1201<br />
Fax: 62-21-4585-1179<br />
Email: directinfo@directenglish-id.com </p>
<p><strong>PT. Pacific Educom / Kaplan Test Prep &#038; Admissions<br />
</strong>World Trade Center, 10th Floor<br />
Jl. Jend. Sudirman Kav. 29-31<br />
Jakarta, Indonesia 12920<br />
Courses offered at this location:</p>
<p>SAT, GMAT, TOEFL, IELTS<br />
For inquiries or to enroll:</p>
<p>Phone: 62-21-521-1588<br />
Fax: 62-21-521-1550<br />
Email: directinfo@directenglish-id.com</p>
<p><br />
</p>
<img src="http://djitz.com/?ak_action=api_record_view&id=750&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/gmat-toefl-gre/tempat-kursus-gmat-di-indonesia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Load Test Flex Application Using JMeter</title>
		<link>http://djitz.com/guides/how-to-load-test-flex-application-using-jmeter/</link>
		<comments>http://djitz.com/guides/how-to-load-test-flex-application-using-jmeter/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 03:27:00 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[IT and Apps]]></category>
		<category><![CDATA[jmeter]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=732</guid>
		<description><![CDATA[Two weeks ago I got responsibility to load test the web application of the company where I work using JMeter. It&#8217;s not the first time I heard about JMeter, because about two years ago I was involved in a large project that demands high availability and high number of concurrent users at the same time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/logo_3d.jpg"><img src="http://djitz.com/wp-content/uploads/logo_3d.jpg" alt="" title="logo_3d" width="472" height="260" class="alignnone size-full wp-image-733" /></a></p>
<p>Two weeks ago I got responsibility to load test the web application of the company where I work using <a href="http://jakarta.apache.org/jmeter/">JMeter</a>.</p>
<p>It&#8217;s not the first time I heard about JMeter, because about two years ago I was involved in a large project that demands high availability and high number of concurrent users at the same time (talk about more than 3,000 branches nationwide).</p>
<p>However, it was my friend who was assigned to explore the capabilities of JMeter back then. I&#8217;m not sure how far he went with the load testing, and what was the problem with JMeter, but we end up utilizing <a href="http://www-01.ibm.com/software/awdtools/tester/performance/">IBM Rational Performance Tester</a>.<span id="more-732"></span></p>
<p>Unlike testing normal web application (that most likely involves HTTP standard requests such GET, POST, PUT, and DELETE), Flex application may use it&#8217;s BlazeDS web messaging to connect to the back-end server, this means it involves passing AMF binary files in the process.</p>
<p>Fortunately, JMeter has the &#8216;Recording Test&#8217; capability to the rescue and simplify our life! <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The idea is to create a proxy server that will run in the middle of the browser and the application server. This way the JMeter will record all the HTTP requests and files passed to the application server, and also their result. Sweeet!</p>
<p>So how to do that? Just follow the steps below:</p>
<h5>Steps:</h5>
<p><strong>Setup the Thread Group</strong><br />
1. Run JMeter<br />
2. Right click on Test Plan > Add > Threads (Users) > Thread Group<br />
3. Rename the Thread Group to &#8216;Load Test 1&#8242;<br />
4. Set the Number of Threads (Users) field to the number of load test user simulation you want (i.e: set to 25).<br />
5. Right click on &#8216;Load Test 1&#8242; > Add > Listener > Aggregate Graph<br />
6. Repeat step 5, this time choose Aggregate Report<br />
7. Repeat step 5, this time choose Summary Report<br />
8. Repeat step 5, this time choose View Results Tree</p>
<p><strong>Setup the HTTP Proxy Server</strong><br />
1.Right click on WorkBench > Add > Non-Test Elements > HTTP Proxy Server<br />
2. Set the port to available open port in your PC (i.e.: set to 8989)<br />
3. Check &#8216;Redirect Automatically&#8217;<br />
4. Type &#8216; .* &#8216; in the include field.<br />
5. Set Target Controller to Test Plan > Load Test 1<br />
6. Click Start to start the Proxy Server</p>
<p><strong>Setup the Browser</strong><br />
1. Run the browser, and set the connection properties to use proxy.<br />
2. Set it to localhost and the port you set above.<br />
3. Browse the Flex application and try to use it as usual.<br />
4. The JMeter should capture the HTTP request operations you made to the server.<br />
5. Press Stop on the HTTP Proxy Server to stop the recording.</p>
<p><strong>Do the Load Test</strong><br />
1. Now we have the example of HTTP request operations, click the Load Test 1 Test Plan.<br />
2. Press Ctrl+R to run the load test, you should see the green indicator on the top right that it&#8217;s running the tests.<br />
3. Check the Test Results in all four Listeners you added earlier.</p>
<p>This steps were proven working in my case and I use Apache JMeter 2.4 r961953. If they don&#8217;t then try to put some comments below. Happy load testing! <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><br />
</p>
<img src="http://djitz.com/?ak_action=api_record_view&id=732&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/how-to-load-test-flex-application-using-jmeter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning Agile (Scrum) Video Tutorials by Rally Software</title>
		<link>http://djitz.com/reviews/learning-agile-scrum-video-tutorials-by-rally-software/</link>
		<comments>http://djitz.com/reviews/learning-agile-scrum-video-tutorials-by-rally-software/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 03:23:11 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[IT and Apps]]></category>
		<category><![CDATA[scrum]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=729</guid>
		<description><![CDATA[For the past week, I&#8217;ve really into Agile software development practices, especially Scrum. So far, to learn more about Scrum, I&#8217;ve read the Scrum Primer (which I believe is still the very best brief introduction to the Scrum world), Do Better Scrum, and What Every Product Owner Should Know. If you&#8217;re interested, you might check [...]]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="345" src="http://www.youtube.com/embed/oPHWkR3jG1I" frameborder="0" allowfullscreen></iframe></p>
<p>For the past week, I&#8217;ve really into Agile software development practices, especially Scrum.</p>
<p>So far, to learn more about Scrum, I&#8217;ve read the <a href="http://scrumtraininginstitute.com/home/stream_download/scrumprimer">Scrum Primer</a> (which I believe is still the very best brief introduction to the Scrum world), <a href="http://www.scrumsense.com/resources/do-better-scrum">Do Better Scrum</a>, and <a href="http://www.scrumsense.com/resources/product-owner-manual">What Every Product Owner Should Know</a>. If you&#8217;re interested, you might check them out.<span id="more-729"></span></p>
<p>If you, however, prefer video tutorials, <a href="http://www.rallydev.com/">Rally Software</a> provides <a href="https://rally1-wiki.rallydev.com/display/rlydmos/Video+Tutorials">free Scrum video tutorials</a> on their wiki site. They&#8217;re not stellar (I would give 3.5/5 stars) but they provide good information if you want to know more about Scrum and Agile development. <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><br />
</p>
<img src="http://djitz.com/?ak_action=api_record_view&id=729&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/reviews/learning-agile-scrum-video-tutorials-by-rally-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Scrum Primer Review</title>
		<link>http://djitz.com/reviews/the-scrum-primer-review/</link>
		<comments>http://djitz.com/reviews/the-scrum-primer-review/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 03:21:18 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=722</guid>
		<description><![CDATA[Think of starting Scrum Agile Development in your team? but you&#8217;re not so sure where to start? read the Scrum Primer! It&#8217;s not a book, it&#8217;s a 22-page introduction to Scrum. It doesn&#8217;t cost anything, it&#8217;s graciously given free. It&#8217;s not a dry whitepaper, it&#8217;s an interesting information about Scrum. It explains quickly some of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/the_scrum_primer.jpg"><img src="http://djitz.com/wp-content/uploads/the_scrum_primer.jpg" alt="" title="the_scrum_primer" width="514" height="329" class="alignnone size-full wp-image-723" /></a></p>
<p>Think of starting Scrum Agile Development in your team? but you&#8217;re not so sure where to start? <a href="http://assets.scrumfoundation.com/downloads/1/scrumprimer121.pdf?1294640838">read the Scrum Primer!</a><br />
<span id="more-722"></span><br />
It&#8217;s not a book, it&#8217;s a 22-page introduction to Scrum.<br />
It doesn&#8217;t cost anything, it&#8217;s graciously given free.<br />
It&#8217;s not a dry whitepaper, it&#8217;s an interesting information about Scrum.</p>
<p>It explains quickly some of the Scrum buzz words, such as Sprint, Backlog, Burndown charts, and don&#8217;t forget, the ScrumMaster!</p>
<p>So, spend an hour or two to read it, and I guarantee you will have a lot clearer picture about Scrum. <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2285219071414372";
/* dj_L_Rectangle_mix */
google_ad_slot = "4606479639";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-2285219071414372";
/* dj_L_Rectangle_mix_2 */
google_ad_slot = "4479753664";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=722&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/reviews/the-scrum-primer-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

