• Taking a community college CIS/C++ course

    From Digital Man@VERT to All on Tue Jan 16 16:51:13 2024
    I'm thinking of making a video series on programming in C and then later maybe C++. I've been reading a lot of (mostly C++) programming books in preparation for this project.

    My first video series will probably be a deconstruction/analysis of the 2nd edition of the K&R book (though yes, that's a really old version of C now).

    I also thought it'd be good to take some refresher college courses on C++ to see how it's taught nowadays, the books used, etc. Luckily, my local community college had an online winter course and I signed up and started a couple of weeks ago.

    Now, I've been programming in C and C++ professionally since 1991, so I didn't really expect to learn a lot whole lot in the introductory course (CIS-5), but here's some initial takeaways:

    1. The recommended (not required) book is pretty outdated and, in my opinion, bad compared to all other C++ programming books I've owned (explains concepts in an odd order, gets things wrong). And it's *way* overpriced.
    https://www.amazon.com/crappy_book/dp/013454484
    so I'm just using a pirated PDF copy of it. Bleh.

    2. The online labs/course work (in something called "Canvas") is hodge-podge, contradictory and just kind of a mess of video "labs" (more demos, with very low audio levels), bad copy/pasted UNICODE-translated (so, not compilable) source code, and links to another college professor's videos on YouTube that are pretty old and average:
    https://www.youtube.com/@deborahs948

    3. This professor seems to have internalized some incorrect idioms they repeat over and over (e.g. you #include a libarary in C++, "cout" stands for "console output", confuses declarations and definitions, etc.), has no concept of UNICODE, never bothers to explain *why* the preprocessor and C++ language are they way they are, depends on the IDE's editor to detect errors/warnings in the code (rather than the compiler), has no concept of the command-line, command-line options (e.g. for the builds tools), how to use Windows effectively (forget about MacOS, Linux, or ChromeOS). It's pretty frustrating watching/listening to them write code and explain concepts.

    More than once, I've thought "aha! that's where these candidates that don't do well in our interview process got that wrong-concept from!". There's some fundamental stuff that's just not being taught correclty in some schools apparently.

    So far, it's all console input (using std::cin) and output (using std::cout), basic math, algorithms, and now looping constructs. There's been a lot of focus on stream formatting (using of <iomanip>) which in my experience is not something used much in most C++ projects, but whatever. I am learning *some* things there that I hadn't used before. But I have to keep reminding myself: I'm not here to teach this class (or the professor) or even to get the highest score ever, just to learn what's good and bad about how C++ is being taught in schools these days. And towards that goal, it's going good!
    --
    digital man (rob)

    This Is Spinal Tap quote #22:
    David St. Hubbins: Here lies David St. Hubbins... and why not?
    Norco, CA WX: 63.3øF, 59.0% humidity, 3 mph W wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Nightfox@VERT/DIGDIST to Digital Man on Tue Jan 16 17:53:13 2024
    Re: Taking a community college CIS/C++ course
    By: Digital Man to All on Tue Jan 16 2024 04:51 pm

    1. The recommended (not required) book is pretty outdated and, in my opinion, bad compared to all other C++ programming books I've owned (explains concepts in an odd order, gets things wrong). And it's *way* overpriced.
    https://www.amazon.com/crappy_book/dp/013454484 so I'm just using a pirated PDF copy of it. Bleh.

    C++ was taught in the software engineering program I did in college (which I started into in 2001). I had taken a couple of C++ classes from the CS department prior to the software engineering program, so I had a bit of a foundation already, and I still learned quite a bit. Sometimes I wondered why they chose the books they chose. I remember the initial book for the C++ classes seeming a bit complicated, at least compared to the book used by the CS teachers.

    2. The online labs/course work (in something called "Canvas") is hodge-podge, contradictory and just kind of a mess of video "labs" (more demos, with very low audio levels), bad copy/pasted UNICODE-translated (so, not compilable) source code

    Interesting.. Canvas sort of rings a bell, though I'm not sure if I've used it. My instructors in college just had us do our work in Visual Studio.

    3. This professor seems to have internalized some incorrect idioms they repeat over and over (e.g. you #include a libarary in C++, "cout" stands for "console output", confuses declarations and definitions, etc.), has no concept of UNICODE, never bothers to explain *why* the preprocessor and C++ language are they way they are, depends on the IDE's editor to detect errors/warnings in the code (rather than the compiler), has no concept of the command-line, command-line options (e.g. for the builds tools), how to use Windows effectively (forget about MacOS, Linux, or ChromeOS). It's pretty frustrating watching/listening to them write code and explain concepts.

    That definitely can be frustrating..
    One time in college (before I took any CS or software engineering classes), I was thinking of going into CIS (Computer Information Systems) and was taking one of the required classes (around 2000), and one day the instructor said any animations on a web page are typically done with Java. I remember him talking about it fairly generically, and I had a thought that a lot of the animations I saw on web pages at the time were just animated .gif images.

    In one of my C++ classes for the software engineering program, for cin and cout, one of the students in the class would often read those as "carry in" and "carry out"..

    More than once, I've thought "aha! that's where these candidates that don't do well in our interview process got that wrong-concept from!". There's some fundamental stuff that's just not being taught correclty in some schools apparently.

    One time in my career, I was surprised to learn of something I didn't know, which apparently was not mentioned in my classes in college: That it's unsafe to do GUI-related things from anything other than the main thread. Either that wasn't mentioned in any of my classes, or somehow I missed it. I did have a couple of classes in college pertaining to making a GUI (one in MFC with C++, and another with WinForms using C#).

    Also, I had a software engineer job interview once with a company that asked me to provide a code sample. I did (it was something I had written in C++). They were asking me some questions about it, and mentioned something about some of the logic in one of the functions possibly being refactored, and they had mentioned some obscure math theorem that I had never heard of..

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From fusion@VERT/CFBBS to Digital Man on Tue Jan 16 22:22:00 2024
    On 16 Jan 2024, Digital Man said the following...

    I'm thinking of making a video series on programming in C and then later maybe C++. I've been reading a lot of (mostly C++) programming books in preparation for this project.
    My first video series will probably be a deconstruction/analysis of the 2nd edition of the K&R book (though yes, that's a really old version of
    C now).

    this is very cool, and i'm looking forward to it!

    i do enjoy reading my copy of the K&R book.. nostalgic.

    good luck!

    --- Mystic BBS v1.12 A47 2021/12/25 (Windows/32)
    * Origin: cold fusion - cfbbs.net - grand rapids, mi
  • From fusion@VERT/CFBBS to Nightfox on Tue Jan 16 22:52:00 2024
    On 16 Jan 2024, Nightfox said the following...

    Sometimes I wondered why they chose the books they chose. I remember the initial book for the C++ classes seeming a bit complicated, at least compared to the book used by the CS teachers.

    i threw mine away.. it was one of those weird super thick programming books where the whole second half is just printouts of man pages. i also don't remember the example programs being particularly useful.

    --- Mystic BBS v1.12 A47 2021/12/25 (Windows/32)
    * Origin: cold fusion - cfbbs.net - grand rapids, mi
  • From Gamgee@VERT/PALANTIR to Digital Man on Wed Jan 17 07:38:00 2024
    Digital Man wrote to All <=-

    I'm thinking of making a video series on programming in C and
    then later maybe C++. I've been reading a lot of (mostly C++)
    programming books in preparation for this project.

    <SNIP>

    I would be VERY interested in following this! Sure hope you're able to
    do it, and thanks!



    ... Internal Error: The system has been taken over by sheep at line 19960
    --- MultiMail/Linux v0.52
    þ Synchronet þ Palantir BBS * palantirbbs.ddns.net * Pensacola, FL
  • From Digital Man@VERT to Nightfox on Wed Jan 17 09:49:12 2024
    Re: Taking a community college CIS/C++ course
    By: Nightfox to Digital Man on Tue Jan 16 2024 05:53 pm

    2. The online labs/course work (in something called "Canvas") is hodge-podge, contradictory and just kind of a mess of video "labs" (more demos, with very low audio levels), bad copy/pasted UNICODE-translated (so, not compilable) source code

    Interesting.. Canvas sort of rings a bell, though I'm not sure if I've used it. My instructors in college just had us do our work in Visual Studio.

    The student is expected to edit, build, run their code in either Visual Studio/Visual C++ or XCode. "Canvas" is just the web app they use for organizing and delivering the assignments and accepting submissions. I think Canvas software is fine, but the professor hasn't done a lot of quality-control of the content. It's all over the place, includes old or repeated content and gives contradictory guidance (e.g. lab/assignment numbering). But it's a community college, so I don't think there's a lot of peer review (of the professor's content) going on.
    --
    digital man (rob)

    Synchronet/BBS Terminology Definition #36:
    FTS = FidoNet Technical Standard
    Norco, CA WX: 50.7øF, 95.0% humidity, 0 mph W wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Nightfox on Wed Jan 17 09:51:21 2024
    Re: Taking a community college CIS/C++ course
    By: Nightfox to Digital Man on Tue Jan 16 2024 05:53 pm

    One time in my career, I was surprised to learn of something I didn't know, which apparently was not mentioned in my classes in college: That it's unsafe to do GUI-related things from anything other than the main thread. Either that wasn't mentioned in any of my classes, or somehow I missed it.
    I did have a couple of classes in college pertaining to making a GUI (one in MFC with C++, and another with WinForms using C#).

    That depends on the GUI framework. Borland VCL provides mechanisms that can be used to safely update GUI components ("controls" they call them) from child threads. I've done similar stuff in MFC apps, so it's doable if necessary.
    --
    digital man (rob)

    Rush quote #75:
    Though his mind is not for rent, don't put him down as arrogant .. Tom Sawyer Norco, CA WX: 50.7øF, 95.0% humidity, 0 mph W wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Dumas Walker@VERT/CAPCITY2 to DIGITAL MAN on Wed Jan 17 09:42:00 2024
    So far, it's all console input (using std::cin) and output (using std::cout), sic math, algorithms, and now looping constructs. There's been a lot of focus
    stream formatting (using of <iomanip>) which in my experience is not somethin
    used much in most C++ projects, but whatever. I am learning *some* things ther
    that I hadn't used before. But I have to keep reminding myself: I'm not here t
    teach this class (or the professor) or even to get the highest score ever, jus
    to learn what's good and bad about how C++ is being taught in schools these da
    . And towards that goal, it's going good!

    Sounds like the prof maybe needs to take a lesson from you and take a
    refresher course. ;)


    * SLMR 2.1a * If it's Tourist Season, howcum we can't shoot 'em, Pa?

    ---
    þ Synchronet þ CAPCITY2 * capcity2.synchro.net * Telnet/SSH:2022/Rlogin/HTTP
  • From Arelor@VERT/PALANTIR to Digital Man on Wed Jan 17 13:23:48 2024
    Re: Taking a community college CIS/C++ course
    By: Digital Man to All on Tue Jan 16 2024 04:51 pm



    More than once, I've thought "aha! that's where these candidates that don't Now you know why so many people feel betrayed after getting their degree and
    trying to get into the employment market. Half of what they have been taught was full of shit and the other half is outdated. If anybody exits college with useful knowledge, it is because their did their own research.

    --
    gopher://gopher.richardfalken.com/1/richardfalken

    ---
    þ Synchronet þ Palantir BBS * palantirbbs.ddns.net * Pensacola, FL
  • From Digital Man@VERT to Dumas Walker on Wed Jan 17 12:17:40 2024
    Re: Taking a community colleg
    By: Dumas Walker to DIGITAL MAN on Wed Jan 17 2024 09:42 am

    Sounds like the prof maybe needs to take a lesson from you and take a refresher course. ;)

    :-)
    --
    digital man (rob)

    Synchronet/BBS Terminology Definition #69:
    SEXPOTS = Synchronet External Plain Old Telephone System (POTS) service
    Norco, CA WX: 56.2øF, 80.0% humidity, 2 mph WSW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Arelor on Wed Jan 17 12:25:23 2024
    Re: Taking a community college CIS/C++ course
    By: Arelor to Digital Man on Wed Jan 17 2024 01:23 pm

    Now you know why so many people feel betrayed after getting their
    degree and trying to get into the employment market. Half of what they have > been taught
    was full of shit and the other half is outdated. If anybody exits college with useful knowledge, it is because their did their own research.

    Likely, but I also think the school/professor selection is a critical variable here. I've hired some great new grads and interns from universities with good engineering reputations that have demonstrated a solid comp-sci foundation. I can't afford to try every school's programming curriculum, but I'm definitely curious and plan to do some more research on this topic.

    I plan to take the follow-up C++ courses (at minimum) at this same community college and will hopefully get a better sense of what the other professors have to offer. I hope it gets better, but either way, it's been fun so far.
    --
    digital man (rob)

    Synchronet "Real Fact" #122:
    Synchronet v2.30a (DOS & OS/2) was released on 5-30-97, 20 months after v2.20b Norco, CA WX: 56.2øF, 80.0% humidity, 2 mph WSW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Nopants@VERT/CITBBS to Digital Man on Wed Jan 17 10:22:00 2024
    Re: Taking a community colleg
    By: Digital Man to All on Tue Jan 16 2024 04:51 pm

    I'm thinking of making a video series on programming in C

    I'd be interested to know what fields or modern applications there are for C these days (besides vehicle automation apparently :)).

    Have you checked out Dave's Garage? He's done some programming youtubes, so may give you some ideas on how to keep the interest level up. https://www.youtube.com/watch?v=b0zxIfJJLAY&t=430s

    Interested to hear how this progresses.



    ---
    þ Synchronet þ The Crack in Time BBS - crackintimebbs.ddns.net:2323
  • From Digital Man@VERT to Nopants on Wed Jan 17 13:38:37 2024
    Re: Taking a community colleg
    By: Nopants to Digital Man on Wed Jan 17 2024 10:22 am

    Re: Taking a community colleg
    By: Digital Man to All on Tue Jan 16 2024 04:51 pm

    I'm thinking of making a video series on programming in C

    I'd be interested to know what fields or modern applications there are for C these days (besides vehicle automation apparently :)).

    Most Linux (kernel and driver) work is in C. Android (and several other embedded OSes) run on the Linux kernel.

    Have you checked out Dave's Garage? He's done some programming youtubes, so may give you some ideas on how to keep the interest level up. https://www.youtube.com/watch?v=b0zxIfJJLAY&t=430s

    Oh yeah. Read his book too (which was a bit of an epiphany for me and my family). Dave's great.

    Interested to hear how this progresses.

    Will keep everyone here abreast of my progress.
    --
    digital man (rob)

    Synchronet "Real Fact" #16:
    Synchronet first supported FidoNet networking (with SBBSFIDO) in 1992
    Norco, CA WX: 59.8øF, 68.0% humidity, 4 mph WSW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Nopants on Wed Jan 17 14:40:41 2024
    Re: Taking a community colleg
    By: Digital Man to Nopants on Wed Jan 17 2024 01:38 pm

    I'd be interested to know what fields or modern applications there are for C these days (besides vehicle automation apparently :)).

    Most Linux (kernel and driver) work is in C. Android (and several other embedded OSes) run on the Linux kernel.

    All Apple products (e.g. iOS devices, watches, etc.) have a significant amount of compiled C code in them too.

    Oh yeah, and you know all the smart bulbs, switches, thermostats, doorlocks, appliances, etc. in your house? They're most definitely running some code (there most critical coe) that is written/maintained in C.
    --
    digital man (rob)

    Synchronet/BBS Terminology Definition #89:
    XJS = External JavaScript (SSJS embedded within HTML/CSS)
    Norco, CA WX: 60.4øF, 67.0% humidity, 6 mph WNW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Keyop@VERT/MAGNUMUK to Digital Man on Wed Jan 17 22:23:37 2024
    Re: Taking a community college CIS/C++ course
    By: Digital Man to All on Tue Jan 16 2024 16:51:13

    I'm thinking of making a video series on programming in C and then later maybe C++. I've been reading a lot of (mostly C++) programming books in preparation for this project.

    Oh that sounds great - I will definately be watching those when you publish them!

    My first video series will probably be a deconstruction/analysis of the 2nd edition of the K&R book (though yes, that's a really old version of C now).

    I learned how to program in C using a book titled "The C programming tutor" by Wortman and Sidebottom, which I recently re-purchased as I have misplaced my original copy.

    https://archive.org/details/cprogrammingtuto0000womm/mode/2up

    I watched a few introduction videos regarding C++ when it first came out, but never pursued it any further. I'm hoping your videos will rekindle my interest :)

    ---
    þ Synchronet þ >>> Magnum BBS <<< - bbs.magnum.uk.net
  • From fusion@VERT/CFBBS to Digital Man on Wed Jan 17 21:09:00 2024
    On 17 Jan 2024, Digital Man said the following...

    I plan to take the follow-up C++ courses (at minimum) at this same community college and will hopefully get a better sense of what the
    other professors have to offer. I hope it gets better, but either way, it's been fun so far. --

    what do you do for homework, interactions in class, etc? are you pretending to be a noob or do they know what you're up to?

    --- Mystic BBS v1.12 A47 2021/12/25 (Windows/32)
    * Origin: cold fusion - cfbbs.net - grand rapids, mi
  • From Digital Man@VERT to fusion on Wed Jan 17 18:19:08 2024
    Re: Re: Taking a community college CIS/C++ course
    By: fusion to Digital Man on Wed Jan 17 2024 09:09 pm

    On 17 Jan 2024, Digital Man said the following...

    I plan to take the follow-up C++ courses (at minimum) at this same community college and will hopefully get a better sense of what the other professors have to offer. I hope it gets better, but either way, it's been fun so far. --

    what do you do for homework, interactions in class, etc? are you pretending to be a noob or do they know what you're up to?

    It's an online course with about 40 students. I was honest about my background and reasons for taking the class. I'm not the only experienced programmer in the class (at least one other is a very experienced Java developer).

    The course work mostly is watching videos, reading chapters from the book (not really necessary), reading articles and discussing on a web-board or reading descriptions of assignments and then writing and submitting the source code that completes the assignment. It's a 6 week course, so it's pretty dense. 2 week in and I think I've submitted something like 15 assignments already (but very easy programming tasks for experienced C or C++ programmer, the time consuming part is just making sure that every trivial detail in the assignment description is addressed in the submitted code).

    I created a Discord server for the class and have been tutoring students there when I have time too.
    --
    digital man (rob)

    Synchronet/BBS Terminology Definition #31:
    FOSSIL = Fido/Opus/SEAdog Standard Interface Layer
    Norco, CA WX: 54.6øF, 80.0% humidity, 1 mph WNW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From poindexter FORTRAN@VERT/REALITY to fusion on Thu Jan 18 06:34:00 2024
    fusion wrote to Digital Man <=-

    i do enjoy reading my copy of the K&R book.. nostalgic.

    I bought another copy of K&R C, keep telling myself I'm going to load up
    a retro compiler and learn C again...


    ... What mistakes did you make last time?
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From poindexter FORTRAN@VERT/REALITY to Digital Man on Thu Jan 18 06:37:00 2024
    Digital Man wrote to Nopants <=-

    Most Linux (kernel and driver) work is in C. Android (and several other embedded OSes) run on the Linux kernel.

    Walking through the MINIX code is an interesting lesson. It's designed
    as an educational OS, the code is pretty vanilla C, and it's easy to
    read. I'd run a little web site on it just because I could a couple of
    jobs ago. It made for a fun experiment, having a web site running on a
    286.




    ... What is the simplest solution?
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From poindexter FORTRAN@VERT/REALITY to Digital Man on Thu Jan 18 06:39:00 2024
    Digital Man wrote to fusion <=-

    I created a Discord server for the class and have been tutoring
    students there when I have time too.

    I tutored a FORTRAN class with a particularly bad professor. Friends of
    mine would hang out after the class and I'd go over what he'd taught.

    And, thus, a handle was born. :)





    ... What is the simplest solution?
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From Nopants@VERT/CITBBS to Digital Man on Sat Jan 20 09:36:00 2024
    Re: Taking a community colleg
    By: Digital Man to Nopants on Wed Jan 17 2024 02:40 pm

    Oh yeah, and you know all the smart bulbs, switches, thermostats, doorlocks, appliances, etc. in your house? They're most definitely running some code (there most critical coe) that is written/maintained in C.

    I didn't realize that the ESP32 devices I messed with a few years ago was C++. That was a fun way to learn. I need to get back into that. The stuff I built so far 'just works' so I haven't touched it again. I guess that explains why it is used for these embedded devices.

    Will C++ knowledge translate to C?

    ---
    þ Synchronet þ The Crack in Time BBS - crackintimebbs.ddns.net:2323
  • From Digital Man@VERT to Nopants on Sat Jan 20 13:53:44 2024
    Re: Taking a community colleg
    By: Nopants to Digital Man on Sat Jan 20 2024 09:36 am

    Will C++ knowledge translate to C?

    Yeah, C is roughly a subset of C++. The languages have diverged and re-converged a bit over the years (and versions of their standards), but yeah, almost any experienced C++ programmer can program in C, though they often groan about it. :-)
    --
    digital man (rob)

    This Is Spinal Tap quote #24:
    David St. Hubbins: You're a haughty one, saucy Jack.
    Norco, CA WX: 51.4øF, 91.0% humidity, 0 mph WSW wind, 0.29 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From nelgin@VERT/EOTLBBS to Digital Man on Mon Jan 22 13:42:52 2024
    Re: Taking a community colleg
    By: Digital Man to Nopants on Sat Jan 20 2024 13:53:44

    Yeah, C is roughly a subset of C++. The languages have diverged and re-converged a bit over the years (and versions of their standards), but yeah, almost any experienced C++ programmer can program in C, though they often groan about it. :-)

    I think the thing that put me off learning C is the 1001 different compile options for gcc. If you're going to be working on more portable open source projects then there's a whole subset of stuff you problem need to know like the autoconf tools and the like.

    The code will run faster but I'm happy just to rip off a bit of perl and be done with it. no compilation, no makes files.

    ---
    þ Synchronet þ End Of The Line BBS - endofthelinebbs.com
  • From The Lizard Master@VERT/NITEEYES to Digital Man on Fri Jan 26 10:59:41 2024
    Re: Re: Taking a community college CIS/C++ course
    By: Digital Man to fusion on Wed Jan 17 2024 06:19 pm

    I created a Discord server for the class and have been tutoring students there when I have time too.

    That's great of you!

    ---
    þ Synchronet þ This is my tagline so I don't get any complaints when I post
  • From anthk@VERT to All on Sat Mar 22 02:32:11 2025
    On 2024-01-22, nelgin <EOTLBBS!nelgin@vert.synchro.net> wrote:

    Re: Taking a community colleg
    By: Digital Man to Nopants on Sat Jan 20 2024 13:53:44

    Yeah, C is roughly a subset of C++. The languages have diverged and re-converged a bit over the years (and versions of their standards), but yeah, almost any experienced C++ programmer can program in C, though they often groan about it. :-)

    I think the thing that put me off learning C is the 1001 different compile options for gcc. If you're going to be working on more portable open source projects then there's a whole subset of stuff you problem need to know like the autoconf tools and the like.

    The code will run faster but I'm happy just to rip off a bit of perl and be done with it. no compilation, no makes files.

    ---
    â–  Synchronet â–  End Of The Line BBS - endofthelinebbs.com

    You can be fine with ANSI C, The C programming language 2nd ED and tcc for most software from https://codemadness.org , git://bitreich.org and https://2f30.org
    These are tons of small minimalist tools for anything. I love sacc for gopher and catpoint/pointtools. And hurl it's my default http/s and gopher downloader with a little script to download files per arg with 'basename'.

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net
  • From Mortar@VERT/EOTLBBS to All on Tue Mar 25 14:11:08 2025
    Re: Re: Taking a community colleg
    By: anthk to All on Sat Mar 22 2025 02:32:11

    Yeah, C is roughly a subset of C++.

    Not quite. C came out in '72 while C++ came out in '85 and is an extension of C.

    ---
    þ Synchronet þ End Of The Line BBS - endofthelinebbs.com
  • From Nightfox@VERT/DIGDIST to Mortar on Tue Mar 25 13:50:52 2025
    Re: C Origins
    By: Mortar to All on Tue Mar 25 2025 02:11 pm

    Yeah, C is roughly a subset of C++.

    Not quite. C came out in '72 while C++ came out in '85 and is an extension of C.

    I don't think the time of release of the languages matters. I've sometimes seen people say C++ is a superset of C, so I think it can be said that C is a subset of C++.

    I've heard initially, C++ was implemented as CFront, which was a literal extension of C, but C++ has evolved to be its own stand-alone implementation.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From MRO@VERT/BBSESINF to Mortar on Tue Mar 25 21:38:58 2025
    Re: C Origins
    By: Mortar to All on Tue Mar 25 2025 02:11 pm

    Re: Re: Taking a community colleg
    By: anthk to All on Sat Mar 22 2025 02:32:11

    Yeah, C is roughly a subset of C++.

    Not quite. C came out in '72 while C++ came out in '85 and is an extension of C.

    you reply to the person instead of typing all. you're using the fseditor.
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Nightfox@VERT/DIGDIST to MRO on Tue Mar 25 20:52:30 2025
    Re: C Origins
    By: MRO to Mortar on Tue Mar 25 2025 09:38 pm

    Not quite. C came out in '72 while C++ came out in '85 and is an extension
    of C.

    you reply to the person instead of typing all. you're using the fseditor.

    I don't think their editor matters. I'm pretty sure the person you're directing the message to is prompted by Synchronet before even running the editor.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From Shitty@VERT/ALCO to MRO on Thu Jul 17 23:03:00 2025
    Not quite. C came out in '72 while C++ came out in '85 and is an exten of C.

    you reply to the person instead of typing all. you're using the fseditor.

    Synchronet is a pain in the ass.

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From MRO@VERT/BBSESINF to Shitty on Fri Jul 18 14:02:58 2025
    Re: Re: C Origins
    By: Shitty to MRO on Thu Jul 17 2025 11:03 pm

    Not quite. C came out in '72 while C++ came out in
    '85 and is an exten of C.

    you reply to the person instead of typing all. you're using the fseditor.

    Synchronet is a pain in the ass.

    but you have the ability to change it into anything if it's a pain in the
    ass to you. i see you're running mystic.

    mystic bbs became what those guys said synchronet was. just a bunch of
    boring stock boards mostly. on top of that it still doesn't have its own fossil driver, right?

    btw, i never got a thank you for getting their domain name back to them.
    tacky.
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Lonewolf@VERT/BINARYDR to Gamgee on Sun Oct 12 17:54:40 2025
    Re: Re: Taking a community college CIS/C++ course
    By: Gamgee to Digital Man on Wed Jan 17 2024 07:38 am

    Digital Man wrote to All <=-

    I'm thinking of making a video series on programming in C and then later
    maybe C++. I've been reading a lot of (mostly C++) programming books in
    preparation for this project.

    <SNIP>

    I would be VERY interested in following this! Sure hope you're able to do it, and thanks!

    I know this is an old thread, but wanted to poke DM and see if he has given any more thought to this. I would be very interested in seeing it too. I mostly code in C# now, but I still like to code on some of my old doors (FREQ ROBOT, door games) that I wrote with Open Doors and Turbo C 3.0 and also use C in some ESP32 projects. I also have kind of made a hobby out of picking up old books on C programing from thriftbooks.com, mostly Borland C/C++/Builder books I used to own, but got rid of back in the day that I wish I hadn't of. Anything on coding in C is very intersting to me, so, DM you still going to do the series?

    Thanks again for all your contributions to the hobby,

    Lonewolf
    ---
    þ Synchronet þ Fireside BBS - AI-WX - firesidebbs.com:23231
  • From Digital Man@VERT to Lonewolf on Sun Oct 12 17:53:38 2025
    Re: Re: Taking a community college CIS/C++ course
    By: Lonewolf to Gamgee on Sun Oct 12 2025 05:54 pm

    I would be VERY interested in following this! Sure hope you're able to do it, and thanks!

    I know this is an old thread, but wanted to poke DM and see if he has given any more thought to this. I would be very interested in seeing it too. I mostly code in C# now, but I still like to code on some of my old doors (FREQ ROBOT, door games) that I wrote with Open Doors and Turbo C 3.0 and also use C in some ESP32 projects. I also have kind of made a hobby out of picking up old books on C programing from thriftbooks.com, mostly Borland C/C++/Builder books I used to own, but got rid of back in the day that I wish I hadn't of. Anything on coding in C is very intersting to me, so, DM you still going to do the series?

    I think and hope to yes. I started a new job a few months ago and that's taking away more of my "free time" than I had before, but I do want to do it for sure. I recorded a first episode already a few months ago (a deep dive into the 'sizeof' operator) but didn't like the final result: I can do better.

    Thanks for reminding though!

    Thanks again for all your contributions to the hobby,

    Of course. I appreciate your interest in it too!
    --
    digital man (rob)

    Synchronet "Real Fact" #80:
    85 SBBSecho registrations were sold (at $49) between 1994 and 1996
    Norco, CA WX: 72.5øF, 55.0% humidity, 8 mph W wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From shitty@VERT/CFBBS to MRO on Tue May 19 21:43:00 2026
    Synchronet is a pain in the ass.

    but you have the ability to change it into anything if it's a pain in the ass to you. i see you're running mystic.

    The stock Synch boards (aka all of them) have a feature where you can make your menus and hotkeys similar to a stock Renegade board, which makes the experience ok until you enter the message reader or the message editor. That's where the buzz is killed completely.

    mystic bbs became what those guys said synchronet was. just a bunch of boring stock boards mostly. on top of that it still doesn't have its
    own fossil driver, right?

    There's no need for one unless you want to play old door games.

    btw, i never got a thank you for getting their domain name back to them. tacky.

    When you do something for someone, you should do it out of the goodness of your heart, not to get a thank you. You want g00r00 to get on both knees for you?

    --- Mystic BBS v1.12 A47 2021/12/25 (Windows/32)
    * Origin: cold fusion - cfbbs.net - grand rapids, mi
  • From MRO@VERT/BBSESINF to shitty on Tue May 19 20:52:50 2026
    Re: Re: C Origins
    By: shitty to MRO on Tue May 19 2026 09:43 pm

    Synchronet is a pain in the ass.

    but you have the ability to change it into anything if it's a pain in the ass to you. i see you're running mystic.

    The stock Synch boards (aka all of them) have a feature where you can
    make your menus and hotkeys similar to a stock Renegade board, which
    makes the experience ok until you enter the message reader or the
    message editor. That's where the buzz is killed completely.


    well the msg reader and the msg reader are 2 different things.

    I dont like the DMmsgreader. are you talking about that?
    The regular synchronet msg reader is comparable to other bbs softwares.
    BBS sysops can install whatever editor they want. i even made one out of AI and a lot of tweaking. right now i'm using quikedit aka iceedit.

    like i said, if you are a sysop you can change how things work and look with synchronet. you don't have to be a programmer.

    now mystic bbses are the ones that are the stock bbses. it's ironic they used to talk shit about synchronet and now they are like that.

    mystic bbs became what those guys said synchronet was. just a bunch
    of boring stock boards mostly. on top of that it still doesn't have its own fossil driver, right?

    There's no need for one unless you want to play old door games.

    well doorgames are a big thing with bbses, right?

    btw, i never got a thank you for getting their domain name back to them. tacky.

    When you do something for someone, you should do it out of the
    goodness of your heart, not to get a thank you. You want g00r00 to
    get on both knees for you?


    Yes i do expect him to get on both knees for me. but i heard he ghosted everyone again. Is this like the 5th time he did it? I lost count.

    Also, I don't think he's ever said thank you to anybody in his life.

    And before i thought you were the guy running mystic. you are a user on
    these bbses. if you have suggestions you should send feedback to the sysop. it won't hurt anything.

    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union

    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From poindexter FORTRAN@VERT/REALITY to shitty on Thu May 21 08:04:01 2026
    shitty wrote to MRO <=-

    The stock Synch boards (aka all of them) have a feature where you can
    make your menus and hotkeys similar to a stock Renegade board, which
    makes the experience ok until you enter the message reader or the
    message editor. That's where the buzz is killed completely.

    There's SlyEdit and DDMsgReader, which give you a decent editor and
    threadable message lister/reader - that makes a nice bump and both come
    with Synchronet in the XTRN directory.

    I'm running the Renegade menus, with some ANSIs and color
    customization. Not sure that the stock message experience is a
    buzzkill, but I like the old school look of stock. Then again, I do
    most of my messaging through QWK, which is does well - I can FTP
    packets and replies to/from the BBS.




    ... Think of the radio
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From Nightfox@VERT/DIGDIST to poindexter FORTRAN on Thu May 21 10:16:11 2026
    Re: Re: C Origins
    By: poindexter FORTRAN to shitty on Thu May 21 2026 08:04 am

    There's SlyEdit and DDMsgReader, which give you a decent editor and threadable message lister/reader - that makes a nice bump and both come with Synchronet in the XTRN directory.

    DDMsgReader is in the xtrn directory, but SlyEdit is in the exec directory.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From Shitty@VERT/ALCO to MRO on Fri May 22 00:14:00 2026
    I dont like the DMmsgreader. are you talking about that?
    The regular synchronet msg reader is comparable to other bbs softwares. BBS sysops can install whatever editor they want. i even made one out
    of AI and a lot of tweaking. right now i'm using quikedit aka iceedit.

    I visit Shenk's Express (a synch board) sometimes. I don't know which message editor it has, but it's a pain in the ass. Ctrl-U to quote, Ctrl-Z to save. It's just hard to remember.

    I can say this this nice thing about Synchronet: The message base system is more user-friendly than than Wildcat or PC Board.

    There's no need for one unless you want to play old door games.

    well doorgames are a big thing with bbses, right?

    I'm not sure, but it would be interesting to read a statistic that tracks how many people are still playing them (and which ones.)

    And before i thought you were the guy running mystic. you are a user on these bbses. if you have suggestions you should send feedback to the sysop. it won't hurt anything.

    My suggestion to all sysops: Focus on making apps for the Google Play Store and the Apple store (whatever its called.)

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From Shitty@VERT/ALCO to poindexter FORTRAN on Fri May 22 00:18:00 2026
    I'm running the Renegade menus, with some ANSIs and color
    customization. Not sure that the stock message experience is a
    buzzkill, but I like the old school look of stock. Then again, I do
    most of my messaging through QWK, which is does well - I can FTP
    packets and replies to/from the BBS.

    Are you using BlueWave?

    That's probably what I should do to join the conversation on Synch boards.

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From MRO@VERT/BBSESINF to Shitty on Fri May 22 03:05:45 2026
    Re: Re: C Origins
    By: Shitty to MRO on Fri May 22 2026 12:14 am

    I dont like the DMmsgreader. are you talking about
    that? The regular synchronet msg reader is comparable to other bbs softwares. BBS sysops can install whatever editor they want. i even made one out of AI and a lot of tweaking. right now i'm using
    quikedit aka iceedit.

    I visit Shenk's Express (a synch board) sometimes. I don't know which message editor it has, but it's a pain in the ass. Ctrl-U to quote,
    Ctrl-Z to save. It's just hard to remember.


    that's a bad example.
    that bbs is kinda stock and corney.

    those command keys were deuce's decisions. i talked to him about it but he wouldnt change it. we can use all kinds of editors in synchronet bbs.
    there is even a default built in editor.

    There's no need for one unless you want to play old door games.

    well doorgames are a big thing with bbses, right?

    I'm not sure, but it would be interesting to read a statistic
    that tracks how many people are still playing them (and which ones.)

    we would all have to be running some data gathering software and i dont think we can get everyone on board with tht.


    My suggestion to all sysops: Focus on making apps for the Google
    Play Store and the Apple store (whatever its called.)

    make what apps? you mean like a stand alone app that calls our bbses?
    it's kind of hard to use a bbs on a phone.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to Shitty on Fri May 22 03:07:49 2026
    Re: Re: C Origins
    By: Shitty to poindexter FORTRAN on Fri May 22 2026 12:18 am

    I'm running the Renegade menus, with some ANSIs and
    color customization. Not sure that the stock message experience
    is a buzzkill, but I like the old school look of stock. Then again,
    I do most of my messaging through QWK, which is does well - I can
    FTP packets and replies to/from the BBS.

    Are you using BlueWave?

    That's probably what I should do to join the conversation on Synch
    boards.


    he's probably using multimail for offline reading.
    you can connect to some synchronet bbses via nntp.
    we also have web interfaces.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From poindexter FORTRAN@VERT/REALITY to Shitty on Fri May 22 08:01:11 2026
    Shitty wrote to poindexter FORTRAN <=-

    Are you using BlueWave?

    That's probably what I should do to join the conversation on Synch
    boards.

    I'm using MultiMail. I was a longtime BlueWave user, but after Y2K
    started using Multimail instead. It looks/feels like BlueWave did, but
    there are DOS, Windows, OS/2, Linux and Mac versions. Only does QWK
    format packets, but I don't think anyone's running a BW door these days.

    Like BlueWave, you can install whatever text editor you'd like to
    create/reply to messages.

    https://github.com/wmcbrine/MultiMail





    ... Do the last thing first
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From Nightfox@VERT/DIGDIST to Shitty on Fri May 22 15:31:52 2026
    Re: Re: C Origins
    By: Shitty to MRO on Fri May 22 2026 12:14 am

    I visit Shenk's Express (a synch board) sometimes. I don't know which message editor it has, but it's a pain in the ass. Ctrl-U to quote, Ctrl-Z to save. It's just hard to remember.

    I just checked that BBS out - They have FSEditor and SlyEdit set up. With SlyEdit, as alternates for those quote & save keys, you can quote by typing /q on a blank line by itself & pressing enter and similarly, save with /s .

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From Mike Powell@VERT/CAPTEST to poindexter FORTRAN on Sat May 23 04:40:00 2026
    That's probably what I should do to join the conversation on Synch boards.

    I'm using MultiMail. I was a longtime BlueWave user, but after Y2K
    started using Multimail instead. It looks/feels like BlueWave did, but there are DOS, Windows, OS/2, Linux and Mac versions. Only does QWK
    format packets, but I don't think anyone's running a BW door these days.

    False statement! MultiMail is what I use to read Bluewave packets. :D

    It can handle either.


    ---
    * ScorpioWeb * Project Scorpio TEST
  • From Shitty@VERT/ALCO to MRO on Sun May 24 00:40:00 2026
    I visit Shenk's Express (a synch board) sometimes. I don't know which message editor it has, but it's a pain in the ass. Ctrl-U to quote, Ctrl-Z to save. It's just hard to remember.


    that's a bad example.
    that bbs is kinda stock and corney.

    Sometimes stock boards are the most functional. People play around with stuff until they break it (I've been guilty of it.)

    I'm not sure, but it would be interesting to read a statistic
    that tracks how many people are still playing them (and which ones.)

    we would all have to be running some data gathering software and i dont think we can get everyone on board with tht.

    I'd do it for my own BBS, then I'd get rid of doors that people don't play. (It's more of a source of truth than the voting booth.)

    My suggestion to all sysops: Focus on making apps for the Google
    Play Store and the Apple store (whatever its called.)

    make what apps? you mean like a stand alone app that calls our bbses?
    it's kind of hard to use a bbs on a phone.

    No I meant let's ditch BBSs and make our own modern social networks. That way we're not just sniffing Digital Man's farts.

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From Shitty@VERT/ALCO to MRO on Sun May 24 00:41:00 2026
    Are you using BlueWave?

    That's probably what I should do to join the conversation on Synch boards.


    he's probably using multimail for offline reading.
    you can connect to some synchronet bbses via nntp.
    we also have web interfaces.

    Do you have a web interface set up? I heard that it could be done with Synch but I haven't seen it in action yet.

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From Shitty@VERT/ALCO to poindexter FORTRAN on Sun May 24 00:46:00 2026
    Are you using BlueWave?

    That's probably what I should do to join the conversation on Synch boards.

    I'm using MultiMail. I was a longtime BlueWave user, but after Y2K
    started using Multimail instead. It looks/feels like BlueWave did, but there are DOS, Windows, OS/2, Linux and Mac versions. Only does QWK
    format packets, but I don't think anyone's running a BW door these days.

    Like BlueWave, you can install whatever text editor you'd like to create/reply to messages.

    https://github.com/wmcbrine/MultiMail

    Thanks and I am going to give it a try. It sucks getting timed out on BBSs that have inactivity timeouts. (Doesn't it seem like that shouldn't be a thing these days?)

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From Shitty@VERT/ALCO to Nightfox on Sun May 24 00:47:00 2026
    I visit Shenk's Express (a synch board) sometimes. I don't know which message editor it has, but it's a pain in the ass. Ctrl-U to quote, C to save. It's just hard to remember.

    I just checked that BBS out - They have FSEditor and SlyEdit set up.
    With SlyEdit, as alternates for those quote & save keys, you can quote
    by typing /q on a blank line by itself & pressing enter and similarly, save with /s .

    My bad! I was overcomplicating it.

    --- Mystic BBS v1.12 A49 2023/02/26 (Linux/64)
    * Origin: alcoholidaybbs.com / Est. 1995 / Columbia, SC
  • From MRO@VERT/BBSESINF to Shitty on Sun May 24 01:07:48 2026
    Re: Re: C Origins
    By: Shitty to MRO on Sun May 24 2026 12:40 am


    No I meant let's ditch BBSs and make our own modern social networks.


    i dont want to socialize with these bbs people. they're a bunch of lame
    fucks.

    there's the boring people and the posers. i'm the only cool guy here.

    That way we're not just sniffing Digital Man's farts.

    what the hell! how dare you! Didn't you see his ebike video?


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to Shitty on Sun May 24 01:09:08 2026
    Re: Re: C Origins
    By: Shitty to MRO on Sun May 24 2026 12:41 am

    Are you using BlueWave?

    That's probably what I should do to join the conversation
    on Synch boards.


    he's probably using multimail for offline reading. you can connect
    to some synchronet bbses via nntp. we also have web interfaces.

    Do you have a web interface set up? I heard that it could be done
    with Synch but I haven't seen it in action yet.


    yeah there's like 2 web interfaces with synchronet that allow you to view and post msgs or send email. other people are doing cooler shit.

    other people are using ai to make bbses. like that claudes bbs guy and stinray. they have systems that look the same.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to Shitty on Sun May 24 01:10:19 2026
    Re: Re: C Origins
    By: Shitty to poindexter FORTRAN on Sun May 24 2026 12:46 am


    Thanks and I am going to give it a try. It sucks getting timed out
    on BBSs that have inactivity timeouts. (Doesn't it seem like that
    shouldn't be a thing these days?)


    events have to run and people can't hang online all day.

    if you hit ctrl p you can get little telegram popup that that might stop you from timing out.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Gamgee@VERT/PALANTIR to MRO on Sun May 24 08:05:04 2026
    MRO wrote to Shitty <=-

    Thanks and I am going to give it a try. It sucks getting timed out
    on BBSs that have inactivity timeouts. (Doesn't it seem like that
    shouldn't be a thing these days?)

    events have to run and people can't hang online all day.

    True.

    if you hit ctrl p you can get little telegram popup that that might
    stop you from timing out.

    Yeah or maybe wake the fuck up and pay attention.



    ... Gone crazy, be back later, please leave message.
    --- MultiMail/Linux v0.52
    þ Synchronet þ Palantir BBS * palantirbbs.ddns.net * Pensacola, FL
  • From poindexter FORTRAN@VERT/REALITY to Mike Powell on Sun May 24 09:08:08 2026
    Mike Powell wrote to poindexter FORTRAN <=-

    False statement! MultiMail is what I use to read Bluewave packets. :D

    It can handle either.

    I did not know that! I liked the BW format more than QWK, wish more
    boards supported it.



    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From poindexter FORTRAN@VERT/REALITY to Shitty on Sun May 24 09:08:08 2026
    Shitty wrote to poindexter FORTRAN <=-

    Thanks and I am going to give it a try. It sucks getting timed out on
    BBSs that have inactivity timeouts. (Doesn't it seem like that
    shouldn't be a thing these days?)

    Not when you can send up 6-10 telnet nodes on a low-end box...



    ... Adding on
    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From fusion@VERT/CFBBS to MRO on Sun May 24 16:25:00 2026
    On 24 May 2026, MRO said the following...

    yeah there's like 2 web interfaces with synchronet that allow you to
    view and post msgs or send email. other people are doing cooler shit.

    other people are using ai to make bbses. like that claudes bbs guy and stinray. they have systems that look the same.

    makes me wanna tinker with mine again. i mostly wanted to make the reader scroll the whole thread like you would a web forum rather than it being
    message based.

    also get rid of the initial login entirely and just ask before posting or loading a door or whatever.

    *shrug*

    --- Mystic BBS v1.12 A47 2021/12/25 (Windows/32)
    * Origin: cold fusion - cfbbs.net - grand rapids, mi
  • From Digital Man@VERT to poindexter FORTRAN on Sun May 24 14:51:21 2026
    Re: Re: C Origins
    By: poindexter FORTRAN to Mike Powell on Sun May 24 2026 09:08 am

    I did not know that! I liked the BW format more than QWK, wish more
    boards supported it.

    I looked into BlueWave kind of recently and I can tell you: it's file format actually kind of sucks - I would have added support otherwise. QWK with the Synchronet extensions (mainly HEADERS.DAT file) are way better than BW.
    --
    digital man (rob)

    Breaking Bad quote #1:
    Just because you shot Jesse James, don't make you Jesse James. - M. Ehrmantraut Norco, CA WX: 70.6øF, 57.0% humidity, 0 mph NW wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From MRO@VERT/BBSESINF to Gamgee on Sun May 24 17:47:21 2026
    Re: Re: C Origins
    By: Gamgee to MRO on Sun May 24 2026 08:05 am


    if you hit ctrl p you can get little telegram popup that that might stop you from timing out.

    Yeah or maybe wake the fuck up and pay attention.


    it's happened to me. i have to go do something and i forget and i'm still online. but what sucks is with mystic bbs you get stuck on the node for a long long time and can't login.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to fusion on Sun May 24 17:55:50 2026
    Re: Re: C Origins
    By: fusion to MRO on Sun May 24 2026 04:25 pm

    makes me wanna tinker with mine again. i mostly wanted to make the
    reader scroll the whole thread like you would a web forum rather
    than it being message based.

    also get rid of the initial login entirely and just ask before
    posting or loading a door or whatever.


    messing around with ai was a little 'fun' for a while and i did learn more about javascript when correcting the code.

    now with claude i get cut off so much i dont even use it. i have a monopoly game that is 99% done but i need to fix the way it looks and that's on my largely.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"


    President of BBS Sysop's Union +++ https://bbses.info/union
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::