Ron Tuffin

1,351
reputation
462 views

Registered User

name Ron Tuffin
member for 1 year
seen 3 hours ago
website
location ZA
age 34
Husband, Father, Science geek.
I ask the questions that you think are too stupid to ask :)
1d
comment Can one initialise a java String with a single repeated character to a specific length.
I accepted the answer I did because it was the first correct answer. Thanks @Bozho (cool name btw) for the formating edit.
2d
asked Can one initialise a java String with a single repeated character to a specific length.
Dec
10
comment Sorting vector in java
not so that you can cheat. but it is always a good exercise to go to the source code to find out how things are actually done.
Dec
4
awarded  Famous Question
Dec
4
revised How to create ArrayList (ArrayList<T> from array (T[]) in Java
changed ArrayList[T] in title to ArrayList<T>
Dec
3
answered Define constraints on the context in which as class is instantiated
Nov
19
answered Optimise aggregation query
Nov
17
comment How do I do a SQL BETWEEN where the date and time are stored seperatly as integers.
I'm Accepting this because it will use indexes. But I actually used Andomar's 'trick' cause the piece of code I am currently working with is a once off throw away thing and performance is not an issue, it's faster to type (if you use Joel's version) and I had already released it before I saw this answer :)
Nov
16
asked How do I do a SQL BETWEEN where the date and time are stored seperatly as integers.
Nov
9
revised How to force a Java thread to close a thread-local database connection
edited tags
Nov
3
comment How can I initialize a String array with length 0 in Java?
I just realized this is a stupid question :( As these arrays are initialized exactly the same way as any other array just with a size 0. Shows how often I initialize arrays nowadays. I'll leave the question (not delete it) cause someday someone else might be just as stupid as I was just now :)
Nov
3
answered How can I initialize a String array with length 0 in Java?
Nov
3
asked How can I initialize a String array with length 0 in Java?
Oct
27
revised What are the minimum requirements for writing a Java client for MQSeries?
refined jar names and added winows tag
Oct
27
answered What are the minimum requirements for writing a Java client for MQSeries?
Oct
27
answered On Windows - where is a mqji.properties for me to use?
Oct
27
comment What are the minimum requirements for writing a Java client for MQSeries?
Your link seems to be broken.
Oct
27
asked What are the minimum requirements for writing a Java client for MQSeries?
Oct
26
awarded  Popular Question
Oct
15
comment Is conversion to String using (”” + <int value>) bad practice?
Thanks Kip. In my haste to beat Skeet, I mistyped it. fixed.
Oct
15
revised Is conversion to String using (”” + <int value>) bad practice?
typo
Oct
15
revised Is conversion to String using (”” + <int value>) bad practice?
reworded with an example
Oct
15
answered Is conversion to String using (”” + <int value>) bad practice?
Sep
10
awarded  Fanatic
Aug
11
awarded  Yearling
Aug
7
revised Transact SQL CASE over a variable length input_expression
messed up the last edit
Aug
7
comment What is the list of valid @SuppressWarnings warning names in Java?
The Eclipse list here looks to compiler flags and not SuppressWarning annotations (check the last part of the doc you linked).
Aug
7
comment Transact SQL CASE over a variable length input_expression
The answer almost makes my question look silly, can't believe I never saw this one. Thanks.
Aug
7
comment Transact SQL CASE over a variable length input_expression
It would obviously be a better solution to store the card type in the table. But like most of us I am sure you have had to work with legacy systems that everyone else is to scared to modify. If this report was going to be run more often I would fight harder for the better solution.
Aug
6
asked Transact SQL CASE over a variable length input_expression
Jul
30
revised What is the list of valid @SuppressWarnings warning names in Java?
added eclipse tag
Jul
30
comment What is the list of valid @SuppressWarnings warning names in Java?
@mP I was giving someone else a chance to answer.
Jul
30
comment What is the list of valid @SuppressWarnings warning names in Java?
I found the answer via google but thought I would import the answer and question into Stack Overflow
Jul
30
asked What is the list of valid @SuppressWarnings warning names in Java?
Jul
25
awarded  Popular Question
Jul
24
revised SQL to determine distinct periods of sequential days of access?
She told me to
Jul
24
answered SQL to determine distinct periods of sequential days of access?
Jul
24
revised SQL to determine distinct periods of sequential days of access?
refined question
Jul
24
comment SQL to determine distinct periods of sequential days of access?
I'll edit the question but using your example that would be 3 distinct 4 day periods.
Jul
24
asked SQL to determine distinct periods of sequential days of access?
Jul
16
comment Can one automaticaly create javadoc tags for an entire Eclipse project?
This looks like exactly what I am looking for. Downloading now.
Jul
16
comment Can one automaticaly create javadoc tags for an entire Eclipse project?
The idea would be to create the tags that I can then populate with the requisite comments. I agree that empty javadoc comments are worse than useless.
Jul
16
revised Can one automaticaly create javadoc tags for an entire Eclipse project?
messed up the < and > on the shift and alt
Jul
16
asked Can one automaticaly create javadoc tags for an entire Eclipse project?
Jul
16
comment Getting maven to start jetty (Tapestry Tutorial)
Thanks Brain. I will check this one out as well. While @xorza's answer does indeed work, it does not actualy solve the problem.
Jul
14
asked Getting maven to start jetty (Tapestry Tutorial)
Jul
9
comment Your favourite database client tool
Aqua is great but it also costs a bit if you need to get a copy to each member of your team.
Jul
8
comment Can one do a for each loop in java in reverse order?
I know there is a 'rule' that we have to accept Jon's answer :) but.. I want to accept this one (even though they are essentially the same) because it does not require me to include another 3rd party library (even though some could argue that that reason breaks one of the prime advantages of OO - reusability).
Jul
8
asked Can one do a for each loop in java in reverse order?
Jul
8
awarded  Nice Answer