Dynaverse.net
Off Topic => Engineering => Topic started by: toasty0 on April 11, 2009, 04:42:05 pm
-
A simplified version of Basic for the novice
foreach click goto your download here (http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=b006d58d-c2c7-44ad-936b-e7e2d7de793e)
-
Small iindeed, it's at least 1000 times bigger than the original version they made for the Altair. :)
-
QBasic still lives and is still available from MS. (shhhh...)
-
And here I'm stuck with HP Basic for automated calibrations..of course, the test equipment is 20+ years old, but everythings obsolete after 5 years (except for the military)..I've recently calibrated panel meters from B-52's..probably because I'm the only one older than them
Mike
-
And here I'm stuck with HP Basic for automated calibrations..of course, the test equipment is 20+ years old, but everythings obsolete after 5 years (except for the military)..I've recently calibrated panel meters from B-52's..probably because I'm the only one older than them
Mike
It has been many years now since I have gotten out of the military, but when most of the world was using computer based teletypes to send reports back to NSA. My station was using the old MOD-28 (remember the one from the old movies that uses the ticker tape), sad part was, they were better the computer based ones (we did get upgraded twice to get to PC based comunications). They never broke or had trouble, if things were going real bad, you could "hit" them. I mean really hit them, or kick them. They just kept on working.
Newer isn't always better, it just seems that way sometimes.
-
This thread reminds me of this quote:
Progress is impossible without change, and those who cannot change their minds cannot change anything. --George Bernard Shaw
-
It has been many years now since I have gotten out of the military, but when most of the world was using computer based teletypes to send reports back to NSA. My station was using the old MOD-28 (remember the one from the old movies that uses the ticker tape), sad part was, they were better the computer based ones (we did get upgraded twice to get to PC based comunications). They never broke or had trouble, if things were going real bad, you could "hit" them. I mean really hit them, or kick them. They just kept on working.
Newer isn't always better, it just seems that way sometimes.
They just don't make em like they used to, aye?
-
This thread reminds me of this quote:
Progress is impossible without change, and those who cannot change their minds cannot change anything. --George Bernard Shaw
I remember when we typed our programs on punch cards and sat for hours in a big room full of monitors hanging from the ceiling where we could watch our programs in the input queue ... AND WE LIKED IT! ;D
-
If you want Basic.
FreeBasic (http://www.freebasic.net/index.php/about)
GLBasic (http://www.glbasic.com/main.php?lang=en)
XBasic (http://www.xbasic.org/)
-
This thread reminds me of this quote:
Progress is impossible without change, and those who cannot change their minds cannot change anything. --George Bernard Shaw
I remember when we typed our programs on punch cards and sat for hours in a big room full of monitors hanging from the ceiling where we could watch our programs in the input queue ... AND WE LIKED IT! ;D
I never used a punch card for inputting a program, but did use a computer that was nothing more then a keyboard and a printer (it had no monitor). Everything you did was printed out.
-
I finally had some time this moring to look through this language and was impressed. It has the feel and syntax of a C family language with the ease of the Visual Basic language. Take a look this simple graphics routine:
GraphicsWindow.BackgroundColor = "Black"
For i = 1 To 1000
GraphicsWindow.BrushColor = GraphicsWindow.GetRandomColor()
x = Math.GetRandomNumber(640)
y = Math.GetRandomNumber(480)
GraphicsWindow.FillEllipse(x, y, 10, 10)
EndFor
-
Sinclair Basic was and is always the best.... with commands like DEF FN, etc.
But the best was the ability to allow DIM A$ (100,100,100,100,100), though the human brain does take some practice at comprehending multiple, multiple nested arrays.... ;D
My old software lecturer, back in my University days, used to warn of venturing into multiple, multiple nested arrays, but used to say that he envied me for being able to so easily navigate and use them.... some of us have the gift and some haven't.