Jonik

2,715
reputation
1408 views

Registered User

name Jonik
member for 11 months
seen 2 hours ago
website
location Finland
age

First, a shameless plug for my favourite feature requests :-)


I work as a Java devoloper in a scrum team in Helsinki.

I mostly know and use Java (EE) and basic web technologies - plus heaps of (mostly open-source) tools and libraries, starting with the common Java development "stack" of Tomcat, Ant, JUnit, Selenium, Hudson, etc. I really enjoy developing Java with IntelliJ IDEA and a Linux environment.

I'm determined to learn Python better, so that it stays in my head and I can use it effectively. Like many (it seems), I also harbour a small desire to try out iPhone development, but I'm a bit reserved about the need to learn Objective-C :-)

A few years ago I finally got together my B.Sc. in Computer Science from Helsinki University.

Interests outside of software development: literature, music, travel, sports (e.g. floorball), languages (esp. English, Spanish).

You can reach me by email through <jonik at iki dot country code for finland>.

8h
revised Dynamic substitution of toString() implementation of the base class
remove superfluous "[java]"
1d
revised How to get Integrated Windows Authentication to work with Seam?
edited tags
2d
revised What non-programming books should programmers read?
formatting; links
2d
revised Looking for Java spell checker library
edited tags
Dec
12
revised Is null an Object?
irrelevant? huh? if any question should be tagged 'null' (and there are 400 currently), it is this one!
Dec
12
revised Is null an Object?
edited tags
Dec
10
revised Different ways of write singleton in java
fix typos
Dec
10
comment Different ways of write singleton in java
@Steve: Yeah, it came out in 2008. Definitely a worthwhile (and much needed) update, even if the best parts of it remain largely unchanged from the 1st ed
Dec
10
revised Different ways of write singleton in java
add Bloch's justification
Dec
10
answered Different ways of write singleton in java
Dec
9
comment String Conversion
@Kumar: If jellybean's answer solved your problem, consider "accepting" it by ticking the green checkmark on the left.
Dec
7
comment Free java projects Online and download
Well, it probably belongs more to SO than to SU. There are lots of "where to find online resources related to language or technology X" type questions on SO.
Dec
3
awarded  Necromancer
Dec
2
revised fastest way to query database in java
edited tags
Nov
30
comment Adding elements to an array?
Also, you need to realise that ArrayList which you're using is not the same as array. It's a type of Collection (or, more specifically, List) – see the Java Collections tutorial linked to above.
Nov
29
revised Java Collection filtering
edited tags; edited title
Nov
29
revised Java: null pointer exception?
tweak code formatting to improve readability
Nov
27
revised How can I use the Dreyfus Model of skill acquisition?
improve tagging. also rewrite the question text as a full sentence, and add wikipedia link
Nov
26
comment Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
Nope, it doesn't work as you say - that mutable list (obviously) follows the contract defined by Collection.remove(). Do try it out with a small test program - that's really quick to do: copypastecode.com/16197
Nov
26
comment Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
Hmm, actually, it doesn't remove all nulls. See Collection.remove() Javadoc: "Removes a single instance of the specified element from this collection". If a Set was used for resourceIds, then this would indeed work.
Nov
26
comment Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
Excellent advice, thank you! Using Predicates.notNull() and putting the Function in a constant indeed clarify the code a lot.
Nov
26
revised Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
clarify example code slightly
Nov
26
revised Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
trying to fix indentation
Nov
26
asked Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
Nov
23
revised ‘Remove middleman’ IntelliJ refactoring on an empty interface
typo
Nov
17
awarded  Popular Question
Nov
10
revised java - effective files copying
edited tags
Nov
10
comment java - effective files copying
Oh, the NIO related answers here might be of interest to you: stackoverflow.com/questions/106770/…
Nov
10
comment java - effective files copying
To simplify your code you could use e.g. Commons IO (see Guillaume's answer), but whichever library you choose won't change the fact that copying (as opposed to moving) a large number of files will be slow due to disk IO limitations.
Nov
10
comment java - effective files copying
Only problem is that no released version of Guava exists yet - only option is to check out trunk sources from their svn. (Correct me if I'm wrong.)
Nov
10
comment Get the array of strings by matching the pattern in the given string
By the way, looking at your earlier questions... if an answer solves your problem, don't forget to mark it as "accepted" by ticking the green checkmark on the left.
Nov
10
revised Get the array of strings by matching the pattern in the given string
deleted 13 characters in body
Nov
10
revised Get the array of strings by matching the pattern in the given string
some formatting
Nov
9
revised Sun Certified Java Architect.
edited tags
Nov
9
comment Unit for estimating hours in Scrum tool
One way to avoid the problem you mentioned is agreeing that new stories are not started until earlier ones are finished (or have absolutely no work left that can be divvied up). Also, I think there's nothing wrong using hours for estimating how much work remains for a task; these are rough estimates and giving them does not take a lot of time.
Nov
8
comment Using the right numeric data type
Kevin - Well, yeah, but that wasn't awfully clear from the answer, especially when there isn't a word about the fact that BigDecimal would be the right way! Such examples would better serve as an appendix to e.g. your own answer which lays out the basic rules of thumb way more clearly (as voters agree)
Nov
8
revised Best book for getting up-to-speed on Ruby on Rails
formatting
Nov
8
comment What non-programming books should programmers read?
gettingreal.37signals.com. And you would describe it as a non-programming book?
Nov
7
comment Java Algo to Find smallest and second smallest Number in List
More downvotes please! :P If I'm going to delete this, I might just as well get the Peer Pressure tag for it. ;)
Nov
7
revised Initializing program with files passed as main arguments (system.getProperty())
remove superfluous JAVA from title
Nov
7
revised Which J2EE web development framework to choose for a simple, accessible application?
edited tags
Nov
7
comment Java Algo to Find smallest and second smallest Number in List
Well, right, perhaps this is a bit silly answer to that q. Still, in the real world, you should start optimising this kind of stuff only after your profiler shows that there's a real performance bottleneck there (assuming you're not writing a library or something).
Nov
7
revised Java Algo to Find smallest and second smallest Number in List
simplify
Nov
7
comment Java Algo to Find smallest and second smallest Number in List
The question does mention single loop though, so we could argue about that part of course. :) This solution itself uses zero loops, obviously, although under the hood probably 3 are involved (one for making the copy). In any case, I think this approach should be mentioned too.
Nov
7
comment Java Algo to Find smallest and second smallest Number in List
Heh, I don't know about any assignments. This meets the spec of finding two smallest (even with duplicates), and no-one said it wouldn't be ok to use the libraries ;-) (stackoverflow.com/questions/822768/…)
Nov
7
revised Java Algo to Find smallest and second smallest Number in List
added 686 characters in body
Nov
7
answered Java Algo to Find smallest and second smallest Number in List
Nov
7
comment Using the right numeric data type
I'm not a big fan of your example code, because you shouldn't be using double for monetary data to begin with. You should use BigDecimal. See e.g. this: stackoverflow.com/questions/965831/… and Item 48 in the book Effective Java (2nd ed).
Nov
7
revised Sort Map<String, Object> by keys with IgnoreCase?
edited tags
Nov
6
revised Remove even numbers from an ArrayList
some language and formatting cleanup