me,myself,english and programming..

Archive for April, 2010

“IF” will not bring you anywhere…

Thursday, April 22nd, 2010

Someone post a comment to me.

“IF” will not bring you anywhere… what is done, have been done…

Thanks to you. It some sort of wake up call for me.

I don’t know the key to success but I know the key to failure is trying to please everybody.

Life must be go on…

Good luck to me. Insya-Allah

If I Had My Child To Raise Over Again…

Monday, April 19th, 2010

IMG00017-20100221-1243

If I had my child to raise all over again
I’d finger paint more and point the finger less
I’d do less correcting and do more connecting
I’d take my eyes off my watch, and watch with my eyes
I would care to know less and know to care more
I’d take more hikes and fly more kites

I’d stop playing serious and seriously play
I’d run through more fields and gaze at more stars
I’d do more hugging and less tugging
I would be firm less often and affirm much more
I’d build self-esteem first and house later
I’d teach less about the love of power
And more about the power of love..

-DIANE LOOMANS

Yoga – crow pose.

Saturday, April 17th, 2010

my crow..

IMG 2850

ninie’s crow

ninie

nenek’s crow

nenek

BlackBerry Programming – Attempts to access a security API error.

Sunday, April 11th, 2010

After my first hello world in blackberry, I tried another sample code to activate the BlackBerry flashlight. Everything goes fine on the simulator until I deploy it on my device. I got below error. “Attempts to access a security API error”

2010-04-04 230352

Since then, I just learn that the BlackBerry API set is subdivided into five classifications.

The first of these classifications is the set of “Open” APIs. These APIs include all standard Java APIs from MIDP and CLDC, as well as many BlackBerry-specific APIs. The open API set is, as the name implies, open for all developers. Applications developed that use only open APIs require no signatures.

(more…)

Oracle High Availability JDBC Connection String

Saturday, April 10th, 2010

I’m finally successfully configure my apps to connect to Oracle RAC.

As for my reference later, here is the connection string.

(DESCRIPTION_LIST=
(FAILOVER=true)
(LOAD_BALANCE=true)
(DESCRIPTION=
(ADDRESS= (PROTOCOL=TCP) (HOST=server1) (PORT=1521))
(CONNECT_DATA=
(SERVICE_NAME=orcl))
)
(DESCRIPTION=
(ADDRESS= (PROTOCOL=TCP) (HOST=server2) (PORT=1521))
(CONNECT_DATA=
(SERVICE_NAME=orcl))
)
)

JDBC URL will be something like this

jdbc:oracle:thin:@(DESCRIPTION_LIST…)