Tom Hawtin - tackline

20,440
Reputation
1921 views

Registered User

Name Tom Hawtin - tackline
Member for 1 year
Seen 10 hours ago
Website
Location Hawley Lake, UK
Age 37

Work: An engineer in Java SE security for Sun.

Top advice: If I were you, I wouldn't be starting from here.

Toast advice: Look after the corners and the middle will look after itself.

Me: You are politely reminded that I am nobody's bitch.

Java claim to fame: I was once in the same room as James Gosling.

In the next few months, I shall be going to:

  • 14-17 Apr 2010, ACCU, Oxford, UK
  • (please add more here)

Recentish past events:

  • 18-20 Nov, Devoxx, Antwerp
  • 7 Nov, ACCU Security, Bletchley Park
  • 2 Nov, Stackoverflow DevDay, Amsterdam
  • 28 Oct, Stackoverflow DevDay, London, UK
  • 31-2 Jul/Aug, DEFCON17, Las Vegas, NV
  • 29-30 Jul, BlackHat USA, Las Vegas, NV
  • 22-25 Apr, ACCU, Oxford, UK
  • 10-12 Dec 2008, Devoxx, Antwerp

Timezone: Mid-Atlantic

10h
comment What are common UI misconceptions and annoyances?
CoderTao: Same thing with Ubuntu on my netbook. Eejits.
10h
comment What are common UI misconceptions and annoyances?
I wish Amazon wouldn't store my card details. Then there would not be a problem.
10h
comment What are common UI misconceptions and annoyances?
furtelart: Why would sending 4 GB be a more effective DoS than randomly sending 4 GB of any other data? Only a fixed-length hash is going to be stored.
11h
comment What are common UI misconceptions and annoyances?
I believe Adobe do this because Microsoft started doing it first.
11h
comment Can we convert a byte array into an InputStream in Java?
The "Use" link at the top of API doc pages is very useful for these sorts of problems.
13h
comment Java 2D Graphics Question
In this particular case, keeping the data would probably be a much better idea than a buffered image. However, +1 for getting both extremes.
14h
answered How to Convert Map to Object
19h
comment What security can be added to Java Applets?
Are you wanting something like the Sony rootkit?
23h
comment signed java applet restrictions?
There's companies other than Verisign that will do you a much cheaper deal. (And you can use a stolen credit card...)
23h
comment Closures in Java - syntax differences between the three major proposals?
Presumably you could use the diamond notation with CICE (not that interfaces with names like BinaryFunction are very good).
1d
accepted getResourceAsStream works differently on Mac OSX vs. Windows 7?
1d
comment Initialize arrays using ternary operator
In JDK7 it looks as if {1, 2, 3} (in other situations) will be a set, with type determined by target typing (like generic methods, such as Arrays.asList).
1d
answered Java snippet that causes stack overflow in the compiler or typechecker (javac)?
1d
comment Difference between Java Collection and Collections
Of course, now Iterable is the root interface of the collection hierarchy.
1d
answered getResourceAsStream works differently on Mac OSX vs. Windows 7?
1d
answered cancel a read from an InputStream
1d
accepted java security manager
1d
answered What’s a good place to save a file to in a Java app?
1d
answered java security manager
1d
comment thread safe map for java
Note, mutable statics are a really, really, really bad idea.
1d
comment Do all Hash-based datastructures in java use the ‘bucket’ concept?
Proving is a synonym for open addressing give in Adam Rosenfield's answer.
2d
revised Do all Hash-based datastructures in java use the ‘bucket’ concept?
added 64 characters in body
2d
answered Do all Hash-based datastructures in java use the ‘bucket’ concept?
2d
comment Do all Hash-based datastructures in java use the ‘bucket’ concept?
A (singly) linked list, but not LinkedList!
2d
answered What can I do to make jar / classes smaller?
2d
awarded  Nice Answer
2d
answered Where can I find source code for the Java data structures?
2d
comment How many times can classes be nested within a class?
JSP pages using static includes can blow the limit (IIRC, 1.6ish was going to allow larger sizes, but it was decided that code generators should generate better code instead).
Nov
22
comment Comparing Java enum members: == or equals() ?
A null enum is typically an error. You've got this enumeration of all possible values, and here's another one!
Nov
22
comment Is there a better practice for Listeners?
I'm guessing that adding a mouse listener of a JTable might not always do what you want.
Nov
22
comment Is there a better practice for Listeners?
(Also, don't extend JPanel (unless you mean it).)
Nov
22
comment What is the Class Of List<Foo> in Java?
ripper234: Class<List> c = List.class;
Nov
16
comment Optimizing the creation of objects inside loops
It's going to be moving the map from survivor spaces and into the tenured generation that is likely to cause most problems. So the new every iteration is a likely win (and nicer code). Unlikely to be worth worrying about.
Nov
16
answered flush in java.io.FileWriter.
Nov
16
accepted How to wait until JComponent is fully painted?
Nov
16
answered Doesn’t the fact that Go and Java use User space thread mean that you can’t really take advantage of multiple core?
Nov
16
comment Problem with Java generics
So, perhaps UltraTable.setContents should take Collection<? extends O>.
Nov
15
comment java inheritance - please explain
That talk method is not in class B.
Nov
15
answered Problem with Java generics
Nov
14
revised How to iterate through a Collection<Set<IConnection>>
edited tags
Nov
13
comment JFileChooser browsing a remote file system
I don't follow. If you override all the methods in FileSystemView, it wont get a chance to call anything.
Nov
13
answered Java: Is there support for macros?
Nov
13
comment Creating (boxed) primitive instance when the class is known
I think I'd go for an ?: chain. type==long.class ? (Long)0L :, etc.
Nov
13
comment Migrate Java Applet to what/where??
You can write a JNLP file that runs an applet unchanged in WebStart (although it doesn't get LiveConnect, obviously).
Nov
12
comment Java Array Initialisation Beginner’s Question
I don't think you need the new Cycle[] there.
Nov
12
answered Singletons or non-singletons wrapped by a Singleton
Nov
12
comment Is it safe to dispose a JFrame from a different thread in Java?
It seems unlikely that calling the method is the only thing which is being done. There's probably other code that is being run in a non-thread safe manner. (Anyway, real h4x0rz would use java.beans.EventHandler.)
Nov
12
answered Problem with mouseListener on JPanel
Nov
12
comment Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
For my first job I was given a C++ book at the end of the interview to learn before I started work on the Monday. You're all wusses.
Nov
12
comment Java prints output twice in a very specific circumstance
IIRC, System.out autoflushes like crazy.