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 103 matches

by admin
Fri Apr 12, 2024 5:45 pm
Forum: C/C++
Topic: Express BASIC - an interpreter in C
Replies: 14
Views: 7437

Re: Express BASIC - an interpreter in C

No update has been released yet. Still working on a ton of issues. Things were looking okay. I developed a new example game. It works on EB compiled with Watcom and DJGPP, but not Turbo C 1. It compiles in Turbo, but has a serious glitch. Doesn't compile at all in TC2. Compiles for DOS in Watcom, bu...
by admin
Thu Apr 04, 2024 2:32 pm
Forum: C/C++
Topic: Express BASIC - an interpreter in C
Replies: 14
Views: 7437

Re: Express BASIC - an interpreter in C

Been working out a TON of bugs. Hopefully I will get to post an update today or tomorrow.

Including issues with GOSUB and FOR. Trying to make the code wotk right with colons.
Also, other random typos and issues.

Thia is why EB is still alpha. Many things to test and improve or fix.
by admin
Mon Apr 01, 2024 7:35 pm
Forum: News
Topic: New registrations
Replies: 4
Views: 4420

Re: New registrations

So that last registration was one that I already deleted today less than 20 minutes ago. I gave it the benefit of the doubt and did some research. Turns out this email has spam on German, Vietnamese, and sites from around the world with no correlation to each other. Of course the spam is promoting a...
by admin
Mon Apr 01, 2024 7:14 pm
Forum: News
Topic: New registrations
Replies: 4
Views: 4420

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: 4420

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: 5231

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: 142

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: 81

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: 88

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: 14
Views: 7437

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...