Search found 632 matches

by Dutchman
Tue Nov 25, 2025 9:55 am
Forum: BASIC programs
Topic: Are you able to fill a simple input window?
Replies: 2
Views: 74
Flag: Netherlands

Re: Are you able to fill a simple input window?

Great input function for programs. Thanks.
For now, you hold the record:
screenshot.jpg
screenshot.jpg (8.01 KiB) Viewed 20 times
A nice game problem. Initially, it was impossible to finish on time.
I had to increase the "speed" variable to 4 to get enough time.
by Dutchman
Wed Nov 19, 2025 9:22 am
Forum: BASIC programs
Topic: Test the WiFi connection
Replies: 10
Views: 272
Flag: Netherlands

Re: Test the WiFi connection

I ran the program for two days. It's remarkable that after a few hours, the interval remains almost constant at two hours.
Provider: KPN (NL), via fiber optic
file content.jpg
file content.jpg (58.96 KiB) Viewed 162 times
by Dutchman
Tue Aug 19, 2025 8:44 am
Forum: BASIC programs
Topic: Game of Hamurabi (modified)
Replies: 1
Views: 706
Flag: Netherlands

Re: Game of Hamurabi (modified)

Nice game, but it gets a bit boring towards the end.
You might want to add more disasters or costs for the inhabitants of the growing community.

I also discovered a small mistake.
After 15 rounds (years) I received the evaluation and the invitation for the 11th year.
screeshot.jpg
screeshot.jpg (62.52 KiB) Viewed 693 times
by Dutchman
Sat Jun 28, 2025 1:32 pm
Forum: PDF manual (by Dutchman)
Topic: PDF manual 6-9
Replies: 4
Views: 23991
Flag: Netherlands

Re: PDF manual 6-9

For those who, like me, are musical illiterates, I added some notes that I collected during a musical project for SB. See subchapter 9.4 Some notes on notes on page 64. The version date 20250628 is on the cover page at the bottom right corner. The PDF-manual is in size A5, which fits perfectly on iP...
by Dutchman
Wed Jun 25, 2025 1:32 pm
Forum: BASIC programs
Topic: Bells "Change ringing"
Replies: 0
Views: 1978
Flag: Netherlands

Bells "Change ringing"

On the European continent, we know the dull Ding-Dong of church bells. In some British cities and villages, however, you can hear a completely different sound from the bell towers, more like Dinge-Le-Dang-Deng-Dung-Le-Dong, in any case, a playful game of multiple bells in varying order. I had known ...
by Dutchman
Mon Jun 16, 2025 1:20 pm
Forum: BASIC programs
Topic: Programable length of musical note or rest
Replies: 0
Views: 1958
Flag: Netherlands

Programable length of musical note or rest

For a musical project, I needed a way to determine the length of a note or rest based on the outcome of a calculation. Therefore, I have created the accompanying function that generates the code, depending on the desired length in 'tics'. A 'tic' is defined as the length of the note or rest as deter...
by Dutchman
Tue Jun 10, 2025 9:04 am
Forum: BASIC programs
Topic: Spaces generator
Replies: 3
Views: 5515
Flag: Netherlands

Re: Spaces generator

Hoi Henk
Click on the 'chain' symbol
by Dutchman
Sun Jun 08, 2025 1:52 pm
Forum: BASIC programs
Topic: Spaces generator
Replies: 3
Views: 5515
Flag: Netherlands

Spaces generator

I needed a function to generate a string with a variable number of spaces. Dav made such a function via a FOR … NEXT loop. See https://nitisara.ru/forum/viewtopic.php?t=1165 I made a recursive method: DEF spaces$(n) ' by Dutchman 2025 ' return string with n spaces IF n<1 THEN RETURN "" IF n>1 THEN S...
by Dutchman
Fri Jun 06, 2025 6:34 pm
Forum: BASIC programs
Topic: From number to note
Replies: 2
Views: 3764
Flag: Netherlands

New Update From number to note

I needed numerical access to bare notes, so without octave number.
Therefore I added numbers 0-11 tot the function.
Furthermore the code has been simplified.
File and picture of test output have both been updated in the original post
by Dutchman
Thu Jun 05, 2025 1:44 pm
Forum: BASIC programs
Topic: From number to note
Replies: 2
Views: 3764
Flag: Netherlands

Re: Update "From number to note"

There was an error in the function.
The OPTION BASE value was not correctly saved.
The error has been corrected in the attached file above.
Sorry for the inconvenience