<?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>Computer with Sir Rod</title>
	<atom:link href="http://www.eregia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eregia.com</link>
	<description>Java Programming and Animation in a Flash!</description>
	<lastBuildDate>Sun, 29 Aug 2010 07:15:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Photography and Video Production</title>
		<link>http://www.eregia.com/2010/08/29/photography-and-video-production/</link>
		<comments>http://www.eregia.com/2010/08/29/photography-and-video-production/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 07:08:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ETC]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Video Production]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=73</guid>
		<description><![CDATA[At Ateneo de Iloilo Media Club just had a lecture with photography and video production. Just the basic techniques, but very helpful to the students when choosing the right point of view when capturing a picture.
As per the students&#8217; request, I uploaded the presentation I used, with the credit to TekHigh, the school&#8217;s official publisher [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.eregia.com/" target="_blank">Ateneo de Iloilo</a> Media Club just had a lecture with photography and video production. Just the basic techniques, but very helpful to the students when choosing the right point of view when capturing a picture.</p>
<p>As per the students&#8217; request, I uploaded the presentation I used, with the credit to TekHigh, the school&#8217;s official publisher of the Computer books.</p>
<p>You may download the presentation <a href="http://www.eregia.com/wp-content/uploads/VIDEO.ppt" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/08/29/photography-and-video-production/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sample Java Program</title>
		<link>http://www.eregia.com/2010/08/24/sample-java-program/</link>
		<comments>http://www.eregia.com/2010/08/24/sample-java-program/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 14:13:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Programming]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=69</guid>
		<description><![CDATA[The following codes  is a Java program that will ask for two numbers and display their sum. It will then decide on if the sum is greater than or equal to 20, or not
*****
import java.io.*;
public class Decision{                                                   // defines the class &#8220;Decision&#8221;
public static void main(String[] args){
BufferedReader dataIn=
new BufferedReader(new InputStreamReader(System.in));
int x=0, y=0, sum=0;                                   //starts [...]]]></description>
			<content:encoded><![CDATA[<p>The following codes  is a Java program that will ask for two numbers and display their sum. It will then decide on if the sum is greater than or equal to 20, or not</p>
<p>*****</p>
<p>import java.io.*;</p>
<p>public class Decision{                                                   // defines the class &#8220;Decision&#8221;</p>
<p>public static void main(String[] args){</p>
<p>BufferedReader dataIn=</p>
<p>new BufferedReader(new InputStreamReader(System.in));</p>
<p>int x=0, y=0, sum=0;                                   //starts the variables x, y and sum</p>
<p>String Str1, Str2;</p>
<p>try{</p>
<p>System.out.print(&#8221;Enter 1st number: &#8220;);  // reads</p>
<p>Str1=dataIn.readLine();                                    // first</p>
<p>x=Integer.parseInt(Str1);                                  // number</p>
<p>System.out.print(&#8221;Enter 2nd number: &#8220;);             // reads</p>
<p>Str2=dataIn.readLine();                                    // second</p>
<p>y=Integer.parseInt(Str2);                                  // number</p>
<p>}</p>
<p>catch(Exception e){</p>
<p>System.out.print(&#8221;Error!&#8221;);</p>
<p>}</p>
<p>sum=x+y;                                                 // gives sum the value of x added to y</p>
<p>System.out.print(&#8221;The sum is &#8220;);                 // prints out &#8220;The sum is &#8221;</p>
<p>System.out.println(sum);                // prints out the value of the sum</p>
<p>if (sum &gt;= 20){</p>
<p>System.out.println(&#8221;It is greater than or equal to 20&#8243;);     // prints out if sum &gt;= 20</p>
<p>}</p>
<p>else {</p>
<p>System.out.println(&#8221;It is less than 20&#8243;);                           // prints out if sum &lt; 20</p>
<p>}</p>
<p>} }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/08/24/sample-java-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer IV Pointers &#8211; First Grading Exam</title>
		<link>http://www.eregia.com/2010/08/13/computer-iv-pointers-first-grading-exam/</link>
		<comments>http://www.eregia.com/2010/08/13/computer-iv-pointers-first-grading-exam/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 04:12:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[Computer IV]]></category>
		<category><![CDATA[Pointers]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=66</guid>
		<description><![CDATA[Computer IV Pointers &#8211; First Grading Exam:
Java Operators, 20 items, 20 points
Number Systems, 10 items, 20 points
Machine Language, 4 items, 20 points
The Ten Commandments of Computer Ethics, 3 items, 15 points
Circuits, 1 item, 15 points
Flowcharts,1 item, 20 points
Good Luck!  x^_^
]]></description>
			<content:encoded><![CDATA[<p>Computer IV Pointers &#8211; First Grading Exam:</p>
<p>Java Operators, 20 items, 20 points</p>
<p>Number Systems, 10 items, 20 points</p>
<p>Machine Language, 4 items, 20 points</p>
<p>The Ten Commandments of Computer Ethics, 3 items, 15 points</p>
<p>Circuits, 1 item, 15 points</p>
<p>Flowcharts,1 item, 20 points</p>
<p>Good Luck!  x^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/08/13/computer-iv-pointers-first-grading-exam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer II Pointers &#8211; First Grading Exam</title>
		<link>http://www.eregia.com/2010/08/13/computer-ii-pointers-first-grading-exam/</link>
		<comments>http://www.eregia.com/2010/08/13/computer-ii-pointers-first-grading-exam/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 04:05:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Animation in a Flash!]]></category>
		<category><![CDATA[Computer II]]></category>
		<category><![CDATA[Pointers]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=63</guid>
		<description><![CDATA[Computer II Pointers &#8211; First Grading Exam:
Lesson 1, Animation Defined
Lesson 2, Flash Interface and Tools
Different Views and Perspectives
Distribution Ethics and Movie Ratings
The Ten Commandments of Computer Ethics
Good Luck!  x^_^
]]></description>
			<content:encoded><![CDATA[<p>Computer II Pointers &#8211; First Grading Exam:</p>
<p>Lesson 1, Animation Defined</p>
<p>Lesson 2, Flash Interface and Tools</p>
<p>Different Views and Perspectives</p>
<p>Distribution Ethics and Movie Ratings</p>
<p>The Ten Commandments of Computer Ethics</p>
<p>Good Luck!  x^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/08/13/computer-ii-pointers-first-grading-exam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Earth Day!</title>
		<link>http://www.eregia.com/2010/04/21/happy-earth-day/</link>
		<comments>http://www.eregia.com/2010/04/21/happy-earth-day/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 00:21:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ETC]]></category>
		<category><![CDATA[Earth Day]]></category>
		<category><![CDATA[Human Side]]></category>
		<category><![CDATA[Humanity]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=60</guid>
		<description><![CDATA[Today is Earth Day! Be sure to love Mother Nature more!
For more details, visit The Human Side of Technology&#8217;s Earth Day post.
]]></description>
			<content:encoded><![CDATA[<p>Today is Earth Day! Be sure to love Mother Nature more!</p>

<a href="http://www.eregia.com/wp-content/gallery/earth-day/earth_day.jpg" title="" class="shutterset_singlepic219" >
	<img class="ngg-singlepic" src="http://www.eregia.com/wp-content/gallery/cache/219__320x240_earth_day.jpg" alt="earth_day" title="earth_day" />
</a>

<p>For more details, visit <a title="Earth Day" href="http://rodolfojreregia.blogspot.com/2010/04/happy-earth-day.html" target="_blank">The Human Side of Technology&#8217;s Earth Day</a> post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/04/21/happy-earth-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Blogger&#8217;s Code of Ethics</title>
		<link>http://www.eregia.com/2010/04/15/a-bloggers-code-of-ethics/</link>
		<comments>http://www.eregia.com/2010/04/15/a-bloggers-code-of-ethics/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 03:09:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ETC]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer Ethics]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[Ten Commandments]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=57</guid>
		<description><![CDATA[Heyya!
Just made a post on my other blog, The Human Side of Technology. It&#8217;s titled A Blogger&#8217;s Code of Ethics. If you have time, read it. Here the complete address: http://rodolfojreregia.blogspot.com/2010/04/bloggers-code-of-ethics.html
]]></description>
			<content:encoded><![CDATA[<p>Heyya!</p>
<p>Just made a post on my other blog,<a title="The Human Side of Technology" href="http://rodolfojreregia.blogspot.com/" target="_blank"> The Human Side of Technology</a>. It&#8217;s titled <a title="a blogger's code of ethics" href="http://rodolfojreregia.blogspot.com/2010/04/bloggers-code-of-ethics.html" target="_blank">A Blogger&#8217;s Code of Ethics</a>. If you have time, read it. Here the complete address: <a title="a blogger's code of ethics" href="http://rodolfojreregia.blogspot.com/2010/04/bloggers-code-of-ethics.html" target="_blank">http://rodolfojreregia.blogspot.com/2010/04/bloggers-code-of-ethics.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2010/04/15/a-bloggers-code-of-ethics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ABS-CBN NewsCasting Competition</title>
		<link>http://www.eregia.com/2009/09/18/abs-cbn-newscasting-competition/</link>
		<comments>http://www.eregia.com/2009/09/18/abs-cbn-newscasting-competition/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 03:17:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ETC]]></category>
		<category><![CDATA[ABS-CBN]]></category>
		<category><![CDATA[ABS-CBN Newscasting Competition]]></category>
		<category><![CDATA[Ateneo de Iloilo]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Newscasting]]></category>
		<category><![CDATA[Newscasting Competition]]></category>
		<category><![CDATA[Santa Maria Catholic School]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=38</guid>
		<description><![CDATA[Last September 12, 2009, Abs-CBN held a newscasting competition at SM City Iloilo Activity Center. College, High School and Elementary students compete with the English, Filipino and Hiligaynon category.
Our three  High School contestants, namely Alyanna, EJ and Aezel Jade, did their best on the three categories. And Ateneo de Iloilo won the championship on the Filipino [...]]]></description>
			<content:encoded><![CDATA[<p>Last September 12, 2009, Abs-CBN held a newscasting competition at SM City Iloilo Activity Center. College, High School and Elementary students compete with the English, Filipino and Hiligaynon category.</p>
<p>Our three  High School contestants, namely Alyanna, EJ and Aezel Jade, did their best on the three categories. And Ateneo de Iloilo won the championship on the Filipino category, with Aezel holding our shool flag up high.</p>
<p>Go Ateneo!</p>
<p>Here are some pictures we had:</p>

<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7369.jpg" title="" class="shutterset_singlepic147" >
	<img class="ngg-singlepic ngg-center" src="http://www.eregia.com/wp-content/gallery/cache/147__320x240_dscf7369.jpg" alt="dscf7369" title="dscf7369" />
</a>

<p><span id="more-38"></span></p>

<div class="ngg-galleryoverview" id="ngg-gallery-3-38">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.eregia.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7369.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7369" alt="dscf7369" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7369.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-148" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7370.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7370" alt="dscf7370" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7370.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-149" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7371.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7371" alt="dscf7371" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7371.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-150" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7372.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7372" alt="dscf7372" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7372.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-151" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7376.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7376" alt="dscf7376" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7376.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-152" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7377.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7377" alt="dscf7377" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7377.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-153" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7378.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7378" alt="dscf7378" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7378.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-154" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7379.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7379" alt="dscf7379" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7379.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7380.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7380" alt="dscf7380" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7380.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7381.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7381" alt="dscf7381" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7381.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7382.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7382" alt="dscf7382" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7382.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-158" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7383.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7383" alt="dscf7383" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7383.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7384.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7384" alt="dscf7384" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7384.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7385.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7385" alt="dscf7385" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7385.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/dscf7386.jpg" title=" " class="shutterset_abs-cbn-newscasting-competition" >
				<img title="dscf7386" alt="dscf7386" src="http://www.eregia.com/wp-content/gallery/abs-cbn-newscasting-competition/thumbs/thumbs_dscf7386.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2009/09/18/abs-cbn-newscasting-competition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ateneo de Iloilo Immersion</title>
		<link>http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/</link>
		<comments>http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 12:33:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ETC]]></category>
		<category><![CDATA[Ateneo de Iloilo]]></category>
		<category><![CDATA[Iloilo]]></category>
		<category><![CDATA[Immersion]]></category>
		<category><![CDATA[Maasin]]></category>
		<category><![CDATA[Outreach]]></category>
		<category><![CDATA[Santa Maria Catholic School]]></category>
		<category><![CDATA[Sinubsuban]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=31</guid>
		<description><![CDATA[Pictures I took during the Immersion for the third year students of Ateneo de Iloilo Santa Maria Catholic School.

]]></description>
			<content:encoded><![CDATA[<p>Pictures I took during the Immersion for the third year students of Ateneo de Iloilo Santa Maria Catholic School.</p>

<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301819.jpg" title="" class="shutterset_singlepic71" >
	<img class="ngg-singlepic ngg-center" src="http://www.eregia.com/wp-content/gallery/cache/71__320x240_s6301819.jpg" alt="Ateneo de Iloilo Immersion" title="Ateneo de Iloilo Immersion" />
</a>

<p><span id="more-31"></span></p>

<div class="ngg-galleryoverview" id="ngg-gallery-2-31">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.eregia.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=2&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301756.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301756.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301757.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301757.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301758.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301758.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301759.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301759.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-30" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301760.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301760.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-31" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301761.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301761.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301762.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301762.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301763.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301763.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301764.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301764.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301765.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301765.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301766.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301766.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301767.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301767.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301768.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301768.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301769.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301769.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301770.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301770.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301771.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301771.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301772.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301772.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301773.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301773.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301774.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301774.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.eregia.com/wp-content/gallery/immersion/s6301775.jpg" title=" " class="shutterset_immersion" >
				<img title="&lt;KENOX S630  / Samsung S630&gt;" alt="&lt;KENOX S630  / Samsung S630&gt;" src="http://www.eregia.com/wp-content/gallery/immersion/thumbs/thumbs_s6301775.jpg" width="100" height="75" />
			</a>
		</div>
	</div>
	 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=2">2</a><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=3">3</a><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=4">4</a><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=5">5</a><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=6">6</a><a class="page-numbers" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=7">7</a><a class="next" id="ngg-next-2" href="http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/?nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2009/09/05/ateneo-de-iloilo-immersion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ten Commandments of Computer Ethics</title>
		<link>http://www.eregia.com/2009/07/27/the-ten-commandments-of-computer-ethics/</link>
		<comments>http://www.eregia.com/2009/07/27/the-ten-commandments-of-computer-ethics/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 08:05:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Animation in a Flash!]]></category>
		<category><![CDATA[IT Project Management]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer Ethics]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[Ten Commandments]]></category>

		<guid isPermaLink="false">http://www.eregia.com/?p=16</guid>
		<description><![CDATA[The following are the Ten Commandments of Computer Ethics as adapted from the Computer Ethics Institute.
Commandment:  an instruction; a requirement
Ethics:  a code of conduct; how a person should live.
1.) You shall not use a computer to harm other people.
Invading the privacy of individuals
2.) You shall not interfere with other people&#8217;s computer work.
Degrading or disrupting equipment, [...]]]></description>
			<content:encoded><![CDATA[<p>The following are the <strong>Ten Commandments of Computer Ethics</strong> as adapted from the <strong>Computer Ethics Institute</strong>.</p>
<p><em>Commandment</em>:  an instruction; a requirement<br />
<em>Ethics</em>:  a code of conduct; how a person should live.</p>
<p><strong>1.) You shall not use a computer to harm other people.</strong><br />
Invading the privacy of individuals</p>
<p><strong>2.) You shall not interfere with other people&#8217;s computer work.</strong><br />
Degrading or disrupting equipment, software, or system performance.<br />
Using resources to interfere with the proper operation of any computer, or destroy data.</p>
<p><strong>3.) You shall not snoop around in other people&#8217;s computer files.</strong><br />
Using an account owned by another user, or allowing another user to access your account.  (Any problems which arise from the misuse of a user’s password will be that user’s responsibility.)<br />
Invading the privacy of individuals</p>
<p><strong>4.) You shall not use a computer to steal.</strong><br />
Using resources in any manner that violates Board policy, federal, state, or local law including unauthorized copying or transmission of software.</p>
<p><strong>5.) You  shall not use a computer to bear false witness.</strong><br />
Initiating or forwarding “chain” letters.<br />
Downloading, storing printing, or distributing files or messages that are profane, obscene, threatening, or that use language that offends or tends to degrade others.<br />
Unproven rumors (e.g. free coca cola)</p>
<p><strong>6.) You shall not copy or use proprietary software for which you have not paid.</strong><br />
Using resources in any manner that violates the law including unauthorized copying or transmission of software.</p>
<p><strong>7.) You shall not use other people&#8217;s computer resources without authorization or proper compensation.<br />
</strong>Using information obtained through network and computer resources without giving proper credit to the source (plagiarism).</p>
<p><strong>8.) You shall not appropriate other people&#8217;s intellectual output.</strong><br />
Posting personal communication without the original author’s consent.<br />
Using information obtained through network and computer resources without giving proper credit to the source (plagiarism).</p>
<p><strong>9.) You shall think about the social consequences of the program you are writing or the system you are designing.</strong><br />
Downloading, storing, printing, or distributing files or messages that are profane, obscene, threatening, or that use language that offends or tends to degrade others.</p>
<p><strong>10.) You shall always use a computer in ways that show consideration and respect for your fellow humans.</strong><br />
Downloading, storing, printing, or distributing files or messages that contain information considered dangerous to the public at large.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eregia.com/2009/07/27/the-ten-commandments-of-computer-ethics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
