Search Results

19
votes

How to determine what log level to use?

I don't think there are any hard-and-fast rules; using the log4j-type levels, my 'rules of thumb' are something like: FATAL: the app (or at the very least a thread) i …
13
votes

What “already invented” algorithm did you invent?

Once, as I was walking home from the train, I thought to myself "wow, Linked Lists are totally awesome, except for the whole O(n) lookup thing, which makes them useless for a great many purposes. I …
4
votes

Why all the functions from object oriented language allows to return only one value (General)

It's not true that all Object-Oriented languages follow this paradigm. e.g. in Python (from …