Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Try not to have a good time ... This is supposed to be educational. -- Charles Schulz


dovenet / Synchronet Javascript / JS Formatting

SubjectAuthor
* JS FormattingDesotoFireflite
+* JS FormattingDigital Man
|`* JS FormattingDesotoFireflite
| `- JS FormattingDigital Man
`* Re: JS FormattingTracker1
 `* Re: JS FormattingDesotoFireflite
  `* Re: JS FormattingRampage
   `- Re: JS FormattingDesotoFireflite

1
JS Formatting

<62CAB6FA.782.dove-syncjs@valhalla.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=809&group=DOVE-Net.Synchronet_Javascript#809

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: desotofireflite@VERT/VALHALLA (DesotoFireflite)
To: All
Subject: JS Formatting
Message-ID: <62CAB6FA.782.dove-syncjs@valhalla.synchro.net>
Date: Sun, 10 Jul 2022 00:24:42 -0400
X-Comment-To: All
Path: rocksolidbbs.com!not-for-mail
Organization: Valhalla Home Services
Newsgroups: DOVE-Net.Synchronet_Javascript
X-FTN-PID: Synchronet 3.19c-Win32 master/ddd4d10b2 May 19 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220710063102-0700 c1e0
WhenExported: 20220710091851-0700 c1e0
ExportedFrom: VERT sync-js 3742
WhenImported: 20220710072442-0400 c12c
WhenExported: 20220710080124-0400 c12c
ExportedFrom: VALHALLA dove-syncjs 782
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: DesotoFireflite - Sun, 10 Jul 2022 04:24 UTC

I added a message option to send me an email everytime a new user was verified by the emailvar.js. It's working correctly, and I'm very satisfied with my efforts to make it work. The message it send to my email is as follows:

-+- Snipit ----
msgtxt = "New Member, Alias: " + user.alias + ", #: " + String(user.number) + ", Joined " + system.name + " Today " + (new Date());
-+- Snipit ----

expands as follows in the message:

New Member, Alias: Tuff, #: 191, Joined Valhalla Home Services Today Sun Jul 10 7:15:32

I would rather it to be somewhat like this:

New Member Joined Valhalla Home Services Today Sun Jul 10 7:15:32.

Alias: Tuff
Number: 191

Is there a way to do this. For the like of me, I can't find a way to do this formatting. I'm successful in doing it in one line, but I'm trying to learn more. Thanks in advance.

SysOp: C.G. Learn, AKA: DesotoFireflite
Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com:23
A Gamers Paradise - Over 250 Registered Online Game Doors!

--- Don't eat the yellow snow!
■ Synchronet ■ Valhalla Home Services ■ USA ■ http://valhalla.synchro.net

JS Formatting

<62CB474A.3743.sync-js@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=810&group=DOVE-Net.Synchronet_Javascript#810

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: digital.man@VERT (Digital Man)
To: DesotoFireflite
Subject: JS Formatting
Message-ID: <62CB474A.3743.sync-js@vert.synchro.net>
Date: Sun, 10 Jul 2022 07:40:26 -0700
X-Comment-To: DesotoFireflite
Path: rocksolidbbs.com!not-for-mail
Organization: Vertrauen
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62CAB6FA.782.dove-syncjs@valhalla.synchro.net>
References: <62CAB6FA.782.dove-syncjs@valhalla.synchro.net>
X-FTN-PID: Synchronet 3.19c-Win32 master/a302a01b1 Jul 7 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220710144026-0700 c1e0
WhenExported: 20220710151845-0700 c1e0
ExportedFrom: VERT sync-js 3743
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Digital Man - Sun, 10 Jul 2022 14:40 UTC

Re: JS Formatting
By: DesotoFireflite to All on Sun Jul 10 2022 07:24 am

> I added a message option to send me an email everytime a new user was
> verified by the emailvar.js. It's working correctly, and I'm very satisfied
> with my efforts to make it work. The message it send to my email is as
> follows:
>
> -+- Snipit ----
> msgtxt = "New Member, Alias: " + user.alias + ", #: " + String(user.number)
> + ", Joined " + system.name + " Today " + (new Date());
> -+- Snipit ----
>
> expands as follows in the message:
>
> New Member, Alias: Tuff, #: 191, Joined Valhalla Home Services Today Sun Jul
> 10 7:15:32
>
> I would rather it to be somewhat like this:
>
> New Member Joined Valhalla Home Services Today Sun Jul 10 7:15:32.
>
> Alias: Tuff
> Number: 191
>
> Is there a way to do this. For the like of me, I can't find a way to do this
> formatting. I'm successful in doing it in one line, but I'm trying to learn
> more. Thanks in advance.

msgtxt = "New Member Joined " + system.name + " Today " + new Date() + ".\r\n";
msgtxt += "\r\n Alias: " + user.alias;
msgtxt += "\r\n Number: " + user.number;
msgtxt += "\r\n";
--
digital man (rob)

Breaking Bad quote #37:
only the very best... with just a right amount of dirty. - Saul
Norco, CA WX: 89.7°F, 33.0% humidity, 17 mph S wind, 0.00 inches rain/24hrs
---
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

JS Formatting

<62CB65BB.784.dove-syncjs@valhalla.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=811&group=DOVE-Net.Synchronet_Javascript#811

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: desotofireflite@VERT/VALHALLA (DesotoFireflite)
To: Digital Man
Subject: JS Formatting
Message-ID: <62CB65BB.784.dove-syncjs@valhalla.synchro.net>
Date: Sun, 10 Jul 2022 12:50:19 -0400
X-Comment-To: Digital Man
Path: rocksolidbbs.com!not-for-mail
Organization: Valhalla Home Services
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62CB474A.3743.sync-js@vert.synchro.net>
References: <62CB474A.3743.sync-js@vert.synchro.net>
X-FTN-PID: Synchronet 3.19c-Win32 master/ddd4d10b2 May 19 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220710170145-0700 c1e0
WhenExported: 20220710211842-0700 c1e0
ExportedFrom: VERT sync-js 3744
WhenImported: 20220710195019-0400 c12c
WhenExported: 20220710200126-0400 c12c
ExportedFrom: VALHALLA dove-syncjs 784
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: DesotoFireflite - Sun, 10 Jul 2022 16:50 UTC

Re: JS Formatting
By: Digital Man to DesotoFireflite on Sun Jul 10 2022 02:40 pm

DM> Re: JS Formatting
DM> By: DesotoFireflite to All on Sun Jul 10 2022 07:24 am

>> I added a message option to send me an email everytime a new user was
>> verified by the emailvar.js. It's working correctly, and I'm very
>> satisfied with my efforts to make it work. The message it send to my
>> email is as follows:

>> -+- Snipit ----
>> msgtxt = "New Member, Alias: " + user.alias + ", #: " +
>> String(user.number) + ", Joined " + system.name + " Today " + (new
>> Date()); -+- Snipit ----

>> expands as follows in the message:

>> New Member, Alias: Tuff, #: 191, Joined Valhalla Home Services Today
>> Sun Jul 10 7:15:32

>> I would rather it to be somewhat like this:

>> New Member Joined Valhalla Home Services Today Sun Jul 10 7:15:32.

>> Alias: Tuff
>> Number: 191

>> Is there a way to do this. For the like of me, I can't find a way to
>> do this formatting. I'm successful in doing it in one line, but I'm
>> trying to learn more. Thanks in advance.

DM> msgtxt = "New Member Joined " + system.name + " Today " + new Date() +
DM> ".\r\n"; msgtxt += "\r\n Alias: " + user.alias;
DM> msgtxt += "\r\n Number: " + user.number;
DM> msgtxt += "\r\n";

WOW, that was simple enough. I had no idea you could do it this way, but after looking at it, it makes perfect sense.

I wish there was a tips and tricks info site on js, that I could explore.

Thanks again for the assist.

SysOp: C.G. Learn, AKA: DesotoFireflite
Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com:23
A Gamers Paradise - Over 250 Registered Online Game Doors!

--- Don't eat the yellow snow!
■ Synchronet ■ Valhalla Home Services ■ USA ■ http://valhalla.synchro.net

JS Formatting

<62CC68AC.3745.sync-js@vert.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=812&group=DOVE-Net.Synchronet_Javascript#812

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: digital.man@VERT (Digital Man)
To: DesotoFireflite
Subject: JS Formatting
Message-ID: <62CC68AC.3745.sync-js@vert.synchro.net>
Date: Mon, 11 Jul 2022 04:15:08 -0700
X-Comment-To: DesotoFireflite
Path: rocksolidbbs.com!not-for-mail
Organization: Vertrauen
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62CB65BB.784.dove-syncjs@valhalla.synchro.net>
References: <62CB65BB.784.dove-syncjs@valhalla.synchro.net>
X-FTN-PID: Synchronet 3.19c-Win32 master/a302a01b1 Jul 7 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220711111508-0700 c1e0
WhenExported: 20220711151851-0700 c1e0
ExportedFrom: VERT sync-js 3745
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Digital Man - Mon, 11 Jul 2022 11:15 UTC

Re: JS Formatting
By: DesotoFireflite to Digital Man on Sun Jul 10 2022 07:50 pm

> Re: JS Formatting
> By: Digital Man to DesotoFireflite on Sun Jul 10 2022 02:40 pm
>
> DM> Re: JS Formatting
> DM> By: DesotoFireflite to All on Sun Jul 10 2022 07:24 am
>
> >> I added a message option to send me an email everytime a new user was
> >> verified by the emailvar.js. It's working correctly, and I'm very
> >> satisfied with my efforts to make it work. The message it send to my
> >> email is as follows:
>
> >> -+- Snipit ----
> >> msgtxt = "New Member, Alias: " + user.alias + ", #: " +
> >> String(user.number) + ", Joined " + system.name + " Today " + (new
> >> Date()); -+- Snipit ----
>
> >> expands as follows in the message:
>
> >> New Member, Alias: Tuff, #: 191, Joined Valhalla Home Services Today
> >> Sun Jul 10 7:15:32
>
> >> I would rather it to be somewhat like this:
>
> >> New Member Joined Valhalla Home Services Today Sun Jul 10 7:15:32.
>
> >> Alias: Tuff
> >> Number: 191
>
> >> Is there a way to do this. For the like of me, I can't find a way to
> >> do this formatting. I'm successful in doing it in one line, but I'm
> >> trying to learn more. Thanks in advance.
>
> DM> msgtxt = "New Member Joined " + system.name + " Today " + new Date() +
> DM> ".\r\n"; msgtxt += "\r\n Alias: " + user.alias;
> DM> msgtxt += "\r\n Number: " + user.number;
> DM> msgtxt += "\r\n";
>
> WOW, that was simple enough. I had no idea you could do it this way, but
> after looking at it, it makes perfect sense.
>
> I wish there was a tips and tricks info site on js, that I could explore.

Here are some for this particular topic:
https://www.w3schools.com/js/js_strings.asp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String

> Thanks again for the assist.

No problem.
--
digital man (rob)

Sling Blade quote #8:
Karl Childers: I don't reckon I got no reason to kill nobody.
Norco, CA WX: 80.4°F, 49.0% humidity, 2 mph E wind, 0.00 inches rain/24hrs
---
■ Synchronet ■ Vertrauen ■ Home of Synchronet ■ [vert/cvs/bbs].synchro.net

Re: JS Formatting

<62D32C7F.791.dove-syncjs@roughneckbbs.com>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=813&group=DOVE-Net.Synchronet_Javascript#813

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: tracker1@VERT/TRN (Tracker1)
To: DesotoFireflite
Subject: Re: JS Formatting
Message-ID: <62D32C7F.791.dove-syncjs@roughneckbbs.com>
Date: Sat, 16 Jul 2022 07:24:15 -0700
X-Comment-To: DesotoFireflite
Path: rocksolidbbs.com!not-for-mail
Organization: Roughneck BBS
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62CAB6FA.782.dove-syncjs@valhalla.synchro.net>
References: <62CAB6FA.782.dove-syncjs@valhalla.synchro.net>
X-FTN-PID: Synchronet 3.19b-Linux HEAD/6b10fdc Jan 3 2022 GCC 6.3.0
X-FTN-CHRS: UTF-8 4
WhenImported: 20220716184615-0700 c1e0
WhenExported: 20220716211852-0700 c1e0
ExportedFrom: VERT sync-js 3747
WhenImported: 20220716212415Z 0000
WhenExported: 20220717014330Z 0000
ExportedFrom: TRN dove-syncjs 791
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101Thunderbird/91.11.0
Content-Language: en-US
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
 by: Tracker1 - Sat, 16 Jul 2022 14:24 UTC

On 7/10/22 04:24, DesotoFireflite wrote:
>
> I would rather it to be somewhat like this:
>
> New Member Joined Valhalla Home Services Today Sun ...
>
> Alias: Tuff
> Number: 191

var msg = [
"New member joined..." + new Date().toString(),
"",
"Alias: " + user.alias,
"Number: " + String(user.number)
].join("\r\n");
--
Michael J. Ryan - tracker1@roughneckbbs.com
---
� Synchronet � Roughneck BBS - roughneckbbs.com

Re: JS Formatting

<62D40858.788.dove-syncjs@valhalla.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=814&group=DOVE-Net.Synchronet_Javascript#814

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: desotofireflite@VERT/VALHALLA (DesotoFireflite)
To: Tracker1
Subject: Re: JS Formatting
Message-ID: <62D40858.788.dove-syncjs@valhalla.synchro.net>
Date: Sun, 17 Jul 2022 02:02:16 -0400
X-Comment-To: Tracker1
Path: rocksolidbbs.com!not-for-mail
Organization: Valhalla Home Services
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62D32C7F.791.dove-syncjs@roughneckbbs.com>
References: <62D32C7F.791.dove-syncjs@roughneckbbs.com>
X-FTN-PID: Synchronet 3.19c-Win32 master/d2acbe52c Jul 13 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220717063621-0700 c1e0
WhenExported: 20220717091859-0700 c1e0
ExportedFrom: VERT sync-js 3748
WhenImported: 20220717090216-0400 c12c
WhenExported: 20220717093606-0400 c12c
ExportedFrom: VALHALLA dove-syncjs 788
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: DesotoFireflite - Sun, 17 Jul 2022 06:02 UTC

Re: Re: JS Formatting
By: Tracker1 to DesotoFireflite on Sat Jul 16 2022 02:24 pm

Tr> On 7/10/22 04:24, DesotoFireflite wrote:

>> I would rather it to be somewhat like this:

>> New Member Joined Valhalla Home Services Today Sun ...

>> Alias: Tuff
>> Number: 191

Tr> var msg = [
Tr> "New member joined..." + new Date().toString(),
Tr> "",
Tr> "Alias: " + user.alias,
Tr> "Number: " + String(user.number)
Tr> ].join("\r\n");

I decided to go with this below. Since it was your program "emailval.js" to begin with, I wanted a simple way of sending the sysop a message letting him/her that a new user had joined, and was validated. This gives me a quick snapshot of their info. I know it's overkill, but at least it gives me an idea whats going on without having to real logs. In time, I'll add to it those users that failed the validation process.

msgbase = new MsgBase("mail");
if(msgbase.open()==false) {
log(LOG_ERR,"!ERROR " + msgbase.error);
return(false);
}

hdr = {
to: system.operator,
to_ext: "1",
from: user.alias,
from_ext: String(user.number),
attr: MSG_KILLREAD,
subject: "New Member To " + system.name + "!"
};

msgtxt = "New Member Joined " + system.name + " On " + new Date() + ".\r\n";
msgtxt += "\r\n Name & Alias..: " + "Alias: " + user.alias + ", " + " Real Name: " + user.name;
msgtxt += "\r\n Number........: " + user.number;
msgtxt += "\r\n Handle........: " + user.handle;
msgtxt += "\r\n Birthdate.....: " + user.birthmonth + "/" + user.birthday + "/" + user.birthyear;
msgtxt += "\r\n Location......: " + user.location;
msgtxt += "\r\n IP Address....: " + user.ip_address;
msgtxt += "\r\n Email Address.: " + user.netmail;
msgtxt += "\r\n Gender (M/F/X): " + user.gender;
msgtxt += "\r\n";

var result = msgbase.save_msg(hdr, msgtxt);
if(!result)
log(LOG_ERR, "!ERROR " + msgbase.error + " saving mail message");

msgbase.close();
return result;

SysOp: C.G. Learn, AKA: DesotoFireflite
Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com:23
A Gamers Paradise - Over 250 Registered Online Game Doors!

--- I'm so disorganized my keyboard isn't even in alphabetical order!
■ Synchronet ■ Valhalla Home Services ■ USA ■ http://valhalla.synchro.net

Re: JS Formatting

<62D52F36.1150.dove-syncjs@sestar.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=815&group=DOVE-Net.Synchronet_Javascript#815

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: rampage@VERT/SESTAR (Rampage)
To: DesotoFireflite
Subject: Re: JS Formatting
Message-ID: <62D52F36.1150.dove-syncjs@sestar.synchro.net>
Date: Sun, 17 Jul 2022 23:00:22 -0400
X-Comment-To: DesotoFireflite
Path: rocksolidbbs.com!not-for-mail
Organization: The SouthEast Star
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62D40858.788.dove-syncjs@valhalla.synchro.net>
References: <62D40858.788.dove-syncjs@valhalla.synchro.net>
X-FTN-PID: Synchronet 3.18a-Linux May 23 2020 GCC 7.5.0
X-FTN-CHRS: CP437 2
WhenImported: 20220718033116-0700 c1e0
WhenExported: 20220718091843-0700 c1e0
ExportedFrom: VERT sync-js 3749
WhenImported: 20220718060022-0400 c12c
WhenExported: 20220718063115-0400 c12c
ExportedFrom: SESTAR dove-syncjs 1150
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: Rampage - Mon, 18 Jul 2022 03:00 UTC

Re: Re: JS Formatting
By: DesotoFireflite to Tracker1 on Sun Jul 17 2022 09:02:16

readability is a thing...

> msgtxt = "New Member Joined " + system.name + " On " + new Date() + ".\r\n";
> msgtxt += "\r\n Name & Alias..: " + "Alias: " + user.alias + ", " + " Real Name: " + user.name;
> msgtxt += "\r\n Number........: " + user.number;
> msgtxt += "\r\n Handle........: " + user.handle;
> msgtxt += "\r\n Birthdate.....: " + user.birthmonth + "/" + user.birthday + "/" + user.birthyear;
> msgtxt += "\r\n Location......: " + user.location;
> msgtxt += "\r\n IP Address....: " + user.ip_address;
> msgtxt += "\r\n Email Address.: " + user.netmail;
> msgtxt += "\r\n Gender (M/F/X): " + user.gender;
> msgtxt += "\r\n";

while the above is easy to read, i expect the EOL sequences to be at the end of the line... for blank lines, i place the EOL sequence on a line by itself... the above i would write like this...

msgtxt = "New Member Joined " + system.name + " On " + new Date() + ".\r\n";
msgtxt += "\r\n";
msgtxt += " Name & Alias..: " + "Alias: " + user.alias + ", " + " Real Name: " + user.name + "\r\n";
msgtxt += " Number........: " + user.number + "\r\n";
msgtxt += " Handle........: " + user.handle + "\r\n";
msgtxt += " Birthdate.....: " + user.birthmonth + "/" + user.birthday + "/" + user.birthyear + "\r\n";
msgtxt += " Location......: " + user.location + "\r\n";
msgtxt += " IP Address....: " + user.ip_address + "\r\n";
msgtxt += " Email Address.: " + user.netmail + "\r\n";
msgtxt += " Gender (M/F/X): " + user.gender + "\r\n";
msgtxt += "\r\n";

this makes it much easier to see each output line in the code... hopefully wrapping won't fark it up too badly...

)\/(ark

---
■ Synchronet ■ The SouthEast Star Mail HUB - SESTAR

Re: JS Formatting

<62D54FE9.790.dove-syncjs@valhalla.synchro.net>

  copy mid

https://www.rocksolidbbs.com/dovenet/article-flat.php?id=816&group=DOVE-Net.Synchronet_Javascript#816

  copy link   Newsgroups: DOVE-Net.Synchronet_Javascript
From: desotofireflite@VERT/VALHALLA (DesotoFireflite)
To: Rampage
Subject: Re: JS Formatting
Message-ID: <62D54FE9.790.dove-syncjs@valhalla.synchro.net>
Date: Mon, 18 Jul 2022 01:19:53 -0400
X-Comment-To: Rampage
Path: rocksolidbbs.com!not-for-mail
Organization: Valhalla Home Services
Newsgroups: DOVE-Net.Synchronet_Javascript
In-Reply-To: <62D52F36.1150.dove-syncjs@sestar.synchro.net>
References: <62D52F36.1150.dove-syncjs@sestar.synchro.net>
X-FTN-PID: Synchronet 3.19c-Win32 master/d2acbe52c Jul 13 2022 MSC 1929
X-FTN-CHRS: CP437 2
WhenImported: 20220718053638-0700 c1e0
WhenExported: 20220718091843-0700 c1e0
ExportedFrom: VERT sync-js 3750
WhenImported: 20220718081953-0400 c12c
WhenExported: 20220718083608-0400 c12c
ExportedFrom: VALHALLA dove-syncjs 790
Content-Type: text/plain; charset=IBM437
Content-Transfer-Encoding: 8bit
 by: DesotoFireflite - Mon, 18 Jul 2022 05:19 UTC

Re: Re: JS Formatting
By: Rampage to DesotoFireflite on Mon Jul 18 2022 06:00 am

Ra> Re: Re: JS Formatting
Ra> By: DesotoFireflite to Tracker1 on Sun Jul 17 2022 09:02:16

Ra> readability is a thing...

I do understand what you are saying, and there are different ways to acheve the same thing. I see what you did in your scenaro, and I agree it will work, but the way I did it works also. It's just a matter of working style. I can read both ways equally as well, and know what is going on. On my final code, I always put notes in the file to refresh my memory as to what the code was supposed to do, so after time, I won't have to figure it out again. I do find sometimes, after time, I didlike what I do, and go back and change it or tweak it a bit. All and all, the most important thing is, is that it works without undue stress on the system.

I do appreciate your input, as I'm still learning, and evey comment does help. Thanks

SysOp: C.G. Learn, AKA: DesotoFireflite
Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com:23
A Gamers Paradise - Over 250 Registered Online Game Doors!

---
■ Synchronet ■ Valhalla Home Services ■ USA ■ http://valhalla.synchro.net

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor