Subtwo

1,440
reputation
173 views

Registered User

name Subtwo
member for 1 year
seen Dec 16 at 23:24
website
location Sweden
age 35
I have a general interest in mathematics and a more specific interest in programming.

I work as a software developer consultant and I live with my two kids and my wife in the southern of Sweden.

Oct
16
comment Linux web platform for quick development?
+1 I totally agree with keeping things simple at the first stage. Nothing could be worse than over-engineering and never deliver.
Oct
11
accepted why STL header files have no extension?
Sep
23
comment Redmine and Scrum
(correction: Of course I meant to keep those away up-to-date, but you know what i mean)
Sep
23
comment Redmine and Scrum
Thanks! I was thinking along those lines but I needed to know that I didn't miss anything. Our project is scattered geographically (at least most of the time) and a web-based integration with the issue tracking system would be a great added value. At the least to keep those not away up-to-date and to keep a centralized place to find information.
Sep
23
awarded  Yearling
Sep
22
asked Redmine and Scrum
Sep
21
answered What is the difference in productivity ?
Sep
19
awarded  Populist
Sep
10
awarded  Nice Answer
Sep
4
answered What code or output is art worthy?
Aug
28
awarded  Scholar
Aug
27
comment Fastest way to compare strings (literal and numerical)
+1 Yes. You are right. I would have to consider the possibility of having an even larger list in the future. Unfortunately the time is extremely limited for an advanced implementation with virtual tables at the moment but will probably be needed in the future. Thanks for the suggestion. I'll try to squeeze some performance out of the current solution as it is today and recommend a different approach for the future.
Aug
27
comment Fastest way to compare strings (literal and numerical)
I maybe was a bit vague but implementing the algorithm was not an option for me, I have no doubt that it could prove fruitful if it was possible (I mean possible in the practical - within budget kind of way)
Aug
27
revised Fastest way to compare strings (literal and numerical)
added 685 characters in body
Aug
27
comment Fastest way to compare strings (literal and numerical)
Ohh, sorry. The actual items are not that many actually. It could be between 3000-8000 items.
Aug
27
comment Fastest way to compare strings (literal and numerical)
Even if I were to eliminate all double conversions and parsing and exceptions it don't make much difference (strange isn't it). If I replace all my code with a single compareTo() call it is still performing horribly slow. So I think the solution has to be to either speed up the actual string comparison or to reduce the need to compare strings. I greatly appreciate your answer though, thanks!
Aug
27
comment Fastest way to compare strings (literal and numerical)
Maybe it is possible to attach values to each object depending on the column and then use those for caching the position in the list. The hard part is to figure out the actual position when you just get called with in a compare-method given two items at a time.
Aug
27
comment Fastest way to compare strings (literal and numerical)
I tried you suggestion but I'm sad to say it doesn't really make a difference in speed. It was a nice try though.
Aug
27
comment Fastest way to compare strings (literal and numerical)
The data in the strings is unpredictable meaning it can be both numbers and literals, doubles, integers, names, etc.
Aug
27
comment Fastest way to compare strings (literal and numerical)
Yes, you're probably right. I'll look into if it is possible to do precalculation and caching to speed things up.
Aug
27
comment Fastest way to compare strings (literal and numerical)
I though so too but I've tried and removed the exception and only did string comparison (i.e. only the last catch block) but the performance was essentially the same curiously enough.
Aug
27
comment Fastest way to compare strings (literal and numerical)
+1 this is actually a pretty good idea. The strings would be pretty much constant over at least a limited period of time.
Aug
27
revised Fastest way to compare strings (literal and numerical)
added 324 characters in body
Aug
27
comment Fastest way to compare strings (literal and numerical)
Although I totally agree with you on the algorithm part it is out of my control. I've updated the question a bit to reflect the scenario better.
Aug
27
revised Fastest way to compare strings (literal and numerical)
added 1383 characters in body
Aug
27
awarded  Student
Aug
27
asked Fastest way to compare strings (literal and numerical)
Aug
24
comment Abstract class in Java
One thing I like about SO is that you would get an answer that is condensed, well put and to the point without any of the usual BS found on the rest of the web... Well, something like that anyway. +1 for the question!
Aug
24
comment how to keep yourself from perfectionism when coding
@Alcon: My point is that while refactoring (and you should do because nothing is perfect the first time around) you might be more likely to throw "inperfect" code away if you didn't write it to last forever.
Aug
24
awarded  Good Answer
Aug
23
awarded  Nice Answer
Aug
23
comment how to keep yourself from perfectionism when coding
I like this answer. It has a certain depth to it if you think about it...
Aug
23
answered how to keep yourself from perfectionism when coding
Aug
23
comment A Java programmer has questions regarding C header files
Subjectively what I've experienced is that the tradition of hard-core old timers is that Java is surely a baby-talk language.
Aug
23
comment A Java programmer has questions regarding C header files
@Colin: C is not OO. C++ is but that an entirely different beast...
Aug
23
comment A Java programmer has questions regarding C header files
The answer not THAT crappy... +1
Aug
23
comment From Visual Studio to Exclipse: Improve user experience
It would help a great deal to know what you try to do with Eclipse. Are developing Java? Eclipse is excellent. C# not so excellent choice. C++ is working acceptably I think with the most recent CDT versions.
Aug
17
comment Macro recursive expansion to a sequence
+1 for a nice explanation!
Aug
17
comment How do I write Java code in Windows and compile and run in Linux
There might be several reasons why one would like to cross-build for Eclipse. You could have a build-server build for a multitude of platforms.