This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 PR# 3 | |
20 TEXT : HOME | |
30 HTAB 11 | |
40 HTAB 11 | |
50 PRINT " %,,,,,,,,,,,,,,,,,,,,,,,,, " | |
60 HTAB 11 | |
70 PRINT " (,,,,,,,*&@@@@@@@@@@@@@@@%,,,,,,,,% " | |
80 HTAB 11 | |
90 PRINT " ,,,,,,, @@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,/ " | |
100 HTAB 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Itsy Bitsy M0 Express IO demo | |
# Welcome to CircuitPython 2.2 :) | |
# Updated for CircuitPython 6.0.0-alpha.1: scruss, 2020-07 | |
import board | |
import gc | |
import time | |
from digitalio import DigitalInOut, Direction, Pull | |
from analogio import AnalogIn | |
import audioio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 REM ****************** | |
20 REM * * | |
30 REM * PLOTPOURRI * | |
40 REM * S COTTRELL * | |
50 REM * SEPT 1979 * | |
60 REM * * | |
70 REM ****************** | |
80 REM Washington Apple Pi Journal October 1979 | |
90 REM bbc basic / matrix brandy port - scruss, 2019-07 | |
100 MODE 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.makermask.com/terms-and-conditions.html | |
Maker Mask & RPrime Terms and Conditions | |
Last updated: March 29, 2020 | |
The following are terms and conditions (“Terms and Conditions”) | |
of a legal agreement between you and RPrime Foundation, a Washington | |
State non-profit corporation based in Seattle, Washington and its | |
affiliates (collectively, “RPrime”, “we”, “us” or “our”). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1MODE4:VDU23,224,24,48,96,193,131,6,12,24:VDU23,225,24,12,6,131,193,96,48,24 | |
2PRINTCHR$(224.5+RND(1));:GOTO2 | |
RUN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 REM TAXMAN - first published in People's Computer Company | |
104 REM vol. 2, no. 1 - September 1973 | |
108 REM edited for 40 column screens - scruss, 2019-11 | |
112 DIM l(50),t(10) | |
116 PRINT | |
120 PRINT | |
124 PRINT "Hi, I'm the taxman" | |
128 PRINT "Do you want the regulations?" | |
132 PRINT "(1=Yes, 0=No)"; | |
136 INPUT r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1MODE4:VDU23,224,24,48,96,193,131,6,12,24:VDU23,225,24,12,6,131,193,96,48,24 | |
2PRINTCHR$(224.5+RND(1));:GOTO2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10ON ERROR PRINT "LINE : " + STR$(ERL) + " ERROR : " + REPORT$ : END | |
100REM CLASSIC.BAS -- COMPUTE THE NTH FIBONACCI NUMBER | |
110REM WRITTEN DECEMBER 25, 2018 BY ERIC OLSON | |
120REM | |
130REM THIS PROGRAM DEMONSTRATES THE EXPRESSIVENESS OF THE ORIGINAL | |
140REM VERSIONS OF MICROSOFT BASIC AS MEASURED BY EXPLICITLY CODING | |
150REM KARATSUBA MULTIPLICATION FOR BIG-NUMBER ARITHMETIC AND THEN | |
160REM USING THE DOUBLING FORMULA | |
170REM | |
180REM F(2K) = F(K)[2F(K+1)-F(K)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1000 REM ****************** | |
1010 REM * * | |
1020 REM * PLOTPOURRI * | |
1030 REM * S COTTRELL * | |
1040 REM * SEPT 1979 * | |
1050 REM * * | |
1060 REM ****************** | |
1070 REM Washington Apple Pi Journal October 1979 | |
1080 REM bbc basic / matrix brandy port - scruss, 2019-07 | |
1090 MODE 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module chamfer_extrude(height = 2, angle = 10, center = false) { | |
/* | |
chamfer_extrude - OpenSCAD operator module to approximate | |
chamfered/tapered extrusion of a 2D path | |
(C) 2019-02, Stewart Russell (scruss) - CC-BY-SA | |
NOTE: generates _lots_ of facets, as many as | |
6 * path_points + 4 * $fn - 4 |