Entries Tagged 'Guides' ↓

Starting a Java Project with Maven – Step by step Guide for Mac

Apache Maven Logo

Thanks to my friend, Gandos, he got me interested to use Maven after I read his blog post (It’s in Indonesian). After consulting to another friend, I think it’s a good idea to use Maven for the LabGence project.

The idea is also influenced from this question that I have, “What is the best practice to upload an open-source project?” and “What files that I should and probably shouldn’t upload?”.

I believe Maven can standardize the issue of libraries needed by the project, and also the build script needed. So I decided to give it a try.

Fortunately I found the best and brief introduction tutorial to Maven on JavaBrains.org, you might want to check it out.

I also created the following step by step notes for Mac OSX (which might be applicable also to Linux and other Unix OS). Continue reading →

Popularity: 1% [?]

Write JavaDoc in an Instant (Part 1) – Templates for Methods

Write JavaDoc Example

We all love good and commented codes, but most of us either don’t know how to write a good comment for our codes, or just plain lazy to write one.

In Java, JavaDoc is pretty much the industry standard when it comes to auto-generated code tool. And as a strong believer of good software development practice, I always put comments on my code.

To save time, I created this template for methods so I can always refresh myself about how to write a good JavaDoc for my code. These codes are taken from the Java SDK source codes, so talk about how the creator of the Java write their comments (no one can be more expert than them I suppose). Continue reading →

Popularity: 2% [?]

How to Install Eclipse ADT, Android SDK, and setup AVD Emulator

Android Honeycomb 3.1

The Android Honeycomb

A couple of weeks ago I was so fortunate to get the opportunity working with the Android SDK development in my job (Samsung Galaxy Tab 10.1 :) ).

Compared with Android mobile app development using the Adobe Flex 4.5, the Android SDK may be a bit more tricky to do, so to document my experience I created this blog post (and maybe some more posts in the future).

To start developing Android apps, we need to install the Eclipse ADT, Android SDK (obviously..), and setup the AVD. Continue reading →

Popularity: 9% [?]

How to Load Test Flex Application Using JMeter

Two weeks ago I got responsibility to load test the web application of the company where I work using JMeter.

It’s not the first time I heard about JMeter, because about two years ago I was involved in a large project that demands high availability and high number of concurrent users at the same time (talk about more than 3,000 branches nationwide).

However, it was my friend who was assigned to explore the capabilities of JMeter back then. I’m not sure how far he went with the load testing, and what was the problem with JMeter, but we end up utilizing IBM Rational Performance Tester. Continue reading →

Popularity: 7% [?]

Texas Drivers License Driving / Road Test Success Guide (Detailed)

Congratulations, you have passed the Texas drivers license written test and now you are going to take the driving test, or also called road test.

So, are you nervous about it? Well, I was nervous for several days before I took the road test. But don’t worry, I will give you the guide how to pass the driving test successfully.

What is tested in the road test? Continue reading →

Popularity: 37% [?]

Texas Driver License Test Questions and Answers Part 2 (Review)

Texas Driver License Test Questions and Answers 2 (Review)

Practice yourself before taking the Texas Driver License written test! Start Congratulations - you have completed Texas Driver License Test Questions and Answers 2 (Review). You scored %%SCORE%% out of %%TOTAL%%. Your performance has been rated as %%RATING%%
Your answers are highlighted below.
Return Shaded items are complete.
12345
678910
End
Return

Popularity: 14% [?]

Texas Driver License Written Test Review Questions Part 1

Practice yourself before taking the Texas Driver License written test!

Texas Driver License Test Review Questions 1

Practice yourself before taking the Texas Driver License written test! Start Congratulations - you have completed Texas Driver License Test Review Questions 1. You scored %%SCORE%% out of %%TOTAL%%. Your performance has been rated as %%RATING%%
Your answers are highlighted below.
Return Shaded items are complete.
12345
678910
End
Return

Popularity: 12% [?]

Texas Driver License Test (Written and Road Test) Guide

Yup, just got my Texas Driver License this week after practicing to drive here in US for two weeks. Getting the Driver License in Texas is not that hard but don’t take it for granted too, you must make sure you give some effort to read the Texas Driver License Handbook and practice a lot driving in the road.

So what does it take to have a Texas drivers license?

Continue reading →

Popularity: 45% [?]

Medical Technology / Medical Laboratory Science Curriculum of Adventist University of the Philippines

Recently when I check my blog visitors, I notice that some people got to my blog from Google and they were looking for the BS Medical Technology curriculum.

As far as I know, people is always curious about Medtech courses because it’s not a common course like nursing or medical doctor. Every time I got a job interview, the interviewer always ask me what actually is Medical Technology.

I’m not going to answer that question here, because I’ve actually wrote a blog post about it here.

But this time I want to share with you what the medtech students learn in their course and I hope this will give some help for those who are considering medtech (or medical laboratory science, it’s current name) as their degree. :D
Continue reading →

Popularity: 8% [?]

How To Check if a Relation is in BCNF, 3NF, or Both

Another note of my database lecture class regarding Normalization and checking whether a relation is in BCNF, 3NF, or both.

The textbook that I use is “Database Management System” by Ramakrishnan and Gehrke and though it is a very comprehensive textbook, it is not that easy to understand. The discussion about BCNF, and 3NF was so wordy and has few examples.

So this is my way of making notes that will help myself on the final exam later, and I hope it can help you also understanding the BCNF and 3NF relation.

Continue reading →

Popularity: 36% [?]