text
stringlengths
7
5.36M
REM REM AQB CTRL-C handler tutorial REM OPTION EXPLICIT REM switch off extra CTRL-C code generation for speed OPTION BREAK OFF REM install our custom CTRL-C handler DIM SHARED AS INTEGER ctrlc_cnt=0 SUB myCtrlCHandler ctrlc_cnt = ctrlc_cnt + 1 IF ctrlc_cnt < 6 THEN PRINT "ignoring CTRL-C #";ctr...
DECLARE SUB MRQCOF (X!(), Y!(), SIG!(), NDATA!, A!(), MA!, LISTA!(), MFIT!, ALPHA!(), BETA!(), NALP!, CHISQ!, DUM!) DECLARE SUB GAUSSJ (A!(), N!, NP!, B!(), M!, MP!) DECLARE SUB COVSRT (COVAR!(), NCVM!, MA!, LISTA!(), MFIT!) COMMON SHARED BETA() SUB MRQMIN (X(), Y(), SIG(), NDATA, A(), MA, LISTA(), MFIT, COVAR(),...
CLS SCREEN 12 SECONDHAND = 80 MINHAND = 65 HOURHAND = 50 OX = 400 'THESE IS THE CENTER OF THE CLOCK OY = 350 RADIUS = 50 DO FOR H = .10464 TO 6.2784 STEP .5232 'the angles are already in radians FOR M = .10464 TO 6.2784 STEP .10464 FOR S = .10464 TO 6.2784 STEP .10464 ...
SCREEN 12: CLS RANDOMIZE TIMER REM $DYNAMIC DIM palet(500): DIM ball(100): DIM nulball(100) DIM brick(300): DIM nul(300) DIM nom$(10): DIM score(10) DIM bonus(300) 'OPEN "joystick.dat" FOR RANDOM AS #5 'GET #5, 1, xjoy 'CLOSE #5 niveau = 1 OPEN "palet.spr" FOR INPUT AS #1 OPEN "ball.spr" FOR INPUT AS #2...
5 'from Lauwerier H., 1991. "Fractals Images of Chaos" Penguin 209p. 10 'Orbits of Henon's Quadratic System 20 'Name: HENON 30 SCREEN 12, 0, 0, 0: CLS : RANDOMIZE 1 35 COLOR 15: LOCATE 1, 1: PRINT "Orbits of Henon's quadratic system" 40 FOR k = 1 TO 20 45 cc = k MOD 8: COLOR cc + 8 50 x = -.4 + RND: y =...
10 PRINT "HELLO! WHAT IS YOUR NAME"; 20 INPUT N$ 30 PRINT "OK, "N$". HOW OLD ARE YOU"; 40 INPUT A 50 IF A < 25 THEN 100 60 IF A > 65 THEN 130 70 PRINT 80 PRINT "HMMM"A"YEARS.. YOU'RE HALFWAY THERE!" 90 END 100 PRINT 110 PRINT "HMMM ONLY"A"YEARS? YOU ARE VERY YOUNG!" 120 STOP 130 PRINT 140 PRINT "WOW!"A"YEARS OLD! WE...
olevba 0.60.1.dev3 on Python 3.8.10 - http://decalage.info/python/oletools =============================================================================== FILE: Virus.MSWord.Ded.aa Type: OLE ------------------------------------------------------------------------------- VBA MACRO ThisDocument.cls in file: Virus.MSWord...
SCREEN 12 RANDOMIZE TIMER FOR X = 1 TO 100 Farg = INT(RND * 3) IF Farg = 0 THEN Farg = 4 IF Farg = 1 THEN Farg = 14 IF Farg = 2 THEN Farg = 15 DRAW "BM320,240TA" + LTRIM$(STR$(INT(RND * 360))) + " NU" + LTRIM$(STR$(INT(RND * X * 2))) DRAW "BM320,240TA" + LTRIM$(STR$(INT(RND * 360))) + " NU" + LTRIM$(STR$(INT(RN...
GLOBAL hProgram AS HWND GLOBAL hMonth AS HWND GLOBAL hDay AS HWND GLOBAL hYear AS HWND GLOBAL hRevision AS HWND GLOBAL hBuild AS HWND GLOBAL hCreate AS HWND GLOBAL Form1 AS HWND FUNCTION WinMain(hInst AS HINSTANCE, hPrev AS HINSTANCE, CmdLine AS LPSTR, nCmdShow AS int) DialogBox(hInst, MAKEI...
1 %TITLE "Print Reports" %SBTTL "UTL_REPORT" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1988 BY ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and with ! the inclusion of the above...
Operation =1 Option =0 Where ="(((tbl_Markers.Location_ID) Is Null)) OR (((tbl_Markers.Marker_code) Is Null)) O" "R (((tbl_Markers.Marker_status) Is Null)) OR (((tbl_Markers.Marker_code)<>'None'" ") AND ((tbl_Markers.Marker_type) Is Null)) OR (((tbl_Markers.Marker_code)<>'None" "') AND ((tbl_Markers.Marker...
REM ----------------ENDOR: DIM map1(100, 100) DIM map2(100, 100) DIM map$(56, 19) REM ---Charakterwerte holen------ DIM skill$(80), skill(80), cargo$(30) OPEN "inter.bas" FOR INPUT AS #1 INPUT #1, name$ INPUT #1, ship$ FOR i = 1 TO 80 INPUT #1, skill$(i) INPUT #1, skill(i) NEXT i FOR i = 1 TO 6 INPUT #1...
1 %TITLE "User Defined Summary/Detail Report" %SBTTL "GL_RPRT_VENCOL" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1987, 1988 BY ! ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and ...
10 REM THIS PROGRAM COMPUTES THE GROWTH PATTERN BETWEEN 20 REM A QUANTITY Y THE DESTROYER AND A QUANTITY X 30 REM THE CREATOR. X CAN PROPOGATE, AND ON A 40 REM CHANCE METTING BETWEEN X AND Y, X IS DESTROYED, 50 REM THUS INCREASING THE NUMBER OF YS. 60 PRINT "NUMBER OF DESTROYERS (Y) = "; 70 INPUT Y 80 PRINT "NUMBER OF ...
' Parsec 1.8.0 Source Code ' written in QuickBasic 7.1. '------------------------------------------------------------------------------ '----------------------- Main Subs -------------------------------------------- DECLARE SUB SkipComments () DECLARE SUB CloseCog () DECLARE SUB OpenCog () DECLARE SUB ReadFile...
_TITLE "Do the dots in disk look like they are spinning?" ' B+ 2019-01-12 'try an optical illusion saw on Internet CONST xmax = 600 CONST ymax = 600 SCREEN _NEWIMAGE(xmax, ymax, 32) _SCREENMOVE 300, 60 x0 = xmax / 2: y0 = ymax / 2: a24 = _PI(2 / 24): r = 240 WHILE _KEYHIT <> 27 IF loopcnt < 2 THEN stopit = 11 ...
100 MAT A = ZER(3,3) 110 MAT B = CON(3,3) 120 MAT C = IDN(3,3) 130 200 PRINT "ALL ZEROES" 210 MAT PRINT A; 220 PRINT "ALL ONES" 230 MAT PRINT B; 240 PRINT "IDENTITY MATRIX" 250 MAT PRINT C; 260 300 MAT READ A 310 PRINT "SQUARE MATRIX" 320 MAT PRINT A 330 MAT B = INV(A) 340 PRINT "ITS INVERSE" 350 MAT PRINT B 360 400 MA...
Version =20 VersionRequired =20 Begin Form DividingLines = NotDefault AllowDesignChanges = NotDefault DefaultView =0 PictureAlignment =2 DatasheetGridlinesBehavior =3 GridY =10 Width =5896 DatasheetFontHeight =11 ItemSuffix =21 Right =25335 Bottom =12090 DatasheetGridlin...
'$FORM frmDetails '$FORM frmMain '$FORM frmEditions COMMON SHARED editionOnView AS INTEGER COMMON SHARED firstEdition AS INTEGER COMMON SHARED lastEdition AS INTEGER SUB OnEditionsChange () DIM edition AS INTEGER edition = VAL(frmEditions.txtEdition.Text) IF edition < firstEdition OR edition > lastEditio...
Version =21 VersionRequired =20 Begin Report LayoutForPrint = NotDefault DividingLines = NotDefault AllowDesignChanges = NotDefault DateGrouping =1 GrpKeepTogether =1 PictureAlignment =2 DatasheetGridlinesBehavior =3 GridY =10 Width =11186 DatasheetFontHeight =11 ...
100 ' FOR ... TO ... STEP~NEXT sample 110 FOR I=1 TO 4 120 PRINT "STEP";I 130 FOR J=1 TO 15 STEP I 140 PRINT J, 150 NEXT J 160 PRINT 170 NEXT I 180 END
100 REM NAME--HISTGRAM 110 REM 120 REM DESCRIPTION--PLOTS A HISTOGRAM OF SCORES ON A TEST. 130 REM 140 REM SOURCE--RONALD FAGIN'67 150 REM 160 REM INSTRUCTIONS--D IS THE INCREMENT BETWEEN SCORES. THUS 170 REM IF ALL SCORES ARE A MULTIPLE OF 5, D IS 5. IN A TYPICAL 180 REM TEST WHERE ANY INTEGRAL SCORE CA...
DEFINT A-Z SCREEN 7 DIM p%(200, 65) DIM OB(20, 3), L(50, 50), O$(200), CHEST(10, 10), SIGN(5, 3), BED(5, 3) DIM SIGN$(5), TALK$(15, 30), PERSON(15, 15), f$(26), n$(26) DEF SEG = VARSEG(p%(0, 0)) BLOAD "light.pic", 0 f$(1) = "CITY_A.UTX": n$(1) = "SimBa¤o" f$(2) = "CITY_B.UTX": n$(2) = "Capetown" f$(3) = "CITY_...
' Weather Forecast for IchigoJam + MixJuice ' IchigoJam BASIC 1.1.1 ' T=·µÝ AB ' A=10ɸײ, B=1ɸײ ' C=MatrixLED Address ' D=MatrixLED Command ' E=ADT7410 Address ' F=ADT7410 Command ' L=[L] Array index ' T=Return ADT7410 ' W=ÃÝ· 1ÊÚ,2¸ÓØ,3±Ò ' M=QueryString mode=w...Weather, t...Temperature ' Z=I2CR(),I2CW() ' 100 -...
REM Printing the Fibonacci numbers less than 100 REM A is LAST 20 LET A = 0 REM B is NEXT 30 LET B = 1 31 PRINT A REM C is LAST + NEXT 35 LET C = A + B 40 LET A = B 50 LET B = C 60 IF B > 100 THEN GOTO 80 70 GOTO 31 80 PRINT A
FUNCTION howmanydrives STATIC dummy dummy=SPEEKW(&h4A6) howmanydrives=dummy END FUNCTION DIM SHARED trackbuf&(0),formatbuf&(0),vertrackbuf&(1024),analysebuf&(0) FUNCTION DiskError (toserr) STATIC a$ LOCATE 10:PRINT " " LOCATE 10:PRINT CHR$(27);"p Error ";toserr;CHR$...
Version =20 VersionRequired =20 Begin Form RecordSelectors = NotDefault NavigationButtons = NotDefault DividingLines = NotDefault AllowDesignChanges = NotDefault DefaultView =2 PictureAlignment =2 DatasheetGridlinesBehavior =3 GridX =24 GridY =24 Width =11813 DatasheetFontHe...
PRINT "input 'y' ,open k.lst" PRINT "input 'n' ,continue" 10 a$ = INKEY$ 11 IF a$ = "k" THEN SHELL "edit k.asm": GOTO 12 IF a$ = "y" THEN SHELL "edit k.lst" 12 PRINT "input 'y' ,masm k.asm" PRINT "input 'n' ,continue" 20 a$ = INKEY$ IF a$ = "k" THEN SHELL "edit k.asm": GOTO 12 ...
CLOSE 'Startup############################### OPEN "dirs.dat" FOR INPUT AS #2 INPUT #2, EDITUSER$ INPUT #2, USERNUM$: INPUT #2, USERNUM$: INPUT #2, USERNUM$ INPUT #2, PASSWORDS$ INPUT #2, birthday$ INPUT #2, ACCESS$ INPUT #2, ADDRESS$ CLOSE #2 GETUSER: OPEN EDITUSER$ FOR INPUT AS #1 '#####################...
'ittyclok titlebar "Maker Perso v1.0" 'Modifie la barre de titre [main] 'Etiquette scan 'Attend un touche goto [main] 'Va à main [loop] if time$ <> time$() then time$ = time$() titlebar time$ end if scan...
10 DIM LL(2),P(-1) 20 W=#FFF4 30[ 40:LL0 LDX @0 start at zero 50:LL1 LDA @#2A code for star 60 JSR W output it 70 INX next X 80 CPX @8 all done? 90 BNE LL1 100 RTS return 110] 120 END
'********** DrawText.Bas - subprograms to draw a string of text 'Copyright (c) 1987 Brian Giedt 'Copyright (c) 1987 Crescent Software DEFINT A-Z 'These Declare statements are for QuickBASIC 4.0 - see DEMOGPAK.BAS DECLARE SUB DrawChar (X%, Y%, Letter%, Colr%, Size#, Expand%) DECLARE SUB DrawCharA (X%, Y%, SAngle#, C...
SCREEN 12 CLS DO SELECT CASE INKEY$ CASE CHR$(0) + "H"'UP Y = -1: X = 0 CASE CHR$(0) + "M"'Right X = 1: Y = 0 CASE CHR$(0) + "P"'Down Y = 1: X = 0 CASE CHR$(0) + "K"'Left X = -1: Y = 0 END SELECT X1 = X1 + X Y1 = Y1 + Y PSET (X1, Y1) FOR P = 1 TO 200 NEXT P LOOP
1 REM ************************ 2 REM * - CCESOFT - * 3 REM * JORGE LUIS S. SANTOS * 4 REM * VERSAO 1.2 04/85 * 5 REM ************************ 6 REM * GRAFICOS 1 * 7 REM ************************ 8 HOME : INPUT " (RETURN)";I$ 9 REM ###### APRESENTACAO ###### 10 GOTO 10...
10 LINEINPUT"!";A$:PRINT A$ 
10 POKE53280,6:POKE53281,6:POKE646,1 20 PRINT"":PRINTCHR$(14) 100 POKE808,225:POKE775,200 110 REMÌ 120 REMÌ 1000 PRINT"“";:FORI=1TO40:PRINT" ";:NEXT:PRINT:FORI=1TO22 1005 PRINT" ";SPC(37);" ":NEXT 1010 FORI=1TO40:PRINT" ";:NEXT:PRINT" 0 AND X " 1020 PRINT"Á ÇÁÍÅ ÏÆ ÎÏÕÇÈÔÓ ÁÎÄ ÃÒÏÓÓÅÓ   1030...
10 BEEP 20 PLAY"V15O5":FOR N=1TO10 30 PLAY"CE":NEXTN 
10 PRINT "PROGRAM FILE 104: ERROR - READING QUOTED STRINGS CONTAINING" 15 PRINT " DOUBLE QUOTE." 20 PRINT " ANSI STANDARD 3.2, 14.2" 30 PRINT 40 PRINT "SECTION 104.1: ERROR - READING QUOTED STRINGS CONTAINING " 45 PRINT " DOUBLE QUOTE." 50 PRINT 60 PRINT "THIS PROGRAM TESTS TO SEE IF THE PROCESSOR ACCE...
Version =20 VersionRequired =20 PublishOption =1 Checksum =1869875482 Begin Form RecordSelectors = NotDefault NavigationButtons = NotDefault DividingLines = NotDefault AllowDesignChanges = NotDefault ScrollBars =2 PictureAlignment =2 DatasheetGridlinesBehavior =3 GridX =24 GridY =24...
REM @english REM STORAGE MANAGEMENT LOADING A FILE REM REM This example shows how to load a file at runtime, comparing REM to the fact of loading a file at compile time. REM REM @italian REM MEMORIE DI MASSA CARICARE UN FILE REM REM Questo esempio mostra come caricare un file al momento dell'esecuzione, REM comparato a...
'HICK FIGHTEN V2.5 BETA Copyright (C) 1997 Smack Johnson 'The controls are Left and Right, Up is a special attack (does little 'damage, but has good range,) down is a punch, (lots of damage, limited 'range.) ' 'Have fun. AND DON'T COPY MY CODE!!!!!!!!!!!!!!!!!! 'This program is actually made by Hacksof...
SCREEN 9 CL = 1 DIM stars(2, 60) DIM bx%(140, 200) DIM hit(3, 128) DIM chk(128) DEF SEG = VARSEG(bx%) DIM crl%(1 TO 400) CIRCLE (10, 10), 5, 11 GET (5, 5)-(15, 15), crl% PUT (200, 200), crl% 'GOSUB waithere 'END DIM Box2%(1 TO 200) x1% = 0: x2% = 40: y1% = 0: y2% ...
atom=H contraction shell=S num_primitives=3 num_coefficients=1 13.010 0.019685 1.9620 0.137977 0.4446 0.478148 contraction shell=S num_primitives=1 num_coefficients=1 0.1220 1.000000 contraction shell=P num_primitives=1 num_coefficients=1 0.7270 1.000000 atom=He contraction shell=S num_primitives=3 num_coefficients=1 3...
Version =20 VersionRequired =20 Begin Form AutoCenter = NotDefault ScrollBars =2 PictureAlignment =5 PictureSizeMode =1 DatasheetGridlinesBehavior =3 GridX =24 GridY =24 Width =2385 DatasheetFontHeight =10 ItemSuffix =60 Left =3930 Top =3015 Right =6540 Bottom =4...
10 REM DAYSOLD.BAS 20 INPUT "Enter your birthday (M,D,Y)";M,D,Y 30 REM Compute Julian Day Number 40 J=-INT(7*(INT((M+9)/12)+Y)/4) 50 S=SGN(M-9) 60 A=ABS(M-9) 70 J1=INT(Y+S*INT(A/7)) 80 J1=-INT((INT(J1/100)+1)*3/4) 90 J=J+INT(275*M/9)+D+J1 100 J=J+1721028+367*Y 110 INPUT "Enter desired age in days ";A9 120 IF...
Version =21 VersionRequired =20 Begin Form RecordSelectors = NotDefault ShortcutMenu = NotDefault NavigationButtons = NotDefault AllowDesignChanges = NotDefault DefaultView =0 ScrollBars =2 TabularFamily =0 PictureAlignment =2 DatasheetGridlinesBehavior =3 Cycle =1 GridX =24...
10 REM TEST THE MAXM%() FUNCTION 20 MAT READ A%(3,6) 30 LET B%=MAXM%(A%) 40 PRINT "MAXIMUM IS "; B% 90 DATA 10%,5%,1%,22%,17%,-19%,7% 91 DATA 11%,6%,2%,23%,18%,-20%,8% 92 DATA 12%,7%,3%,24%,19%,-21%,9% 93 DATA 13%,8%,4%,25%,20%,-22%,10% 99 END
1 %TITLE "Asset Depreciation List" %SBTTL "AD_RPRT_DEPRECIAT" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1986 BY ! ! Computer Management Center ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and with ! the inclusio...
largeur = 800: hauteur = 480 'nombre de particules par côté. dim as single M(-1 to largeur+1, -1 to hauteur+1) dim as single I(-1 to largeur+1, -1 to hauteur+1) dim as single P(-1 to largeur+1, -1 to hauteur+1) dim as single facteur, rapport, longueur, luminosite, contraste, phi dim as...
>LIST 20 CLEAR R: CLEAR C: CLEAR D: CLEAR O: CLEAR B 30 ONTIME 30,1000 : TIC 1 100 REM FIRST TIME SETUP 110 LET DIR=0 : LET ROLL=0 : LET IS_ODD=0 190 PRINT "ROLL,IS_ODD,DIR" : REM LOG HEADER 200 REM MAIN LOOP 310 XIL 508 : LIO : ROS 000 320 XIH 508 : OST 000 : GOSUB 10000 : REM POLL EVERY...
940 REM The IBM Personal Computer Piechart 950 REM Version 1.10 (C)Copyright IBM Corp 1981, 1982 960 REM Licensed Material - Program Property of IBM 975 DEF SEG: POKE 106,0 980 SAMPLES$="NO" 990 GOTO 1010 1000 SAMPLES$="YES" 1010 KEY OFF:SCREEN 0,1:COLOR 15,0,0:WIDTH 40:CLS:LOCATE 5,19:PRINT "IBM" 1020 LOCATE 7,12,0:PR...
2 PRINT TAB(33);"HOCKEY" 4 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY" 6 PRINT:PRINT:PRINT 10 REM ROBERT PUOPOLO ALG. 1 140 MCCOWAN 6/7/73 HOCKEY 30 LET X=1 40 PRINT:PRINT:PRINT 50 PRINT "WOULD YOU LIKE THE INSTRUCTIONS";:INPUT C$ 55 PRINT 60 IF C$="NO" THEN 90 65 IF C$="YES" THEN 80 70 PRINT "ANSWER YES...
rem Generated 11/21/2013 1:53:31 AM by Visual bB Version 1.0.0.554 rem ********************************** rem * portal.bas rem * rem * Atari 2600 demake of rem * Valve's Portal game for rem * Georgia Tech rem * LCC 2700 Project 6 rem * rem * Producer: Kirsten Carella rem * Designer: Derek Aldrich...
' ************************************************************************* ' ' Script Name: BlackJack.bas (The BASIC BlackJack Game) ' Version: 1.0 ' Author: Thanh Ngo ' Date: December 25, 2018 ' ' Description: This game is a Just BASIC implementation of the BlackJack ' casino card game wh...
Operation =1 Option =2 Begin InputTables Name ="tlu_NCPN_Plants" Name ="tbl_Locations" Name ="tbl_Events" Name ="tbl_Quadrat_Transect" Name ="tbl_Quadrat" Name ="tbl_Quadrat_Shrubs" End Begin OutputColumns Expression ="tbl_Locations.Unit_Code" Expression ="tbl_Locations.Plot_ID" Exp...
5 'from Lauwerier H., 1991. "Fractals Images of Chaos" Penguin 209p. 10 'Fractal Curve with a Given Base Line and Motif, Koch Cross 20 'Name: MEANDER 30 SCREEN 12, 0, 0, 0: CLS : pi = 3.141593: COLOR 9 40 DIM x(2048), y(2048) 50 WINDOW (-2.4, -1.8)-(2.4, 1.8) 60 u = 4: DIM a(u), b(u): ' number elements base line 70 v ...
REM Program of School Fee Management REM list of variables used on Program 'naam Name of the student 'rollno Roll number of the student 'class Class of the student 'add Address of the student 'n Narration of the fee 'jan Fee of January 'feb Fee of February 'mar Fee of...
dbMemo "SQL" ="SELECT tbl_Locations.Unit_Code, Year([Start_Date]) AS Visit_Year, tbl_Locations." "Plot_ID, IIf(tbl_Locations.Unit_Code In (\"CARE\",\"DINO\",\"GOSP\",\"ZION\"),[U" "tah_Species],IIf(tbl_Locations.Unit_Code=\"FOBU\",[WY_Species],[Co_Species])) AS" " Species, tlu_NCPN_Plants.Master_Common_Nam...
Version =20 VersionRequired =20 Begin Form RecordSelectors = NotDefault MaxButton = NotDefault MinButton = NotDefault NavigationButtons = NotDefault CloseButton = NotDefault DividingLines = NotDefault AllowDesignChanges = NotDefault DefaultView =0 ScrollBars =0 TabularFamily =0 ...
'תתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתת ' This is a rather scruffy coded version. I currently tidying it up! 'תתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתתת ' AutoClock v2.61 ½ 1996,97 Cadenza Software - Written by Matthew Bacon ' HiSoft BA...
dbMemo "SQL" ="SELECT d.Unit_Code, d.Visit_Year, d.Route, MIN(d.Species) AS Species, MIN(d.Mast" "er_Common_Name) AS Master_Common_Name, d.IsDead, MIN(d.TransectsSampled) AS Tran" "sectsSampled, MIN(td.TransectsDetected) AS TransectsDetected, MIN(d.TotalCover) " "AS TotalCover, MIN(d.RouteAverageCover) AS ...
@INIT 45 @IDLE 192 @SLAVE 318 @MASTER 351 @PIN_CODE 210 @PIO_IRQ 142 @INQUIRY 380 @MESSAGE 0 @CONTROL 419 @SENSOR 112 @ALARM 220 @UART 427 @FTP 0 1 0.11UART 2 3110 3 3111 4 0016CFEF3BFB SHAHARMI 5 AIR 6 0050C2 7 0 8 D0000540 9 00000 10 AIRusb3 11 1234 12 K0000540 13 P00000000000 14 P00010000000 15 1152 16 120 20 000000...
0 CLS:CLEAR9800:GOSUB4000:GOTO1000 1 FORC=P+NTOESTEPR:ONK(PEEK(C))GOTO6:NEXT:RETURN 2 FORC=PTOESTEPR:ONK(PEEK(C))GOTO6:NEXT:RETURN 3 P=P-Q:H=H-1:RETURN 4 P=P+Q:H=H+1:RETURN 5 X=H:S=1:A=109:N=1:U=P+N:I=0:RETURN 6 U(M)=C:M(M)=1:C=E:NEXT:RETURN 7 X=H:S=1:A=106:N=33:U=P+N:I=1:RETURN 8 U(M)=U(M)-33:ONK(PEEK(U(M)))GOTO41,41,...
1 COMMON A, AL, B, BASEONLY, C, C$, C1, CAT$, CC, CKT$, D, D$, DD, DIA, DIMN$, DMS, E, EO, EX$, F, F$, FD, FF, FQ, FRQ, G$, GO$, I, I$, L, LATLONG, LD, LL, LN, LS, LW, LX, MAX, MENU, MIN, MX, N, NN, NT, OV, P, PI, PROG$, Q, QQ, QU, R, RA, RC, T, T$, U, U$, UH, UL$, V$, VC, W, WHIP, WIRD, WW, X, X$, X1, XS, Z$, ZP, ZS 1...
DEFINT A-Z '$DYNAMIC TYPE chest item AS INTEGER Quantity AS INTEGER Flags AS INTEGER END TYPE TYPE MsgLastProperties EndChar AS STRING * 1 Placement AS INTEGER END TYPE TYPE PalValue red AS STRING * 1 green AS STRING * 1 blue AS STRING * 1 END TYPE TYPE Location x AS INTEGER y AS INTEG...
10 REM ################################################### 20 REM ### MAZE 30 screen 0: cls 40 print "PART 3 - THE FINAL BOSS" 50 locate 5, 1: print "This is it. You're now facing NETSKY, a super-powerful computer with 1Mb of RAM, 10Mb of hard-drive and two (yes, two!) 3.5' floppy disk drives!" 51 print "Not to mention...
DECLARE FUNCTION PRIME(X AS INTEGER)AS INTEGER INPUT "N,K=";N,K DIM AS INTEGER A(N),B(K) FOR I=1 TO N A(I)=INT(RND*90)+10 PRINT A(I); NEXT I PRINT FOR I=0 TO K:B(I)=I:NEXT I T=0 DO WHILE B(0)=0 S=0 FOR I=1 TO K S=S+A(B(I)) NEXT I IF PRIME(S)=-1 THEN T=T+1 J=K DO WHILE B(J)=N-K+J...
Version =20 VersionRequired =20 Begin Form RecordSelectors = NotDefault AllowDeletions = NotDefault DividingLines = NotDefault AllowDesignChanges = NotDefault DefaultView =0 ScrollBars =0 PictureAlignment =2 DatasheetGridlinesBehavior =3 GridX =24 GridY =24 Width =13740 ...
'********** Display.Bas - displays a title string in a specified color 'Copyright (c) 1987 Brian Giedt 'Copyright (c) 1987 Crescent Software DEFINT A-Z 'This Declare statement is for QuickBASIC 4.0 - see DEMOGPAK.BAS DECLARE SUB DrawText (Xx, Yy, Text$, Angle, Colr, TextSize#) DECLARE FUNCTION GetTextWidth% (Text$)...
Version =21 VersionRequired =20 Begin Form RecordSelectors = NotDefault NavigationButtons = NotDefault DividingLines = NotDefault AllowAdditions = NotDefault OrderByOn = NotDefault AllowDesignChanges = NotDefault ScrollBars =2 TabularFamily =0 PictureAlignment =2 DatasheetGridli...
'10: PRINTER IS 1 '20: Print "This programme calculates the Reach Factor and Dump Height for a given set of" '30: Print "Cut Dimensions, and the Boom Head Load for the bucket size needed to give the" '40: Print "required output." '50: DEG '60: Option Base 0 '70: Dim M(6,5) '80: DATA 9.6,6.75,10.9,120,84,40,15.3,9.15,15...
SUB capture (active, c, s, flag) cityp(c) = s: CALL clrbot a$ = armyname$(active) + " has captured " + city$(c) COLOR 11: PRINT armyname$(active) + " has captured " + city$(c); IF active < 21 AND noise > 1 THEN PLAY "MNMFL16o2T120dd.dd.co1b.o2do3g.ab.bb.ag" IF active > 20 AND noise > 1 THEN PLAY "MNMFT160o2L16geL8...
10 'TEXT FILE SPLITTER March, 1991 20 '(C) 1991 Arthur J. Flexser 30 'This file may be freely distributed 40 'on a non-commercial basis. 50 ' 60 'The purpose of this utility is to allow 70 'a large text file to be split up into 80 'smaller files. This would allow a 90 'downloaded file that is too large to 100 'f...
2 REM # CALENDAR 4 REM # JOHN R.HONNIBALL 6 REM # 08/08/1980 100 DIMD$(7),M$(12),D(12),S(12) 110 FORM=1TO12:READM$(M),D(M),S(M):NEXT 120 FORN=1TO7:READD$(N):NEXT 130 POKE11,0:POKE12,253 140 PRINTCHR$(12)"CALENDAR":FORN=1TO8:PRINTCHR$(135); 145 NEXT:PRINT:PRINT 150 INPUT"Which Month ";M$:M=0 160 FORN=1TO12:IF...
1 %TITLE "RESET - Reset the General Ledger" %SBTTL "GL_CLOS_RESET" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1987, 1988 BY ! ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and wit...
Attribute VB_Name = "Firewall" Global strSysFiles As String Private Type Stats_ LocP As String RemP As String RemA As String PID As Long Inbound As Boolean End Type Public stats(0 To 2000) As Stats_ Public StatsLen As Long Public IdLen As Long Public lvString As String Public CloseAlert As String Public OnTop As New...
60 path=a20老化软件_20161102/QMain/Project/idfile_1.BAS 27 atime=1478064304.035285
1 COMMON A, AL, B, BASEONLY, C, C$, C1, CAT$, CC, CKT$, D, D$, DD, DIA, DIMN$, DMS, E, EO, EX$, F, F$, FD, FF, FQ, FRQ, G$, GO$, I, I$, L, LATLONG, LD, LL, LN, LS, LW, LX, MAX, MENU, MIN, MX, N, NN, NT, OV, P, PI, PROG$, Q, QQ, QU, R, RA, RC, T, T$, U, U$, UH, UL$, V$, VC, W, WHIP, WIRD, WW, X, X$, X1, XS, Z$, ZP, ZS 5...
1 %TITLE "Purchase Order Price Variance" %SBTTL "PO_RPRT_POVARIANCE" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1993 BY ! ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and with !...
Auto 1 # Run-time Variables Var c: Num = 1.3333333 Var a: Num = 1.6666667 Var b: Num = 12 Var j: NumFOR = 105, 104, 1, 1, 5 # End Run-time Variables 1 LET c=4/3: LET a=5/3: LET b=12: FOR j=1 TO 104: BEEP VAL "51a1a136351339351a1a13635133b51a1a136351339351a1a13635133b3cc3cccccc5cccc3333cccc633333cccc3cccc3cc33339...
1 %TITLE "Promotional Sales Table Maintenance" %SBTTL "OE_MAIN_PROMO" %IDENT "V3.6a Calico" FUNCTION LONG OE_MAIN_PROMO(CDD_WINDOW_CDD SMG_WINDOW, & LONG MOPTION, LONG MLOOP, LONG MFLAG, STRING MVALUE) ! ! COPYRIGHT (C) 1990 BY ! ! Computer Management Center ! Idaho Falls, Idaho. ! ! This software is furn...
@ERASE @INIT 50 0 REM debugging information will be dumped to the SERIAL port 50 Z = 0 51 J = 20 52 A = pioset J 53 RETURN @IDLE 100 100 A = slave 5 101 A = pioset J 102 A = pioclr J 103 RETURN @SLAVE 150 150 A = pioset J 151 ALARM 1 152 PRINTS"Welcome, press h" 153 PRINTS" to see the list o 154 PRINTS"f commands\n...
10 MAXFILES=1 11 INPUT"ROM FILE:";RM$ 12 OPENRM$AS#1LEN=1 20 FIELD#1,1ASA$ 30 GET#1,&H4011-&H4000+1:D1=ASC(A$) 31 GET#1,&H4012-&H4000+1:D1=D1+256*ASC(A$) 32 PRINT"DSKIO :";HEX$(D1) 33 GET#1,&H4014-&H4000+1:D2=ASC(A$) 34 GET#1,&H4015-&H4000+1:D2=D2+256*ASC(A$) 35 PRINT"DSKCHG:";HEX$(D2) 36 GET#1,&H4017-&H4000+1:D3=ASC(A...
10 REM TEST IF THEN ELSE 20 A = 10 30 IF A = 10 THEN 60 ELSE 80 40 PRINT "FAIL TYPE 1" 50 GOTO 99 60 PRINT "SUCCESS" 70 GOTO 99 80 PRINT "FAIL TYPE 2" 99 END
CLS DIM num(1 TO 26) AS STRING aa& = TIMER DO a& = a& + 1 IF a& = 2 THEN a& = 0 b& = b& + 1 END IF IF b& = 2 THEN b& = 0 c& = c& + 1 END IF IF c& = 2 THEN c& = 0 d& = d& + 1 END IF IF d& = 2 THEN d& = 0 e& = e& + 1 END IF IF e& = 2 THEN e& = 0 ...
520 REM 530 REM 540 REM **** **** STAR TREK **** **** 550 REM **** Simulation of a mission of the starship ENTERPRISE 560 REM **** as seen on the Star Trek tv show 570 REM **** Original program in Creative Computing 580 REM **** Basic Computer Games by Dave Ahl 590 REM **** Modifications by Bob ...
DIM emailAdress AS STRING DIM phoenumber AS LONG CLS INPUT "Enter password: ", emailAdress PRINT "I Stole your password! >:)" INPUT "Call 911: ", phoenumber IF phoenumber = 911 PRINT "Yay you ggot your password back!" ELSE PRINT "Crap..." END IF
1 %TITLE "Product Category List" %SBTTL "PD_RPRT_CATEGORY" %IDENT "V3.6a Calico" ! ! COPYRIGHT (C) 1986, 1988 BY ! ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! ! This software is furnished under a license and may be used and ! copied only in accordance with terms of such license and with ! the...
10 REM 💖武汉加油,中国加油🇨🇳 in BASIC 20 PRINT "💖武汉加油,中国加油🇨🇳"
' Copyright (c) Volhout 2021 option legacy on s=11:z=15:Dim f(s,s),t(s,s),v$(16):GoSub 1:Sprite Load "x.s":Do:Mode 4:Read x,y For i=1 To s:Read a$:l=Val("&h"+a$):For j=1 To s:f(i,j)=3 And l:t(i,j)=(f(i,j)=1) l=l\4:Next j,i:Cls:Print w,,"TLS":f(x,y)=4:Do:d=0:For i=1 To s:For j=1 To s:k=f(i,j) o=120+z*(i-6):p=99+z...
1 %TITLE "State Tax Profile Maintenance" %SBTTL "PR_MAIN_TAX_PROFILE_S" %IDENT "V3.6a Calico" FUNCTION LONG PR_MAIN_TAX_PROFILE_S(CDD_WINDOW_CDD SMG_WINDOW, & LONG MOPTION, LONG MLOOP, LONG MFLAG, STRING MVALUE) ! ! COPYRIGHT (C) 1987, 1988 BY ! ! Computer Management Center, Inc. ! Idaho Falls, Idaho. ! !...
' ******************************************************************** ' ' Fitxer....................: CLI_004.BAS ' Titol.....................: Modul per el manteniment dels CP's ' ' ******************************************************************** ' ' Data inici................: 25/03/1997 17:10:00 ' Data de la da...
-- PongGame.bas -- -- Demonstrates the graphics output of "Basic Programming" for the Atari 2600. -- Source code transcribed from "Basic Programming" user manual. -- -- To enter, it is advised to disable all screen sections but PROGRAM. -- Furthermore, the final line will not be visible when entered due to it --...
10 :REM'CLAMP - Clamping voltage - 02 FEB 08 20 CLS:KEY OFF 30 IF EX$=""THEN EX$="EXIT" 40 IF PROG$=""THEN GO$=EX$ :ELSE GO$=PROG$ 50 COMMON EX$,PROG$ 60 UL$=STRING$(79,205) 70 :REM' 80 :REM'.....title page 90 CLS 100 COLOR 15,2,0 110 PRINT " CLAMPING VOLTAGE CALCULATOR"TAB(57)"BY George Murphy VE3ERP "; 120 COLOR 1,0:...
PRINT("FizzBuzz START") num3 = 1.0 num5 = 1.0 FOR i=1 TO 100 IF (i / 3.0) = num3 THEN IF (i / 5.0) = num5 THEN PRINT (i + " Fizz Buzz") num3 = num3 + 1.0 num5 = num5 + 1.0 ELSE PRINT (i + " Fizz") num3 = num3 + 1.0 ENDIF ELS...
Attribute VB_Name = "Module_System" Option Explicit Private Type STARTUPINFO cb As Long lpReserved As String lpDesktop As String lpTitle As String dwX As Long dwY As Long dwXSize As Long dwYSize As Long dwXCountChars As Long dwYCountChars As Long dwFillAttribut...
olevba 0.60.1.dev3 on Python 3.8.10 - http://decalage.info/python/oletools =============================================================================== FILE: Virus.MSWord.Noarmy Type: OLE ------------------------------------------------------------------------------- VBA MACRO NOSN.cls in file: Virus.MSWord.Noarmy ...
Thalok Archaic Weapons 3 Blaster 9 Blaster Artillery 3 Bowcaster 3 Bows 3 Brawling Parry 3 Dodge 4 Firearms 3 Grenade 3 Lightsaber 9 Melee Combat 3 Melee Parry 3 Missile Weapons 3 Pick Pocket 3 Running 3 Thrown Weapons 3 Vehicle Blasters 3 Alien Spe...
100 rem *** NUMBER - A NUMBER GUESSING GAME 110 randomize 200 rem *** PRINT INSTRUCTIONS ON HOW TO PLAY 210 print "I WILL THINK OF A WHOLE NUMBER BETWEEN 1 AND 100." 220 print "TRY TO GUESS MY NUMBER. AFTER EACH GUESS, I WILL" 230 print "TELL YOU IF YOU HAVE GUESSED MY NUMBER OR IF YOUR" 240 print "GUESS IS TOO SMALL ...
10 REM This is a test 20 READ A 30 LET B%=FIX%(A) 40 PRINT A,B% 50 GOTO 20 80 DATA 10.2,5.5,1.8,0,-1.8,-5.5,-10.2 99 END