Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

24 Apr, 2024: Testing a new version of the Overboard here. If you have an issue post about it to rocksolid.nodes.help (I know. Everyone on Usenet has issues)


devel / comp.lang.forth / Game of Life in APL ... in Forth

SubjectAuthor
* Game of Life in APL ... in ForthBrian Fox
`* Re: Game of Life in APL ... in ForthNN
 `* Re: Game of Life in APL ... in ForthBrian Fox
  `* Re: Game of Life in APL ... in ForthNN
   `- Re: Game of Life in APL ... in ForthBrian Fox

1
Game of Life in APL ... in Forth

<4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17902&group=comp.lang.forth#17902

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:620a:10a8:b0:69f:8b8b:36d9 with SMTP id h8-20020a05620a10a800b0069f8b8b36d9mr19992952qkk.93.1652878598860;
Wed, 18 May 2022 05:56:38 -0700 (PDT)
X-Received: by 2002:a05:622a:c6:b0:2f3:bc21:6618 with SMTP id
p6-20020a05622a00c600b002f3bc216618mr24027864qtw.581.1652878598706; Wed, 18
May 2022 05:56:38 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Wed, 18 May 2022 05:56:38 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=99.242.210.36; posting-account=2z7GawoAAADc70p5SM5AbaCyzjLblS3g
NNTP-Posting-Host: 99.242.210.36
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>
Subject: Game of Life in APL ... in Forth
From: brian....@brianfox.ca (Brian Fox)
Injection-Date: Wed, 18 May 2022 12:56:38 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1373
 by: Brian Fox - Wed, 18 May 2022 12:56 UTC

Saw this on Reddit Forth and thought C.L.F might like to see it.

https://github.com/chmykh/apl-life

Outstanding work IMHO by Alexander Serkov

\ The Game of Life

: life { _ } ←{ ↑ 1 ⍵ ∨ . ∧ 3 4 = + / , -1 0 1 ∘ . ⊖ -1 0 1 ∘ . ⌽ ⊂ ⍵ } ;

Re: Game of Life in APL ... in Forth

<0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17903&group=comp.lang.forth#17903

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:6214:528e:b0:45a:95ff:337f with SMTP id kj14-20020a056214528e00b0045a95ff337fmr24792572qvb.78.1652879839368;
Wed, 18 May 2022 06:17:19 -0700 (PDT)
X-Received: by 2002:ad4:5888:0:b0:461:d672:a330 with SMTP id
dz8-20020ad45888000000b00461d672a330mr10341329qvb.28.1652879839215; Wed, 18
May 2022 06:17:19 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Wed, 18 May 2022 06:17:19 -0700 (PDT)
In-Reply-To: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=92.40.172.246; posting-account=9A5f7goAAAD_QfJPZnlK3Xq_UhzYjdP-
NNTP-Posting-Host: 92.40.172.246
References: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com>
Subject: Re: Game of Life in APL ... in Forth
From: november...@gmail.com (NN)
Injection-Date: Wed, 18 May 2022 13:17:19 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1757
 by: NN - Wed, 18 May 2022 13:17 UTC

On Wednesday, 18 May 2022 at 13:56:39 UTC+1, Brian Fox wrote:
> Saw this on Reddit Forth and thought C.L.F might like to see it.
>
> https://github.com/chmykh/apl-life
>
> Outstanding work IMHO by Alexander Serkov
>
> \ The Game of Life
>
> : life { _ } ←{ ↑ 1 ⍵ ∨ . ∧ 3 4 = + / , -1 0 1 ∘ . ⊖ -1 0 1 ∘ . ⌽ ⊂ ⍵ } ;

Its been posted previously under

https://groups.google.com/g/comp.lang.forth/c/jw6yU_yI15E/m/s09E4zscDQAJ

and went unnoticed...

Re: Game of Life in APL ... in Forth

<0b5d01d6-a098-4d2d-87da-5cc1343075a7n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17905&group=comp.lang.forth#17905

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:622a:1008:b0:2f3:cded:9075 with SMTP id d8-20020a05622a100800b002f3cded9075mr41598qte.550.1652884760685;
Wed, 18 May 2022 07:39:20 -0700 (PDT)
X-Received: by 2002:a05:620a:4405:b0:6a0:30b7:7d5b with SMTP id
v5-20020a05620a440500b006a030b77d5bmr19869807qkp.482.1652884760496; Wed, 18
May 2022 07:39:20 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Wed, 18 May 2022 07:39:20 -0700 (PDT)
In-Reply-To: <0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=99.242.210.36; posting-account=2z7GawoAAADc70p5SM5AbaCyzjLblS3g
NNTP-Posting-Host: 99.242.210.36
References: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com> <0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <0b5d01d6-a098-4d2d-87da-5cc1343075a7n@googlegroups.com>
Subject: Re: Game of Life in APL ... in Forth
From: brian....@brianfox.ca (Brian Fox)
Injection-Date: Wed, 18 May 2022 14:39:20 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1711
 by: Brian Fox - Wed, 18 May 2022 14:39 UTC

On Wednesday, May 18, 2022 at 9:17:20 AM UTC-4, NN wrote:

> > : life { _ } ←{ ↑ 1 ⍵ ∨ . ∧ 3 4 = + / , -1 0 1 ∘ . ⊖ -1 0 1 ∘ . ⌽ ⊂ ⍵ } ;
> Its been posted previously under
>
> https://groups.google.com/g/comp.lang.forth/c/jw6yU_yI15E/m/s09E4zscDQAJ
>
> and went unnoticed...

Wow. I thought it was masterfully done.
Maybe it's "de rigeur" for folks here.

Re: Game of Life in APL ... in Forth

<807341b8-3da4-4c7c-8d68-553b889577b3n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17943&group=comp.lang.forth#17943

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:622a:e:b0:2f3:d236:56dc with SMTP id x14-20020a05622a000e00b002f3d23656dcmr11661619qtw.187.1653154808516;
Sat, 21 May 2022 10:40:08 -0700 (PDT)
X-Received: by 2002:ad4:5dc2:0:b0:461:f62a:2646 with SMTP id
m2-20020ad45dc2000000b00461f62a2646mr11689317qvh.81.1653154797993; Sat, 21
May 2022 10:39:57 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Sat, 21 May 2022 10:39:57 -0700 (PDT)
In-Reply-To: <0b5d01d6-a098-4d2d-87da-5cc1343075a7n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=92.40.198.0; posting-account=9A5f7goAAAD_QfJPZnlK3Xq_UhzYjdP-
NNTP-Posting-Host: 92.40.198.0
References: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>
<0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com> <0b5d01d6-a098-4d2d-87da-5cc1343075a7n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <807341b8-3da4-4c7c-8d68-553b889577b3n@googlegroups.com>
Subject: Re: Game of Life in APL ... in Forth
From: november...@gmail.com (NN)
Injection-Date: Sat, 21 May 2022 17:40:08 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2021
 by: NN - Sat, 21 May 2022 17:39 UTC

On Wednesday, 18 May 2022 at 15:39:21 UTC+1, Brian Fox wrote:
> On Wednesday, May 18, 2022 at 9:17:20 AM UTC-4, NN wrote:
>
> > > : life { _ } ←{ ↑ 1 ⍵ ∨ . ∧ 3 4 = + / , -1 0 1 ∘ . ⊖ -1 0 1 ∘ . ⌽ ⊂ ⍵ } ;
> > Its been posted previously under
> >
> > https://groups.google.com/g/comp.lang.forth/c/jw6yU_yI15E/m/s09E4zscDQAJ
> >
> > and went unnoticed...
> Wow. I thought it was masterfully done.
> Maybe it's "de rigeur" for folks here.

if you like forth and you like apl you might find this one worth a look too

1) https://aplwiki.com/index.php?title=Lang5

2) https://aplwiki.com/wiki/CoSy

Re: Game of Life in APL ... in Forth

<244ca97b-d7d2-4884-889c-0d487520edf0n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17980&group=comp.lang.forth#17980

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:620a:c99:b0:6a3:3c41:2d6 with SMTP id q25-20020a05620a0c9900b006a33c4102d6mr11962349qki.744.1653315789935;
Mon, 23 May 2022 07:23:09 -0700 (PDT)
X-Received: by 2002:a05:6214:1d0a:b0:462:2155:95ef with SMTP id
e10-20020a0562141d0a00b00462215595efmr7993608qvd.83.1653315789766; Mon, 23
May 2022 07:23:09 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Mon, 23 May 2022 07:23:09 -0700 (PDT)
In-Reply-To: <807341b8-3da4-4c7c-8d68-553b889577b3n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=99.242.210.36; posting-account=2z7GawoAAADc70p5SM5AbaCyzjLblS3g
NNTP-Posting-Host: 99.242.210.36
References: <4982075b-e956-4302-ab72-ce1c596b6340n@googlegroups.com>
<0cc2a576-bf93-46c8-9a4d-40402cd935a2n@googlegroups.com> <0b5d01d6-a098-4d2d-87da-5cc1343075a7n@googlegroups.com>
<807341b8-3da4-4c7c-8d68-553b889577b3n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <244ca97b-d7d2-4884-889c-0d487520edf0n@googlegroups.com>
Subject: Re: Game of Life in APL ... in Forth
From: brian....@brianfox.ca (Brian Fox)
Injection-Date: Mon, 23 May 2022 14:23:09 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Brian Fox - Mon, 23 May 2022 14:23 UTC

On Saturday, May 21, 2022 at 1:40:09 PM UTC-4, NN wrote:
> On Wednesday, 18 May 2022 at 15:39:21 UTC+1, Brian Fox wrote:
> > On Wednesday, May 18, 2022 at 9:17:20 AM UTC-4, NN wrote:
> >
> > > > : life { _ } ←{ ↑ 1 ⍵ ∨ . ∧ 3 4 = + / , -1 0 1 ∘ . ⊖ -1 0 1 ∘ . ⌽ ⊂ ⍵ } ;
> > > Its been posted previously under
> > >
> > > https://groups.google.com/g/comp.lang.forth/c/jw6yU_yI15E/m/s09E4zscDQAJ
> > >
> > > and went unnoticed...
> > Wow. I thought it was masterfully done.
> > Maybe it's "de rigeur" for folks here.
> if you like forth and you like apl you might find this one worth a look too
>
> 1) https://aplwiki.com/index.php?title=Lang5
>
> 2) https://aplwiki.com/wiki/CoSy

Thanks. I knew about CoSy but not Lang5.
Lang5 in Perl... is that a gauntlet being thrown down that I hear?

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor