Photography and Video Production

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’ request, I uploaded the presentation I used, with the credit to TekHigh, the school’s official publisher of the Computer books.

You may download the presentation here.

Sample Java Program

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 “Decision”

public static void main(String[] args){

BufferedReader dataIn=

new BufferedReader(new InputStreamReader(System.in));

int x=0, y=0, sum=0;                                   //starts the variables x, y and sum

String Str1, Str2;

try{

System.out.print(”Enter 1st number: “); // reads

Str1=dataIn.readLine();                                    // first

x=Integer.parseInt(Str1);                                  // number

System.out.print(”Enter 2nd number: “);             // reads

Str2=dataIn.readLine();                                    // second

y=Integer.parseInt(Str2);                                  // number

}

catch(Exception e){

System.out.print(”Error!”);

}

sum=x+y;                                                 // gives sum the value of x added to y

System.out.print(”The sum is “);                 // prints out “The sum is ”

System.out.println(sum);                // prints out the value of the sum

if (sum >= 20){

System.out.println(”It is greater than or equal to 20″);    // prints out if sum >= 20

}

else {

System.out.println(”It is less than 20″);                           // prints out if sum < 20

}

} }

Computer IV Pointers – First Grading Exam

Computer IV Pointers – 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^_^

Computer II Pointers – First Grading Exam

Computer II Pointers – 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^_^

Happy Earth Day!

Today is Earth Day! Be sure to love Mother Nature more!

earth_day

For more details, visit The Human Side of Technology’s Earth Day post.

A Blogger’s Code of Ethics

Heyya!

Just made a post on my other blog, The Human Side of Technology. It’s titled A Blogger’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

ABS-CBN NewsCasting Competition

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 category, with Aezel holding our shool flag up high.

Go Ateneo!

Here are some pictures we had:

dscf7369

Read more…

Ateneo de Iloilo Immersion

Pictures I took during the Immersion for the third year students of Ateneo de Iloilo Santa Maria Catholic School.

Ateneo de Iloilo Immersion

Read more…

The Ten Commandments of Computer Ethics

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’s computer work.
Degrading or disrupting equipment, software, or system performance.
Using resources to interfere with the proper operation of any computer, or destroy data.

3.) You shall not snoop around in other people’s computer files.
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.)
Invading the privacy of individuals

4.) You shall not use a computer to steal.
Using resources in any manner that violates Board policy, federal, state, or local law including unauthorized copying or transmission of software.

5.) You  shall not use a computer to bear false witness.
Initiating or forwarding “chain” letters.
Downloading, storing printing, or distributing files or messages that are profane, obscene, threatening, or that use language that offends or tends to degrade others.
Unproven rumors (e.g. free coca cola)

6.) You shall not copy or use proprietary software for which you have not paid.
Using resources in any manner that violates the law including unauthorized copying or transmission of software.

7.) You shall not use other people’s computer resources without authorization or proper compensation.
Using information obtained through network and computer resources without giving proper credit to the source (plagiarism).

8.) You shall not appropriate other people’s intellectual output.
Posting personal communication without the original author’s consent.
Using information obtained through network and computer resources without giving proper credit to the source (plagiarism).

9.) You shall think about the social consequences of the program you are writing or the system you are designing.
Downloading, storing, printing, or distributing files or messages that are profane, obscene, threatening, or that use language that offends or tends to degrade others.

10.) You shall always use a computer in ways that show consideration and respect for your fellow humans.
Downloading, storing, printing, or distributing files or messages that contain information considered dangerous to the public at large.