<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.1.2" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Student Chronicles</title>
	<link>http://student.batangyagit.com</link>
	<description>My story. My Journey. My life.</description>
	<pubDate>Tue, 03 Feb 2009 07:37:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/StudentChronicles" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>File Manipulation</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/C4mUobHhikw/</link>
		<comments>http://student.batangyagit.com/file-manipulation/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 07:37:01 +0000</pubDate>
		<dc:creator />
		
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/file-manipulation/</guid>
		<description><![CDATA[/*************************************************************************/
/* Description : This program performs several file system operations    */
/*               like displaying contents of file, renaming, deleting and*/
/*               copying of files.                                       */
/*************************************************************************/
#include &#60;iostream&#62;
#include &#60;fstream&#62;
using namespace std;
bool fileValid(char filename[]);
bool fexists(char filename[]);
void displayFile(char *filename);
void renameFile(char *filename, char *newName);
void copyFile(char *filename, char *newName);
void deleteFile(char *filename);
/*************************************************************************/
/* Purpose      : Displays the menu and asks for the user input          */
/* [...]]]></description>
			<content:encoded><![CDATA[<p>/*************************************************************************/<br />
/* Description : This program performs several file system operations    */<br />
/*               like displaying contents of file, renaming, deleting and*/<br />
/*               copying of files.                                       */<br />
/*************************************************************************/</p>
<p>#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;</p>
<p>using namespace std;</p>
<p>bool fileValid(char filename[]);<br />
bool fexists(char filename[]);<br />
void displayFile(char *filename);<br />
void renameFile(char *filename, char *newName);<br />
void copyFile(char *filename, char *newName);<br />
void deleteFile(char *filename);</p>
<p>/*************************************************************************/<br />
/* Purpose      : Displays the menu and asks for the user input          */<br />
/* Parameters   : none                                                   */<br />
/* Return value : none                                                   */<br />
/*************************************************************************/<br />
void main() {<br />
int input = 0;</p>
<p>char filename[256], filename2[256];</p>
<p>do<br />
{<br />
cout &lt;&lt; &#8220;\n\n\n&#8221;;<br />
cout &lt;&lt; &#8220;[1] Display File&#8221; &lt;&lt; endl;<br />
cout &lt;&lt; &#8220;[2] Rename File&#8221; &lt;&lt; endl;<br />
cout &lt;&lt; &#8220;[3] Copy File&#8221; &lt;&lt; endl;<br />
cout &lt;&lt; &#8220;[4] Delete File&#8221; &lt;&lt; endl;<br />
cout &lt;&lt; &#8220;[0] Exit&#8221; &lt;&lt; endl &lt;&lt; endl &lt;&lt; endl;<br />
cout &lt;&lt; &#8220;Command &gt;&gt; &#8220;;<br />
cin &gt;&gt; input;</p>
<p>switch (input)<br />
{<br />
case 1:<br />
cout &lt;&lt; &#8220;[ VIEW ] Enter filename: &#8220;;<br />
cin &gt;&gt; filename;<br />
displayFile(filename);    // displays the contents of the file<br />
break;<br />
case 2:<br />
cout &lt;&lt; &#8220;[ RENAME ] Enter filename: &#8220;;<br />
cin &gt;&gt; filename;<br />
cout &lt;&lt; &#8220;[ RENAME ] Enter new filename: &#8220;;<br />
cin &gt;&gt; filename2;<br />
renameFile(filename, filename2);    // renames the file<br />
break;<br />
case 3:<br />
cout &lt;&lt; &#8220;[ COPY ] Enter filename: &#8220;;<br />
cin &gt;&gt; filename;<br />
cout &lt;&lt; &#8220;[ COPY ] Enter new filename: &#8220;;<br />
cin &gt;&gt; filename2;<br />
copyFile(filename, filename2);    // copies the file<br />
break;<br />
case 4:<br />
cout &lt;&lt; &#8220;[ DELETE ] Enter filename: &#8220;;<br />
cin &gt;&gt; filename;<br />
deleteFile(filename);    // removes the file<br />
break;<br />
default:<br />
system(&#8221;exit&#8221;);<br />
}<br />
} while (input &lt; 5 &amp;&amp; input &gt; 0);<br />
}</p>
<p>/*************************************************************************/<br />
/* Purpose      : Checks if the filename is valid (.txt)                 */<br />
/* Parameters   : filename                                               */<br />
/* Return value : boolean, true if file is valid, false if not           */<br />
/*************************************************************************/<br />
bool fileValid(char filename[])<br />
{<br />
if( strcmp(&#8221;.txt&#8221;, strrchr(filename, &#8216;.&#8217;)) == 0)<br />
return true;<br />
else<br />
return false;<br />
}</p>
<p>/*************************************************************************/<br />
/* Purpose      : Checks if the file exists.                             */<br />
/* Parameters   : filename                                               */<br />
/* Return value : boolean, true if file exists, false if not             */<br />
/*************************************************************************/<br />
bool fexists(char filename[])<br />
{<br />
ifstream ifile(filename);<br />
return ifile;<br />
}</p>
<p>/*************************************************************************/<br />
/* Purpose      : Displays the contents of a file.                       */<br />
/* Parameters   : filename                                               */<br />
/* Return value : none                                                   */<br />
/*************************************************************************/<br />
void displayFile(char *filename)<br />
{<br />
char command[256];<br />
if( !fileValid(filename) )<br />
cout &lt;&lt; &#8220;File type not supported.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else if ( !fexists(filename) )<br />
cout &lt;&lt; &#8220;File does not exist.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else {<br />
cout &lt;&lt; &#8220;\n\n&#8221;;<br />
strcpy(command, &#8220;type &#8220;);<br />
strcat(command, filename);<br />
system(command);<br />
}<br />
}</p>
<p>/*************************************************************************/<br />
/* Purpose      : Renames a file.                                        */<br />
/* Parameters   : filename - the filename to be renamed                  */<br />
/*                newName  - the new filename                            */<br />
/* Return value : none                                                   */<br />
/*************************************************************************/<br />
void renameFile(char *filename, char *newName)<br />
{<br />
char command[256];<br />
if( !fileValid(filename) )<br />
cout &lt;&lt; &#8220;File type not supported.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else if ( !fexists(filename) )<br />
cout &lt;&lt; &#8220;File does not exist.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else if ( !fexists(newName) )<br />
cout &lt;&lt; &#8220;File already exists.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else {<br />
strcpy(command, &#8220;ren &#8220;);<br />
strcat(command, filename);<br />
strcat(command, &#8221; &#8220;);<br />
strcat(command, newName);<br />
system(command);<br />
}<br />
}</p>
<p>/*************************************************************************/<br />
/* Purpose      : Copies a file to a desired filename                    */<br />
/* Parameters   : filename - the filename to be copied                   */<br />
/*                newName  - the target filename                         */<br />
/* Return value : none                                                   */<br />
/*************************************************************************/<br />
void copyFile(char *filename, char *newName)<br />
{<br />
char command[256];<br />
if( !fileValid(filename) )<br />
cout &lt;&lt; &#8220;File type not supported.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else if ( !fexists(filename) )<br />
cout &lt;&lt; &#8220;File does not exist.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else {<br />
strcpy(command, &#8220;copy &#8220;);<br />
strcat(command, filename);<br />
strcat(command, &#8221; &#8220;);<br />
strcat(command, newName);<br />
system(command);<br />
}<br />
}<br />
/*************************************************************************/<br />
/* Purpose      : Removes a file from the file system                    */<br />
/* Parameters   : filename - the filename to be deleted                  */<br />
/* Return value : none                                                   */<br />
/*************************************************************************/<br />
void deleteFile(char *filename)<br />
{<br />
char command[256];<br />
if( !fileValid(filename) )<br />
cout &lt;&lt; &#8220;File type not supported.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else if ( !fexists(filename) )<br />
cout &lt;&lt; &#8220;File does not exist.&#8221; &lt;&lt; endl &lt;&lt; endl;<br />
else {<br />
strcpy(command, &#8220;del &#8220;);<br />
strcat(command, filename);<br />
system(command);<br />
}<br />
}</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=s4SNFcvL"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=2rU7JlLk"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=vHhdYK0W"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=vHhdYK0W" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/C4mUobHhikw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/file-manipulation/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/file-manipulation/</feedburner:origLink></item>
		<item>
		<title>I’m loaded with work</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/YgpFZWtxyag/</link>
		<comments>http://student.batangyagit.com/im-loaded-with-work/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 15:33:48 +0000</pubDate>
		<dc:creator />
		
		<category><![CDATA[Projects and Requirements]]></category>

		<category><![CDATA[What a day]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/im-loaded-with-work/</guid>
		<description><![CDATA[Yes. I&#8217;m busy these days. I&#8217;m over loaded with work.  I&#8217;m working on several ONLINE and OFFLINE projects of the moment.  I have lots of activities to attend and manage.
I&#8217;m waiting for my Christmas Vacation to do away with these stuff. Hahay.
]]></description>
			<content:encoded><![CDATA[<p>Yes. I&#8217;m busy these days. I&#8217;m over loaded with work.  I&#8217;m working on several ONLINE and OFFLINE projects of the moment.  I have lots of activities to attend and manage.</p>
<p>I&#8217;m waiting for my Christmas Vacation to do away with these stuff. Hahay.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=FDB2UqpT"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=fPRsslcV"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=wBMHndqa"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=wBMHndqa" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/YgpFZWtxyag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/im-loaded-with-work/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/im-loaded-with-work/</feedburner:origLink></item>
		<item>
		<title>Our class is similar to a seminar session</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/eZ6Qj4pOVQw/</link>
		<comments>http://student.batangyagit.com/our-class-is-similar-to-a-seminar-session/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 03:30:21 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[Class Activity]]></category>

		<category><![CDATA[Teachers]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/our-class-is-similar-to-a-seminar-session/</guid>
		<description><![CDATA[It seems weird that our class’ ambiance is similar to a seminar’s ambiance.  Projector on. Laptops on. Handout on. Voice Over on.  It&#8217;s like hearing Microsoft Sam reading the display on the powerpoint presentation.  This routine goes on for the whole semester.  Half of our day will be trashed with the [...]]]></description>
			<content:encoded><![CDATA[<p>It seems weird that our class’ ambiance is similar to a seminar’s ambiance.  Projector on. Laptops on. Handout on. Voice Over on.  It&#8217;s like hearing Microsoft Sam reading the display on the powerpoint presentation.  This routine goes on for the whole semester.  Half of our day will be trashed with the teacher.</p>
<p>Yeah! You got it right. Voice Over on.  Seems like the teacher is not giving any relevant discussion about the topic. <em>I read my notes, you listen</em>.</p>
<p>I’m just hoping we could get something from his readings.</p>
<p>Better study. Self study. Yes study.</p>
<p>Oh God. The teacher rants about our soldering skills. What a shallow basis for checking a project. We’re supposed to make designs rather than getting conscious on our project’s aesthetics.  We’re not even here to sell our projects.  Why give such a big fuss about it eh?</p>
<p>Miss B, why have you forsaken us? Lead us not into the monstrous boredom.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=Qk9lqzyR"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=ATyRDdf1"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=lAVdGmTl"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=lAVdGmTl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/eZ6Qj4pOVQw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/our-class-is-similar-to-a-seminar-session/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/our-class-is-similar-to-a-seminar-session/</feedburner:origLink></item>
		<item>
		<title>First week of my last semester</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/976z02i_hWQ/</link>
		<comments>http://student.batangyagit.com/first-week-of-my-last-semester/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 16:48:55 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[What a day]]></category>

		<category><![CDATA[Teachers]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/first-week-of-my-last-semester/</guid>
		<description><![CDATA[I missed my first day of class because i was busy bumming in Manila. But missing the first meeting is not a big deal any way.  In the first place, I was not enrolled yet.
The Ateneo Finanace Office charged me an extra hundred fee for my late enrollment. Great! My schedules were reserved few weeks [...]]]></description>
			<content:encoded><![CDATA[<p>I missed my first day of class because i was busy bumming in Manila. But missing the first meeting is not a big deal any way.  In the first place, I was not enrolled yet.</p>
<p>The Ateneo Finanace Office charged me an extra hundred fee for my late enrollment. Great! My schedules were reserved few weeks before but still, they&#8217;re charging me for the late enrollment.</p>
<p>The first week in class was not bad at all.  I only had <strike>two</strike> one class last Thursday. I missed the first class because I slept in our office. It was too late that I realized that I already missed my first class in the afternoon.  Tuesday and Thursday scheds are the best sched of the week.  I have few subjects and a lot of time to b<strike>um around the campus</strike> do my extra school works.</p>
<p>The second class last Thursday was Philosophy.  Great! The teacher requires us all to buy a copy of <strike>his</strike> our book. No photocopying. Everyone is required to buy that PhP 195.00  poorly designed paperback book. He&#8217;ll be checking our books by the end of the semester.  If I was not mistaken, I heard that he&#8217;s going to check the book because he wants to give his personal dedication to the people who bought his book. Yes, it&#8217;s his book. Another shameless self-promotion. Is he the cousin of my other teacher?</p>
<p>Since the other teacher was mentioned, the other teacher is again promoting his self creations.  One of these is his new blog which according to him will contain the notes he&#8217;ll be giving us. I&#8217;m wondering if he&#8217;s doing this to help us or just to promote and drive traffic for his blog.  He might even beat the marketing that I do for <a href="http://www.batangyagit.com/2007/11/review-batangyagit-blogs-and-get-chance.html" title="Batang Yagit $150 Review Gimik">Batang Yagit $150 Review Gimik</a>, <a href="http://prcboardexamresults.com" title="Civil Engineering Board Exam Results">Civil Engineering Board Exam Results</a>, <a href="http://www.davaohotspots.com" title="Wifi in Davao">Wifi in Davao</a> and <a href="http://www.dcnhs.edu.ph">DCNHS</a>.</p>
<p>Anyway, the real thing will be on Monday.  The formal start of classes. I&#8217;m just hoping everything will be fine.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=62eworGW"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=8n5bxeWI"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=joGx6IFK"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=joGx6IFK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/976z02i_hWQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/first-week-of-my-last-semester/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/first-week-of-my-last-semester/</feedburner:origLink></item>
		<item>
		<title>School’s not over yet</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/VNEFZ8wanow/</link>
		<comments>http://student.batangyagit.com/schools-not-over-yet/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 02:28:05 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[What a day]]></category>

		<category><![CDATA[Kalasag]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/10/23/schools-not-over-yet/</guid>
		<description><![CDATA[I thought after finishing the project which my group mates (me? eh.)  were working on, everything would be ok.  But it&#8217;s not the case.   I&#8217;ll be staying in school for the whole week.  We got loads of stuff to work on with Kalasag, Awitenista and my Scholarship.
For Kalasag, we&#8217;ll start [...]]]></description>
			<content:encoded><![CDATA[<p>I thought after finishing the project which my group mates (me? eh.)  were working on, everything would be ok.  But it&#8217;s not the case.   I&#8217;ll be staying in school for the whole week.  We got loads of stuff to work on with Kalasag, Awitenista and my Scholarship.</p>
<p>For Kalasag, we&#8217;ll start working on the yearbook.  Some people from Cover and Pages in Manila will come to Ateneo to work on some designs we need for the yearbook.   We&#8217;re having some trouble with yearbook finances.  It seems we have to adjust the contract we made, only if the press would allow us to do modifications with the contract.  The materials are not even ready yet.  We&#8217;re still waiting for Bevs to close all accounts and generate the necessary lists before we can proceed with our works.</p>
<p>Awitenista doesn&#8217;t seem to progress either.  I&#8217;ve been busy with other stuff that I have neglected my responsibility as an Awitenista Steering Committee Head.  I&#8217;ll be working on some advertisement and sponsorship contracts this week.  It&#8217;s a lot of work specially when you only have a little knowledge on advertising and marketing. Whew!</p>
<p>Scholarship, hmmm.. what scholarship? Yet another to worry about.  I still lack 22 hours of service for my scholarship.  I need to make up this lacking 22 hours this week before I leave the country this Sunday.  I have not checked my grades yet.  I&#8217;m not even sure what my standing is. Oh no!</p>
<p>October month became too tiring for me to take my gym sessions religiously.  I&#8217;ve been absent a lot of times.  I&#8217;m losing my pace now.</p>
<p>Anyway, this week is going to be a busy week.</p>
<p>By the way, for those who need the latest board exam results, you may check my <a href="http://blogs.batangyagit.com/examresults" title="PRC Board Exam Results Archive" rel="tag">PRC Board Exam Results Archive</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=dFTuE81o"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=YgLXL5aA"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=jT9wH0gj"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=jT9wH0gj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/VNEFZ8wanow" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/schools-not-over-yet/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/schools-not-over-yet/</feedburner:origLink></item>
		<item>
		<title>Thank God, Exams no more</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/UDjMxTYQD8g/</link>
		<comments>http://student.batangyagit.com/thank-god-exams-no-more/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 09:33:26 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[Projects and Requirements]]></category>

		<category><![CDATA[Exams and Quizzes]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/10/12/thank-god-exams-no-more/</guid>
		<description><![CDATA[After a semester of hard work, the first semester will finally come to an end.  The last day of the examination week will be tomorrow.  We were so lucky that we have finished our exams last Tuesday.
The first exam we had was the first part of Environmental Engineering which was scheduled last week, a non-exam [...]]]></description>
			<content:encoded><![CDATA[<p>After a semester of hard work, the first semester will finally come to an end.  The last day of the examination week will be tomorrow.  We were so lucky that we have finished our exams last Tuesday.</p>
<p>The first exam we had was the first part of Environmental Engineering which was scheduled last week, a non-exam week schedule.  It&#8217;s a two part examination.  The exam was a bit difficult because it covers all the topics from prelims to finals.  We were thankful that the exam was a multiply choice type.  At least we won&#8217;t get zero.  The second was scheduled two days after we had the first part.  Few of us were lucky because we were exempted from the later parts of the exam.  The group leaders (us) who made the research was exempted to take Tests II and III of the exam since the questions were taken from the research work we made.</p>
<p>The third exam, which was on Broadcasting, was given to us right after the second exam.  I didn&#8217;t study much on this exam.   Most of the questions were essay so I get to answer some.  There were enumeration parts also.  I was lucky &#8216;coz I memorized the enumeration part few minutes before the exam.</p>
<p>The fourth exam was on Wireless Communication.  The exam was great! (read it with sarcasm).  The teacher taught us well so we didn&#8217;t had any difficulties answering the questions he gave on the exam (more sarcasm please).  It was a worth-taking examination for us (sarcasm explotion here.)</p>
<p><a href="http://student.batangyagit.com/2007/10/12/thank-god-exams-no-more/working/" rel="attachment wp-att-33" title="Working?"><img src="http://student.batangyagit.com/wp-content/uploads/2007/10/dsc03669.thumbnail.JPG" alt="Working?" align="left" /></a> <a href="http://student.batangyagit.com/2007/10/12/thank-god-exams-no-more/project-scraps/" rel="attachment wp-att-32" title="Project scraps"><img src="http://student.batangyagit.com/wp-content/uploads/2007/10/dsc03670.thumbnail.JPG" alt="Project scraps" align="left" /></a>The last exam, which was not so stressful, was on Wire Communications.  It&#8217;s a multiple-choice type of exam. The topics covered was everything from prelims til finals.  Some parts were difficult because it was the first time we encountered it.  But the other questions were familiar because it was given in our previous exams.</p>
<p>For the remaining subjects, Control Systems and Wireless Lab, our exam grades will be based on the results of our projects for these subjects.  Our project is a do or die factor for our grades.  It wold determine if we fail or not.  We&#8217;re currently working on it now in Bikong&#8217;s house. We&#8217;re just hoping we could finish this one before Monday.  We&#8217;re almost done.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=fmsGQawn"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=UuLEVuMT"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=mIlz4Qwj"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=mIlz4Qwj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/UDjMxTYQD8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/thank-god-exams-no-more/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/thank-god-exams-no-more/</feedburner:origLink></item>
		<item>
		<title>Alarm clock with no alarm feature</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/OCCxpEiSTHI/</link>
		<comments>http://student.batangyagit.com/alarm-clock-with-no-alarm-feature/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 08:43:27 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[Projects and Requirements]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/10/12/alarm-clock-with-no-alarm-feature/</guid>
		<description><![CDATA[The last circuit that I worked with was the  Microcontroller Project Alarm Clock which was submitted this afternoon.  It was supposed to be an alarm clock but we didn&#8217;t get to finish the program for the PIC16F84A.   We only came up with a digital clock.
We stayed in Eric&#8217;s place yesterday to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://student.batangyagit.com/2007/10/12/alarm-clock-with-no-alarm-feature/working-on-the-circuit/" rel="attachment wp-att-30" title="Working on the circuit"><img src="http://student.batangyagit.com/wp-content/uploads/2007/10/dsc03653.thumbnail.JPG" alt="Working on the circuit" align="left" hspace="10" vspace="10" /></a>The last circuit that I worked with was the  <a href="http://student.batangyagit.com/2007/09/24/microcontroller-project-alarm-clock/">Microcontroller Project Alarm Clock </a>which was submitted this afternoon.  It was supposed to be an alarm clock but we didn&#8217;t get to finish the program for the PIC16F84A.   We only came up with a digital clock.</p>
<p>We stayed in Eric&#8217;s place yesterday to finish the circuit we have started couple of days ago.  The first circuit we constructed was rushed because we need to show our hardware last  Thursday.  We were given until Monday to finish the software, which is quite difficult to program.  The circuit we finished was  not that good.  We have to spend the whole Sunday afternoon to trouble shoot all the faults in the circuit.  A lot of the contacts at the back of the circuit were shorted.  Opep worked on the trouble shooting task while Eric worked on a new design. (And I went sleeping &#8216;coz I was not doing anything.)</p>
<p>Around 8pm, we decided to create a new circuit because we thought that the old circuit was hopeless.   We had to rush back to school to get the design printed since there were no laserjet printers available nearby.  After few hopeful attempts of getting the tracing paper fed into the printer, we were able to print our design.</p>
<p><a href="http://student.batangyagit.com/2007/10/12/alarm-clock-with-no-alarm-feature/the-finished-circuit/" rel="attachment wp-att-29" title="The finished circuit"><img src="http://student.batangyagit.com/wp-content/uploads/2007/10/dsc03656.thumbnail.JPG" alt="The finished circuit" align="right" /></a>We used up two cuts of presynsethized boards for the circuit.  The first one failed, either the developer solution was too concentrated or the light exposure was not enough.  The second one was successful and we were able to start working on the circuit. We stayed there &#8217;til midnight. I was the one who worked on the soldering of the components but I left before midnight and Eric had to finish the project.</p>
<p>We were able to submit the project the following but we didn&#8217;t get to finish everything.  There were some features that were not applied.</p>
<blockquote><p><em>Note: This post sucks. I&#8217;m sleepy while writing this.  I have no plans of editing it either. </em>Pasensya na po.</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=97bDdSNa"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=eCfdkxxb"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=qcsoMmS7"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=qcsoMmS7" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/OCCxpEiSTHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/alarm-clock-with-no-alarm-feature/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/alarm-clock-with-no-alarm-feature/</feedburner:origLink></item>
		<item>
		<title>Microcontroller Project : Alarm Clock</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/BuPw7Nu-IXw/</link>
		<comments>http://student.batangyagit.com/microcontroller-project-alarm-clock/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 15:07:18 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[Projects and Requirements]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/09/24/microcontroller-project-alarm-clock/</guid>
		<description><![CDATA[Ok.  We we&#8217;re given (again) a project for finals in our Digital Microcontrollers class.  It&#8217;s a digital clock which has an alarm feature. The time of the clock could be set and it should be in the 12-hour format.  Aside from that, there should be five user-programmable alarm slots that can be [...]]]></description>
			<content:encoded><![CDATA[<p>Ok.  We we&#8217;re given (again) a project for finals in our Digital Microcontrollers class.  It&#8217;s a digital clock which has an alarm feature. The time of the clock could be set and it should be in the 12-hour format.  Aside from that, there should be five user-programmable alarm slots that can be set.  The alarm should use a buzzer.  Only one PIC16F84A chip should be used in the project.  The circuit should either be mounted and soldered in a universal PCB or in a custom-designed printed circuit board.</p>
<p>I volunteered to do the project for our group since my other groupmates are going to be busy on our other projects.  Programming is one of my fortes.  What makes Digital Microcontroller class more exciting is we do not program applications for software but for hardwares instead.  We embed the compiled application we have created in a PIC16F84a Microchip.  It&#8217;s a 16-bit microcontroller readily available in our &#8217;suking tindahan&#8217;.</p>
<p>This afternoon, I started working on the circuit design.  I used Eagle Software to make the circuit&#8217;s schematic diagram and circuit board layout.  Here&#8217;s how it looks,</p>
<p align="center"><a href="http://student.batangyagit.com/2007/09/24/microcontroller-project-alarm-clock/microcontroller-project-2/" rel="attachment wp-att-26" title="Microcontroller Project"><img src="http://student.batangyagit.com/wp-content/uploads/2007/09/topa.thumbnail.JPG" alt="Microcontroller Project" /></a></p>
<p align="left">I already have the printed copy of the design.  The next thing to do is transfer the design on the presynsethized printed circuit board which fortunately I still have some left.  The software part is not yet done.  I&#8217;ll keep you updated then.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=zZ2TYg43"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=onc6tbf9"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=JVjK7Xzg"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=JVjK7Xzg" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/BuPw7Nu-IXw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/microcontroller-project-alarm-clock/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/microcontroller-project-alarm-clock/</feedburner:origLink></item>
		<item>
		<title>Thesis, thesis and more thesis</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/65NZQPcoGJ8/</link>
		<comments>http://student.batangyagit.com/thesis-thesis-and-more-thesis/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 17:35:36 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[Projects and Requirements]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/09/21/thesis-thesis-and-more-thesis/</guid>
		<description><![CDATA[After working on our thesis proposal for few weeks now, my sufferings finally came to an end (or rather started).  We had our thesis defense a couple of days ago.  We were scheduled for an hour of defense in front of our panelists.  A lot of modifications were suggested by our panelists. [...]]]></description>
			<content:encoded><![CDATA[<p>After working on our thesis proposal for few weeks now, my sufferings finally came to an end (or rather started).  We had our thesis defense a couple of days ago.  We were scheduled for an hour of defense in front of our panelists.  A lot of modifications were suggested by our panelists.  They also criticized our capacity to implement our project given the short time that we have. And what&#8217;s worse is we need to purchase a Php 12,000.00 worth of SMS Module w/ Global Positioning System from abroad. Wow. Where would we get that kind of money?</p>
<p>Since our thesis proposal was already approved, all we have to do now is wait for the semester to end so we could submit the revised thesis proposal and start working on our prototypes during the semestral break.  Miss B suggested that we put our thesis on hold so we could start working on the <strike>many</strike> projects that we have.  Now I know how expensive it is to graduate.  Our grades were not the only thing which suffers, our pockets too.</p>
<p>It&#8217;s not the thesis (project study) alone which bothers me now.  I still have a research work to finish for our <a href="http://student.batangyagit.com/2007/09/12/i-skipped-classes-today/">Environmental Engineering</a>. We submitted the draft last week but the teacher just checked the data.  He did not read what was written on it.  When I checked it this evening, I laughed my a$$ out on what I have written last week.  I was so sleepy when I did that paper and I did not read it either.  I wrote a lot of funny stuff in it that I was not aware of.  I mentioned about a &#8216;father&#8217; and &#8216;kalasag&#8217; on my Envi Engineering research paper.  I do not know why or how I placed those words.  Am I dreaming when I made that paper?</p>
<p>I&#8217;m partially done now.  I hope I didn&#8217;t wrote anything funny in it anymore.  My group mates would surely kill me.</p>
<p>I think i&#8217;ll go to sleep now.  Good <strike>night</strike> morning.</p>
<p>By the way, the PRC already published the results of the <a href="http://www.batangyagit.com/2007/09/registered-electrical-engineer-prc.html">Registered Electrical Engineer (REE) Board Exam (September 2007 Exam Results)</a>. Congratulations to my fresh Engineer friends.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=bqSyga9W"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=rUPOUQOL"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=AZRB3hzb"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=AZRB3hzb" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/65NZQPcoGJ8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/thesis-thesis-and-more-thesis/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/thesis-thesis-and-more-thesis/</feedburner:origLink></item>
		<item>
		<title>Three more absences and i’m off the list of graduating students</title>
		<link>http://feedproxy.google.com/~r/StudentChronicles/~3/P3-5omgHMhU/</link>
		<comments>http://student.batangyagit.com/three-more-absences-and-im-off-the-graduating-list/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 14:15:39 +0000</pubDate>
		<dc:creator>Estudyante</dc:creator>
		
		<category><![CDATA[What a day]]></category>

		<guid isPermaLink="false">http://student.batangyagit.com/2007/09/18/three-more-absences-and-im-off-the-graduating-list/</guid>
		<description><![CDATA[I posted on my Batang Yagit blog once on how I ranked 1st on class tardiness (an exaggeration of course).  I checked my attendance record last Monday after our class. Our teacher told us that anyone who had 11 absences will be marked failure debarred from the class.  OMG, when I checked mine, [...]]]></description>
			<content:encoded><![CDATA[<p>I posted on my <a href="http://www.batangyagit.com">Batang Yagit</a> blog once on how I <a href="http://www.batangyagit.com/2007/08/batang-yagit-ranks-1-on-class-tardiness.html">ranked 1st on class tardiness</a> (an exaggeration of course).  I checked my attendance record last Monday after our class. Our teacher told us that anyone who had 11 absences will be marked failure debarred from the class.  OMG, when I checked mine, it was 8 already.  I have no plans of taking the subject (Environmental Engineering) twice.  I have no plans of attending the graduation rites as one of the photographers.</p>
<p>Environmental Engineering was the subject that <a href="http://student.batangyagit.com/2007/09/12/i-skipped-classes-today/">I once skipped</a> because I simply got lazy. This is one of the most neglected subject in class since it&#8217;s only a minor subject. More than half of the class have the same dilemma as I have.  I am not the only one who&#8217;s being threaten by the FD.</p>
<p>Anyway, the only thing that I could do now is to sleep early so I can wake up early tomorrow.  I already told Mama to wake me early tomorrow morning. That if my alarm would miss, which usually happens on me. Good night guys.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StudentChronicles?a=uNhaNFsE"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=MHe4vdtX"><img src="http://feeds.feedburner.com/~f/StudentChronicles?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StudentChronicles?a=4T9ITeAD"><img src="http://feeds.feedburner.com/~f/StudentChronicles?i=4T9ITeAD" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StudentChronicles/~4/P3-5omgHMhU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://student.batangyagit.com/three-more-absences-and-im-off-the-graduating-list/feed/</wfw:commentRss>
		<feedburner:origLink>http://student.batangyagit.com/three-more-absences-and-im-off-the-graduating-list/</feedburner:origLink></item>
	</channel>
</rss>
