Live data from Hacker News

Rocky Mountain Basic

en.wikipedia.org

21–24 of 24 posts

Re: Rocky Mountain Basic

#21
Occasionally, I'll use an old piece of test equipment at work that has GPIB. I'll pull up the manual for commands and there will be BASIC code examples.

The newest boxes from Keysight (formerly Agilent formerly HP) that run Windows use C# for macros. But you really don't need to use it if you have the box networked and send SCPI commands to it.

Re: Rocky Mountain Basic

#22
One of the computers that used RMB was the HP 9845. This computer had a CRT display that could draw up to 4096 colors, which was phenomenal at the time. It was used to do scientific visualizations and stuff; Colin Cantwell consulted on its design, and used it to create the NORAD graphics in WarGames.

Re: Rocky Mountain Basic

#23

Earlier quoted context omitted.

One of my first program was something like: - What is your name? - is dumb, haha

Me too. One time I messed with my friend by adding a conditional to complement every name except his. 10 PRINT "WHAT IS YOUR NAME"; 20 INPUT NAME$ 30 IF NAME$ = "BILL" THEN 40 PRINT NAME$+" SOUNDS LIKE A NAME FOR A DORK!" 50 ELSE 60 PRINT NAME$+" SOUNDS LIKE A GREAT NAME!" 70 END IF I also tried to prank people with a program I wrote that mimicked a BSOD, but I couldn't get anyone to fall for it. PS- No hard feelings…

Formatted version (HN supports code sections by indenting 4 spaces):

    10 PRINT "WHAT IS YOUR NAME";
    20 INPUT NAME$
    30 IF NAME$ = "BILL" THEN
    40 PRINT NAME$+" SOUNDS LIKE A NAME FOR A DORK!"
    50 ELSE
    60 PRINT NAME$+" SOUNDS LIKE A GREAT NAME!"
    70 END IF

Re: Rocky Mountain Basic

#24

Earlier quoted context omitted.

Me too. One time I messed with my friend by adding a conditional to complement every name except his. 10 PRINT "WHAT IS YOUR NAME"; 20 INPUT NAME$ 30 IF NAME$ = "BILL" THEN 40 PRINT NAME$+" SOUNDS LIKE A NAME FOR A DORK!" 50 ELSE 60 PRINT NAME$+" SOUNDS LIKE A GREAT NAME!" 70 END IF I also tried to prank people with a program I wrote that mimicked a BSOD, but I couldn't get anyone to fall for it. PS- No hard feelings…

Formatted version (HN supports code sections by indenting 4 spaces): 10 PRINT "WHAT IS YOUR NAME"; 20 INPUT NAME$ 30 IF NAME$ = "BILL" THEN 40 PRINT NAME$+" SOUNDS LIKE A NAME FOR A DORK!" 50 ELSE 60 PRINT NAME$+" SOUNDS LIKE A GREAT NAME!" 70 END IF

Ooh, didn't know about the newlines not printing as typed. Thanks for the tip!
Post reply on HN