<?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 &#187; Guides</title>
	<atom:link href="http://djitz.com/tag/guides/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>How to Find Candidate Key(s)</title>
		<link>http://djitz.com/neu-mscs/how-to-find-candidate-keys/</link>
		<comments>http://djitz.com/neu-mscs/how-to-find-candidate-keys/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 02:04:53 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[NEU MSCS]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=465</guid>
		<description><![CDATA[As my final exam on Database Management Course closely approaching, I think I&#8217;m a bit forced (in a good way) to write some notes on the topics I&#8217;ve learned so far. This time it&#8217;s the notes on how to find candidate key of a given relation. Lately after I started post my database notes on [...]]]></description>
			<content:encoded><![CDATA[<p>As my final exam on Database Management Course closely approaching, I think I&#8217;m a bit forced (in a good way) to write some notes on the topics I&#8217;ve learned so far. This time it&#8217;s the notes on how to find candidate key of a given relation.</p>
<p>Lately after I started post my database notes on conflict and view serializability, and BCNF and 3NF check, I see increased visitors traffic to my blog. Some visitors actually visited my blog to find how to find candidate keys of a relation. I just have the time now to write this post, hopefully it&#8217;s not really too late.</p>
<p>Enough for the introduction, get your pencil and paper, let&#8217;s find that candidate keys!</p>
<p><span id="more-465"></span></p>
<h3>Pencil and Paper? Can you just give me an App?</h3>
<p>Sure, here it is:<br />
<a href="http://www.koffeinhaltig.com/fds/kandidatenschluessel.php">http://www.koffeinhaltig.com/fds/kandidatenschluessel.php</a></p>
<p>If you don&#8217;t need to understand the process behind finding the candidate keys you can stop reading this blog post now. For those of you who still want to know how to find it manually, read on.</p>
<h3>How to find it manually</h3>
<p>Finding candidate keys is just as simple as applying some algorithm here and there. Here I post examples of different cases.</p>
<h4>First example</h4>
<p>WHOSE<br />
WH -&gt; S<br />
HOS -&gt; E</p>
<p>Steps:<br />
1. Find the attributes that are neither on the left and right side<br />
&gt; (none)</p>
<p>2. Find attributes that are only on the right side<br />
&gt; E</p>
<p>3. Find attributes that are only on the left side<br />
&gt; WHO</p>
<p>4. Combine the attributes on step 1 and 3<br />
&gt; since step 1 has no attributes, it&#8217;s just WHO</p>
<p>5. Test if the closures of attributes on step 4 are all the attributes<br />
&gt; in our case, yes it is. Because with WH we can get S, and by HOS, we can get E.<br />
So we have only one candidate key, that is WHO.</p>
<h4>Second example</h4>
<p>ABCDEFG<br />
AB -&gt; F<br />
AD -&gt; E<br />
F -&gt; G</p>
<p>Steps:<br />
1. C<br />
2. EG<br />
3. ABD<br />
4. ABCD<br />
5. The closures of ABCD is ABCDEFG, so ABCD is our candidate key this time.</p>
<h4>Third example</h4>
<p>ABCD<br />
ABC -&gt; D<br />
D -&gt; A</p>
<p>Steps:<br />
1. -<br />
2. -<br />
3. BC<br />
4. BC<br />
5. The closure of BC is only BC, we should find the relation exterior.<br />
6. Find the relation exteriors, that is the attributes not included in step 4 and step 2.<br />
&gt; in this example it is AD<br />
7. Now test the closures of attributes on step 4 + one attribute in step 6 one at a time.<br />
&gt; ABC closures are ABCD, so it is a candidate key<br />
&gt; BCD closures are ABCD, so it is also a candidate key<br />
&gt; so in this case we have two candidate keys, they are ABC and BCD.</p>
<h3>Hoahm&#8230; these are too easy, harder examples please..</h3>
<p>Allright, ready for some harder examples, here are they:</p>
<h4>Hard example #1</h4>
<p>ABCDEF<br />
DF -&gt; C<br />
BC -&gt; F<br />
E -&gt; A<br />
ABC -&gt; E</p>
<h4>Hard example #2</h4>
<p>ABCDE<br />
A -&gt; BC<br />
CD -&gt; E<br />
B -&gt; D<br />
E -&gt; A</p>
<h3>Conclusion</h3>
<p>This is not the only algorithm of finding candidate key. Another way includes to find the attributes that are on both sides (see comment of <a title="Another way to find candidate keys" href="http://djitz.com/guides/how-to-check-if-a-relation-is-in-bcnf-3nf-or-both/#comment-616" target="_blank">RandomSpectrum</a> on my other blog post to know about it). I suppose both algorithms are correct, it&#8217;s just a matter of personal preference.</p>
<p>I&#8217;m not going to post the answers for the hard examples just to make it a bit harder. To get the answers, just send an email to ck-answers@djitz.com. <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=465&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/neu-mscs/how-to-find-candidate-keys/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>djitz Java Developer Resume</title>
		<link>http://djitz.com/djitz-life-journey/djitz-java-developer-resume/</link>
		<comments>http://djitz.com/djitz-life-journey/djitz-java-developer-resume/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 18:11:03 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Djitz Life Journey]]></category>
		<category><![CDATA[NEU MSCS]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[IT and Apps]]></category>
		<category><![CDATA[job and career]]></category>

		<guid isPermaLink="false">http://djitz.com/?p=402</guid>
		<description><![CDATA[Hi all, for the whole fall semester I attended a Cooperative Education Seminars classes in my university and I&#8217;ve received a lot of useful lessons about writing a good resume. The Professor always says that your resume is the your first representation so you want to make a really good one to make sure you [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all, for the whole fall semester I attended a Cooperative Education Seminars classes in my university and I&#8217;ve received a lot of useful lessons about writing a good resume. The Professor always says that your resume is the your first representation so you want to make a really good one to make sure you will get called for interview.</p>
<p>In my last three year experiences I mostly worked as Java developer, especially Java web application developer as you can see from my resume below.</p>
<p><span id="more-402"></span></p>
<p><iframe src="https://docs.google.com/document/pub?id=1xBUa0SjJDp1A3kPzGC_2Yxk-ktUh8xP1yE49_8qvPfo&amp;embedded=true" width="550" height="850"></iframe></p>
<p>Note: The style maybe a bit messed up, click <a href="https://docs.google.com/document/d/1xBUa0SjJDp1A3kPzGC_2Yxk-ktUh8xP1yE49_8qvPfo/edit?hl=en&amp;authkey=CMr30cAJ" target="_blank">here</a> if you want to see it in Google Docs.</p>
<p>If you need an example of Java developer resume you may copy my resume style (just make sure you don&#8217;t copy everyting) and if you have critics about my resume you can write them in the comments section. <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></p>
<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=402&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/djitz-life-journey/djitz-java-developer-resume/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tips for Medtech Intern</title>
		<link>http://djitz.com/guides/tips-for-medtech-intern/</link>
		<comments>http://djitz.com/guides/tips-for-medtech-intern/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:44:52 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[clinical-division]]></category>
		<category><![CDATA[internship]]></category>
		<category><![CDATA[medical-technology]]></category>

		<guid isPermaLink="false">http://djitz.com/2008/04/28/tips-for-medtech-intern/</guid>
		<description><![CDATA[  I just had a thought to write something for the medtech intern recently. In the previous two articles, I only address tips for the clinical division students. I believe I should share some guidelines also for the interns since the world of CD and of intern are quite different. My Intern times may have [...]]]></description>
			<content:encoded><![CDATA[<p> <a href="http://djitz.com/wp-content/uploads/laboratory_work_flckr.jpg" title="Work In Laboratory"><img src="http://djitz.com/wp-content/uploads/laboratory_work_flckr.jpg" alt="Work In Laboratory" /></a></p>
<p>I just had a thought to write something for the medtech intern recently. In the previous two articles, I only address tips for the clinical division students. I believe I should share some guidelines also for the interns since the world of CD and of intern are quite different.</p>
<p>My Intern times may have past almost three years ago, but all the lessons, pain, troubles, and fun will always be fresh in my mind. Like the one year I spent in clinical division, my one year (ok, plus several days I got because I had absent and sick leaves) is paradoxically one of the best &#8220;toxic&#8221; year in my life. Think about it, what other course could have force you to travel around Philippines and mess around in one year (I had my intern in Mindanao Sanitarium and Hospital, Manila Adventist Medical Center, and Cagayan Valley Sanitarium and Hospital).</p>
<p>If there is one thing that pay all of the hardships in clinical division, it&#8217;s certainly the internship year. But be careful, it&#8217;s not a &#8220;honey and milk&#8221; year. And I hope my tips can give some insights for those who are going to intern and those who are already there as well. Let&#8217;s get going:<span id="more-8"></span></p>
<h3>Tip #1.</h3>
<h3>You Don&#8217;t Know Everything Yet, So Don&#8217;t Ever Think You Do</h3>
<p>I know, the feeling of passing the formidable one whole day medtech comprehensive exams is almost like the feeling of being accepted when you court your crush. You just can&#8217;t believe that, after all the sleepless nights, it is now over. You now then may think that you have know all what you need to know to be a good medtech. Besides, that&#8217;s what the compre exams for right? To prove that you &#8220;know everything.&#8221;</p>
<p>Think again cowboy&#8230; (and cowgirls). My first advice to those who are entering intern world, keep yourself humble all the times. Even, passing the compre in the first take doesn&#8217;t prove you know them all.</p>
<h3>Tip #2.</h3>
<h3>Respect Your Staff, Senior Interns, All Hospital Workers, and oh yeah.. Your Fellow Interns</h3>
<p>Okay, maybe this sounds like a cliche, but I just want to emphasize it, especially for those who have been more than 6 months in intern. Because it&#8217;s maybe easy to forgot this one when you are already close to the people in the hospital. You may then start to treat them like your other friends.</p>
<p>But keep in mind that though you have befriend them, you are still an intern, and at all times you should always respect them. Don&#8217;t overtease them, much worse, embarras them. Besides, your grading in the intern will be affected much with good relation with your staff and not with your perfect attendance. So woulnd&#8217;t it be good to treat them once in a while just to make sure that you keep them happy with you.</p>
<p>One more, you also should always respect your fellow interns because all of you are at the same level, so why should you think you are more special.</p>
<h3>Tip #3.</h3>
<h3>The CD Smartest Is Not The Intern Best</h3>
<p>One very interesting thing you will see in Intern is this one. You will see that your smartest batchmate (if it&#8217;s not yourself) is not always be the best in intern. In intern, it&#8217;s time for &#8220;Less Theory, More Common Sense and Real World Skills.&#8221;</p>
<p>To be honest, those CD theories aren&#8217;t much worthy in intern. Think of it this way, do you think the patient care you know the the name of the middle vein if they are in pain because you are &#8220;fishing&#8221; for it?</p>
<p>Or do your staff care if you can explain the principle of all chemical test in chemistry section if you mislabel one of the specimen?</p>
<p>I know you get my point.</p>
<h3>Tip #4.</h3>
<h3>Don&#8217;t Take It Personally, It&#8217;s Only Work</h3>
<p>Your staff just got mad at you because you had little mistake in following their instructions, and now you are in bad mood. That&#8217;s normal, nobody likes to get mad at. But don&#8217;t take it personally because they do it to shape you into a better medtech. I believe they don&#8217;t like to get mad also if they don&#8217;t need to (unless it&#8217;s their hobby).</p>
<p>Having internship is medtech&#8217;s great advantage because we have a taste of work life before we officially work. And in work, we don&#8217;t get good result by doing bloopers. Your staffs are there to train you to be a capable and skillful medtech (although sometimes you may think that they are there to exploit you). Do you think they need you to do their job? No way, you may even disturb them most of time.</p>
<p>My &#8220;favorite&#8221; teacher, Sir Eldz, always say, &#8220;They don&#8217;t need you; You need them.&#8221;</p>
<p>Be patient, learn from all your mistakes, listen to your staffs, and you will thank them later on.</p>
<h3>Tip #5.</h3>
<h3>Have Fun, Enjoy!</h3>
<p>Internship is not all toxic hours, attending &#8220;hundreds&#8221; of ER calls, or dealing with endless urinalysis tests. Regardless all the stress, internship has a lot of fun that you can experience. Sure you will need time to adapt with the staffs, senior interns, and all people around you. But like in the 4th tip of Survival&#8217;s Guide to AUP Medtech, these people around you are also fun to be with.</p>
<p>During intern, we always play bowling, billiard, and volleyball with some of the staffs when we have the chance. We joined the MAMC volleyball tournament and PAMET bowling competition together. If you are assigned in the rural, such as Mindanao, Palawan, and Cagayan Valley, your staff will gladly accompany you around to see the beautiful Philippines.</p>
<p>It&#8217;s not hard to have fun in internship, just be open to others, participate, and enjoy everything!</p>
<h3>What&#8217;s The Bottom Line?</h3>
<p>(Sorry Sir Eldz, I got to borrow one of your favorite line again.. <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> )</p>
<p>Internship life it&#8217;s not harder than the CD life, but nor it&#8217;s easier as well. It&#8217;s just different, so practically what worked in CD may not work in internship, just like what worked in pre-Clinical may not work in CD. It&#8217;s also full of fun and surprise from the day one.</p>
<p>For me, besides CD, internship is another fun part of medtech life and full of expereince that I will never forget.</p>
<p>I hope with the five tips above I can help the interns-to-be and encourage those who are facing challenges in adapting with internship life. <img src='http://djitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  If you have questions or comments, feel free to write in the comments section below, or email me.</p>
<img src="http://djitz.com/?ak_action=api_record_view&id=8&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/tips-for-medtech-intern/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>5th Tips to Survive in AUP Medtech CD</title>
		<link>http://djitz.com/guides/5th-tips-to-survive-in-aup-medtech-cd/</link>
		<comments>http://djitz.com/guides/5th-tips-to-survive-in-aup-medtech-cd/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:36:31 +0000</pubDate>
		<dc:creator>djitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[clinical-division]]></category>
		<category><![CDATA[medical-technology]]></category>

		<guid isPermaLink="false">http://djitz.com/2008/04/28/5th-tips-to-survive-in-aup-medtech-cd/</guid>
		<description><![CDATA[Hi all! Meet you again in this fifth tips to survive in the AUP Medical Technology Clinical Division life. Thank you for your interest to read what I want to share with you in this article. To all who are currently in the CD, I hope my first four tips have made you survive the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djitz.com/wp-content/uploads/prick_flckr.jpg" title="Finger Prick"><img src="http://djitz.com/wp-content/uploads/prick_flckr.jpg" alt="Finger Prick" /></a></p>
<p>Hi all! Meet you again in this fifth tips to survive in the AUP Medical Technology Clinical Division life.<br />
Thank you for your interest to read what I want to share with you in this article. To all who are currently in the CD, I hope my first four tips have made you survive the CD so far. Anyway, I realized that I have not share one of the most important tip based on my personal experience in CD.</p>
<p>In this fifth tip to survive the CD, I will talk about the mental qualification that you definitely need to have to pass the CD without getting insane, if you aren&#8217;t yet&#8230;. Hahaha! Just kidding!</p>
<p>First I want to ask a question. Have you ever wonder why you had so much hard times trying to survive in the CD? Stupid questions huh! Unless you are the direct descendant of Albert Einstein or Thomas Alfa Edison, you most probably have. And if I can give you the answer, it is this: You don&#8217;t realize or understand yet what it takes to be a Medtech CD students.<span id="more-7"></span></p>
<h3>The Medtech CD Qualifications That They Never Told You</h3>
<p>Alright, have you ever read the job offer above before? I&#8217;m sure you have not. But does it sound familiar? Well, offcourse it does! Because when you were applying for CD, you were actually applying for the job offer above my friend. Okay, I may exaggerated the qualifications a little bit, but you know they are not very far from it anyway.</p>
<p>Remember the time when you were applying for CD?<br />
If the practice hasn&#8217;t changed yet, the Medtech Department Head or any CI available will check for the credits that you have completed, your average GPA, your Major subjects grade, and all other academic requirements that you need to pass to be qualified to enter the CD.</p>
<p>Now, you are in CD already and you wonder why you, who had wonderful grades before this crazy CD life, are barely surviving in the CD classes?</p>
<p>Well, academically, yes, you are qualified for the Medtech CD. But when it comes to CD, what you needed most is actually the mental qualification. It is a lot more important than your academic qualification. Why? Because your life will be totally challenged in the CD and it&#8217;s a whole different world compared to the pre-Clinical classes times.</p>
<h3>AUP Medtech CD Is Not The Same As Pre-Clinicals</h3>
<p>One interesting fact about AUP Medtech CD is this, you can notice that those students who are academically excellent during pre-Clinical classes may not always doing good in the CD classes. And the other way around is also true. Those who are unnoticed during pre-Clinicals could have their name at the top in the exam scores written on the white board.</p>
<p>Is there something wrong here? Not really&#8230;</p>
<p>As I have told you, the life in CD is totally different compared to life in pre-Clinical. If you think you could use your study methods in the pre-Clinicals in the CD (if you ever actually study during pre-Clinicals..), well, I&#8217;m very sorry to dissapoint you by saying that it just won&#8217;t work anymore. You should change your mentality to the CD mentality.</p>
<h3>So what can you do to have the mental qualification needed in the CD life?</h3>
<p>Well, here was a simple exercise that I did&#8230;</p>
<p>In the first article, my experience in CD was not that honey and milk, especially during the first few months. One time, a thought came into me, &#8220;Probably there is something wrong with what I&#8217;m doing now.&#8221; So, I tried to write down what an ideal Medtech CD student should do on one column, and what I&#8217;m actually was doing on the next column.</p>
<p>Here is the result of what was written back then (I still keep this list until now ;D):</p>
<table id="content-table">
<tr id="content-table">
<th>Medtech Way of Life</th>
<th>My life currently</th>
</tr>
<tr>
<td>- Study though no quiz or exam on the next</td>
<td>- Study only when tomorrow will be a quiz or exam</td>
</tr>
<tr>
<td>- Prepared for quiz every meeting</td>
<td>- Hurry to review for quiz on the classroom</td>
</tr>
<tr>
<td>- Strict, Rigid, Scheduled</td>
<td>- Abstract, Elastic, Unscheduled</td>
</tr>
<tr>
<td>- Passing score is the lowest possible score</td>
<td>- Score Ninety percent or above is next to impossible</td>
</tr>
<tr>
<td>- Read extra miles during free time</td>
<td>- Read the necessary during free time if possible</td>
</tr>
<tr>
<td>- Your Medtech life has next priority to God</td>
<td>- Medtech life is next to the last priority after everything else</td>
</tr>
<tr>
<td>- You&#8217;ll be a Medtech</td>
<td>- I will be an Artist</td>
</tr>
</table>
<p>After I wrote the comparison, I was laughing. Because it really showed me that basically, I was not mentally qualified to be in CD. Even worse, I don&#8217;t even have a thought that I will be a Medtech! That&#8217;s why I had hard times trying to survive there. It&#8217;s clear to me that I should change my actions and believe, especially the last item, to be as close as possible to the Medtech way of life if I want to pass this cruel CD life.</p>
<p>It was not easy though, and I was not able to change them instantly. But at least now I know what are the things that I should try to change to perform better in CD classes.</p>
<h3>So What Should I Do?</h3>
<p>Now, I advise you to take pen and write in your notebook the comparison table similar with what I had. Complete the right column with your own answer because yours may not as pathetic as what I had. Try also to add some other more ideal student Medtech CD way of life that you could thought of.</p>
<p>Try to make fun of it, yet keep the right column honest so you will get the clear difference of the two columns.</p>
<p>This method has worked effectively for me and I know it would work as effectively for you. After knowing the necessary actions that you should take, surely your performance will start to get better and better. It probably doesn&#8217;t mean that everything will become easy, but you will know how you should change your study habit and personal believe to get better scores. You will find that surviving in the CD is not that impossible after all&#8230;</p>
<h3>Closing Words</h3>
<p>Allright, that&#8217;s it for the fifth tip to survive in the Medtech CD life. I hope it could help you to pass the seemingly impossible Clinical Division with higher and higher scores each day. I know this tip is not perfect, so if you have any comments or want to share something about this article, please put your comment in the comment form below and submit it.</p>
<p>Also if you find my articles are useful, please show your thanks by putting your comments here or write an email to me (tridjito(/at)yahoo(/dot)com) if you don&#8217;t like others to read your comments. Nothing encourage me more than knowing that I can be a help for you.</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></p>
<img src="http://djitz.com/?ak_action=api_record_view&id=7&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://djitz.com/guides/5th-tips-to-survive-in-aup-medtech-cd/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

