Dan Dyer

9,358
Reputation
774 views

Registered User

Name Dan Dyer
Member for 1 year
Seen 5 mins ago
Website
Location UK
Age 30

Software developer (mostly Java, some Haskell, PHP and other stuff).

1d
awarded  Nice Answer
1d
comment Java: Why does this method have side effects?
@fastcodejava: Yes, perhaps my example made it less clear. The code is meant to demonstrate what final does. The comment about being able to modify the object's state assumes that you haven't reassigned the reference.
1d
comment Java: Why does this method have side effects?
There you go :)
1d
revised Java: Why does this method have side effects?
added 391 characters in body; deleted 21 characters in body
1d
answered Java: Why does this method have side effects?
2d
comment Why are Java enums not clonable?
@Christian, does your code deal with other objects that don't implement Cloneable, or does everything have to be cloneable?
2d
revised Why are Java enums not clonable?
added 1377 characters in body
2d
answered Why are Java enums not clonable?
Nov
25
revised Difference between Java Collection and Collections
Nothing to do with J2EE
Nov
23
answered Java - how to determine the current load
Nov
22
comment Volatile or synchronized for primitive type?
@kts No, volatile has been in Java from the start, but they did change/fix the memory model in Java 5.
Nov
15
comment Scrolling inside Vim in Mac’s Terminal
Or use CTRL+f and CTRL+b to move forward and back by one screen at a time. Or CTRL+d and CTRL+u to move up and down by half a screen.
Nov
12
awarded  Necromancer
Nov
9
answered Java RS232 Comm on Vista-64 bit
Nov
8
answered What is your “favourite” Java API annoyance?
Nov
8
comment Displaying unicode symbols in HTML
@Peter, you can refer to any character by its code. Try ✔ for a tick.
Nov
6
answered Good libraries for generating non uniform pseudo-random numbers
Nov
6
comment maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?
This might be one of the links you are referring to: tapestryjava.blogspot.com/2009/10/…. And this was one of the responses to that article: sonatype.com/people/2009/…
Nov
5
revised Is it worthwhile for programmers to join professional organisations?
I liked my spelling the way it was. Too many Zs in US English.
Nov
5
answered Algorithm to calculate the number of matches in Swiss system tournament
Nov
5
asked What is the significance of the POM file that Maven places in a JAR file, is it used by anything?
Nov
4
answered The practical Haskell tutorial for a programmer coming from the imperative universe
Nov
3
answered Pre Java 5 collections and the unwillingness to change
Nov
2
comment How do I publish to <me>.github.com?
Found this question via Google. This helped me, thanks. I used the "generate project page" link and it created the index.html in my repository, but it was not published until I did a subsequent push with a minor edit of the page.
Oct
31
revised In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
added 176 characters in body; added 182 characters in body
Oct
31
answered In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
Oct
31
revised Existence of a table generation framework for experiments
Spelling
Oct
31
revised Resources for Game Artificial Intelligence
Literacy
Oct
31
answered Resources for Game Artificial Intelligence
Oct
26
answered Swing: Alignment Problem
Oct
26
answered How can I keep a music player in the page footer that doesn’t reload when I click a link to a subpage?
Oct
22
answered What is the difference between RMI and Corba?
Oct
21
comment IDEA Community Edition versus Eclipse
You will still be able to develop JavaEE applications with the community edition, you just won't get any specific help from the IDE as you would with the full version.
Oct
21
answered Minimax algorithm
Oct
21
comment How does Collective Intelligence beat Experts’ view?
It's about a specific class of algorithms and how (well) they work. Seems programming-related to me.
Oct
21
revised JPoS: How to know the [Credit/Debit] Card Type ?
Added jpos tag.
Oct
16
revised Genetic Algorithm in Java
Tags
Oct
16
revised How to do betting in C# with roulette (with a betting table)?
Removed roulette-wheel-selection tag, this question is not about the genetic algorithms technique.
Oct
16
answered Genetic Algorithm in Java
Oct
14
comment How can I convince a client that audio on a website is a bad idea?
Asking the user whether they want music or not would also allow you to measure how many users think it is a good idea. If you find out that 98% of visitors to that specific site don't want music, that would be a good way to convince the customer that it is a bad idea.
Oct
14
comment Increasing Java Heap size on Virtual server?
How much RAM does your VPS have in total?
Oct
13
comment Problem with Java GUI
Actually, that might not also be the case for setCaretPosition (I'm not sure), so it may still be necessary.
Oct
13
comment Problem with Java GUI
@John: invokeLater is not necessary in this particular case because JTextArea.append is one of the few Swing methods that is safe to call from any thread.
Oct
13
answered Glitchy graphing using JFreeChart
Oct
12
comment What are best must have software/plugins for Java ?
@Rachel: Yes, but what are you plugging them into? Eclipse, IntelliJ, Maven, something else?
Oct
12
answered Best language for web programming
Oct
12
comment What are best must have software/plugins for Java ?
Plugins for what?
Oct
12
comment How different do random seeds need to be?
@Johannes: Absolutely, but if you do truly want unpredictable output then you don't want someone to be able to guess the seed. So for this reason it's best that the seed itself is completely unpredictable (e.g. from /dev/random).
Oct
12
answered Have you ever been the victim of a bug in a programming language or technology?
Oct
12
answered How different do random seeds need to be?