- Website
- http://computing.biz.ph
- Description
- Gil Prudente has been developing software for more than 20 years in various areas of electronic commerce, Internet services, gaming, healthcare and banking. He has also spent the last 10 years in the telecommunications industry in roles ranging from consultant to Chief Technology Officer and Chief Architect.
About Author: Gil Prudente
Posts by Gil Prudente
-
10 Tips for Better Emails
Posted on May 3, 2011 | No CommentsI've seen a lot of bad emails and I've written my share of them too. Here are 10 tips for better email communications. -
Factorials in Erlang!
Posted on March 3, 2011 | No CommentsIn Math, the factorial of a number n , written as n!, is defined as the product of all positive integers less than or equal to n. 0! is a […] -
Hello, world! — In Erlang
Posted on February 10, 2011 | No CommentsThe Hello World application serves as a very basic introduction to programming in a new language. So we start off with another Hello World, this time in Erlang. Create your […] -
1 Before i
Posted on March 9, 2010 | No CommentsYou may have noticed that our tests for equality look a bit unnatural. We write 1 == i instead of the usual i == 1 to catch a common typo […] -
Eleven and Beyond
Posted on February 27, 2010 | No CommentsCounting up to ten hardly impresses anybody anymore, unless you're still in nappies. So let's now press on and go to eleven and beyond. As before, we start by adding […] -
Converting Numbers to Words
Posted on February 20, 2010 | No CommentsThe Hello World application that we did last time doesn't see much use in real life. So let's create something more useful -- an application that converts numbers to words! […] -
Hello, world!
Posted on February 11, 2010 | 1 CommentHere's the all-familiar Hello World application, written in Java, and applying Test-Driven Development (TDD) concepts.