Information Technology - Computer Programming - Source Code - Homebrew - Open Source - Software - Hardware - 8 bit - 16 bit - 32 bit - 64 bit - x86 - x64 - DOS - Windows - Linux - Arduino - Embedded - Development - Retro - Vintage - Math - Science - History - Hobby - Beginners - Professionals - Experiment - Research - Study - Fun - Games

Search found 110 matches

by admin
Mon Apr 01, 2024 7:14 pm
Forum: News
Topic: New registrations
Replies: 4
Views: 4966

Re: New registrations

Wow. Another one just as I posted above...

DELETE DELETE DELETE
by admin
Mon Apr 01, 2024 7:13 pm
Forum: News
Topic: New registrations
Replies: 4
Views: 4966

Re: New registrations

I have been deleting on average about 100 spammer registrations per day. Just now I deleted another 172 that appeared within the past few days. When I got done, there was already three more. What's going on with the internet? Is there a plot to use AI and spambots to render traditional forums unreli...
by admin
Tue Mar 19, 2024 6:12 pm
Forum: QBasic
Topic: RPN Calc
Replies: 1
Views: 5679

Re: RPN Calc

Update! I was about ready to send this project to the graveyard as I have been working on newer things. With the newer Express Calculator and RP1 projects being written in C and PHP, I thought it would be good to update RPN Calc so there's an example of my expression evaluator in Quick BASIC/QBasic....
by admin
Sun Mar 17, 2024 7:51 pm
Forum: General Discussion
Topic: New Musical Trax
Replies: 1
Views: 502

Re: New Musical Trax

50 views so far. not bad. it will grow.
listened to it at work the other day.
a solid track. make 3 and release a demo!
by admin
Sun Mar 17, 2024 7:29 pm
Forum: PHP/SQL
Topic: Net Basic update thread
Replies: 0
Views: 551

Net Basic update thread

I realized there's no update thread. Until now, it has been worked on mostly in silence. Most efforts have been put into Express BASIC lately, but I am still dedicated to updating Net Basic. While working on Express BASIC, I found an issue with handling of negation. After fixing the issue, I have be...
by admin
Sun Mar 17, 2024 7:11 pm
Forum: C/C++
Topic: Express Calculator
Replies: 0
Views: 450

Express Calculator

Express Calculator A command line scientific calculator for DOS, Windows, and Linux. Written in C. Operator precedence: NOT(), ^, MOD, *, /, +, -, <, >, <=, >=, =, <>, XOR, AND, OR Functions: ABS() INT() SQR() SIN() COS() TAN() ATN() LOG() ROUND() SGN() EXP() PRIME() FACTORIAL() RND PI Set the accur...
by admin
Sun Mar 17, 2024 8:17 am
Forum: C/C++
Topic: Express BASIC - an interpreter in C
Replies: 17
Views: 9403

Re: Express BASIC - an interpreter in C

This week brings a big update. Handling of negation has been improved. For example, -(10 +1) returns -11 as it should. As opposed to -9. I had never accounted for negating outside of parenthesis. Only in front of a variable or literal value. The solution for now is to swap the - with a _1* and later...
by admin
Fri Mar 15, 2024 9:08 am
Forum: PHP/SQL
Topic: RP1 Scientific Calculator in PHP
Replies: 1
Views: 5772

Re: RP1 Scientific Calculator in PHP

Long awaited update!

Handling of negation has been improved.
Operations display is now complete and optional.
Hexidecimal notation and evaluation is now supported.
The # symbol inserts the last evaluation in an expression.
User interface has been improved.
Backend errors are fixed.
by admin
Sun Mar 03, 2024 6:13 pm
Forum: C/C++
Topic: Express BASIC - an interpreter in C
Replies: 17
Views: 9403

Re: Express BASIC - an interpreter in C

Here's a simple demo of sending output to the parallel port in DOS.

Code: Select all

10 FOR i = 1 TO 255
20 PRINT CHR$(i),: OUT &H378, i
30 LET t = TIMER
40 IF TIMER < t + 1 THEN 40
50 NEXT i
The output is viewable with a rs232 quick tester like this:
AD-D25QT__00914.jpg
AD-D25QT__00914.jpg (40.44 KiB) Viewed 1031 times
by admin
Fri Mar 01, 2024 7:56 pm
Forum: C/C++
Topic: Express BASIC - an interpreter in C
Replies: 17
Views: 9403

Update!!

Hexidecimal values may now be denoted in expressions using the &H prefix. The INP() function and OUT command has been added to the DOS Edition. It makes sense to allow DOS programmers the ability to access ports. This only works on the DOS .Edition and not DPMI, Win32, or Linux. While this allow...