Newtopian
|
Registered User
|
|
Dec 10 |
comment |
Is assert evil? ... cont ... besides How is the code "Assert(condition, "some text"); is much more complicated than if(condition) throw("some text");.. because you have to deal with the exception later in your code ? Maybe so, but at least the safety net remains active if, however unlikely, the situation does return in the future. As a final argument, the checking that asserts do can also be done in unit tests, again, with added advantages that the debug code and shipped code does not change and the information gathered from errors can be a lot more expressive with tests that it could with asserts. |
|
Dec 10 |
comment |
Is assert evil? @Peter : yes, sure, but the "bug" can have many sources, it can be a code error but it can be related to the data. Once you remove all the state checking that asserts provide you loose the possibility to detect some situations where erroneous information can enter your zone of trust and cause havoc, but this time, the "bug" goes undetected and your system can have unpredictable behavior. Only very rarely this redundant checking becomes problematic so performance wise so the optimization of removing this extra code with today`s system is antiquated.... |
|
Dec 10 |
comment |
Is assert evil? At this point, in newer platform asserts should only exist as syntactic sweeteners over normal exception mechanics so that programmers that refuse (there are so many reasons for this) to move on be allowed to carry the habit without detrimental effect on the whole work. |
|
Dec 10 |
comment |
Is assert evil? I hate asserts but in some cases they are a necessary evil since it just may be the only way to get the job done. however in platforms where alternatives are present, or better in the case of Go here, when building your own, there is no reason to continue using them. For this it is only natural that they be deprecated and eventually removed altogether, one may call this evolutionary attrition, where mechanisms are replaced by newer more efficient systems. |
|
Dec 7 |
answered | Is assert evil? |
|
Dec 7 |
comment |
Is assert evil? there is nothing inherently wrong with goto either... If you can write an assert.... you can write an exception for it... why not go directly with exceptions and leave asserts behind |
|
Dec 2 |
accepted | UI Driven Development |
|
Nov 30 |
answered | OOP: When is it an object? |
|
Nov 26 |
answered | Purposefully debugging without using a debugger? |
|
Nov 26 |
comment |
How do you encourage someone to learn to use the debugger? Is 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 bug |
|
Nov 26 |
comment |
Purposefully debugging without using a debugger? @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... |
|
Nov 26 |
comment |
Purposefully debugging without using a debugger? same 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. |
|
Nov 20 |
comment |
javascript dead in 25 years? Do 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. |
|
Nov 19 |
answered | SQL: Inner joining two massive tables |
|
Nov 8 |
comment |
The case against checked exceptions Basically 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. |
|
Oct 30 |
revised |
Where can i find sample alogrithms for analyzing historical stock prices? added 3 characters in body |
|
Oct 8 |
awarded | ● Yearling |
|
Sep 26 |
answered | Calling a method on an object the type of which I don’t know |
|
Sep 26 |
comment |
Calling a method on an object the type of which I don’t know Few 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. |
|
Sep 22 |
answered | javascript dead in 25 years? |
|
Sep 7 |
comment |
Version control system -> branch question We 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 |
|
Sep 5 |
accepted | How many of you are using an internally developed installer for your company? |
|
Sep 4 |
comment |
SVN Checkout Within a Checkout Not 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). |
|
Sep 3 |
answered | Eclipse - debugger doesn’t stop at breakpoint |
|
Sep 2 |
comment |
“it works-don’t touch it” and continues engineering ... 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 everywhere |
|
Sep 2 |
comment |
“it works-don’t touch it” and continues engineering I 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 ? |
|
Aug 26 |
accepted | Is it possible to find user’s location by IP address? |
|
Aug 21 |
answered | What is the most boring and hard part of your job? |
|
Aug 20 |
answered | How to make programming more comfortable? |
|
Aug 20 |
comment |
How to strip debug code during compile time in C++? Yep .. thats exactly what macros are there for !! |
|
Aug 20 |
comment |
DIV or Table for showing database data true, 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 question |
|
Aug 19 |
answered | DIV or Table for showing database data |
|
Aug 19 |
answered | Is it possible to find user’s location by IP address? |
|
Aug 19 |
comment |
How do you track versions in Bugzilla ? I 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. |
|
Aug 19 |
comment |
How do you track versions in Bugzilla ? yeah... 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 |
|
Aug 17 |
answered | Where can i find sample alogrithms for analyzing historical stock prices? |
|
Aug 14 |
revised |
“it works-don’t touch it” and continues engineering added 97 characters in body |
|
Aug 14 |
comment |
“it works-don’t touch it” and continues engineering I don't even ask before I reformat the code layout... Of course I use mostly Java with eclipse and ugly indentation is always a ctrl-shift-f away from extinction. this being said before applying this to code at large I would err on the cautious side... If you are to do it, do it on the class you are working on, clean it up before commit and triple check that your formatting tool did not do stupid things... after a while your co-workers will start to recover a sense of smell. |
|
Aug 14 |
answered | “it works-don’t touch it” and continues engineering |
|
Aug 13 |
revised |
Maven2 - problem with pluginManagement and parent-child relationship solution declaration; edited tags |
|
Aug 13 |
comment |
Maven2 - problem with pluginManagement and parent-child relationship For this to work I must activate the profile explicitly on the command line. Which means that for greatly simplifying a seldom edited file (pom.xml) I must somewhat complexify a very often used command. I have tried and turned the problem every which ways. I think the only solution is to separate the aggregation from the parent POM, which I was hesitant to do because it creates an artificial project that serves no real purpose other than structuring the build system. |
|
Aug 13 |
comment |
Maven2 - problem with pluginManagement and parent-child relationship I have tried that, unfortunately I cannot remove an execution section with this method. Also, changing a value with the same ID simply overrides this single value, thus for this to work I would have to redeclare the whole section with values that divert the action, this defeats the purpose of centralizing this behaviour so I do not repeat myself. |
|
Aug 12 |
asked | Maven2 - problem with pluginManagement and parent-child relationship |
|
Aug 12 |
comment |
Why does Maven have such a bad rep? I agree with some of what you say actually, though I think I finally got it right. To get what you want however you can have a look at Ivy, did not try it yet but it seems to bring dependency management in a more structured Ant environment. |
|
Aug 12 |
comment |
Why does Maven have such a bad rep? sooo true.. love maven but that took 2 years to get over the steep learning curve (only have so much time to spend on the build system, so I worked in sort-but-much-longer-than-I-wanted iterations spaced by a loooong time inbetween) |
|
Aug 11 |
comment |
How much effort do you put into following another programmer’s wishes? Please clarify the question... I have a very hard time understanding what you mean here |
|
Aug 11 |
awarded |
● |
|
Aug 8 |
comment |
How can I use Java WebService to push data to client You should have edited your question to provide this clarification instead of creating an answer |
|
Aug 7 |
comment |
In Java, when should I create a checked exception, and when should it be a runtime exception? Thank you I As starting to think I was the only one with this point of view !! |
|
Aug 7 |
comment |
When to throw an exception "I do not like using exceptions because you can not tell if a method throws an exception just by looking at the call. " this is why there are checked exceptions for languages that support them. |
