Wai Hung

Greenhorn
+ Follow
since Apr 15, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Wai Hung

The followings are the material I used to prepare my SCEA Part I.

Mark Cade's book
UML Distilled by Martin Fowler
have a quick review on Design Pattern by GOF
study notes listed in Java Ranch SCEA online resource.

For the topic covered by Mark's book, it is pretty adquate.

By the way, I passed part I with 83%, not a very good result, compare with other people in this forum, but enough for me to go on to Part II.
Why do we need to have multiple overlapping bounding circles for an object to make it as accurate as bounding rectangle?

Thank
19 years ago
I really doubt if any employer will consider a Chemistry degree 8 years ago, if you don't have relevant experience.
I have two master degree, one in Computer Sci and one in Financial Economics. I have been a software developer for 12 years.
No one will ever consider my application to any fin. related jobs.
If I apply IT position, they don't interested in my Fin. degree, even the position is in Financial industry.
19 years ago
EJB are supposed to write as single-threaded process, so can I declare static variable in EJB?
Do I need to use 'synchronized' when I update the static variable?
And be sure you don't have memory leak.
19 years ago
Now the link only displays an empty Hatfield Seed and Feed page.
How can I read the page?
However, knowing who is the hiring company is important.
I'm not working with only one agency, so before they send my resume to the company. I have to make sure my resume has not been submitted by another agency, otherwise, the company will find me unprofessional by submitting resume twice (or more).
19 years ago
Usually, when people are taking Master/Ph.D., they will take the T.A. or R.A. jobs to finance their studies. It's common to have part-time job (or even full-time), so I don't think there is any problem with the System Admin job.
19 years ago
Usually I will explain my suitation to them (mine is similiar to yours) and give them my supervisor as my reference. But I will ask them not to contact him, until they think they find me a suitable candidtate and would like to offer me a position, then they can contact him to confirm my experience.
19 years ago
Ankur Jain wrote :
============================================================================let me put in this way ,if there's a guy from some XYZ engg. college in some ABC city completing the grads with 85+% but having no clue of j2ee and there's a guy from another college with not so great % but is an SCBCD . who,do you guys think, is more suitable for java related job.?
============================================================================

If the first guy can't show any Java experience, I probably will choose the second one.
However, if there is a person with actual Java work experience against a person with SCBCD, but no work experience. I definitely will pick the one with experience.

Surely, certification implies you studied a lot, but work experience seem to be more important (at least, it happened to me in my job interview).
19 years ago
By default, HTTPClient uses HTTP/1.1, how can I switch to HTTP/1.0?
Can anyone suggest a free UML tool to me?

How about community version of Poseidon? does it have enough features to do the job?

Thank
Here is what I put in my properties file

log4j.appender.trcFile=org.apache.log4j.DailyRollingFileAppender
log4j.appender.trcFile.File=C:/logs/TraceFile.log
log4j.appender.trcFile.Append=true
log4j.appender.trcFile.DatePattern='.'ddMMMyy

it creates a log file call 'TraceFile.log' and it will be renamed to, say,
TraceFile.log.03Jun04 when the date is changed.
19 years ago
You need to create an instance of Prog3test and call openread() from that instance.
e.g. Prog3test testObj = new Prog3test();
String in = testObj.openread(...);
19 years ago
Hi,

DO you have to use ArrayList like what you have done here?

How about using key-value pair collection class?
e.g. Use HashMap.

Store the name as key and a ArrayList as the value element.
Here the ArrayList will store objects that contain all information,
include message, date, etc.
19 years ago