Is it just circumstance or what, While working at UP System Budget Office, I felt so sleepy when my boss is around and felt awake when she stepped out of the office. I have been drinking coffee while working, I have tried black coffee and to my dissapointment still very sleepy ( to the extent that my hands are already shaking ). I've got memo'ed last week for fallen asleep while working, actually though it's my second memo since last 2 years. Those where the times when my kids are just babies and need to tend to them at night. The latest, which would I expect it will come soon due to the fact that I worked as a freelancer at night. My wife is 3 months pregnant need to raise some funds for our new baby. My co-worker, Jasmin told me a simple lame excuse, she said "You are sleepy when your boss is around because your doing your work, when shes not around your doing nothing."
, LOL.
Actually would finished all the reports by the end of the day, just need a confirmation from the data that I requested from UP Los BaƱos yesterday. During breaks reviewed some simple subjects in Computer Programming which my favorite part is data structures. Created a set class in php today, I am practicing phpDocumentor syntax, documented a little bit.
<?php /** * @author Carey R. Dayrit <carey.dayrit.org> * @version 1.0 * @package clsSet * @uses Group of data that is sorted, no data would be repeated */ /** * A simple class implementation of a Set object * * Example: * <code> * <?php * $oSet=new clsSet(); * $oSet->insert('pogi'); * $oSet->insert('carey'); * $oSet->insert('pogi'); * echo $oSet->length(); * ?> * </code> */ $oSet=new clsSet(); $oSet->insert('pogi'); $oSet->insert('carey'); class clsSet { /** * @var array $mData the repository of data */ /** * Insert mixed data to the set * @return bool $bResult * @param mixed $mSingleData */ function insert($mSingleData) { $bResult = false; $bResult = true; } return $bResult; } /** * Returns the length of the set * @return int $nResult */ function length(){ return $nResult; } } ?>



Leave a Reply