Click here to Skip to main content
15,887,328 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Twitter sues Elon Musk Pin
zezba900014-Jul-22 7:45
zezba900014-Jul-22 7:45 
GeneralYou know you need more coffee when... Pin
Chris Maunder12-Jul-22 14:30
cofounderChris Maunder12-Jul-22 14:30 
GeneralRe: You know you need more coffee when... Pin
Super Lloyd12-Jul-22 14:41
Super Lloyd12-Jul-22 14:41 
GeneralRe: You know you need more coffee when... Pin
Southmountain12-Jul-22 15:17
Southmountain12-Jul-22 15:17 
GeneralRe: You know you need more coffee when... Pin
trønderen13-Jul-22 12:46
trønderen13-Jul-22 12:46 
GeneralRe: You know you need more coffee when... Pin
englebart13-Jul-22 14:28
professionalenglebart13-Jul-22 14:28 
GeneralRe: You know you need more coffee when... Pin
jmaida12-Jul-22 15:29
jmaida12-Jul-22 15:29 
GeneralRe: You know you need more coffee when... Pin
trønderen13-Jul-22 13:09
trønderen13-Jul-22 13:09 
I'm curious: What did the 64+ recursion levels express? My first guess is that descending one level in the tree would lead to another recursion level. But did you really handle a tree 64 levels deep? What the elephant kind of information did that tree store? What kind of tree was it? Binary? Even if binary, it would have to be extremely unbalanced if it had a 'reasonable' number of nodes, yet 64 levels deep.

Even if recursing was used for other uses than descending one tree level, exceeding 64 recursion levels is almost always a result of a faulty termination test, or a data structure fault (such as a circularity in a tree), or some other error. Mathematicians are allowed to use unbounded recursive definitions, but it doesn't map well to program code Smile | :)

Obviously, you should have been given some sort of error message. I have had stack overflows that were not caught, just crashing as you report your program to do; chances are that the real problem was a stack overflow. I have worked with people who strongly object to all sorts of 'unnecessary' runtime tests, arguing that if you really need more stack space, it is your responsibility to set it up, not the runtime code to check for it. Maybe those who made the runtime system you were using was of that kind.
GeneralRe: You know you need more coffee when... Pin
jmaida13-Jul-22 15:31
jmaida13-Jul-22 15:31 
GeneralRe: You know you need more coffee when... Pin
trønderen13-Jul-22 19:25
trønderen13-Jul-22 19:25 
GeneralRe: You know you need more coffee when... Pin
jmaida14-Jul-22 9:31
jmaida14-Jul-22 9:31 
GeneralRe: You know you need more coffee when... Pin
jmaida14-Jul-22 10:51
jmaida14-Jul-22 10:51 
GeneralYou know you're no more a nerd when... Pin
CPallini12-Jul-22 20:07
mveCPallini12-Jul-22 20:07 
GeneralRe: You know you're no more a nerd when... Pin
englebart13-Jul-22 15:35
professionalenglebart13-Jul-22 15:35 
GeneralRe: You know you're no more a nerd when... Pin
trønderen13-Jul-22 19:37
trønderen13-Jul-22 19:37 
GeneralRe: You know you're no more a nerd when... Pin
englebart22-Jul-22 5:53
professionalenglebart22-Jul-22 5:53 
GeneralRe: You know you need more coffee when... Pin
Marc Clifton13-Jul-22 2:39
mvaMarc Clifton13-Jul-22 2:39 
GeneralRe: You know you need more coffee when... Pin
CPallini13-Jul-22 3:23
mveCPallini13-Jul-22 3:23 
GeneralRe: You know you need more coffee when... Pin
trønderen13-Jul-22 12:29
trønderen13-Jul-22 12:29 
GeneralRe: You know you need more coffee when... Pin
Gary R. Wheeler13-Jul-22 14:47
Gary R. Wheeler13-Jul-22 14:47 
GeneralRe: You know you need more coffee when... Pin
englebart13-Jul-22 15:43
professionalenglebart13-Jul-22 15:43 
GeneralRe: You know you need more coffee when... Pin
obermd13-Jul-22 4:07
obermd13-Jul-22 4:07 
GeneralRe: You know you need more coffee when... Pin
Chris Maunder13-Jul-22 4:11
cofounderChris Maunder13-Jul-22 4:11 
GeneralRe: You know you need more coffee when... Pin
Gary R. Wheeler13-Jul-22 14:52
Gary R. Wheeler13-Jul-22 14:52 
GeneralRe: You know you need more coffee when... Pin
Chris Maunder13-Jul-22 15:04
cofounderChris Maunder13-Jul-22 15:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.