Tuesday, February 9, 2010

Why Truth?

I want to talk about “Why Truth?” Why do we need to know truth? What is Truth?
I’ve heard it many times that “truth will set us free” and that sounds biblical. What else do you say about truth?
One friend of mine said “we need the truth coz its one that can give us light, the world would be so much darker if we’re living in lies and deceit“.
First, We have to understand/ examine what does truth means.
“What is truth?” That is the question every human being will at one time or another have to face, and answer. Those who choose to face it in this lifetime, and who come to God for the answer, will be set free by the truth, and eventually gain everlasting life. Those who do not choose to come to grips with this question, and those who go to the wrong source for the answer, will remain in bondage. And one day they will stand face to face with The Answer, Jesus Christ, who will righteously judge them. How each of us relates to truth determines not only our everlasting destiny, but also the quality of our life now.- www.truthortradition.com
What do you say about TRUTH?

Friday, December 11, 2009

REASON WHY FRIENDSTER WENT DOWN??

 Friendster has become one of the greatest (i guess) Social Networking website in the world in the past years, gained millions of users world wide, but it is astonishing that just this couple of days ago, friendster have turned into something like its never before. I mean obviously even the login page turned so different from the old ones, then, came the news @ yahoo that "Once Mighty Friendster Sold to Malaysian Firm."

How sad it is to  Mr. Jonathan Abrams - the one said to be who developed and founded friendster in 2002.

Monday, July 13, 2009

My Programming- Java

I hope to have a future in programming.. ^^

/* Melven V. Delima
*BSIT-3
*gwapo
*/
I thought studying programming could be so hard, but it's a good thing after all. Now, I love what I learned in school and also with my discoveries. Now I understand that programming is a very challenging thing. There is no such thing as "very hard" as long as you try to comprehend every thing with a teachable heart and head.
When I was on my first year(college), I wasn't really willing to learn programming because I didn't understand what are the importance of programming in the IT industry.

To be continued


My programming exercises:

import java.util.*;
public class Act4Delima {

public static void main(String[]args){
Scanner input=new Scanner(System.in);

while(true){
System.out.print("Input String: ");
String str= input.nextLine();
String str1=str.toUpperCase();
System.out.println(str1);


while(true){
System.out.print("Continue? (yes or no): ");
String option=input.nextLine();

String yes="yes";
String no="no";
if(option.equals("yes"))
break;
else if (option.equals("no"))
System.exit(0);
}

}
}


}