User Newtopian - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:47:16Zhttp://stackoverflow.com/feeds/user/25812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1544289/purposefully-debugging-without-using-a-debugger/1802386#18023861Answer by Newtopian for Purposefully debugging without using a debugger?Newtopian2009-11-26T08:53:03Z2009-11-26T08:53:03Z<p>I use a debugger when :</p>
<ul>
<li>I'm almost certain it is something stupid that I missed somewhere (variable not initialized, test conditions inverted or some other smack in the forehead god i'm stupid kinna stuff)</li>
<li>The test still fails and I just cannot figure out why</li>
<li>It is hard to track logs because of frequent context jumps (listeners, callbacks etc) and the loggers are not contextualized (named after the class and not after the context)</li>
</ul>
<p>In all it is a balance between speed and accuracy. However from experience if I end up spending a lot of time around a piece of code there is a good chance I will have to come back to it, so I add logs and I add tests so I do not have to come back to it, or it I do all the work I have done to understand the code remains and I can build on top.</p>
<p>One reason I do not like debuggers is that all the work I do figuring out how it works is wasted once the debugger is off. If I spend the time learning about a piece of code I want this knowledge to be available the next time I (or someone else) get to it. Adding trace code is a very good way to have "Dynamic comments" that is always there and can be summoned anytime.</p>
<p>At large... pretty much anything that is removed before shipping to the customer I shy away from. If I put a safety net around my system there is no reason my customer cannot benefit from it while using it as I did while programming it. This is especially true if I am the one that has to support it afterward... I hate supporting so I want to make it as painless as humanly possible.</p>
http://stackoverflow.com/questions/1750001/sql-inner-joining-two-massive-tables/1760770#17607701Answer by Newtopian for SQL: Inner joining two massive tablesNewtopian2009-11-19T03:46:37Z2009-11-19T03:46:37Z<p>I would try to solve the issue outside the box, maybe there is some other algorithm that could do the job much better and faster than the database. Of course it all depends on the nature of the data but there are some string search algorithm that are pretty fast (Boyer-Moore, ZBox etc), or other datamining algorithm (MapReduce ?) By carefully crafting the data export it could be possible to bend the problem to fit a more elegant and faster solution. Also, it could be possible to better parallelize the problem and with a simple client make use of the idle cycles of the systems around you, there are framework that can help with this.</p>
<p>the output of this could be a list of refid tuples that you could use to fetch the complete data from the database much faster.</p>
<p>This does not prevent you from experimenting with index, but if you have to wait 6 days for the results I think that justifies resources spent exploring other possible options.</p>
<p>my 2 cent</p>
http://stackoverflow.com/questions/1286211/where-can-i-find-sample-alogrithms-for-analyzing-historical-stock-prices/1286261#12862611Answer by Newtopian for Where can i find sample alogrithms for analyzing historical stock prices?Newtopian2009-08-17T05:18:08Z2009-10-30T02:03:38Z<p>First you will need a solid math background : statistics in general, correlation analysis, linear algebra... If you really want to push it check out dimensional transposition. Then you will need solid basis in <a href="http://en.wikipedia.org/wiki/Data%5Fmining" rel="nofollow">Data Mining</a>. <a href="http://en.wikipedia.org/wiki/Association%5Frules" rel="nofollow">Associations</a> can be useful if yo want to link strict numerical data with news headlines and other events.</p>
<p>One thing for sure you will most likely not find pre-digested algorithms out there that will make you rich... </p>
<p>I know someone who is trying just that... He is somewhat successful (meaning is is not loosing money and is making a bit) and making his own algorithms... I should mention he has a doctorate in <a href="http://en.wikipedia.org/wiki/Actuarial" rel="nofollow">Actuarial science</a>.</p>
<p>Here are a few more links... hope they help out a bit</p>
<ul>
<li><a href="http://mathworld.wolfram.com/ActuarialScience.html" rel="nofollow">http://mathworld.wolfram.com/ActuarialScience.html</a></li>
<li><a href="http://www.actuary.com/actuarial-science/" rel="nofollow">http://www.actuary.com/actuarial-science/</a></li>
<li><a href="http://www.actuary.ca/" rel="nofollow">http://www.actuary.ca/</a></li>
</ul>
<p>Best of luck to you</p>
http://stackoverflow.com/questions/1480140/calling-a-method-on-an-object-the-type-of-which-i-dont-know/1480368#14803680Answer by Newtopian for Calling a method on an object the type of which I don't knowNewtopian2009-09-26T03:33:55Z2009-09-26T03:33:55Z<p>I was going for a series of comments but the more I look at it the less I think that this will work at all... ever... at least not in the present form. There are two major problems in your proposal :</p>
<p>1- Erasure generics. The processor is a generic class that is instantiated for a specific type to be processed. As long as you feed it that type you are good to go. On the other hand the ListPostProcessor is declared to be a processor type that handles lists of anything but turns around and wishes to get the exact required processor type for the list content. No amount of generics acrobatics will allow you do do that, partly because Java generics are erased after compilation leaving just the raw type. Therefore all the generics declaration are gone once the program is running.</p>
<p>2- Rutime Type routing : this is the part that hurts: What mechanics decides how the data is routed to the appropriate processor ? Do you have processors for all possible types or all possible types that extend Object ? How is it supposed to know what processor to get ? What does a processor do anyways ? I would think that one would create a Processor, extending the interface for a specific type or type structure and use the automatic type casting generics provide to start working on the appropriate type right away. In the case of the ListPostProcessor it has no idea what processor type to call, firstly because generics type information are erased but also you would require some sort of factory or dispatcher in addition to the ListPostProcessor to call the right processor.</p>
<p>3- Even if all of the above finally worked how is a single PostProcessor supposed to handle all the objects of a list of anything. The only way would be to instantiate a PostProcesor of Object Therefore this code would work but I would suppose not really what you are after :</p>
<pre><code> public class ListPostProcessor implements PostProcessor<List<? extends Object>>{
public void process(List<?> t){
final PostProcessor<Object> p = new PostProcessor<Object>(){
public void process(Object o){
// do stuff
}
};
for (Object o : t){
if (p != null){
p.process(o);
}
}
}
}
</code></pre>
<p>Or if you really want to process each item with it's own type then you need some magic and the PostProcessor would need to be inside the loop. Like so :</p>
<pre><code>public class ListPostProcessor implements PostProcessor<List<? extends Object>>{
public void process(List<?> t){
for (Object o : t){
if (p != null){
PostProcessor<? extends Object> p = ProcessorFactory.getAppropriateProcessor(o);
p.process(o);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1457606/javascript-dead-in-25-years/1457655#14576550Answer by Newtopian for javascript dead in 25 years?Newtopian2009-09-22T01:01:35Z2009-09-22T01:01:35Z<p>Languages come and go... it depends on so many factors but mostly </p>
<ol>
<li>Is it still evolving ? if yes it stands a better chance of survival</li>
<li>How easy is it to develop in ? (initial cost, accessibility of tools, array of tools)</li>
<li>How easy is it to distribute programs done in that language ?</li>
<li>Are there capabilities this language offers that are not available in other languages.</li>
</ol>
<p>That is why Java struggled in the beginning but is doing better now (Client JRE was not installed on all system). That is why Pascal is all but dead (needs compiler, needs to target specific platform etc). That is why C and C++ are still very strong but will most likely be kept in the niche of low-level, embedded or real-time apps. And this is why C# has picked up a lot lately (Mono, free development environment).</p>
<p>Javascript... well if another language comes to be embedded in all the browsers as Javascript is then yes... maybe it will see more competition. But it will have to be darn good for it to replace it completely. Not saying that Javascript is great, just that it's good enough.</p>
http://stackoverflow.com/questions/233790/colorize-logs-in-eclipse-console5Colorize logs in eclipse consoleNewtopian2008-10-24T14:34:21Z2009-09-03T13:03:25Z
<p>Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the lines of ANSI escape codes (or anyother, HTML ?) where I could embed the colors in the string to have it colored in the logs.</p>
<p>It sure would help making the important bits stand out without resorting to weird layout, rather keep the layout to the log4j setups </p>
<p>here is an example of what I am looking for :</p>
<p>[INFO ] The grid is complete ....... <strong>false</strong></p>
<p>where the bold parts would be in blue, this coloring can be controlled by the application to an extent. like so (tags are conceptual and arbitrary, but you get the idea):</p>
<p>log.info(String.format("The grid is complete ....... <code><blue></code>%s<code></blue></code>", isComplete ));</p>
<p><hr /></p>
<p>On a more general note it is the ability to embed meta information in the logs to help the presentation of these logs. Much like we tag web pages content to help the presentation of the information by CSS.</p>
http://stackoverflow.com/questions/1370868/eclipse-debugger-doesnt-stop-at-breakpoint/1371231#13712311Answer by Newtopian for Eclipse - debugger doesn't stop at breakpointNewtopian2009-09-03T03:00:53Z2009-09-03T03:00:53Z<p>Usually when this happens to me (rare but it does) means that the code being executed is different than the code in the editor. It will happen from time to time for Eclipse that the built classes and the code in editor are out of sync. When that happens I get all sort of weird debugger behavior (debugging empty lines, skipping lines of codes etc).</p>
<p>Restarting Eclipse, clean all projects and rebuild everything usually clears things up. I had also the Maven plugins (older versions... had not had it for a while now) that had a tendency to do that too.</p>
<p>Otherwise it might be a bug, maybe the one Vineet stated,</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/1312249/what-is-the-most-boring-and-hard-part-of-your-job/1312345#13123450Answer by Newtopian for What is the most boring and hard part of your job?Newtopian2009-08-21T14:35:40Z2009-08-21T14:35:40Z<p>Having to read someone else masking their [lazyness | incompetence | sadism] with painful amount of documentation..</p>
<p>worst...</p>
<p>having to deliver functionality to the customer based on these documents</p>
<p>epic...</p>
<p>having to maintain it afterwards</p>
http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/1304322#13043222Answer by Newtopian for How to make programming more comfortable?Newtopian2009-08-20T06:34:09Z2009-08-20T06:34:09Z<ul>
<li>Regular exercise (gym, pool etc whatever ticks your clock, thrice a week is a good balance for me)</li>
<li>Get up and take a short walk once per 1-2 hour, stretch.</li>
<li>Massage once per month by a professional (Sports type massages work well for me on the back aches and the sour mice shoulders)</li>
<li>Get comfortable... This does not necessarily means expensive stuff, just be imaginative with your environment, don't be afraid to poke holes of dig dents to hold things in place. A small nail or screw can often do more than a 1200$ office chair.</li>
<li>Good eat, good sleep</li>
</ul>
http://stackoverflow.com/questions/1300636/div-or-table-for-showing-database-data/1300687#13006870Answer by Newtopian for DIV or Table for showing database dataNewtopian2009-08-19T15:24:54Z2009-08-19T15:24:54Z<p>I will answer your question with another question :</p>
<p>Do you want your data to remain presentable if CSS are not available ?</p>
<p>Yes, definitively go for Tables</p>
<p>No, it's up to you, whichever makes you all warm and fuzzy inside ;-)</p>
http://stackoverflow.com/questions/1297837/is-it-possible-to-find-users-location-by-ip-address/1297891#12978911Answer by Newtopian for Is it possible to find user's location by IP address?Newtopian2009-08-19T05:05:20Z2009-08-19T05:05:20Z<p>It will not be reliable, I could use a VPN or a proxy and you would detect that IP instead of the one I obtained from the coffee shop's wifi.</p>
<p>Also, like others have mentioned you would be limited to the ISP's IP given to the shop's connection. I remember trying to determine my own location using that method. Although I was in Montréal the IP location would sometimes determine my location as in Toronto. This was most likely because my ISP was relaying traffic internally to another endpoint on their own backbone. Thus I really emerged on the net in Toronto, anything beyond that is part of a private network under the ISP`s control.</p>
<p>Another side effect worth mentioning, say two of the coffee shops use the same ISP, both have DHCP as it would most likely be the case, it is very well possible that the IP given to shop A will end up at shop B when the IP addresses leases are renewed. Thereby annihilating all sort of consistency from a home grown database.</p>
<p>So.. short answer.. technically it is possible, but realistically there is a very good change if it being useless for the level of granularity you want. If the shops were in different countries then you would have a better chance of getting it right (country that is), supposing of course I was not tunneling my traffic elsewhere.</p>
<p>You could always hack their router and install some sort of packet tagging in it... tough you did not hear that from me ;-)</p>
http://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering/1275636#12756363Answer by Newtopian for "it works-don't touch it" and continues engineeringNewtopian2009-08-14T01:43:26Z2009-08-14T07:39:42Z<p>Just so long as you are not fighting windmills alone against everyone else the best way to tackle this I found is to make refactoring part of the culture. That is, whenever you are going in the code for a bug fix, for a new feature then take an extra hour to think it through and place the changes in the grand scheme of things (this implies though that you, as a dev team, have one).</p>
<p>Then bring the appropriate refactoring, if necessary.</p>
<p>Your job as a developer is to produce good quality software, for this you (as a team) must be in control of the code base and this implies revisiting every once in a while what has been done and steer it in the right direction.</p>
<p>Whenever you confront the company with this code quality problem they will not care.. in fact most of the time they will see this as a waist of money, and so should they. With this in mind try to convince someone to pay your salary for rearranging useless comments !</p>
<p>When you go in a garage you see the difference right away between a good shop and a messy shop. Not to say the messy shop cannot do good work, but chances are if the place looks like a dump there is a fair chance they will produce garbage in direct proportion to the mess at hand.</p>
<p>Treat your code base like a garage. Your job is to keep the place clean, keep the tools clean and in good working condition, keep the stock room well stocked with everything in it's place and as a team you will be a lot more efficient. You should not have to ask management permission to clean the place up, it should be part of the job.</p>
<p>Unfortunately management cannot see the shop, as a result many coders never cared and have been very happy in working in the smelliest pig stale with cruft and crusts everywhere. </p>
<p>When you make estimates to management include in it time to refactor the needed parts, DO NOT just refactor for the hell of it, it will invariably come back and bite you in the ass and it will almost invariable be a waist of money for the company. Goal is that</p>
<ol>
<li><strong>Make a plan</strong>, stop the insanity... create an overview of how it should be, of the overall architecture of the system, of the layout of the code base etc and publish it in for all devs to see.</li>
<li><strong>Make it fit</strong> Every changes made to the system must be so that it fits in the grand scheme describbed above.</li>
<li><strong>Nobody likes an obsessive cleaner</strong> Only change things for which you have been asked to change by the people paying your salary. Unless of course you like giving your time away for free and get shit for it.</li>
<li><strong>Rework the plan</strong> Revisit often the grand scheme of things and decide together if it needs to be refactored. You will eventually fall in a case that was just not part of it, first refactor the plan, then refactor the system.</li>
<li><strong>Think it through</strong> Never give time estimates on a cafeteria napkin, to them (management) this napkin is a commitment and they will commit others to it, in other words they will hold you accountable for it, take a few hours to analyze the requested changes, draw it out and integrate in the grand scheme of things, take a quick look at affected code see how bad it is. Then multiply your estimate by three for all the stuff we always forget (tests, docs, build, reports etc...) unless of course your estimate procedure includes these artifacts. This represent the real estimate of the requested change. At first they will jump but they must get used to the real cost of things.</li>
</ol>
<p>A corollary of 5 is keep your estimates and compare with reality... you will be surprized on how off you are the first few times.</p>
<p>I hold to these basic rules and became MUCH more productive, I deliver on time, as promised and very seldom customer complain about bugs. I found that not doing this (as I was doing before) was like working on credit, at one point you have to pay-up... plus the more sloppy you were in your rush the steeper the interest rate !!! when viewed like this how do you think managers will react when you tell them that you had to borrow 3000 man hours at 60% interest to get the job done and now they must pay.</p>
<p>Anything else is like running like headless chicken spewing blood and gore all over the place...</p>
http://stackoverflow.com/questions/1266226/maven2-problem-with-pluginmanagement-and-parent-child-relationship3Maven2 - problem with pluginManagement and parent-child relationshipNewtopian2009-08-12T13:38:15Z2009-08-13T05:59:33Z
<p>from maven <a href="http://maven.apache.org/pom.html#Plugin%5FManagement" rel="nofollow">documentation</a> </p>
<blockquote>
<p>pluginManagement: is an element that is seen along side plugins. Plugin Management contains plugin elements in much the same way, except that rather than configuring plugin information for this particular project build, it is intended to configure project builds that inherit from this one. However, this only configures plugins that are actually referenced within the plugins element in the children. The children have every right to override pluginManagement definitions.</p>
</blockquote>
<p>Now : if I have this in my parent POM</p>
<pre><code> <build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<executions>
Some stuff for the children
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</code></pre>
<p>and I run mvn help:effective-pom on the parent project I get what I want, namely the plugins part directly under build (the one doing the work) remains empty.</p>
<p>Now if I do the following :</p>
<pre><code> <build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<executions>
Some stuff for the children
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</code></pre>
<p>mvn help:effective-pom I get again just what I want, the plugins contains just what is declared and the pluginManagement section is ignored.</p>
<p>BUT changing with the following </p>
<pre><code> <build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<executions>
Some stuff for the children
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<inherited>false</inherited> <!-- this perticular config is NOT for kids... for parent only -->
<executions>
some stuff for adults only
</execution>
</executions>
</plugin>
</plugins>
</build>
</code></pre>
<p>and running mvn help:effective-pom
the stuff from pluginManagement section is added on top of what is declared already. as such :</p>
<pre><code> <build>
<pluginManagement>
...
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
<inherited>false</inherited> <!-- this perticular config is NOT for kids... for parent only -->
<executions>
Some stuff for the children
</execution>
<executions>
some stuff for adults only
</execution>
</executions>
</plugin>
</plugins>
</build>
</code></pre>
<p>Is there a way to exclude the part for children from the parent pom's section ? In effect what I want is for the pluginManagement to behave exactly as the documentation states, that is I want it to apply for children only but not for the project in which it is declared.</p>
<h2>As a corrolary, is there a way I can override the parts from the pluginManagement by declaring the plugin in the normal build section of a project ? whatever I try I get that the section is added to executions but I cannot override one that exists already.</h2>
<p>EDIT:</p>
<p>I never did find an acceptable solution for this and as such the issue remains open. Closest solution was offered below and is currently the accepted solution for this question until something better comes up. Right now there are three ways to achieve the desired result (modulate plugin behaviour depending on where in the inheritance hierarchy the current POM is):</p>
<p>1 - using profiles, it will work but you must beware that profiles are not inherited, which is somewhat counter intuitive. They are (if activated) applied to the POM where declared and then this generated POM is propagated down. As such the only way to activate the profile for child POM is specifically on the command line (least I did not find another way). Property, file and other means of activation fail to activate the POM because the trigger is not in the POM where the profile is declared.</p>
<p>2 - (this is what I ended up doing) Declare the plugin as not inherited in the parent and re-declare (copy-paste) the tidbit in every child where it is wanted. Not ideal but it is simple and it works.</p>
<p>3 - Split the aggregation nature and parent nature of the parent POM. Then since the part that only applies to the parent is in a different project it is now possible to use pluginManagement as firstly intended. However this means that a new artificial project must be created that does not contribute to the end product but only serves the could system. This is clear case of conceptual bleed. Also this only applies to my specific and is hard to generalize, so I abandoned efforts to try and make this work in favor of the not-pretty but more contained cut and paste patch described in 2.</p>
<p>If anyone coming across this question has a better solution either because of my lack of knowledge of Maven or because the tool evolved to allow this please post the solution here for future reference.</p>
<p>Thank you all for your help :-)</p>
http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/1246039#12460392Answer by Newtopian for The case against checked exceptionsNewtopian2009-08-07T17:34:53Z2009-08-07T17:34:53Z<p>Ok... Checked exceptions are not ideal and have some caveat but they do serve a purpose. When creating an API there are specific cases of failures that are contractual of this API. When in the context of a strongly statically typed language such as Java if one does not use checked exceptions then one must rely on ad-hoc documentation and convention to convey the possibility of error. Doing so removes all benefit that the compiler can bring in handling error and you are left completely to the good will of programmers.</p>
<p>So, one removes Checked exception, such as was done in C#, how then can one programmatically and structurally convey the possibility of error ? How to inform the client code that such and such errors can occur and must be dealt with ?</p>
<p>I hear all sorts of horrors when dealing with checked exceptions, they are misused this is certain but so are unchecked exceptions. I say wait a few years when APIs are stacked many layers deep and you will be begging for the return of some kind of structured mean to convey failures.</p>
<p>Take the case when the exception was thrown somewhere at the bottom of the API layers and just bubbled up because nobody knew it was even possible for this error to occur, this even though it was a type of error that was very plausible when the calling code threw it (FileNotFoundException for example as opposed to VogonsTrashingEarthExcept... in which case it would not matter if we handle it or not since there is nothing left to handle it with).</p>
<p>Many have argued that not being able to load the file was almost always the end of the world for the process and it must die a horrible and painful death. So yeah.. sure ... ok.. you build an API for something and it loads file at some point... I as the user of said API can only respond... "Who the hell are you to decide when my program should crash !" Sure Given the choice where exceptions are gobbled up and leave no trace or the EletroFlabbingChunkFluxManifoldChuggingException with a stack trace deeper than the Marianna trench I would take the latter without a cinch of hesitation, but does this mean that it is the desirable way to deal with exception ? Can we not be somewhere in the middle, where the exception would be recast and wrapped each time it traversed into a new level of abstraction so that it actually means something ?</p>
<p>Lastly, most of the argument I see is "I don't want to deal with exceptions, many people do not want to deal with exceptions. Checked exceptions force me to deal with them thus I hate checked exception" To eliminate such mechanism altogether and relegate it to the chasm of goto hell is just silly and lacks jugement and vision. </p>
<p>If we eliminate checked exception we could also eliminate the return type for functions and always return a "anytype" variable... That would make life so much simpler now would it not ?</p>
http://stackoverflow.com/questions/1220719/autoindent-in-eclipse-possible/1220775#12207753Answer by Newtopian for AutoIndent in Eclipse possible?Newtopian2009-08-03T05:22:29Z2009-08-03T05:22:29Z<p>Personally all I use for this is the format options Window->preferences under Java->Code Style ->Formatter.</p>
<p>I once took the time to tweek how I like my code to look like when I work and exported the whole thing. After that I just code without too much bother on what it looks like. When I find the code looks messy ctrl-shit-f and the whole class becomes pretty again, comments and all.</p>
<p>After a while it pretty much became a reflex... </p>
<p>code code code</p>
<p>ctrl-s, ctrl-b (cause I disable auto build sometimes), ctrl-shift-f</p>
<p>code some more etc...</p>
<p>Once I got used to this I never really cared how it presented the code as i was typing because I knew it would look all pretty as soon as the loop/if/switch/method etc is finished</p>
http://stackoverflow.com/questions/1218385/any-good-literature-on-join-performance-vs-systematic-denormalization5Any good literature on join performance vs systematic denormalization ?Newtopian2009-08-02T08:06:09Z2009-08-03T02:25:15Z
<p>As a corollary to <a href="http://stackoverflow.com/questions/477226/sql-joins-vs-single-table-performance-difference">this question</a> I was wondering if there was good comparative studies I could consult and pass along about the advantages of using the RDMBS do the join optimization vs systematically denormalizing in order to always access a single table at a time.</p>
<p>Specifically I want information about :</p>
<ul>
<li>Performance or normalisation versus denormalisation.</li>
<li>Scalability of normalized vs denormalized system.</li>
<li>Maintainability issues of denormalization.</li>
<li>model consistency issues with denormalization.</li>
</ul>
<p>A bit of history to see where I am going here : Our system uses an in-house database abstraction layer but it is very old and cannot handle more than one table. As such all complex objects have to be instantiated using multiple queries on each of the related tables. Now to make sure the system always uses a single table heavy systematic denormalization is used throughout the tables, sometimes flattening two or three levels deep. As for n-n relationship they seemed to have worked around it by carefully crafting their data model to avoid such relations and always fall back on 1-n or n-1. </p>
<p>End result is a convoluted overly complex system where customer often complain about performance. When analyzing such bottle neck never they question these basic premises on which the system is based and always look for other solution. </p>
<p>Did I miss something ? I think the whole idea is wrong but somehow lack the irrefutable evidence to prove (or disprove) it, this is where I am turning to your collective wisdom to point me towards good, well accepted, literature that can convince other fellow in my team this approach is wrong (of convince me that I am just too paranoid and dogmatic about consistent data models).</p>
<p>My next step is building my own test bench and gather results, since I hate reinventing the wheel I want to know what there is on the subject already.</p>
<p>---- EDIT
Notes : the system was first built with flat files without a database system... only later was it ported to a database because a client insisted on the system using Oracle. They did not refactor but simply added support for relational databases to existing system. Flat files support was later dropped but we are still awaiting refactors to take advantages of database. </p>
http://stackoverflow.com/questions/1210024/how-big-is-big-development-team/1210274#12102741Answer by Newtopian for How big is BIG? (development Team)Newtopian2009-07-31T01:46:59Z2009-08-01T02:35:14Z<p>I dream of the day when all the different stages of development are part of a single team, instead of having team "conveniently" broken by job description. This organizational view tends to lean processes heavily towards the dreadful waterfall (god I hate this process!).</p>
<p>But to answer your question, I think the team should not exceed 10ish people with a few more gravitating around it without being full time part of it (training, marketing, clients, implementation, support). In all 80% - 20% devs vs management/QA should tend towards good productivity. If your architects can also dig in the code a bit all the better. Frequent design reviews with the whole team should also allow everyone to have good oversight over the whole project and not just their pile of bananas.</p>
<p>Here is an example of team break down that had worked really good for me :</p>
<ul>
<li>2 Sr devs that have a good grasp on architecture</li>
<li>4 Jr devs that can handle the grunt work </li>
<li>1 code ninja that can do some technological exploration (while also participating in the whole)</li>
<li>1 project manager, team lead, interface to the outside world to bring in the 2 pizzas </li>
<li>1 noisy QA guy to poke around the application, write acceptance tests etc. The noisy part was for the WTF/day metric. The quieter he was the better we did our job and the less ibuprofen we consumed.</li>
</ul>
<p>Around this gravitated some clients on whom we did frequent usability testing.</p>
<p>ha the good old days !!!</p>
http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1204081#12040810Answer by Newtopian for What career can I hope for if I like algorithms?Newtopian2009-07-30T01:56:18Z2009-07-30T01:56:18Z<p>Some often overlooked but can be highly fun algorithm heavy jobs (from actual offers I've seen over the years) :</p>
<ul>
<li>Public utilities, especially transport. I've seen job posting for Montréal's Transport System (STM). They wanted to optimize whole bunch of things to reduce costs so heavy use of graphs, simulations, workflow optimisations etc. looked like fun</li>
<li>Same goes for electric companies, especially the transport part. Many simulations ans such on the power distribution, failover, grid balancing etc</li>
<li>Meteorology and other earth simulation. Here though it will mostly be academic but there are a few privates and there are also public services that will need programmers for their systems.</li>
</ul>
<p>the rest I have in mind has pretty much been given already by others.</p>
<p>This being said... game AI is ripe with algorithmic and game are in dire need of more challenging opponents. However positions are few and game studio tend to shun large swath of the possible options, they like the comfort of what has been done already, the unbeaten paths usually leave a chill on their spine. Smaller studios will tend to be bolder.</p>
http://stackoverflow.com/questions/1169686/validation-of-tsv-file-in-java/1169812#11698121Answer by Newtopian for Validation of TSV file in JavaNewtopian2009-07-23T05:44:45Z2009-07-23T05:44:45Z<p>that depends on your definition of a TSV file.</p>
<p>Do they all have the same amount of columns ? or is it possible to omit the last empty columns ?</p>
<p>If they all have the same amount of columns then you can do a first validation on that. If it fails then you know the file is not valid.</p>
<p>Do they all have a header row ? if so you can use it to answer the above question and validate the file parsing.</p>
<p>Is quoting allowed ? if so is it allowed to place carriage returns or tabs on the quotes ? (will not necessarily help in validation but you'll have to think about it when parsing)</p>
<p>Is your text strictly text ? you can test for non printable characters and reject it on that basis. Again be careful here on the character encoding used for the file (UTF vs ASCII etc).
this can be placed in the code that does the first parsing from flat files into a data structure (list of map for example).</p>
<p>Further drilling in the file itself, if it is fixed format or the type of some data is known you can make a secondary parser to validate this data (dates, timestamps or other fixed format strings).
This second level can be done when you have discovered more about the content and are processing the data from the above structure.</p>
<p>The above are all empirical analysis as such you must expect false positives to fall though, though a false negative should not happen if you pick rules for which your entry files MUST adhere. Therefore all along the processing stack expect to encounter invalid data and be prepared to invalidate the whole file input, in other words never assume that the tests done give complete assurance that the file is correct.</p>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/1163977/how-would-you-find-out-if-a-machines-stack-grows-up-or-down-in-memory-java/1164096#11640960Answer by Newtopian for How would you find out if a machine’s stack grows up or down in memory? (JAVA)Newtopian2009-07-22T09:25:22Z2009-07-22T09:25:22Z<p>woah, you will not be able to get any usefull information out of such simple code in Java, least not that I know of.</p>
<p>The code you have makes a lot of assumptions that, even in C actually, may or may not be true. It will depend on the platform and OS that is running your program.</p>
<p>In Java you will be completely dependent on the JVM's implementation for addressing and as such will not be able to do this.</p>
<p>My first answer would be to use a profiler. You can also create your own profiling agent using the <a href="http://java.sun.com/j2se/1.5.0/docs/guide/jvmti/index.html" rel="nofollow">API provided (JVMTI)</a> for this purpose. It is a lot more complex certainly than your approach but you shouldbe able to get what you need.</p>
<p>There is also this <a href="http://publib.boulder.ibm.com/infocenter/javasdk/v5r0/topic/com.ibm.java.doc.diagnostics.50/diag/welcome.html" rel="nofollow">page</a> at IBM that can be of help.</p>
<p>This is pretty much all I have on the subject, I hope it will help you</p>
http://stackoverflow.com/questions/1152507/get-jvm-to-grow-memory-demand-as-needed-up-to-size-of-vm-limit/1152747#11527471Answer by Newtopian for Get JVM to grow memory demand as needed up to size of VM limit?Newtopian2009-07-20T10:13:28Z2009-07-20T10:13:28Z<p>if you have a lot of time on your hand you could try the following :</p>
<p>Try to obtain what is the needed memory vs input dataset. With this you can split processing in a different set of classes and create a new JVM process to actually process the data. Basically a Manager and a Worker. The Manager would do a basic analysis on the demanded dataset and spawn a Worker with the appropriate memory requirements. You could probably also set your Manager to be aware of the environment and warn the user when they are trying to operate on a dataset their machine cannot handle.</p>
<p>This is pretty much an extension on the answer provided by skaffman but will happen all within the same app as far as the user is concerned.</p>
http://stackoverflow.com/questions/1150072/install-cdt-plug-in-on-eclipse-ganymede/1150222#11502221Answer by Newtopian for Install CDT Plug-In On Eclipse GanymedeNewtopian2009-07-19T16:14:14Z2009-07-19T16:14:14Z<p>I personally use Pulse for this kind of stuff. It manages all plugin dependencies and so far has worked very well for me</p>
http://stackoverflow.com/questions/1146935/scrum-a-good-method-only-for-teams-with-full-time-on-sprints-developers/1147007#11470071Answer by Newtopian for Scrum : a good method only for teams with "full time on sprints" developers ?Newtopian2009-07-18T08:21:25Z2009-07-18T08:21:25Z<p>Although I have not the biggest mileage with SCRUM but the general rule is that when SCRUM is not working as well as it should it is usually because the sprint is too focused and the team has many tasks-responsibilities that extend beyond the sprint`s scope that are not taken into account. As such these tasks are then perceived as nuisance by team inside scrum and scrum perceived as nuisance by people left outside.</p>
<p>We have not yet tried SCRUM all out, however I did a few experiences here on many ways it could be implemented and the best results were when the team included people from many departments (Test, QA, Implementation, Dev, Architecture, Marketing). This implies that these persons are not full time in the team but the fact that they have tasks assigned to them in the scope of the current project means that they are usually more willing to spend the time on it.</p>
<p>Next biggest benefits is that it is possible to set aside some buffer time for unknowns such as spurious but critical support dev. When these occur a smaller team forms up and temporarily spins off from the main scrum to deal with the issue.</p>
<p>Finally things like installations, configurations etc are part of the scrum and as such are tallied with it.</p>
<p>Another approach that I will try next is to extend the idea so that instead of the one scrum-to-rule-them-all approach I will try to get smaller teams in place for each specific needs. The main problem with this for now is that not many people can assume the role of scrum master so right not it`s more chicken and egg.</p>
<p>On a more general note, I used SCRUM here but I never apply things by the book. I consider these techniques and approaches as idea buckets to draw from and experiment with to get the best possible match for our needs. However for this experimentation to work it sometimes have to be done subversively (you do scrum but never formalize that you do it). I find it the best way to soften them up to adopt new approaches and to cut more easily through the inherent change resistance we always confront ourselves with.</p>
<p>So far, by doing this, the workflow naturally evolves towards scrum-XP-agile-TDD type and slowly get them to shun the dreadful cascade they are so encroached in. Hopefully, in time they will realize that the grass is so much greener on my side of the fence :-)</p>
http://stackoverflow.com/questions/1146270/eclipse-is-trying-to-build-the-files-in-my-svn-directories-how-can-i-tell-it/1146837#11468370Answer by Newtopian for Eclipse is trying to build the files in my .svn directories... how can I tell it to stop?Newtopian2009-07-18T06:05:57Z2009-07-18T06:05:57Z<p>if you have the patience or not have too many of them folders you can right click it in the navigator view and make sure to check the derived property.</p>
<p>This should cause eclipse to ignore these folders.</p>
<p>...hmmm... wait a minute... you said you shuffled a lot of stuff around.... did you do this through windows explorer or inside eclipse ?</p>
<p>There are commands in SVN to move folders that are under source control, if you do not use them you run the chance that SVN will not recognized these folders from their original and will loos history attached to the file itself. worst somethins I got some weird side effects where the only solution was to</p>
<ol>
<li>delete all the .svn folders</li>
<li>copy all the source elsewhere</li>
<li>do a checkout from scratch</li>
<li>overwrite the files from repository with backup in 2</li>
<li>checkin</li>
</ol>
<p>Then I did the rearrangement from eclipse or directly in the SVN through the SVN repository explorer and started working again with a new checkout.</p>
<p>Usually eclipse deals fairly well with these .svn folders but in some rare occasion it gets all out of whack and I had to start from scratch, sometimes reinstalling eclipse from pulse directly (try pulse it's definitively worth it, reinstalling your environment from scratch on a new system is but a few clicks).</p>
<p>Anyhow.. hope this helps... good luck</p>
http://stackoverflow.com/questions/213445/outsourcing-and-your-job/1146813#11468131Answer by Newtopian for Outsourcing and your job.Newtopian2009-07-18T05:43:11Z2009-07-18T05:43:11Z<p>We went though a few outsourcing tryouts with mixed results ranging from bad to disastrous. Then recently we invested in our some mixed strategy where my company opened an office in China, hired Chinese devs, QA, marketing folks etc.</p>
<p>Again, depending on whom you talked it was either "the best thing since sliced bread" or "these guys are utterly useless" usually the former came out of the mouth attached to the arm signing checks while the former from the people having to redo the work once it arrived from China.</p>
<p>Then came the opportunity for me to actually move to China and sit with the team there.</p>
<ol>
<li>This is great, I get to travel,
live abroad learn new languages and
cultures </li>
<li>For the company this is
also great as the work quality was
raised significantly since help is
now just a shoulder tap away. + I
Can do training on the team here on
the parts of software engineering
that they have not yet mastered...
just that will be me busy for a long
time.</li>
</ol>
<p>However, a gloomy cloud still hovers over my head as I am still mostly perceived as "a very expensive developer". For the accountant all that matters is the numbers in the excel sheet, and for the owner of the company all he sees in me is 6 more Chinese developers (he obviously did not read <a href="http://en.wikipedia.org/wiki/The%5FMythical%5FMan-Month" rel="nofollow">Brooks</a>).</p>
<p>The main problem is metrics and it is not an easy one to solve. He can measure very easily objectively and precisely how much resources I consume compared to the other cheaper member of the team. But he cannot measure the impact of my work here of the difference in velocity of quality my presence bring on the code and on the team as a whole.</p>
<p>Until we can measure objectively the quality of a software, the usability, the end-user satisfaction, and correlate this to process changes, code metrics, trainings, features, bugs, new testing procedures etc we will continue to be perceived as Very Expensive Whiny Engineers and never appraised to our true value.</p>
<p>The guy who pays your salary very seldomly understands anything about software, maintainability, coupling, unit tests and all this technical mumbo jumbo.... all he cares about is that the software is delivered for the lowest possible money. And guess what... in many ways he is right, the wining team is always the one that get-it-done whatever the underlying code quality. If you really want to win this race... we have to let go our bickering and get it done as well... however where we will win is that in 10 years on the same code base if we played our cards right we still will get it done whereas they will struggle with software that is divergent in quality (the more you fix the more it fails).</p>
<p>We need ways to measure our work and to transpose these measurements into money that the big pants will understand until then the definition of getting-it-done will be based solely on delivery dates and production costs.</p>
http://stackoverflow.com/questions/1140893/developing-for-constant-change-in-a-corporate-environment/1141112#11411121Answer by Newtopian for Developing for constant change in a corporate environment?Newtopian2009-07-17T01:42:46Z2009-07-17T01:42:46Z<p><strong>Dedicated resources for process oversight, migration and creation.</strong></p>
<p>We have gone through merger and unmergers, then we bought other companies and are in the process of integrating them in our "process". I quote process here because, in my opinion we still do not have any to speak of.</p>
<p>Where we will eventually succeed I think is that we have dedicated resources in creating a process that works and that is company wide. Scrum is all good but it does not necessarily apply to the billing and marketing cycles of the enterprise, however it would works wonder in our dev, R&D and implementation teams (maybe even make a single team out of all three!). So how do we come up with the best process and practices for each to work efficiently in their areas of expertise while keeping it all tied in together ?</p>
<p>Our magic bullet here is that we have someone dedicated to this very task, he looks at how it is now, looks at what is needed and draw plans to get there and then executes them. He will work with the departments, with IT and whomever is required to get it done. Most important of all, he has the leadership and backing from the big heads to give him the proper leverage to get the big heavy boulders rolling (I'm sure you have these, any company big enough eventually gives a nice comfy chairs to whomever has exceeded their Peters threshold). Once the process is defined there comes the task of tooling the process appropriately and migrating all the data from all the different systems adopted ad-hoc by each teams - companies prior to the definition.</p>
<p>To do all this while you have to do your other tasks is but impossible, I know nearly got fired trying to do just that (stepped on one to many of them boulders), is why you need dedicated resources to this internal structuring. If you do not have this yet in your company I would make this my first field of battle.</p>
<p>To make an analogy what we got here is a Chef d'Orchestre that knows what a process is and that has the pants to get it done. This cannot be CE* type persons they are too busy for this but someone not in the critical path of any projects. That way he remains objective and can take a step back and look at the big picture without being constantly sucked in the zoo. I find that someone with development background that has experience in both agile and formal process paradigms is best suited for this job. The development process is most likely the hardest one to really nail and get going, if he can do this, the rest should be easy, least on paper. </p>
<p>Ever since we got this here changes come, it comes slow but it comes and so far it is a god send every times. Every changes made brings to light how the rest is inefficient and gives him more ammunition to get it done. This way I find it easier to live with the inefficiencies knowing someone is working at it and they will, eventually, be ironed out.</p>
<p>I wish you luck, it is not impossible but it is definitively doable.</p>
http://stackoverflow.com/questions/1130294/java-interface-usage-guidelines-are-getters-and-setters-in-an-interface-bad/1130593#11305930Answer by Newtopian for Java Interface Usage Guidelines -- Are getters and setters in an interface bad?Newtopian2009-07-15T10:26:07Z2009-07-15T10:26:07Z<p>Basically if the answer to "Do I need to know the value of [state, property, whateverThignAMaGit] in order to work with an instance of it ?" then yes... the accessors belong in the interface.</p>
<p>List.size() from John above is a perfect example of a getter that needs to be defined in an interface</p>
http://stackoverflow.com/questions/1130400/eclipse-classpath-entries-only-used-for-tests/1130518#11305180Answer by Newtopian for Eclipse classpath entries only used for testsNewtopian2009-07-15T10:07:22Z2009-07-15T10:07:22Z<p>Actually if you look in eclipse as to how Maven integrates dependencies it will not make the difference in test or runtime dependencies your test libraries are always accessible.</p>
<p>Maven will keep the difference when packaging the application and when it generates the runtime classpath if maven has control over the execution of that part. When eclipse is concerned Maven simply adds them all without question to the eclipse build path.</p>
<p>Why is it you need to have this separated like so ? What will this help you acheive ?</p>
http://stackoverflow.com/questions/1128929/possible-to-break-a-loop-when-outside-of-it/1129005#11290051Answer by Newtopian for Possible to break a loop when outside of it?Newtopian2009-07-15T01:53:30Z2009-07-15T05:23:43Z<p>If you change the problem and view it upside down it becomes quite simple.</p>
<p>Change your setter methods to actually return the value that was just entered. I also made age a local variable of the method to prevent side effects from creeping :</p>
<pre><code>Double Name_pairs::read_ages()
{
Double age;
cout << "Enter corresponding age: ";
cin >> age;
ages.push_back(age);
cout << endl;
return age;
}
</code></pre>
<p>Then in the loop you can test directly for the returned value :</p>
<pre><code> bool finished = false;
while(!finished)
{
finished = finished || "0" == np.read_names();
finished = finished || 0 == np.read_ages();
}
</code></pre>
<p>Since you are setting your exit condition in the main (type 0 to exit) it is preferable to test the exit condition there for consistency. </p>
<p>Is how I see it anyway... code is shorter and easier to understand</p>
<p><hr /></p>
<p>Edit I changed the code to reflects comments aem. This way the correct logical operator is used. As for the cascading evaluation it is quite true that if the first answer was 0 then the second question will not even be asked (finished evaluated to true thus the rest of the or statement will not be evaluated) and as such you must be careful of this (if for example you expect both Vectors to always have the same length). However I found that usability wise since the user already stated that he wanted to exit I saw no use in asking him the other question.</p>
http://stackoverflow.com/questions/97506/formatting-of-if-statements/1107839#11078390Answer by Newtopian for Formatting of if StatementsNewtopian2009-07-10T05:21:48Z2009-07-10T05:31:41Z<p>One liners are just that... one liners and should remain like this :</p>
<pre><code>if (param == null || parameterDoesNotValidateForMethod) throw new InvalidArgumentExeption("Parameter null or invalid");
</code></pre>
<p>I like this style for argument checking for example,it is compact and usually reads easily. I used to put braces with indented code all the time but found that in many trivial cases it just wasted spaces on the monitor. Dropping the braces for some cases allowed me to get into the meat of methods faster and made the overall presentation easier on the eyes. If however it gets more involved then I treat it like everything else and I go all out with braces like so :</p>
<pre><code>if (something)
{
for(blablabla)
{
}
}else if
{
//one liner or bunch of other code all get the braces
}else
{
//... well you get the point
}
</code></pre>
<p>This being said... I despise braces on the same line like so :</p>
<pre><code>if(someCondition) { doSimpleStuff; }
</code></pre>
<p>of worst</p>
<pre><code>if(somethingElse){
//then do something
}
</code></pre>
<p>It is more compact but I find it harder to keep track of the braces. </p>
<p>Overall it's more a question of personal taste so long as one does not adopt some really strange way to indent and brace...</p>
<pre><code> if(someStuff)
{
//do something
}
</code></pre>
http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240763#240763Comment by Newtopian on How do you encourage someone to learn to use the debugger?Newtopian2009-11-26T08:41:12Z2009-11-26T08:41:12ZIs that not why they created logging libraries ?? I used to prefer debugger over printf because of the pollution that had to be removed... now with Log4XXX I never remove print statements again... tracing code is now an occasion to strengthen the logs of the system, jumping to debugger right away only pushes the problem until later and add several orders of magnitude to the cost of the bughttp://stackoverflow.com/questions/1544289/purposefully-debugging-without-using-a-debugger/1544346#1544346Comment by Newtopian on Purposefully debugging without using a debugger?Newtopian2009-11-26T08:14:07Z2009-11-26T08:14:07Z@erelender : thing is with Printf you have to remove them once you are done, whereas with the logging library you leave the statements in and turn them on at the flick of a switch. So when you are done debugging and send it off to the client and it manages to fail again you can get the same logs very easily. if you miss the syntax you can wrap the library with sprintf or a formatter into something like log.infof().... get the best of both worlds...http://stackoverflow.com/questions/1544289/purposefully-debugging-without-using-a-debugger/1544663#1544663Comment by Newtopian on Purposefully debugging without using a debugger?Newtopian2009-11-26T08:10:24Z2009-11-26T08:10:24Zsame argument is also good for print lines, but what if the statement failed only once in a while... do you want still want to conditionally break or read through log file ? Personally I much prefer let the thing run, go for a beer, come back, ctrl-f for the log trace and start thinking than sitting in front of it waiting for it to break. http://stackoverflow.com/questions/1457606/javascript-dead-in-25-years/1457617#1457617Comment by Newtopian on javascript dead in 25 years?Newtopian2009-11-20T02:24:27Z2009-11-20T02:24:27ZDo not be so fast to dismiss Delphi... there are plenty of production application still in active development that uses Delphi. Most likely because their creator were taught this special language made just for them and never moved on to other languages. http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/614122#614122Comment by Newtopian on The case against checked exceptionsNewtopian2009-11-08T04:07:52Z2009-11-08T04:07:52ZBasically your argument is "Managing exceptions is tiring so I'd rather not deal with it". As the exception bubbles up it looses meaning and context making is practically useless. As designer of an API you should make is contractually clear as to what can be expected when things go wrong, if my program crashes because I was not informed that this or that exception can "bubbles up" then you, as designer, failed and as a result of your failure my system is not as stable as it can be.http://stackoverflow.com/questions/1480140/calling-a-method-on-an-object-the-type-of-which-i-dont-knowComment by Newtopian on Calling a method on an object the type of which I don't knowNewtopian2009-09-26T02:52:56Z2009-09-26T02:52:56ZFew questions : is your ListPostProcessor something that processes stuff or is it stuff that gets processed. In it's present form it seems a bit circular in it's intent.http://stackoverflow.com/questions/1387124/version-control-system-branch-question/1387147#1387147Comment by Newtopian on Version control system -> branch questionNewtopian2009-09-07T02:29:41Z2009-09-07T02:29:41ZWe do this as well... Ho the pain and suffering this is causing us. Regressions by the shovel full (because the bug fix was done in the production branch for the customer but not merged into the trunk). Release cycles that extend in eternity because the feature set cannot be completed in time but already has been committed partly in the same bunch... from this point no choice... finish what was started in a big rush, cut corners, spend next 3 months stabilizing and getting fire from management for yet a late and unstable release... sight http://stackoverflow.com/questions/1376743/svn-checkout-within-a-checkoutComment by Newtopian on SVN Checkout Within a CheckoutNewtopian2009-09-04T02:41:35Z2009-09-04T02:41:35ZNot that I am saying it is wrong to do so but why do you need to have the source code of all the libraries as opposed to just having the jar file for said library ? It seems to me like an overly complicated way to handle dependencies. Again, I am not criticizing the choice but just curious on the specific use case that motivates it (SVN external vs lib folder with jar).http://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering/1276770#1276770Comment by Newtopian on "it works-don't touch it" and continues engineeringNewtopian2009-09-02T08:31:35Z2009-09-02T08:31:35Z... cont... catch 22 here... to fix or not to fix.. Bug is critical for customer, must fix it.. touching the code base implies months of stabilization afterward... refactoring here is just not an option, it must be done... but doing so will destabilize the system etc... this is the basic premise behind the answer I gave below... yes do refactor but do not do it for the sake of it, do it because this is how the fix part becomes permanent.. as opposed to the bug part. Refactor is the only mean to prevent code rot, but refactor is also your worst ennemy when rotting has spread everywherehttp://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering/1276770#1276770Comment by Newtopian on "it works-don't touch it" and continues engineeringNewtopian2009-09-02T08:26:35Z2009-09-02T08:26:35ZI mostly agree with you however when code take the slippery slope towards sloppiness it is hard to get it back on track and most likely the damage done is permanent. However when recommending that refactors should not be attempted one must think of the cost of not doing it. The maintainability of the code will inevitably suffer to a point that it is stable so long you don`t touch it... At this point fixing ANY bugs has large destabilizing effects, once you get to that you do what... stop fixing any bugs because it us not economically viable to do so ?http://stackoverflow.com/questions/1360482/c-singleton-getinstance-method-or-instance-property/1360534#1360534Comment by Newtopian on C# Singleton "GetInstance" Method or "Instance" Property?Newtopian2009-09-01T04:55:49Z2009-09-01T04:55:49Z.Create() denotes a different pattern (Builder or Factory) where you delegate the construction of the object whereas the singleton refers to accessing the only copy of the object. This being said, the debate over .Instance or .GetInstance here is quite relevant. Take logging framework where there can be multiple loggers but each is a singleton instance (there is only one "toto" logger). Java should probably support the property as well. my 2 centhttp://stackoverflow.com/questions/1304174/how-to-strip-debug-code-during-compile-time-in-c/1304186#1304186Comment by Newtopian on How to strip debug code during compile time in C++?Newtopian2009-08-20T05:52:48Z2009-08-20T05:52:48ZYep .. thats exactly what macros are there for !!http://stackoverflow.com/questions/1300636/div-or-table-for-showing-database-data/1300687#1300687Comment by Newtopian on DIV or Table for showing database dataNewtopian2009-08-20T05:19:50Z2009-08-20T05:19:50Ztrue, There are cases when tabular data can be better served though DIV rather than tables (if you need to "relook" the whole thing to alter the tabular nature of the data). However I would tend to think that many of them are chronic consumers of advil when comes time to change the way the data looks.
I build a lot of HTML templates for medical data and put CSS to good use to wow! users that are used to 1960 era looking reports. However if for some reason the CSS is offline I still want the report to bear the same meaning. Loosing tabular nature in this case is out of the questionhttp://stackoverflow.com/questions/438461/how-do-you-track-versions-in-bugzilla/830582#830582Comment by Newtopian on How do you track versions in Bugzilla ?Newtopian2009-08-19T01:15:58Z2009-08-19T01:15:58ZI like the build numbering scheme.. makes it sooo much clearer than a synthetic number. Thanks. On the rest basically it is all a matter of what metric we wish to compile against the software version and what granularity we need it to be.http://stackoverflow.com/questions/438461/how-do-you-track-versions-in-bugzilla/441945#441945Comment by Newtopian on How do you track versions in Bugzilla ?Newtopian2009-08-19T01:12:53Z2009-08-19T01:12:53Zyeah... but Jira is quite expensive for non open source project.. not certain my bosse's boss is ready to shell that much cash for such a tool sight