The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
* [TUHS] Three-quarters to the next Epoch
@ 2021-01-23 21:46 Dave Horsfall
       [not found] ` <alpine.BSF.2.21.9999.2101240837350.36435@aneurin.horsfall. org>
  0 siblings, 1 reply; 10+ messages in thread
From: Dave Horsfall @ 2021-01-23 21:46 UTC (permalink / raw)
  To: The Eunuchs Hysterical Society

Sent to me from a fellow weirdo...

At 19:25:36 AEDT (00:25:36 UTC), Unix time reached 0x60000000.  We're 
three quarters of the way to 2038...

Stock up on food, load dem guns, and batten down the hatches :-)

-- Dave

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
       [not found] ` <alpine.BSF.2.21.9999.2101240837350.36435@aneurin.horsfall. org>
@ 2021-01-24  3:57   ` John Foust
  2021-01-24  5:44     ` Anthony Martin
  0 siblings, 1 reply; 10+ messages in thread
From: John Foust @ 2021-01-24  3:57 UTC (permalink / raw)
  To: tuhs

At 03:46 PM 1/23/2021, Dave Horsfall wrote:
>Sent to me from a fellow weirdo...
>
>At 19:25:36 AEDT (00:25:36 UTC), Unix time reached 0x60000000.  We're three quarters of the way to 2038...


That was January 14, 2021, right?

https://www.epochconverter.com/hex

- John




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-24  3:57   ` John Foust
@ 2021-01-24  5:44     ` Anthony Martin
  2021-01-24 11:28       ` Michael Kjörling
  2021-01-26 15:17       ` Dario Niedermann
  0 siblings, 2 replies; 10+ messages in thread
From: Anthony Martin @ 2021-01-24  5:44 UTC (permalink / raw)
  To: John Foust; +Cc: tuhs

John Foust <jfoust@threedee.com> once said:
> That was January 14, 2021, right?
>
> https://www.epochconverter.com/hex

% for(i in `{seq 0 2 8}) date -u 0x$i^0000000
Thu Jan  1 00:00:00 GMT 1970
Mon Jan  5 18:48:32 GMT 1987
Sat Jan 10 13:37:04 GMT 2004
Thu Jan 14 08:25:36 GMT 2021
Tue Jan 19 03:14:08 GMT 2038
%

Cheers,
  Anthony

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-24  5:44     ` Anthony Martin
@ 2021-01-24 11:28       ` Michael Kjörling
  2021-01-24 12:21         ` Steve Nickolas
  2021-01-26 15:17       ` Dario Niedermann
  1 sibling, 1 reply; 10+ messages in thread
From: Michael Kjörling @ 2021-01-24 11:28 UTC (permalink / raw)
  To: tuhs

On 23 Jan 2021 21:44 -0800, from ality@pbrane.org (Anthony Martin):
>> That was January 14, 2021, right?
> 
> % for(i in `{seq 0 2 8}) date -u 0x$i^0000000
> Thu Jan  1 00:00:00 GMT 1970
> Mon Jan  5 18:48:32 GMT 1987
> Sat Jan 10 13:37:04 GMT 2004
> Thu Jan 14 08:25:36 GMT 2021
> Tue Jan 19 03:14:08 GMT 2038
> %

GNU date would appear to agree:

$ date --utc --date=@$(printf '%d' 0x60000000)
Thu 14 Jan 2021 08:25:36 UTC
$

(At least the version I've got handy doesn't seem to like a hex
seconds-since-epoch timestamp, so a separate conversion to decimal is
required in that case.)

-- 
Michael Kjörling • https://michael.kjorling.se • michael@kjorling.se
 “Remember when, on the Internet, nobody cared that you were a dog?”


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-24 11:28       ` Michael Kjörling
@ 2021-01-24 12:21         ` Steve Nickolas
  0 siblings, 0 replies; 10+ messages in thread
From: Steve Nickolas @ 2021-01-24 12:21 UTC (permalink / raw)
  To: Michael Kjörling; +Cc: tuhs

[-- Attachment #1: Type: text/plain, Size: 917 bytes --]

On Sun, 24 Jan 2021, Michael Kjörling wrote:

> On 23 Jan 2021 21:44 -0800, from ality@pbrane.org (Anthony Martin):
>>> That was January 14, 2021, right?
>>
>> % for(i in `{seq 0 2 8}) date -u 0x$i^0000000
>> Thu Jan  1 00:00:00 GMT 1970
>> Mon Jan  5 18:48:32 GMT 1987
>> Sat Jan 10 13:37:04 GMT 2004
>> Thu Jan 14 08:25:36 GMT 2021
>> Tue Jan 19 03:14:08 GMT 2038
>> %
>
> GNU date would appear to agree:
>
> $ date --utc --date=@$(printf '%d' 0x60000000)
> Thu 14 Jan 2021 08:25:36 UTC
> $
>
> (At least the version I've got handy doesn't seem to like a hex
> seconds-since-epoch timestamp, so a separate conversion to decimal is
> required in that case.)

I have a non-GNU one (as part of an unfinished *x I was developing) that 
also doesn't like that, so it required this:

   $ date -ur $(echo "ibase=16;60000000" | bc)
   Thu Jan 14 08:25:36 UTC 2021

Says it was pulled from a 2019 commit to OpenBSD.

-uso.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-24  5:44     ` Anthony Martin
  2021-01-24 11:28       ` Michael Kjörling
@ 2021-01-26 15:17       ` Dario Niedermann
  2021-01-26 22:40         ` Dan Cross
  2021-01-26 22:43         ` Steffen Nurpmeso
  1 sibling, 2 replies; 10+ messages in thread
From: Dario Niedermann @ 2021-01-26 15:17 UTC (permalink / raw)
  To: tuhs

Il 24/01/2021 alle 06:44, Anthony Martin ha scritto:

>% for(i in `{seq 0 2 8}) date -u 0x$i^0000000

I give up... what interpreter is this?

-- 
Dario Niedermann   -:-   finger my email address for PGP key, etc.

Also on the Internet at:            <gopher://darioniedermann.it/>
                                 <https://www.darioniedermann.it/>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-26 15:17       ` Dario Niedermann
@ 2021-01-26 22:40         ` Dan Cross
  2021-01-26 22:43         ` Steffen Nurpmeso
  1 sibling, 0 replies; 10+ messages in thread
From: Dan Cross @ 2021-01-26 22:40 UTC (permalink / raw)
  To: The Eunuchs Hysterical Society

[-- Attachment #1: Type: text/plain, Size: 475 bytes --]

Looks like `rc` to me.

On Tue, Jan 26, 2021 at 5:32 PM Dario Niedermann <dario@darioniedermann.it>
wrote:

> Il 24/01/2021 alle 06:44, Anthony Martin ha scritto:
>
> >% for(i in `{seq 0 2 8}) date -u 0x$i^0000000
>
> I give up... what interpreter is this?
>
> --
> Dario Niedermann   -:-   finger my email address for PGP key, etc.
>
> Also on the Internet at:            <gopher://darioniedermann.it/>
>                                  <https://www.darioniedermann.it/>
>

[-- Attachment #2: Type: text/html, Size: 990 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-26 15:17       ` Dario Niedermann
  2021-01-26 22:40         ` Dan Cross
@ 2021-01-26 22:43         ` Steffen Nurpmeso
  2021-01-26 23:18           ` Richard Salz
  1 sibling, 1 reply; 10+ messages in thread
From: Steffen Nurpmeso @ 2021-01-26 22:43 UTC (permalink / raw)
  To: tuhs

Dario Niedermann wrote in
 <20210126151751.GF2973@darioniedermann.it>:
 |Il 24/01/2021 alle 06:44, Anthony Martin ha scritto:
 |
 |>% for(i in `{seq 0 2 8}) date -u 0x$i^0000000
 |
 |I give up... what interpreter is this?

rc as of Plan9 / 9front.
Also available as a Unix port, somewhere on github.

--steffen
|
|Der Kragenbaer,                The moon bear,
|der holt sich munter           he cheerfully and one by one
|einen nach dem anderen runter  wa.ks himself off
|(By Robert Gernhardt)

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-26 22:43         ` Steffen Nurpmeso
@ 2021-01-26 23:18           ` Richard Salz
  2021-01-26 23:49             ` John Floren
  0 siblings, 1 reply; 10+ messages in thread
From: Richard Salz @ 2021-01-26 23:18 UTC (permalink / raw)
  To: The Eunuchs Hysterical Society

[-- Attachment #1: Type: text/plain, Size: 162 bytes --]

> rc as of Plan9 / 9front.
> Also available as a Unix port, somewhere on github.

https://github.com/rakitzis/rc; GitHub search for "Byron rc" finds a few
forks.

[-- Attachment #2: Type: text/html, Size: 311 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [TUHS] Three-quarters to the next Epoch
  2021-01-26 23:18           ` Richard Salz
@ 2021-01-26 23:49             ` John Floren
  0 siblings, 0 replies; 10+ messages in thread
From: John Floren @ 2021-01-26 23:49 UTC (permalink / raw)
  To: The Eunuchs Hysterical Society

On Tue, Jan 26, 2021 at 3:19 PM Richard Salz <rich.salz@gmail.com> wrote:
>
> > rc as of Plan9 / 9front.
> > Also available as a Unix port, somewhere on github.
>
> https://github.com/rakitzis/rc; GitHub search for "Byron rc" finds a few forks.
>

Plan9port also ships a pretty good-sized userspace of Plan 9 tools,
including rc. https://github.com/9fans/plan9port

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-01-26 23:50 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-23 21:46 [TUHS] Three-quarters to the next Epoch Dave Horsfall
     [not found] ` <alpine.BSF.2.21.9999.2101240837350.36435@aneurin.horsfall. org>
2021-01-24  3:57   ` John Foust
2021-01-24  5:44     ` Anthony Martin
2021-01-24 11:28       ` Michael Kjörling
2021-01-24 12:21         ` Steve Nickolas
2021-01-26 15:17       ` Dario Niedermann
2021-01-26 22:40         ` Dan Cross
2021-01-26 22:43         ` Steffen Nurpmeso
2021-01-26 23:18           ` Richard Salz
2021-01-26 23:49             ` John Floren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).