Esko
|
Registered User
|
Finnish software engineer
Things I've done and decided to share:
|
|
4h |
revised |
Reading double values from a file. Tags do not belong to title. |
|
8h |
comment |
When should we use intern method of String ? Bozho: Well actually it is, this one's just a lot better refined as a question. |
|
1d |
answered | Determine the most common occurance in an array |
|
1d |
revised |
Determine the most common occurance in an array edited title |
|
1d |
revised |
Spring, db and property file configuration. added 2 characters in body |
|
1d |
comment |
Spring, db and property file configuration. He could actually by providing a stateful Spring bean factory. However usually that sort of things falls under the category of forcing the use of technology for the sake of the technology itself instead of actual need so I wouldn't recommend it. |
|
1d |
revised |
java: Is there an object like a “Set” that can contain only unique string values, but also contain a count on the number of occurrences of the string value? edited tags |
|
1d |
comment |
java: Is there an object like a “Set” that can contain only unique string values, but also contain a count on the number of occurrences of the string value? I wouldn't call Map.Entry clunky, however admittedly it has its oddities such as the capability of getting garbage collected almost immediately which may result in Heisenbugs in single-threaded programs. |
|
1d |
accepted | java: Is there an object like a “Set” that can contain only unique string values, but also contain a count on the number of occurrences of the string value? |
|
1d |
answered | java: Is there an object like a “Set” that can contain only unique string values, but also contain a count on the number of occurrences of the string value? |
|
2d |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? Time flies, sorry :) Yes, I tried that too and got even more obscure errors. |
|
2d |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? That was my initial reaction too and I made sure that's not the problem here. I don't know if ModalWindow internals do that though, I think I'll have to check that next. |
|
Dec 3 |
answered | When should I call the Java garbage collector? |
|
Dec 3 |
comment |
Multi-Dimensional Graphing in Java The point of processing is that it allows anyone to get a quick visual feedback based on their scripts which allows people to prototype their crazy ideas such as "Hey, what if I multiply sin curve with tanh!?" That means it's good/great for prototyping but it's not the only thing it can do. |
|
Dec 3 |
answered | Taking the next step with java development? |
|
Dec 2 |
comment |
It is a bad practice to use Sun’s proprietary Java classes? This is a valid suggestion to identify the problem (although not a proper answer). |
|
Dec 2 |
comment |
Common “Truisms” that need correcting the most. One of the greatest related quotes I heard a bit ago freely paraphrased "*I read twitter the other day and noticed that some management guy was complaining that unit tests are bad and hurt the product he's responsible for because now his team of bug hunters find only a fraction of the amount of bugs as they did before and now he feels a lot less safe allowing the release of new versions because of that.*" |
|
Dec 2 |
accepted | Grails security |
|
Dec 2 |
comment |
Which Java based MVC framework is most similar to ASP.NET MVC? I'd be happy to helpf but I'm unfamiliar with ASP.NET MVC. Could you list the good things about it which are the things you really like and would like to see in the equivalent Java framework to help us find one for you? |
|
Dec 2 |
comment |
CSV File to XML This XML looks horrible! |
|
Dec 1 |
comment |
Storing dynamic form data in DBMS, looking for the optimal approach Can't unfortunately tell what the end result was, but lets just say we all learned alot from this paper: labs.google.com/papers/mapreduce.html Yes, it's quite a leap from that paper to a solution that worked with a similar system but in the end everyone was pleased. |
|
Dec 1 |
comment |
Something like HashMap but sorted? Exactly what I had in mind too. |
|
Dec 1 |
comment |
Storing dynamic form data in DBMS, looking for the optimal approach Thanks. Wait for a while before accepting though, that way others may still answer since I'm not entirely sure all the DB wizards of SO are awake at this hour. Oh and I've done something similar before and this is basically how I did it back then - that's also the source of the warning in the first paragraph, by scrapping the database with a completely proprietary solution we saw a 28 000% performance increase in this system that used a similar thing (not for question but something similar structurally). |
|
Dec 1 |
answered | Storing dynamic form data in DBMS, looking for the optimal approach |
|
Nov 30 |
answered | Is it possible a long GC cycle is causing “Connection refused” exceptions? |
|
Nov 30 |
comment |
Java foreach loop: for (Integer i : list) { … } I understand, however I'm showing here the general idea of capturing the last object. The question is a bit vague in that sense that he doesn't really say what he wants to do, just how he wants to do it. |
|
Nov 30 |
revised |
Convert a String to an Enum ? Tags do not belong to title. |
|
Nov 30 |
answered | Java foreach loop: for (Integer i : list) { … } |
|
Nov 30 |
comment |
Grails security Psst, SO etiquette is that you select one of the answers as "correct" one (green checkmark under the up/downvote counter) after you feel like you've given one. I know, sometimes it's hard because there's so many good answers but it will help everyone in the future, especially those who don't have time to read every single word related to the question. |
|
Nov 30 |
revised |
Grails security fixed some typos |
|
Nov 29 |
comment |
Generics and Class.forName Thorbjørn: Okay, took a bit longer than I expected but as promised, here's the utility I was talking about: code.google.com/p/bean-property-controller/… It doesn't have all the tricks for instantiating I know of, however it can instantiate a bit more exotic objects to some extent already. |
|
Nov 29 |
awarded | ● Popular Question |
|
Nov 28 |
answered | One CSS File or individual CSS files for each page? |
|
Nov 28 |
comment |
Best Font Face for Printed Report Garamond, actually. It looks absolute crap on monitor but that's mostly because it's meant for printing. |
|
Nov 28 |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong?WicketTester#startPanel() actually adds the given panel to DummyPanelPage with the id panel to enable testing it as the single component on the page. I did however try using Page as ModalWindow's content but that didn't work either. |
|
Nov 27 |
comment |
draw dependency graph for a java class .dot format means DOT Language (en.wikipedia.org/wiki/DOT_language) notation in text file which can be used with eg. GraphViz to generate all kinds of graphs. |
|
Nov 27 |
answered | Grails security |
|
Nov 26 |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? Sorry in advance for the long title (unless someone condenses it to a better and shorter one) and long code samples. |
|
Nov 26 |
asked | Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? |
|
Nov 26 |
comment |
Difference between Java Collection and Collections Iterator is a generalized view to a collection, how'd that sound? :) |
|
Nov 25 |
comment |
Regex a xml string Stop upvoting this, you all know this is the wrong way to approach the problem :( |
|
Nov 25 |
answered | Regex a xml string |
|
Nov 25 |
answered | Difference between Java Collection and Collections |
|
Nov 24 |
answered | customising serialisation of java collections using xstream |
|
Nov 23 |
comment |
Rmock class which has inner class Ah my bad, thought somehow it was just a field instead of a class declaration. The statement stands for fields :) |
|
Nov 23 |
comment |
How do you code the “Hello World!” program in your favourite language? I think your XML definition is lacking, you should have separate <word genus="something">, <whitespace> and <sentence> wrappers at least to allow for easy XPath selection. |
|
Nov 23 |
comment |
Is Delphi dead? Note the extensive API support they have. |
|
Nov 23 |
answered | java webpart like asp.net ? |
|
Nov 23 |
answered | Rmock class which has inner class |
|
Nov 22 |
comment |
Computer Language puns and jokes As said, it can't be translated, especially with some automated translator. |
