• Re: xbin

    From Ragnarok@VERT/DOCKSUD to echicken on Thursday, March 10, 2022 10:53:11
    El 9/3/22 a las 20:50, echicken escribi¢:
    Re: xbin
    By: MRO to DesotoFireflite on Wed Mar 09 2022 09:56:09

    MR> anyways, maybe what would help us out in the current age is to go in the
    MR> direction that excaliber bbs was going. there it had graphics and sound.

    At a certain point you're just reinventing the web browser. There was a time when these would've been awesome features for a BBS to have, but timing just didn't work out. Everyone bailed for the web because it was prettier, easier to use, and a wider world. And that was way back when, before apps and touchscreens and really fine-tuned UI design.

    By the time the BBS is retooled and reinvented sufficiently to appeal to modern users, and maybe serve communities in need of their own self-hosted hub, it'll look very different. It'd probably look like a mishmash of several modern apps, with a curious textmode option attached that few people ever use. There's probably a place for that, but I guarantee that tons of people here would refuse to call it a BBS at that point.

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com
    ---
    ¨ Synchronet ¨ electronic chicken bbs - bbs.electronicchicken.com

    Worldgroup from Galaticoom had something called Client/Server protocol
    It had its own client called Worldgroup Manager that ran native
    applications (win16) and communicated with the server.
    The good thing was that you could run several at the same time

    ---
    þ Synchronet þ Dock Sud BBS TLD 24 HS - bbs.docksud.com.ar
  • From Ragnarok@VERT/DOCKSUD to echicken on Thursday, March 10, 2022 10:56:05
    El 9/3/22 a las 20:52, echicken escribi¢:
    Re: Re: xbin
    By: MRO to Digital Man on Wed Mar 09 2022 12:04:31

    MR> i checked out echicken's bbs and it does have a nice colorful one right
    MR> before the login. i dont know if there's more on his bbs to view, i looked
    MR> around but didn't see any.

    That's the only one. It's just there as a demo. I never found any practical use for it on my BBS and didn't pursue it further.


    It would be nice to be able to put a transparent background to syncterm
    hahaha

    ---
    þ Synchronet þ Dock Sud BBS TLD 24 HS - bbs.docksud.com.ar
  • From MRO@VERT/BBSESINF to Ragnarok on Thursday, March 10, 2022 09:25:15
    Re: Re: xbin
    By: Ragnarok to echicken on Thu Mar 10 2022 10:56 am

    It would be nice to be able to put a transparent background to syncterm hahaha

    that would be trippy
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From DesotoFireflite@VERT/VALHALLA to echicken on Thursday, March 10, 2022 13:11:14
    Re: xbin
    By: echicken to MRO on Tue Mar 08 2022 05:04 am

    Re: xbin
    By: MRO to Digital Man on Mon Mar 07 2022 21:28:46

    The display function I'm using is like this, where 'fn' is a string, path to a sixel file:

    Ok, so far, I made a file with the ext of js, and put it in my mods directory. I tried calling the file ?file.js c:/sbbs/text.oip.six. with no luck. I see where you say fn is a string, so do I actually modify the file for line 3 and 5, and put in my path to the sixel file. I tried that, and just get errors. I think my first statement is what I should be doing, but something is off on the command line I'm thinking. My syncterm show the sixel on your bbs fine, so i've ruled out syncterm. What am I missing. I've made the file small 240x188 for this experiment. Thanks in advance.

    load('cterm_lib.js');

    function show_sixel(fn) {
    if (console.cterm_version >= 1189) {
    var image = new File(fn);
    if (image.exists) {
    if (image.open("rb", true)) {
    var readlen = console.output_buffer_level + console.output_buffer_space; readlen /= 2;
    console.clear();
    while (!image.eof) {
    var imagedata=image.read(readlen);
    while (console.output_buffer_space < imagedata.length) {
    mswait(1);
    }
    console.write(imagedata);
    }
    image.close();
    return true;
    }



    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    Valhalla III! - (RemoteAccess) - bbs.valhallabbs.com:5023
    Valhalla IIII! - (Dungeons & Dragons BBS) - bbs.valhallabbs.com:26
    Valhalla Home Services Web! - http://bbs.valhallabbs.com
    A Gamers Paradise - Over 150 Registered Online Game Doors!
    Home Of Odin's Maze Game Server!

    --- CAT (n.), Furry keyboard cover.
    þ Synchronet þ Valhalla Home Services þ USA þ http://valhalla.synchro.net
  • From echicken@VERT/ECBBS to DesotoFireflite on Thursday, March 10, 2022 19:29:02
    Re: xbin
    By: DesotoFireflite to echicken on Thu Mar 10 2022 13:11:14

    Ok, so far, I made a file with the ext of js, and put it in my mods directory. I tried calling the file ?file.js c:/sbbs/text.oip.six. with no

    If you add this line to the end of the JS file, it should try to display the sixel file given on your command line:

    show_sixel(argv[0]);

    (Otherwise, the code that I shared won't do much of anything; it just defines a function but doesn't actually "call" it.)

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com
    ---
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
  • From DesotoFireflite@VERT to echicken on Thursday, March 10, 2022 15:26:57
    From Newsgroup: alt.bbs.synchronet

    To: echicken
    Re: xbin
    By: echicken to DesotoFireflite on Thu Mar 10 2022 07:29 pm

    From Newsgroup: alt.bbs.synchronet

    To: DesotoFireflite
    Re: xbin
    By: DesotoFireflite to echicken on Thu Mar 10 2022 13:11:14
    If you add this line to the end of the JS file, it should try to display the sixel file given on your command line:

    show_sixel(argv[0]);

    Works like a charm, that's exactly what I was looking for. Thanks so much for helping on this.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    Valhalla III! - (RemoteAccess) - bbs.valhallabbs.com:5023
    Valhalla IIII! - (Dungeons & Dragons BBS) - bbs.valhallabbs.com:26
    Valhalla Home Services Web! - http://bbs.valhallabbs.com
    A Gamers Paradise - Over 150 Registered Online Game Doors!
    Home Of Odin's Maze Game Server!

    --- CAT (n.), Furry keyboard cover.

    --- Synchronet 3.19c-Win32 NewsLink 1.113
    Valhalla Home Services! - Over 100 Online Games! - telnet://valhalla.synchro.net
    --- Synchronet 3.19c-Win32 NewsLink 1.113
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From DesotoFireflite@VERT/VALHALLA to echicken on Saturday, March 12, 2022 17:29:24
    Re: xbin
    By: echicken to DesotoFireflite on Thu Mar 10 2022 07:29 pm

    Re: xbin
    By: DesotoFireflite to echicken on Thu Mar 10 2022 13:11:14
    If you add this line to the end of the JS file, it should try to display the sixel file given on your command line:

    show_sixel(argv[0]);

    It worked great. I went as far as making another module to show off about 20 sixels to those that would like to check it out. It's up and running, located in the external area calle the "Annex" option 25 "Snap Shots". I'll upload the files later as a package as soon as I work on some docs. It's a great addition to the board. Thanks so much for your help.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    Valhalla III! - (RemoteAccess) - bbs.valhallabbs.com:5023
    Valhalla IIII! - (Dungeons & Dragons BBS) - bbs.valhallabbs.com:26
    Valhalla Home Services Web! - http://bbs.valhallabbs.com
    A Gamers Paradise - Over 150 Registered Online Game Doors!
    Home Of Odin's Maze Game Server!

    --- Old farts never die! They just smell that way...
    þ Synchronet þ Valhalla Home Services þ USA þ http://valhalla.synchro.net