Don

8,633
Reputation
764 views

Registered User

Name Don
Member for 1 year
Seen 40 mins ago
Website
Location Montreal, Canada
Age
I earn a living by editing text files.

E-mail address:
domurtag@yahoo.co.uk
18h
comment web design examples by element type
Do any of these provide examples organised by element type?
19h
revised web design examples by element type
added 2 characters in body; added 2 characters in body
23h
revised Groovy literal StringBuilder/StringBuffer
added 13 characters in body; edited title; deleted 50 characters in body
1d
comment Groovy literal StringBuilder/StringBuffer
It seems that that text is converted from a String to a StringBuilder only when the '<<=' operator is used, correct? Also, it's actually a StringBuffer not a StringBuilder
1d
asked Groovy literal StringBuilder/StringBuffer
1d
comment A colleague said don’t use java.util.Vector anymore - why not?
If you need a thread-safe List, CopyOnWriteArrayList offers better performance (in most cases) than Collections.synchronizedList(data)
1d
revised web design examples by element type
added 2 characters in body
1d
comment Groovy String Concatenation
In Groovy you can append to a StringBuilder using '<<' rather than "append()" which makes the code a lot more readable IMO
1d
answered A colleague said don’t use java.util.Vector anymore - why not?
1d
answered argh - can’t get spring to log sql
1d
comment Are there any Open Source FileMaker Plugins?
What do you want this plugin to plug into? Eclipse, TextMate, VisualStudio......?
2d
asked MySqlcan’t set a nullable column to null
2d
awarded  Popular Question
2d
revised Why would one use Groovy over Java?
added 81 characters in body
Nov
21
revised web design examples by element type
added 4 characters in body
Nov
21
revised web design examples by element type
added 148 characters in body; edited title
Nov
21
asked web design examples by element type
Nov
20
asked Java bounded wilcard type
Nov
20
asked Grails bind request parameters to enum
Nov
20
awarded  Popular Question
Nov
20
awarded  Enlightened
Nov
20
awarded  Nice Answer
Nov
19
revised Grails log4j configuration
edited title
Nov
19
asked Grails log4j configuration
Nov
18
answered Why would one use Groovy over Java?
Nov
18
comment Why would one use Groovy over Java?
@Steven - calling between Java and Groovy is a lot more straightforward than Java and JS, so I don't agree that they both "work just as well" as each other on the JVM
Nov
17
comment Most compact way to compare three objects for equality using Java?
Putting the logic into a varargs method seems more useful than a generic method. A varargs method should enable you to compare any number of objects for equality
Nov
17
comment Rapid switch to Java for an experienced C++ developer
Effective Java is by some distance the best Java book I've ever read. It's also one of the shortest :)
Nov
16
awarded  Popular Question
Nov
16
revised Redirect process output to stdout
Removed 'discard'
Nov
16
revised Redirect process output to stdout
added 21 characters in body
Nov
16
revised Redirect process output to stdout
added 233 characters in body
Nov
16
comment Redirect process output to stdout
I think this will only print all the output after the process has completed. I want to see the output as soon as it is generated
Nov
13
asked Redirect process output to stdout
Nov
13
revised reusing Grails scripts
deleted 210 characters in body; deleted 16 characters in body
Nov
13
asked reusing Grails scripts
Nov
13
comment intermediate in javascript looking for a book to learning object oriented programming
It's a good book, but I find some the examples willfully complicated.
Nov
13
accepted Groovy String to int
Nov
12
revised Groovy String to int
added 259 characters in body; added 7 characters in body; added 2 characters in body
Nov
12
comment groovy language bugs
You mean you only answered in the hope of earning rep? Here was I thinking you were just a nice helpful guy.....for shame! (Answer accepted)
Nov
11
awarded  Nice Answer
Nov
11
answered Groovy String to int
Nov
11
comment Strange ‘Unknown Property’ error in grails
There are no primitives in Groovy/Grails. Everything is an object (unlike Java).
Nov
11
comment In SQL can you get a query to return all columns but say minus a column?
See here for suggestions of why it hasn't been implemented: stackoverflow.com/questions/729197/…
Nov
10
asked groovy language bugs
Nov
10
awarded  Stellar Question
Nov
9
comment o.errors.allErrors.each { println it } by default when failing to save a domain object
This will add s() to all objects, not just domain objects. To only add it to domain objects, I think you need to do the metaprogramming in the doWithDynamicMethods closure of a plugin
Nov
9
comment Hibernate/GORM: collection was not processed by flush()
No, I'm not using any events
Nov
9
comment Hibernate/GORM: collection was not processed by flush()
I'm pretty sure that when using GORM (the ORM used by Grails that is built "on top of" Hibernate) saves are cascaded by default.
Nov
9
asked Hibernate/GORM: collection was not processed by flush()