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 , , , , , , , , , | 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

Posted in Computer Programming | Tagged , , | Leave a comment

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 , , , , | 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

Posted in Computer Programming | Tagged , , , , , , , , , , | Leave a comment

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 , , , , , , , , | 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 , , , , , , , , | 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

Posted in Google | Tagged , , , , , | Leave a comment

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 , , , , | Leave a comment

My Almost Completed Second WordPress Theme


I have been making this second Worldpress theme for the final project in my CMS class. Compare to the first theme I made, it has more customized features such as custom background and custom navigation menu, the design of the … Continue reading

Posted in Web Development | Tagged , , , , , , | 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 , , , , , | 1 Comment