Archive for July, 2008
Friday, July 4th, 2008 71 views
Most programmers, if not all, have heard about the C++ utility ‘make’. It’s purpose is simple: to aid in the configuration, compilation and deployment of C++ based applications. Make is used by creating makefiles which describe all the sets the above operations require. Then, instead of typing away ...
Posted in J2ME, Java | No Comments »
Tuesday, July 1st, 2008 86 views
In this day and age, everything is connected to everything else. So let’s look at how your J2ME device can join the fun. More specifically let’s see how you can use HTTP and HTTPS from within your J2ME applications.
Posted in J2ME | No Comments »
Tuesday, July 1st, 2008 92 views
Wikipedia tells us that “unit testing is a test (often automated) that validates that individual units of source code are working properly. A unit is the smallest testable part of an application.” What this means is that every time you change something in you code, or do something ...
Posted in J2ME, JUnit | No Comments »
Tuesday, July 1st, 2008 265 views
Intro
When it comes to exchanging information in the digital world, XML has long been praised as The Great Unifier. Being text-based (thus almost platform-independent) and able to represent any kind of data imaginable, XML turns interoperability and compatibility into goals within grasp. Other benefits, such as savings ...
Posted in J2ME | No Comments »