Categories
- Companies (14)
- Computer Programming (33)
- Course Assignments (10)
- Open Source (63)
- Second Life (5)
- Site Updates (22)
- Web Development (68)
Archives
- September 2010 (2)
- August 2010 (3)
- July 2010 (28)
- June 2010 (17)
- May 2010 (18)
- April 2010 (29)
- March 2010 (32)
- February 2010 (25)
- January 2010 (16)
Monthly Archives: July 2010
My Latest Project
I have been volunteering at ICAF (International Child Art Foundation) since April of this year. When I first started off, I was assigned to be a video editor to edit pre-recorded videos for some international festivals. The reason why I … Continue reading
Posted in Web Development
Tagged C programming language, for loop, Google, ICAF, International Child Art Foundation, JqPageFlow, jQuery, pagination, PHP, Web Development
1 Comment
C Advanced Operators
There are some advanced operators in C. First set of these operators is the Assignment Operators. Here are five operators presented in the arithmetic assignment operators: += (Plus Equals) -= (Minus Equals) *= (Multiply Equals) /= (Divide by Equals) %= … Continue reading
C String and Character Functions Samples
Here are the exercises I did for the string and character functions: /* * * exercise1.c * * Allow user to input a string from the keyboard and * display the ASCII value for each character * * by Robby … Continue reading
Posted in Computer Programming
Tagged ASCII, C programming language, character, functions, string
Leave a comment
C Character Functions
There are several types of character functions in the standard C library. One type of character functions is character classification functions. They are isuppper, islower, isdigit, isspace, and other boolean functions. For example, if (isupper(ch)) determines whether ch is upper … Continue reading
Play Around with Google Nexus One
I received my Nexus One today which I ordered from Google on Saturday. The FedEx delivery of the device was earlier than I expected. They delivered my order 10 AM in the morning, nearly 5 hours earlier than the estimated … Continue reading
Posted in Google
Tagged Android, Android Market, Google, GPS, iPod Touch, Nexus One, OpenStreetMap, RockPlayer, SIM
1 Comment
More C Strings Input and Output Functions
For the input function, the gets function is much more simpler to use than the scanf function. The scanf function is often used in the advanced C programs. The same is for the output function. the puts function is more … Continue reading
Posted in Computer Programming
Tagged C characters, C programming language, C strings, fgets, fputs, gets, printf, puts, scanf
Leave a comment
Finally Ordered Nexus One (Updated)
Update: I received the phone. Please read this post for more information on my first hands-on of Nexus One. After I heard this morning that Google will stop selling its Nexus One once the final set of devices is sold … Continue reading
C Arrays
An array is a variable that represents a collection of the same variable types. For instance, a collection of doubles is an array. It can also declare one variable as an array. The size of an array depend on the … Continue reading
Posted in Computer Programming
Tagged C arrays, C loops, C multi-dimensional arrays, C programming language, C strings
Leave a comment
C Special Loops
There are two special loops in C: Nested loop – a loop inside of another loop, also called a loop within a loop. The forever loop – a controlled infinite loop Here is a sample code for the nested loop: … Continue reading
Posted in Computer Programming
Tagged C loop, C loops, C programming language, C special loops, nested loops, the forever loops
1 Comment






