Visitors

Google PageRank Checker

Tuesday, December 28, 2010

Nice translation by Google Translate


I copy and pasted a conversation from a forum. They were talking in Filipino and when I was trying to convert it using Google Translate, I found the translation amusing. Here it is.

careful sa post ha..baka may post na ma disqualify ka or baka may minus ka, sayang naman...sa bilis mo, mka habol ka pa...tigil muna ako.... :) kanina pa ako sa office.... hehehehe

English Translation courtesy of Google Translate:
careful in the post .. maybe someone in post to disqualify you ormaybe you have minus, alas you go ... the speed, MKA yet ... stopchasing me first .... :) I'm in the office earlier than .... hehehehe

Saturday, December 25, 2010

Merry Christmas to All

Our Lord Jesus was born in a manger in Bethlehem 2000 years ago.

I wish you all a merry merry Christmas. Today is the season of peace, love and prayer to exalt our most High. Show some love especially to the one we owe our lives. For this Christmas season is the time of our Lord Jesus Christ who is our Lord and Savior.

Say a little prayer to the Blessed Mother who gave birth to the one who saves us.

Hail Mary Full of grace the Lord is with Thee,
Blessed art thou among women
and blessed is the fruit of Thy womb Jesus,

Holy Mary, Mother of God, pray for us sinners
now and at the hour of our death.
Amen.

Monday, December 13, 2010

Simple VB Library System

Recently I have created a very simple Library System using Visual Basic 6 programming language. I thought I could share this project of mine for reference of students who want to learn Visual Basic.

In this project, the due date is not working. You may have to figure it out how to make it work. You just have to add the code.

Here are some screenshots of the project:

Login screen note: username is "pjb" and password is "ok" without the quotes.





To download the project, click download below
If you have questions, feel free to ask, thank you.

Thursday, December 9, 2010

Simple Java Program - String Reverse using charAt - Java

Below is a source code for java. This Java program is very simple and basic. Reverse the string input by user using charAt. Enjoy!!!

//file begins here, save it as reverse.java
import java.io.*;
public class reverse
{
public static void main(String[]args) throws IOException
{
BufferedReader get = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter your name: ");
String name = get.readLine();
balihon(name);
}
public static void balihon(String g)
{
String reverse;
reverse = "";
for(int i = g.length()-1; i >= 0; i--)
{
reverse = reverse + g.charAt(i);
}
System.out.println("\n" + reverse);
}
}
//program ends here...

Monday, September 13, 2010

Back To Active

I have been active in blogging for almost a year now. My bad computer was the major major reason why i was. And another major reason is that I was a bit busy with so many stuff. This time, since my computer is newly upgraded. I wished to go back blogging hopefully after i fix something.