Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Pray to God, but keep rowing to shore. -- Russian Proverb


devel / comp.lang.rexx / Re: So I was looking at the serialization classes

SubjectAuthor
* Re: So I was looking at the serialization classesJL Turriff
`* Re: So I was looking at the serialization classesJean-Louis Faucher
 `- Re: So I was looking at the serialization classesflicker...@anduin.net

1
Re: So I was looking at the serialization classes

<5e068ca5-2730-49d0-bb90-2b1b4d78be16n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17&group=comp.lang.rexx#17

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:ae9:eb43:: with SMTP id b64mr661350qkg.329.1622638955597;
Wed, 02 Jun 2021 06:02:35 -0700 (PDT)
X-Received: by 2002:a5b:ad1:: with SMTP id a17mr37327804ybr.63.1622638955440;
Wed, 02 Jun 2021 06:02:35 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.snarked.org!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.rexx
Date: Wed, 2 Jun 2021 06:02:35 -0700 (PDT)
In-Reply-To: <25666f04-c9e1-4f68-a143-a0171f308d10n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=75.106.124.177; posting-account=V_oLVQoAAADNmdztcf6Kd0km1AjgLG_2
NNTP-Posting-Host: 75.106.124.177
References: <25666f04-c9e1-4f68-a143-a0171f308d10n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <5e068ca5-2730-49d0-bb90-2b1b4d78be16n@googlegroups.com>
Subject: Re: So I was looking at the serialization classes
From: jlturriff@gmail.com (JL Turriff)
Injection-Date: Wed, 02 Jun 2021 13:02:35 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 8
 by: JL Turriff - Wed, 2 Jun 2021 13:02 UTC

When I try to run this I get an error:

$ rexx SerializedRexxObjectClass
878 *-* ::requires "bankaccount.cls"
Error 43 running /home/leslie/bin/rexx/SerializedRexxObjectClass line 878: Routine not found.
Error 43.901: Could not find file "bankaccount.cls" for ::REQUIRES.
@07:25:20,leslie@pinto rc=213

It looks to me like the file might need to be broken into several pieces, but it's not clear where the breaks should be.

Re: So I was looking at the serialization classes

<50233ce3-daf7-4d86-ab2f-cbb5abdb8100n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18&group=comp.lang.rexx#18

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:ac8:6e8f:: with SMTP id c15mr24404069qtv.122.1622641582111;
Wed, 02 Jun 2021 06:46:22 -0700 (PDT)
X-Received: by 2002:a25:1f57:: with SMTP id f84mr8092159ybf.22.1622641581929;
Wed, 02 Jun 2021 06:46:21 -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.rexx
Date: Wed, 2 Jun 2021 06:46:21 -0700 (PDT)
In-Reply-To: <5e068ca5-2730-49d0-bb90-2b1b4d78be16n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=86.70.192.128; posting-account=7yfIbgoAAAAVk46vSyXv3FKwUbKNRGVF
NNTP-Posting-Host: 86.70.192.128
References: <25666f04-c9e1-4f68-a143-a0171f308d10n@googlegroups.com> <5e068ca5-2730-49d0-bb90-2b1b4d78be16n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <50233ce3-daf7-4d86-ab2f-cbb5abdb8100n@googlegroups.com>
Subject: Re: So I was looking at the serialization classes
From: jfaucher.fr@gmail.com (Jean-Louis Faucher)
Injection-Date: Wed, 02 Jun 2021 13:46:22 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Jean-Louis Faucher - Wed, 2 Jun 2021 13:46 UTC

On Wednesday, June 2, 2021 at 3:02:36 PM UTC+2, jltu...@gmail.com wrote:
> When I try to run this I get an error:
>
> $ rexx SerializedRexxObjectClass
> 878 *-* ::requires "bankaccount.cls"
> Error 43 running /home/leslie/bin/rexx/SerializedRexxObjectClass line 878: Routine not found.
> Error 43.901: Could not find file "bankaccount.cls" for ::REQUIRES.
> @07:25:20,leslie@pinto rc=213
>
> It looks to me like the file might need to be broken into several pieces, but it's not clear where the breaks should be.

rto.cls : cut before the comment Bank Account Demo
bankaccount.cls : cut after the class BankCustomer
test_ckass.rex : the rest

I stopped the demo when the ledger became > 600 :-)
A file serialized.txt was generated.
The serialization of MyBankAcct is only on day 10.
At each run, a new line is added to serialize.txt.

Re: So I was looking at the serialization classes

<0c54481a-2fbc-4c01-9172-bf975652626en@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=19&group=comp.lang.rexx#19

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:a0c:c709:: with SMTP id w9mr33642934qvi.37.1622722679490;
Thu, 03 Jun 2021 05:17:59 -0700 (PDT)
X-Received: by 2002:a25:888c:: with SMTP id d12mr12214809ybl.232.1622722679314;
Thu, 03 Jun 2021 05:17:59 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!feeder1.cambriumusenet.nl!feed.tweak.nl!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.rexx
Date: Thu, 3 Jun 2021 05:17:58 -0700 (PDT)
In-Reply-To: <50233ce3-daf7-4d86-ab2f-cbb5abdb8100n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=46.199.72.21; posting-account=VNzyzwoAAACUkgTbCFG674oE2xJwgm8o
NNTP-Posting-Host: 46.199.72.21
References: <25666f04-c9e1-4f68-a143-a0171f308d10n@googlegroups.com>
<5e068ca5-2730-49d0-bb90-2b1b4d78be16n@googlegroups.com> <50233ce3-daf7-4d86-ab2f-cbb5abdb8100n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <0c54481a-2fbc-4c01-9172-bf975652626en@googlegroups.com>
Subject: Re: So I was looking at the serialization classes
From: flicker-youtube@anduin.net (flicker...@anduin.net)
Injection-Date: Thu, 03 Jun 2021 12:17:59 +0000
Content-Type: text/plain; charset="UTF-8"
 by: flicker...@anduin.ne - Thu, 3 Jun 2021 12:17 UTC

sounds about right... it was a little demo.

On Wednesday, 2 June 2021 at 14:46:22 UTC+1, Jean-Louis Faucher wrote:
> On Wednesday, June 2, 2021 at 3:02:36 PM UTC+2, jltu...@gmail.com wrote:
> > When I try to run this I get an error:
> >
> > $ rexx SerializedRexxObjectClass
> > 878 *-* ::requires "bankaccount.cls"
> > Error 43 running /home/leslie/bin/rexx/SerializedRexxObjectClass line 878: Routine not found.
> > Error 43.901: Could not find file "bankaccount.cls" for ::REQUIRES.
> > @07:25:20,leslie@pinto rc=213
> >
> > It looks to me like the file might need to be broken into several pieces, but it's not clear where the breaks should be.
> rto.cls : cut before the comment Bank Account Demo
> bankaccount.cls : cut after the class BankCustomer
> test_ckass.rex : the rest
>
> I stopped the demo when the ledger became > 600 :-)
> A file serialized.txt was generated.
> The serialization of MyBankAcct is only on day 10.
> At each run, a new line is added to serialize.txt.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor