Search found 204 matches

by guest
Mon Apr 09, 2018 1:15 pm
Forum: Showcase
Topic: Cabinet Planner
Replies: 0
Views: 14971

Cabinet Planner

(copied from the old forum) Cabinet Planner, by Robert McAllister, is probably the largest Liberty BASIC program ever written, and without doubt the largest program ever to have been compiled using 'LB Booster'! It consists of three modules totalling more than 100,000 lines of LB code, with the larg...
by guest
Sun Apr 08, 2018 11:00 pm
Forum: General Board
Topic: Forum features
Replies: 2
Views: 8086

Re: Forum features

Thank you Richard. I was looking for "Recent posts" button for a while. The '10 most recent posts' feature at Conforums was never reliable. Sometimes posts would not appear there at all, and if activity was high posts could get pushed off that list before you ever saw them. I prefer the '...
by guest
Sun Apr 08, 2018 7:23 pm
Forum: General Board
Topic: Technical Wiki
Replies: 11
Views: 26346

Re: Technical Wiki

JackKelly wrote: Sun Apr 08, 2018 6:29 pm Richard, would you please delete this thread. I'm sorry I started it.
I think that would be a bad precedent to set, especially so early in the life of the forum. It would probably halve the total number of posts!

Richard.
by guest
Sun Apr 08, 2018 5:09 pm
Forum: General Board
Topic: Forum features
Replies: 2
Views: 8086

Forum features

The new forum has lots of nice features, but they aren't always obvious. One that you might have missed is the 'Quick links' button in the top-left corner under the LBB logo. One of those links is to 'Unread posts' so you can quickly find topics that have been updated since your last visit, without ...
by guest
Sun Apr 08, 2018 10:56 am
Forum: General Board
Topic: Cherry-picking the old forums?
Replies: 2
Views: 7611

Re: Cherry-picking the old forums?

Various comments continue to be made at the Liberty BASIC Forum (some reasonable, some indefensible). As I have stated elsewhere, the Copyright issue is a tricky one. If one adopts a very strict and precise interpretation of Copyright law, it would not be possible to make the content of the old foru...
by guest
Sat Apr 07, 2018 8:14 pm
Forum: General Board
Topic: Cherry-picking the old forums?
Replies: 2
Views: 7611

Re: Cherry-picking the old forums?

The Liberty BASIC folks seem to be debating this same issue, but the scale of the problem must be even greater for them (the old LBB forum was something over 6000 equivalent pages, theirs must be much bigger) Apparently there are in the region of 100,000 posts at the old LB forum, which seems quite...
by guest
Sat Apr 07, 2018 11:39 am
Forum: General Board
Topic: Cherry-picking the old forums?
Replies: 2
Views: 7611

Cherry-picking the old forums?

As you know, I decided to make the old forums (LBB and BBC BASIC) available in their entirety, by taking and archiving a complete snapshot. This admittedly means that as well as the gems of useful information contained there, a large amount of dross, including inaccurate and misleading posts, has co...
by guest
Fri Apr 06, 2018 8:17 pm
Forum: General Board
Topic: Hi Richard
Replies: 6
Views: 14148

Re: Hi Richard

Thanks for keeping things up and running. I'm keeping my fingers well and truly crossed that choosing to host the forum (and the wiki) on a 'private', albeit shared, server doesn't prove to be a mistake. Being permanently free of advertising - and not having to go cap-in-hand to members for donatio...
by guest
Fri Apr 06, 2018 8:07 pm
Forum: General Board
Topic: Technical Wiki
Replies: 11
Views: 26346

Re: Technical Wiki

Rod wrote: Fri Apr 06, 2018 6:57 pm"free" is unsustainable in the long term
I agree, but 'bundled' is as good as 'free'. I pay nothing for the web space provided by my ISP, because it's part of my broadband package and there isn't an option of not having it.

Richard.
by guest
Fri Apr 06, 2018 2:32 pm
Forum: BASIC code examples
Topic: Hyperbolic functions
Replies: 0
Views: 12944

Hyperbolic functions

I've received a query by email about calculating hyperbolic trig functions (e.g. sinh, cosh, tanh). They are easily implemented as user-defined functions as follows: function sinh(x) sinh = (exp(x) - exp(-x)) / 2 end function function cosh(x) cosh = (exp(x) + exp(-x)) / 2 end function function tanh(...