Bill Michell

1,848
reputation
201 views

Registered User

name Bill Michell
member for 1 year
seen Dec 4 at 15:02
website
location London, UK
age 42

Software Developer, Development Team Leader.

Love singing and playing games.

Have a 3 year old daughter.

All views expressed here are my own, and not those of my employer.

Nov
17
answered Is a Download class a bad candidate for immutability?
Nov
11
revised How to rate a connect four game situation in java
Edit to reflect the fact that the search space is larger than it appears at first.
Oct
22
comment How to share files in a depot
No better option - but branching in Perforce is well-handled, so having the project branch the correct revision of the common code into its own area works well.
Oct
11
accepted Where can I find best practice info on SCM (perforce)
Oct
8
answered Recommend a fast & scalable persistent Map - Java
Oct
6
revised only one of multiple threads to execute a particular code path
Mention that locks and mutexes are related.
Oct
5
comment Should I still code to the interface even if I am ONLY EVER going to have ONE implementation?
Agreed. An internal class with a single implementation doesn't need an interface. The interface might be interesting if it forms part of an external API - so people using the interface in ways you haven't predicted aren't forced to extend your implementation...
Oct
5
answered handling sleep in java scheduled executor service
Oct
2
answered only one of multiple threads to execute a particular code path
Oct
2
comment Migrate from Perforce to Subversion
Not an answer, but a comment: are you really certain that porting to SVN would be better than implementing Perforce in the company you are working for? Yes, Perforce costs money, but there are benefits too, particularly in the area of support for merging changes between branches.
Oct
2
answered Where can I find best practice info on SCM (perforce)
Sep
24
answered What are best development practices for multi JRE version support?
Sep
21
awarded  Notable Question
Sep
16
awarded  Yearling
Sep
8
answered How to express inter project dependencies in Eclipse PDE
Sep
4
comment Performance ConcurrentHashmap vs HashMap
I don't think current implementations ever lock on a get(), but they certainly access volatile variables.
Sep
4
answered Performance ConcurrentHashmap vs HashMap
Sep
4
comment Java library to “spell out” numbers in localized fashion
I note that support for i18n was also one of the requirements. While writing your own converter for a single Locale might be reasonable, much better to somehow crowdsource the code for multiple Locales, I would have thought.
Sep
3
awarded  Nice Question
Sep
3
accepted Start Thread with a given execution time
Aug
27
answered Fastest way to compare strings (literal and numerical)
Aug
27
revised Critique my exception handling strategy
deleted 2 characters in body
Aug
27
answered Critique my exception handling strategy
Aug
4
awarded  Nice Answer
Jul
31
awarded  Nice Answer
Jul
13
awarded  Popular Question
Jul
1
comment Static method in Java
Yes, at the very least the implementation should be switched to a ConcurrentHashMap - but even that won't fix the other potential issues.