User Subtwo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T16:23:43Zhttp://stackoverflow.com/feeds/user/20364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1459325/redmine-and-scrum2Redmine and ScrumSubtwo2009-09-22T10:39:06Z2009-09-22T11:51:40Z
<p>What is the best support for Scrum in Redmine?</p>
<ul>
<li>Best practices?</li>
<li>Plugin support?</li>
</ul>
<p>All plugins I've tried are either not that active anymore and/or not up to the task of managing a major project using Scrum.</p>
<p>I've googled to no avail...</p>
http://stackoverflow.com/questions/1456322/what-is-the-difference-in-productivity/1456370#14563704Answer by Subtwo for What is the difference in productivity ?Subtwo2009-09-21T19:27:10Z2009-09-21T19:27:10Z<p>It is hard to measure productivity because:</p>
<ul>
<li>Seemingly productive programmers may actually create work for themselves (creating bad software with lots of issues to solve later on)</li>
<li>Bad productivity may show up only years later when maintenance of a badly designed system becomes a nightmare</li>
<li>Writing good code takes time</li>
<li>Good programmers usually end up helping other not so good ones... (Which doesn't really help to boost their productivity in the sense of produced lines/hour)</li>
</ul>
http://stackoverflow.com/questions/1377716/what-code-or-output-is-art-worthy/1377918#13779182Answer by Subtwo for What code or output is art worthy?Subtwo2009-09-04T08:19:59Z2009-09-04T08:19:59Z<p>Art is in the eye of the beholder, for me:</p>
<ul>
<li>Whenever I find a piece of code that inspires me I get the same feeling that I do from other kind of art</li>
<li>Code that is written for no specific purpose other than to push limits and provoke common beliefs (see demo scene on C64 from the 80:s and later)</li>
<li>Code that put a lot of efforts to achieve something a "hard" or "impossible" way just because it can be done while another much more "easier" solution is available</li>
</ul>
<p>There are a lot more but you get the idea...</p>
http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical2Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:16:04Z2009-08-27T10:33:56Z
<p>I have a performance problem related to string comparison (in Java).</p>
<p>I'm working on a project that needs to sort a huge list (a TableViewer in Eclipse). Anyway I've pinpointed the bottleneck down to the call to compareTo() for the string to be compared.</p>
<p>Is there any way to optimize the performance of a string compare? I've searched and googled to no avail... </p>
<p>As the project is strictly limited to a Win32 environment, I was thinking that maybe it would be possible to leverage on that...</p>
<p>Any suggestions would be greatly appreciated.</p>
<p><em>EDIT:</em> I forgot to mention that I would need both numerical comparison and literal comparison of the strings.</p>
<p><em>EDIT2:</em> The goal is essentially to speed up the user interface because it is unacceptable to wait a few seconds each time you click on the header of the table to perform a sort. I'm looking into maybe caching values somehow to speed up the comparison. As the strings are pretty much static I think it would be possible.</p>
<p><em>EDIT3:</em> I know a lot of you have been disturbed by the try()-catch() thing. Actually that is less of a concern because even if I remove that code and only execute the catch-block (a single compareTo()) it still executes at virtually the same speed as the original code. If however I comment out the compareTo() also; leaving me with only the overhead of the compare function (getting labels, etc.) it is lightning fast. So I still need a better way to compare strings. Either by caching or by doing some other magic.</p>
<p>Unfortunately it is not possible to change the sorting algorithm - however I doubt that it is that slow because it succeeds in sorting pure integers quite fast.</p>
<p><em>CLARIFICATION:</em></p>
<p>The compare function is implemented as part of the TableViewer framework for performing sort operations which means that I'm not implementing the specific sorting algorithm but rather it is implemented by SWT/JFace. I'm only implementing the compare function.</p>
<p>What is further more interesting is the fact that the code for sorting doubles is <em>faster</em> than the string comparison. It is faster to sort columns with only numbers than with actual literal strings.... Which leads me to the conclusion that something fishy is going on in the compareTo() method...</p>
<p>Here is the core of the function:</p>
<pre><code>// e1Label and e2Label is Strings to be compared
//
// Be smart about the comparison and use non-lexical comparison if
// possible (i.e. if both strings are actually numbers...)
//
// Warning: This is only "semi-smart" as the sorting might get "a bit"
// messed up if some of the values in a column can be parsed as
// doubles while others can not...
//
try {
// Try using numeric (double) comparison of label values
//
double e1_double = Double.parseDouble(e1Label);
double e2_double = Double.parseDouble(e2Label);
rc = Double.compare(e1_double, e2_double);
} catch (NumberFormatException e) {
// Use lexical comparison if double comparison is not possible
//
rc = e1Label.compareToIgnoreCase(e2Label);
}
</code></pre>
http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1319556#131955648Answer by Subtwo for how to keep yourself from perfectionism when codingSubtwo2009-08-23T21:02:30Z2009-08-23T21:02:30Z<p>Some tips that made me escape from the "perfect world":</p>
<ul>
<li>Don't marry your code</li>
<li>Write as if you are going to throw it away (if not today, next week)</li>
<li>Iterate often</li>
<li>Align your efforts and code with the reality once in a while</li>
<li>Think of you code as a means to a specific end (a special case) not as a general solution to achieve world peace and produce sliced bread at the same time</li>
<li>Work on a side-project to keep your perfectionism ventilated</li>
<li>Appreciate the warm feeling you get when something is released (each iteration) rather than when it is "finished"</li>
<li>Realize that you'll never get the time spent back (you won't find a similar problem again that is worth the time you spend on a perfect solution)</li>
</ul>
http://stackoverflow.com/questions/988711/how-can-i-keep-up-with-new-technologies/988780#9887800Answer by Subtwo for How can I keep up with new technologies?Subtwo2009-06-12T20:05:26Z2009-06-12T20:05:26Z<p>My simple advice for bettering your programming style:</p>
<ul>
<li>Pick a technology that you find productive and "fun" and keep with it to learn how to fully explore it's potential.</li>
<li>Don't try to learn all the new technologies all the time - just keep yourself oriented.</li>
<li>Seek advice and solutions where and when you actually need them - don't waste time learning solutions to problems you don't (yet) have.</li>
<li>Regarding design patterns... Well... I'll probably get shot for this, but I don't really like the idea of cramming them all into my head "just in case". They are really a cooking book of "good solutions" for common problems. My advice here is: Whenever you run into problems that you can't come up with an obvious/immediate solution for - use them as reference.</li>
<li>Learn from your mistakes (you'll make them).</li>
<li>Don't marry your code. Throw away and rewrite is an excellent way of bettering the style.</li>
</ul>
http://stackoverflow.com/questions/988588/is-using-unsigned-integer-overflow-good-practice/988714#9887141Answer by Subtwo for Is using unsigned integer overflow good practice? Subtwo2009-06-12T19:51:24Z2009-06-12T19:51:24Z<p>To put it shortly:</p>
<p><i>It is perfectly legal/OK/safe to use unsigned integer overflow as you see fit as long as you pay attention and adhere to the definition (for whatever purpose - optimization, super clever algorithms, etc.)</i></p>
http://stackoverflow.com/questions/901216/why-stl-header-files-have-no-extension/901234#9012343Answer by Subtwo for why STL header files have no extension?Subtwo2009-05-23T09:51:54Z2009-05-23T09:51:54Z<ul>
<li>The #include directive doesn't discriminate file types (it's just a glorified copy-paste operation) - no automatic adding of .h is happening.</li>
<li>C++ standard header files are provided without the .h extension</li>
<li>Sometimes backward compatibility header files are provided by the vendor with the same name with the .h extension added</li>
</ul>
<p>It all has to do with namespaces. The .h counterparts for C++ standard headers usually #includes the proper C++ standard header (without .h extension) and then issues a bunch of using (something like this):</p>
<p>FILE: iostream.h</p>
<pre><code>#include <iostream>
using std::iostream;
using std::ostream;
using std::ios;
...
</code></pre>
<p>whereas the headerfile without the .h extension does not pollute the namespace with all the defined classes and types.</p>
http://stackoverflow.com/questions/900754/what-are-the-good-parts-in-the-poorly-thought-of-non-standard-c-libraries/901204#9012041Answer by Subtwo for What are the good parts in the poorly-thought-of non-standard C++ libraries?Subtwo2009-05-23T09:25:37Z2009-05-23T09:25:37Z<p>On a more general note I think one of the reasons that people stick with old, awkward and perhaps even obsolete libraries is that they have grown used to it and anything new and shiny might do the job better but are harder to grasp/understand initially. And so you stay with what is familiar and keep your productivity.</p>
<p>I think it is a balance between getting the job done and getting the job done "right". Somewhere in between is probably where most of us end up.</p>
http://stackoverflow.com/questions/899531/c-libraries-questions-need-definite-answersopinions/899578#8995781Answer by Subtwo for C++ Libraries: Questions need Definite Answers(Opinions)Subtwo2009-05-22T19:25:26Z2009-05-22T19:25:26Z<p>If you're concerned about cross-platform development you should really checkout <a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a> as it provides not only a GUI widget set but also other platform independent solutions. (And it's open source and has a nice commercial friendly license attached to it as well). </p>
<p>Furthermore it's modular and you can basically include just the stuff you need - so in that sense it is light weight, or at least it can be.</p>
<p>I've used it in several projects (commercial) with great success and once you get a hang of the API it is quite powerful.</p>
<p>Other alternatives like GTK+ and QT are all good but in my opinion they lack a bit of the support for the underlying plumbing.</p>
http://stackoverflow.com/questions/746171/best-algorithm-for-bit-reversal-from-msb-lsb-to-lsb-msb-in-c/746683#7466830Answer by Subtwo for Best Algorithm for Bit Reversal ( from MSB->LSB to LSB->MSB) in C Subtwo2009-04-14T07:49:09Z2009-04-14T07:49:09Z<p>Of course the obvious source of bit-twiddling hacks is here:
<a href="http://graphics.stanford.edu/~seander/bithacks.html#BitReverseObvious" rel="nofollow">http://graphics.stanford.edu/~seander/bithacks.html#BitReverseObvious</a></p>
http://stackoverflow.com/questions/720707/how-to-return-two-dimensional-char-array-c/720746#7207462Answer by Subtwo for how to return two dimensional char array c++ ?Subtwo2009-04-06T09:17:32Z2009-04-06T09:23:11Z<p>I would really recommend using STL vector<> or boost/multi_array containers for this. </p>
<p>If you must use arrays, then I would recommend using a typedef to define the array.</p>
<pre><code>typedef char[16][10] TBoard;
</code></pre>
<p>You could also return </p>
<pre><code> char**
</code></pre>
<p>...but then you would need to typecast it to the correct size in order to index it correctly. C++ does not support dynamic multiple dimension arrays.</p>
<p>Also as others have suggested you can't return an object on the stack (i.e., local variable)</p>
http://stackoverflow.com/questions/719650/open-source-dev-environment-for-c-whats-better/719689#7196891Answer by Subtwo for open source dev environment for C++: what's better?Subtwo2009-04-05T21:04:03Z2009-04-05T21:04:03Z<p>Personally I have used Eclipse+CDT for a number of projects. Paired with wxWidgets it has provided me with enough to keep myself pretty much crossplatform (which I think is a big plus).</p>
<p>Also QT has some interesting releases with an IDE now, make sure you check it out: <a href="http://www.qtsoftware.com/products/developer-tools" rel="nofollow">http://www.qtsoftware.com/products/developer-tools</a></p>
<p>Like earlier suggestion, just start coding, you will eventually find out what is the appropriate mix for you. It varies greatly between individuals what is the "best" IDE or mix of command line tools, etc.</p>
http://stackoverflow.com/questions/649789/why-artificially-limit-your-code-to-c/650065#6500659Answer by Subtwo for Why artificially limit your code to C?Subtwo2009-03-16T11:42:25Z2009-03-16T11:42:25Z<p>There are loads of arguments about embedded programming, performance and stuff, I don't buy them. C++ easily compares to C in those areas. <strong>However:</strong></p>
<p>Just recently after having programmed in C++ for over 15 years I've been rediscovering my C roots. I must say that while there are good features in C++ that makes life easier there are also a load of pitfalls and a kind of "there-is-always-a-better-way" of doing things. You never actually get quite happy about the solution you did. (Don't get me wrong, this could be a good thing, but mostly not).</p>
<p>C++ gives you infinite gunfire. Which could be arguably good but somehow you always end up using too much of it. This means that you are disguising your solutions with "nice" and "pretty" layers of abstractions, generality, etc. </p>
<p>What I discovered going back to C was that it was actually fun programming again. Having spent so much time modeling and thinking about how to best use inheritance I find that programming in C actually makes my source code smaller and more readable. This is of course depending on you level of self-discipline. But it is very easy to put too much abstractions on straight forward code, which is never actually needed.</p>
http://stackoverflow.com/questions/636102/should-i-always-ever-never-initialize-object-fields-to-default-values/636238#63623814Answer by Subtwo for Should I always/ever/never initialize object fields to default values?Subtwo2009-03-11T20:32:18Z2009-03-11T20:32:18Z<p>Think long term maintenance.</p>
<ul>
<li>Keep the code as explicit as possible.</li>
<li>Don't rely on language specific ways to initialize if you don't have to. Maybe a newer version of the language will work differently?</li>
<li>Future programmers will thank you.</li>
<li>Management will thank you.</li>
<li>Why obfuscate things even the slightest?</li>
</ul>
<p><strong>Update:</strong> Future maintainers may come from a different background. It really isn't about what is "right" it is more what will be easiest in the long run.</p>
http://stackoverflow.com/questions/633813/automatic-entry-exit-trace-in-c/633823#6338231Answer by Subtwo for Automatic Entry Exit trace in CSubtwo2009-03-11T09:14:06Z2009-03-11T09:14:06Z<p>First of all. If you want to log something it will take time, no matter how you accomplish it. That being by aspect programming or something else. If your application is time critical you should have some switch to turn on/off debugging.</p>
<p><strong>Update:</strong>
Checkout <a href="http://perfinsp.sourceforge.net/hookit%5Flinux.html" rel="nofollow">http://perfinsp.sourceforge.net/hookit_linux.html</a></p>
http://stackoverflow.com/questions/608748/how-to-avoid-the-80-20-rule-in-software-development/608806#6088062Answer by Subtwo for How to avoid the 80/20 rule in software developmentSubtwo2009-03-04T00:23:34Z2009-03-11T06:03:53Z<p>When it comes to time estimating this is my experience:</p>
<ol>
<li><p>If you can't positively say that a task will take less than 4 hours you can't estimate it accurately. Break it down in smaller pieces and repeat recursively.</p></li>
<li><p>Making such a time estimate is no picnic, it will take time, you will basically have to iron out the complete project in manageable chunks meaning that any changes to the requirement will result in a changed time-plan (surprising, isn't it?)</p></li>
<li><p>The biggest problem is that we can't possibly foresee all the details (maybe, let's say 20% perhaps? Leaving you the rest 80% unestimated...) - see SCRUM as others already have pointed out.</p></li>
<li><p>Management will seldom "accept" such a detailed time estimate as it will "take too long" to implement.</p></li>
</ol>
<p>However, as management is interested in making profit, they are also interested in cutting corners. So you should identify the corners possible to cut and make sophisticated compromises based on the real life scenarios involved. Backed by management you can accomplish a lot of these last 20% by doing nothing (sad in a way I guess, but still true).</p>
<p>Because the last 80% of the work which represents the last 20% of the final product is really polishing and ironing out bugs and adapting to changed requirements, etc. It might be possible to have some limited first version, etc, etc, be creative.</p>
http://stackoverflow.com/questions/630650/errors-on-beginner-bash-script/630733#6307332Answer by Subtwo for Errors on beginner bash scriptSubtwo2009-03-10T15:15:00Z2009-03-10T15:15:00Z<p>If nothing else double-check that you have a newline at the end of the last line in the script.</p>
http://stackoverflow.com/questions/630266/is-it-reasonable-to-have-more-than-65536-user-defined-types-in-large-projects/630554#6305541Answer by Subtwo for Is it reasonable to have more than 65536 User Defined Types in large projects?Subtwo2009-03-10T14:43:10Z2009-03-10T14:43:10Z<p>It is a matter of priorities. Is the time (and amount of code) spent on implementing "unlimited" number of types justifiable in the current scope of the project?</p>
<p>You would also want to consider maintainability as the project/compiler grows.</p>
<p>I would say that special cases like having an obese amount of types don't really justify taking that into account if you're not specifically targeting this. Who is your target audience?</p>
<p><strong>UPDATE:</strong>
In some cases you might actually want to restrict yourself in order to become more efficient in some other aspect (like memory, execution speed, etc.) As long as it is clearly documented I think you should go with what fits your specific needs.</p>
http://stackoverflow.com/questions/629040/supporting-gpl-based-plugins/629344#6293443Answer by Subtwo for Supporting GPL based plugins.Subtwo2009-03-10T08:49:12Z2009-03-10T12:02:03Z<p>The usual IANALBMGI (I am not a lawyer but my girlfriend is) disclaimer.</p>
<p>However, I find this quite interesting and would like to speculate a bit.</p>
<p>You can draw a parallel to the commercial/non-open-source applications and frameworks that allow people to write plug-ins and add-ons. E.g., Internet Explorer, Adobe Photoshop, Microsoft Visual Studio, Microsoft Office, etc, etc. </p>
<p>You can't really force them to adopt any other license by simply releasing a GPL:ed plug-in/add-on for their application/framework.</p>
<p>So I would say that as long as you don't include any GPL:ed source code in your framework you wouldn't need to worry about what licenses your users are using. As you say, your code it is not a derivative work of any GPL:ed code.</p>
<p>UPDATE:
Please take a look at <a href="http://stackoverflow.com/questions/141605/is-it-legal-way-to-get-use-gpl-code-in-close-source-application-through-plugin">Is it legal way to get use gpl code in close source application through plugin</a> for further useful information and clarifications.</p>
http://stackoverflow.com/questions/623475/reverse-engineer-c-dll/623634#6236340Answer by Subtwo for Reverse engineer C++ DLLSubtwo2009-03-08T14:13:13Z2009-03-08T14:13:13Z<p>A little depending on your situation I would keep the legacy/binary DLL as-is and write a wrapper DLL that will change and/or add any additional behavior. </p>
<p>The idea is to aggregate the old functionality in a new DLL which imports the old one.</p>
http://stackoverflow.com/questions/621776/how-to-reduce-cpu-usage-of-a-program/621797#6217971Answer by Subtwo for How to reduce CPU usage of a program?Subtwo2009-03-07T12:48:47Z2009-03-07T12:48:47Z<p>It's all too easy to blame the hardware. I would suggest you try running your program on a different system and see how that turns out with the same data.</p>
<p>Probably you have a bug.</p>
http://stackoverflow.com/questions/618403/what-is-the-best-ide-for-c-development-why-use-emacs-over-an-ide/618655#6186551Answer by Subtwo for What is the best IDE for C Development / Why use Emacs over an IDE?Subtwo2009-03-06T12:18:03Z2009-03-06T12:18:03Z<p>I've moved from a terminal text-editor+make environment to Eclipse for most of my projects. Spanning from C and C++, to Java and Python to name few languages I am currently working with.</p>
<p>The reason was simply productivity. I could not afford spending time and effort on keeping all projects "in my head" as other things got more important. </p>
<p>There are benefits of using the "hardcore" approach (terminal) - such as that you have a much thinner layer between yourself and the code which allows you to be a bit more productive when you're all "inside" the project and everything is on the top of your head. But I don't think it is possible to defend that way of working just for it's own sake when your mind is needed elsewhere.</p>
<p>Usually when you work with command line tools you will frequently have to solve a lot of boilerplate problems that will keep you from being productive. You will need to know the tools in detail to fully leverage their potentials. Also maintaining a project will take a lot more effort. Refactoring will lead to updates in make-files, etc.</p>
<p>To summarize: If you only work on one or two projects, preferably full-time without too much distractions, "terminal based coding" can be more productive than a full blown IDE. However, if you need to spend your thinking energy on something more important an IDE is definitely the way to go in order to keep productivity.</p>
<p>Make your choice accordingly.</p>
http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/608861#6088611Answer by Subtwo for Magic numbers vs named constantsSubtwo2009-03-04T00:54:08Z2009-03-04T00:54:08Z<p>I would draw the line based on the size of the project. The larger the project, the more abstractions and constants... As simple as that.</p>
http://stackoverflow.com/questions/608631/header-files-in-c-and-c/608712#6087125Answer by Subtwo for Header Files in C and C++Subtwo2009-03-03T23:42:52Z2009-03-03T23:42:52Z<ol>
<li><p>Header files are not mandatory.</p></li>
<li><p><code>#include</code> simply copy/paste whatever file included (including .c source files)</p></li>
<li><p>Commonly used in real life projects are global header files like <code>config.h</code> and <code>constants.h</code> that contains commonly used information such as compile-time flags and project wide constants.</p></li>
<li><p>A good design of a library API would be to expose an official interface with one set of header files and use an internal set of header files for implementation with all the details. This adds a nice extra layer of abstraction to a C library without adding unnecessary bloat.</p></li>
<li><p>Use common sense. C/C++ is not really for the ones without it.</p></li>
</ol>
http://stackoverflow.com/questions/602096/do-many-python-libraries-have-relatively-low-code-quality/602128#6021280Answer by Subtwo for Do many Python libraries have relatively low code quality?Subtwo2009-03-02T12:24:54Z2009-03-02T12:31:37Z<p>Well, they <strong>are</strong> open source. As such they will also evolve over time, if they are good enough. </p>
<p>That's one of the many beauties of open source.</p>
<p>Often there is little sense in writing lot of documentation and "good" code if you don't know whether the project will live on. That would just be a waste of time.</p>
<p>Edit: Of course writing good code would never hurt the first time around though... But maybe just "getting the job done" is good enough in many cases. I think that otherwise we wouldn't enjoy the vast amount of options when it comes to OSS.</p>
<p>I think that if enough people act a specific way there might be some explanation to it. They are not just randomly doing so to offend you.</p>
http://stackoverflow.com/questions/595787/what-is-a-good-scripting-language-to-integrate-into-high-performance-applications/596944#5969440Answer by Subtwo for What is a good scripting language to integrate into high-performance applications?Subtwo2009-02-27T22:38:57Z2009-02-27T22:38:57Z<p>If you haven't looked at it yet I would suggest you check out <a href="http://www.angelcode.com/angelscript" rel="nofollow">Angelscript</a>.</p>
<p>I have successfully used it in a cross platform environment (Windows and Linux with only a recompile) and it is designed to integrate well with C++ (both objects and code). </p>
<p>It is lightweight and supports multi-threading (in the sense that the question was asked), performs well and compiles to byte code which could be done in advance.</p>
http://stackoverflow.com/questions/356160/which-game-scripting-language-is-better-to-use-lua-or-python/585757#5857571Answer by Subtwo for Which game scripting language is better to use: Lua or Python?Subtwo2009-02-25T12:17:10Z2009-02-25T12:17:10Z<p>Just for future reference there is a nice script language which I have embedded a couple of times that have a small footprint and executes relatively fast called AngelScript.</p>
<p><a href="http://www.angelcode.com/angelscript/" rel="nofollow">http://www.angelcode.com/angelscript/</a></p>
<p>It has a C/C++ like syntax and is designed to be easy to integrate with your C/C++ code. My experience with it is that it is extremely lightweight and fairly straight forward.</p>
http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/583428#5834281Answer by Subtwo for How to psyche yourself to just program the damn thingSubtwo2009-02-24T20:25:07Z2009-02-24T20:25:07Z<p>To get me started:</p>
<ul>
<li>Sleep deprivation</li>
<li>Lots of coffee</li>
</ul>
<p>To get me over the finish line:</p>
<ul>
<li>Sleep</li>
<li>Tea</li>
</ul>
http://stackoverflow.com/questions/555968/what-keeps-you-motivated-at-your-job/581021#5810211Answer by Subtwo for What keeps you motivated at your job?Subtwo2009-02-24T09:07:26Z2009-02-24T09:07:26Z<p>I've been programming professionally as a contractor for about 10+ years now and all I can say is that all these nice words about technology and self improvement and coworkers are all fine and all but that's not really what the motivating factor for me is. All will be gone and different tomorrow anyway.</p>
<p>Instead the most inspiring factor for me is being able to provide some kind of "help" or "improvement" to the people I work for and perhaps more important the people I work with. </p>
<ul>
<li>If I'm able to simplify some code to make it more maintainable - good!</li>
<li>If I can improve the software so that the end-user will not be as annoyed as they were before - even better!</li>
<li>If I can contribute to a better working environment by writing some small scripts that help with a mundane and boring task - that will make my day!</li>
</ul>
<p>That and the fact that someone will actually pay me for playing around with computers all day long. Amazing... I can't imagine what other line of work I would be fit to perform, I would get bored or fed up within a month. So everyday I go to work, I'm genuinely thankful that the world needs programmers.</p>
<p>Yeah, that and the mortgage of course...</p>
http://stackoverflow.com/questions/1316293/linux-web-platform-for-quick-development/1316408#1316408Comment by Subtwo on Linux web platform for quick development?Subtwo2009-10-16T14:53:54Z2009-10-16T14:53:54Z+1 I totally agree with keeping things simple at the first stage. Nothing could be worse than over-engineering and never deliver.http://stackoverflow.com/questions/1459325/redmine-and-scrum/1459345#1459345Comment by Subtwo on Redmine and ScrumSubtwo2009-09-23T06:56:39Z2009-09-23T06:56:39Z(correction: Of course I meant to keep those away up-to-date, but you know what i mean)http://stackoverflow.com/questions/1459325/redmine-and-scrum/1459345#1459345Comment by Subtwo on Redmine and ScrumSubtwo2009-09-23T06:55:38Z2009-09-23T06:55:38ZThanks! 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.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340213#1340213Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T10:40:57Z2009-08-27T10:40:57Z+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.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340051#1340051Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T10:24:08Z2009-08-27T10:24:08ZI 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)http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numericalComment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T10:15:52Z2009-08-27T10:15:52ZOhh, sorry. The actual items are not <i>that</i> many actually. It could be between 3000-8000 items.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340076#1340076Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T10:14:27Z2009-08-27T10:14:27ZEven 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!http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340036#1340036Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T10:09:27Z2009-08-27T10:09:27ZMaybe 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.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339979#1339979Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:59:25Z2009-08-27T09:59:25ZI tried you suggestion but I'm sad to say it doesn't really make a difference in speed. It was a nice try though.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339927#1339927Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:50:30Z2009-08-27T09:50:30ZThe data in the strings is unpredictable meaning it can be both numbers and literals, doubles, integers, names, etc.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339929#1339929Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:49:15Z2009-08-27T09:49:15ZYes, you're probably right. I'll look into if it is possible to do precalculation and caching to speed things up.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339979#1339979Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:46:41Z2009-08-27T09:46:41ZI 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.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339966#1339966Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:42:52Z2009-08-27T09:42:52Z+1 this is actually a pretty good idea. The strings would be pretty much constant over at least a limited period of time.http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1339898#1339898Comment by Subtwo on Fastest way to compare strings (literal and numerical)Subtwo2009-08-27T09:37:21Z2009-08-27T09:37:21ZAlthough 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.http://stackoverflow.com/questions/1320745/abstract-class-in-javaComment by Subtwo on Abstract class in JavaSubtwo2009-08-24T07:07:37Z2009-08-24T07:07:37ZOne 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!