Today, I tried to write code that involves actual problem solving I wrote a method that calculates the factorial of a number, here’s how I did it : [sourcecode language=”java”] public static double calculate(int number){ if (number > 0){ int result = 1; for(int i = 1; i <= number; i++){ result *= i; } return result; } else if(number […]
Doing some coding
Back to studying for OCPJP (formerly SCJP)
I have been studying for this exam on and off for a year now. I now know a lot about Java SE, and I’m somewhat ready for the exam, there are a few things that need revising. I’m currently using two books, this and this. I’ve read the first book many times, and I’m using the second one because it’s […]
Status as of Feb 5, 2011
I’m currently reading this book It’s called Beginning C++ Through Game Programming by Michael Dawson. What I like most about this book is that it actually makes learning C++ fun! I’m currently in Chapter 5 : Functions. I intend to move on to learning Gtk– afterwards,I’ve always been interested in making GUIs. I’m also working on a side project using […]
To-do list
These are things I hope to learn in the near future, those are listed in no particular order : This page will be updated on a regular basis to reflect my current position and goals Python Disutils SQL and RDBMS. Read Clean Code (In progress). CSS. Apache Wicket. Play! Framework.