Click here to Skip to main content
15,925,602 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: Why I hate C++ Pin
den2k8813-Jul-18 4:17
professionalden2k8813-Jul-18 4:17 
GeneralRe: Why I hate C++ Pin
Munchies_Matt13-Jul-18 4:41
Munchies_Matt13-Jul-18 4:41 
GeneralRe: Why I hate C++ Pin
den2k8813-Jul-18 4:44
professionalden2k8813-Jul-18 4:44 
GeneralRe: Why I hate C++ Pin
Munchies_Matt14-Jul-18 21:37
Munchies_Matt14-Jul-18 21:37 
GeneralRe: Why I hate C++ Pin
den2k8815-Jul-18 21:23
professionalden2k8815-Jul-18 21:23 
GeneralRe: Why I hate C++ Pin
Munchies_Matt15-Jul-18 21:25
Munchies_Matt15-Jul-18 21:25 
GeneralRe: Why I hate C++ Pin
den2k8815-Jul-18 21:31
professionalden2k8815-Jul-18 21:31 
GeneralRe: Why I hate C++ Pin
Munchies_Matt15-Jul-18 21:42
Munchies_Matt15-Jul-18 21:42 
GeneralRe: Why I hate C++ Pin
SeattleC++16-Jul-18 6:59
SeattleC++16-Jul-18 6:59 
GeneralRe: Why I hate C++ Pin
Munchies_Matt16-Jul-18 20:52
Munchies_Matt16-Jul-18 20:52 
GeneralRe: Why I hate C++ Pin
SeattleC++17-Jul-18 5:23
SeattleC++17-Jul-18 5:23 
GeneralRe: Why I hate C++ Pin
Munchies_Matt17-Jul-18 5:29
Munchies_Matt17-Jul-18 5:29 
GeneralRe: Why I hate C++ Pin
jeron113-Jul-18 5:13
jeron113-Jul-18 5:13 
GeneralRe: Why I hate C++ Pin
Munchies_Matt14-Jul-18 21:38
Munchies_Matt14-Jul-18 21:38 
GeneralRe: Why I hate C++ Pin
Bob100016-Jul-18 3:09
professionalBob100016-Jul-18 3:09 
GeneralRe: Why I hate C++ Pin
Carlosian17-Jul-18 4:45
Carlosian17-Jul-18 4:45 
GeneralRe: Why I hate C++ Pin
OriginalGriff13-Jul-18 4:20
mveOriginalGriff13-Jul-18 4:20 
GeneralRe: Why I hate C++ Pin
Rage13-Jul-18 6:09
professionalRage13-Jul-18 6:09 
GeneralRe: Why I hate C++ Pin
kalberts14-Jul-18 3:52
kalberts14-Jul-18 3:52 
GeneralRe: Why I hate C++ Pin
Gary Wheeler13-Jul-18 8:14
Gary Wheeler13-Jul-18 8:14 
GeneralRe: Why I hate C++ Pin
OriginalGriff13-Jul-18 20:25
mveOriginalGriff13-Jul-18 20:25 
GeneralRe: Why I hate C++ Pin
pkfox13-Jul-18 21:46
professionalpkfox13-Jul-18 21:46 
GeneralRe: Why I hate C++ Pin
OriginalGriff13-Jul-18 22:00
mveOriginalGriff13-Jul-18 22:00 
GeneralRe: Why I hate C++ Pin
kalberts14-Jul-18 3:25
kalberts14-Jul-18 3:25 
Not as much for speed - more to overcome space limitations. I am too young to have any PDP-8 experience, but an older colleauge told that every single one of the 4094 memory locations - 12 bit data values, 12 bit addresses - was precious. If you had to use a constand, you would always look through the entire binary program to see if the value was already used somewhere, usually as an instruction code, rather that wasting a whole 12 bit word on a duplicate...

Yet, with 4096 twelve-bit words, they managed to make a complete newspaper typesetting system (they had hand coded a segment swapping system to read code from a 5 Mbyte (later: 10 Mbyte) disk. Only once did a customer demand all the options, and they couldn't fit all the resident parts into RAM. So they sold that newspaper a 2-CPU solution: When a function in CPU 1 needed to call some code that couldn't fit it, it raised an interrupt signal to CPU 2, the interrupt ID identifying the required function, and went to sleep while CPU 2 was working. Return from the function, in CPU 2, generated an interrupt back to CPU 1, interrupt ID being the result status, so that CPU 1 would wake up and continue its work...

I heard about this around 1980, at a time when the PDP-8s had been replaced by PDP-11s serveral years ago, so I guess the story dates to around 1970 ("Computer Techniques A/S", later renamed "Comtec AS", was founded in 1967).
GeneralRe: Why I hate C++ Pin
Gary Wheeler16-Jul-18 1:43
Gary Wheeler16-Jul-18 1:43 

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.