Search found 250 matches

by swensont
Tue Jul 04, 2023 6:32 pm
Forum: The Off-Topic Section
Topic: Today I Received...
Replies: 642
Views: 287702

Re: Today I Received...

Here is a recent acquisition.

Tim
textgames2.jpg
textgames2.jpg (63.4 KiB) Viewed 11736 times
by swensont
Wed Mar 22, 2023 5:13 am
Forum: Software & Programming
Topic: Unzip problem
Replies: 12
Views: 3457

Re: Unzip problem

David, When sQLux was released a while back, I created a example qlx.win file. It can be found here: http://swensont.epizy.com/sqlux.win (It's 2 MB). It has a number of directories and it has a copy of unzip. You can use this file as a boot device (win1_) or mounted as a secondary device (win2_). I ...
by swensont
Tue Nov 22, 2022 9:49 pm
Forum: Help for New Users
Topic: How to transfer the text in a quill doc file to a modern PC
Replies: 12
Views: 9066

Re: How to transfer the text in a quill doc file to a modern PC

I still actively use Quill for writing. The simplest way to get from Quill to a word processor like OpenOffice or Word is to use "QL-2-PC Transfer" from Geoff Wicks (Just Words Software). Here is the link: http://www.gwicks.net/freeware/ql2pc.zip I use it to convert from Quill _doc file to...
by swensont
Mon Sep 26, 2022 10:27 pm
Forum: Software & Programming
Topic: Rounding in QSpread
Replies: 9
Views: 1544

Re: Rounding in QSpread

I've used the method of converting between Gregorian Date and Julian Date from Jean Meeus. It is working fine with Abacus. I'm doing the same method with SuperBasic, but using "PRINT USING" to get the output to be what I need. I've tested with Abacus, and it is 14 digits. I was able to get...
by swensont
Mon Sep 26, 2022 12:18 am
Forum: Software & Programming
Topic: Rounding in QSpread
Replies: 9
Views: 1544

Re: Rounding in QSpread

I was not trying to balance my checkbook, but converting Gregorian data to Julian Day. The current Julian Day is 2459847.5, which will round up.

Tim
by swensont
Thu Sep 22, 2022 5:12 am
Forum: Software & Programming
Topic: Rounding in QSpread
Replies: 9
Views: 1544

Rounding in QSpread

I've been tinkering with Qspread and I found that despite having rounding turned off, it will still round up larger numbers. If I type in a 6 digit number with a decimal (123456.5) it will display it as 123456.5. If I type in a 7 digit number with a decimal (1234567.5) it will display it as 1234568....
by swensont
Wed Sep 07, 2022 6:13 am
Forum: Software & Programming
Topic: Othello Helper
Replies: 0
Views: 4082

Othello Helper

I wrote a program that can be used to step through Othello games, seeing the moves live. I tried reading a number of Othello tutorials, but the example boards/games were hard to see timewise. This program will take a list of Othello moves and display them one after the other (pausing in between). It...
by swensont
Tue Aug 16, 2022 11:21 pm
Forum: Software & Programming
Topic: I'm looking for a S*BASIC app, possibly by Tim Swenson!
Replies: 29
Views: 5132

Re: I'm looking for a S*BASIC app, possibly by Tim Swenson!

Norman,

I see you found the issues that I found when getting SSB to "compile" itself. Glad to see the updates and that you have modified it to work as you want.

Tim Swenson
by swensont
Thu Aug 11, 2022 10:32 pm
Forum: Software & Programming
Topic: I'm looking for a S*BASIC app, possibly by Tim Swenson!
Replies: 29
Views: 5132

Re: I'm looking for a S*BASIC app, possibly by Tim Swenson!

Norman, Why not release both _SSB and _BAS. I would call _SSB the source code and _BAS the "runtime" :-) The purpose of SSB was to make code that is easy to use (and add a few per-processor nice-to-haves). Even those that don't have SSB, the _SSB code would be easier to read and understand...
by swensont
Tue Aug 09, 2022 6:46 pm
Forum: Software & Programming
Topic: I'm looking for a S*BASIC app, possibly by Tim Swenson!
Replies: 29
Views: 5132

Re: I'm looking for a S*BASIC app, possibly by Tim Swenson!

Norman, The ** will create a REMark statement. The other comment is ## which does not show up in the final BASIC program. This is what I use. The full code with comments ends with _SSB. When I convert to _BAS, I leave out the comments. I don't see them as needed as no one should be reading the _BAS ...