POV-Ray : Newsgroups : povray.off-topic : The job hunt continues Server Time
29 Jul 2024 10:30:35 EDT (-0400)
  The job hunt continues (Message 31 to 40 of 52)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: Le Forgeron
Subject: Re: The job hunt continues
Date: 22 Jul 2012 05:36:34
Message: <500bc9a2@news.povray.org>
Le 22/07/2012 11:10, Le_Forgeron nous fit lire :
> but on the 19 Jan 2039,
> 3:14:08 UTC

19 Jan 2038. Thta's 9 is a typo!


Post a reply to this message

From: Orchid Win7 v1
Subject: Re: The job hunt continues
Date: 22 Jul 2012 06:18:03
Message: <500bd35b$1@news.povray.org>
On 21/07/2012 11:56 PM, Darren New wrote:
> On 7/20/2012 22:01, Jim Henderson wrote:
>> There were predictions (whether or not they were /serious/ predictions is
>> certainly debatable) of massive outages and a return to the dark ages or
>> the stone ages.
>
> Apparently, one of the most vocal was a (somewhat) closet fundamentalist
> who was hoping to actually bring about the apocalypse by telling
> everyone that the end of the world was nigh. Kind of weird.

Sounds crazy, but it's not implausible it might have actually worked...


Post a reply to this message

From: Darren New
Subject: Re: The job hunt continues
Date: 22 Jul 2012 18:56:33
Message: <500c8521$1@news.povray.org>
>>>> The next one will be 2049 and my life support will start playing up. ;-)
>>> 2038, I expect. Then 2059.
> No clue about 2059.

That was a typo. I just meant 2049 but hit the wrong key. Sorry.

-- 
Darren New, San Diego CA, USA (PST)
   "Oh no! We're out of code juice!"
   "Don't panic. There's beans and filters
    in the cabinet."


Post a reply to this message

From: Patrick Elliott
Subject: Re: The job hunt continues
Date: 23 Jul 2012 00:33:39
Message: <500cd423$1@news.povray.org>
On 7/21/2012 9:27 PM, Jim Henderson wrote:
>> Given the broadcast of the cheering from the FAA when the clocks rolled
>> over GMT and planes didn't fall out of the sky, I'm not totally inclined
>> to dismiss the first possibility.
>
> I'm not really inclined that way either.  I had systems that needed to be
> updated to deal with potential issues, but I don't know that anyone knows
> for sure that if we'd done nothing if there would've been the chaos that
> was predicted.
>
> Jim
>
I think the issue would have hit a lot of financial companies, and a lot 
of DOS/Windows machines, but not all of them. Mostly financial though. A 
"Huge" issue with most banks was that many still ran mainframes, with 
old COBOL in them. To save space, the whole systems used a two digit 
number to track dates. And, no, I don't mean an integer, I mean a "human 
readable" two digit number, which could only contain 0-9, in two characters.

Due to the way they where coded, you would have had to either rewrite 
the entire systems, or you had to convert the existing DBs to something 
that did work, or you had to add code to "work around" the problem. The 
first one was mad, the second one not possible (since many of them 
couldn't afford to just boat anchor their mainframe, or install a real 
OS and language on them), and the last one.. while more viable, was just 
a total pain in the ass. We could have ended up with today's recession, 
12 years ago, as whole banks "lost track" of when, who, how much, and 
maybe even, in some cases, to what, money was owed.


Post a reply to this message

From: Darren New
Subject: Re: The job hunt continues
Date: 23 Jul 2012 00:44:33
Message: <500cd6b1$1@news.povray.org>
On 7/22/2012 21:33, Patrick Elliott wrote:
> dates. And, no, I don't mean an integer, I mean a "human readable" two digit
> number, which could only contain 0-9, in two characters.

Most likely packed BCD, with two digits in one byte, actually.

-- 
Darren New, San Diego CA, USA (PST)
   "Oh no! We're out of code juice!"
   "Don't panic. There's beans and filters
    in the cabinet."


Post a reply to this message

From: Jim Henderson
Subject: Re: The job hunt continues
Date: 23 Jul 2012 09:49:40
Message: <500d5674$1@news.povray.org>
On Sun, 22 Jul 2012 21:33:42 -0700, Patrick Elliott wrote:

> And, no, I don't mean an integer, I mean a "human readable"
> two digit number, which could only contain 0-9, in two characters

What it's called is "Binary Coded Decimal" IIRC

Jim


Post a reply to this message

From: Invisible
Subject: Re: The job hunt continues
Date: 23 Jul 2012 10:04:42
Message: <500d59fa$1@news.povray.org>
>> And, no, I don't mean an integer, I mean a "human readable"
>> two digit number, which could only contain 0-9, in two characters
>
> What it's called is "Binary Coded Decimal" IIRC

BCD is where you use 8 bits to represent two 4-bit binary integers which 
are constrained to be less than 10 each.

If he really /means/ that it stored two /characters/, that would be 16 
bits, not 8. (But I rather doubt that's what it does.)

Exhibit C: EBCDIC.


Post a reply to this message

From: clipka
Subject: Re: The job hunt continues
Date: 23 Jul 2012 13:36:05
Message: <500d8b85$1@news.povray.org>
Am 23.07.2012 06:44, schrieb Darren New:
> On 7/22/2012 21:33, Patrick Elliott wrote:
>> dates. And, no, I don't mean an integer, I mean a "human readable" two
>> digit
>> number, which could only contain 0-9, in two characters.
>
> Most likely packed BCD, with two digits in one byte, actually.

Fortunately in many cases, AFAIK actually no. So often enough, migrating 
from BCD to packed BCD was sufficient.


Post a reply to this message

From: clipka
Subject: Re: The job hunt continues
Date: 23 Jul 2012 13:37:37
Message: <500d8be1$1@news.povray.org>
Am 23.07.2012 16:04, schrieb Invisible:
>>> And, no, I don't mean an integer, I mean a "human readable"
>>> two digit number, which could only contain 0-9, in two characters
>>
>> What it's called is "Binary Coded Decimal" IIRC
>
> BCD is where you use 8 bits to represent two 4-bit binary integers which
> are constrained to be less than 10 each.

No; that would be /packed/ BCD.


Post a reply to this message

From: Stephen
Subject: Re: The job hunt continues
Date: 23 Jul 2012 13:53:05
Message: <500d8f81$1@news.povray.org>
On 23/07/2012 2:49 PM, Jim Henderson wrote:
> What it's called is "Binary Coded Decimal" IIRC

I remember that. I used to boot H316s by entering BCD into the switch 
register, step by step. Until it would load the loader tape.
Ah! Memories.

-- 
Regards
     Stephen


Post a reply to this message

<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.