This file contains hidden or 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 HGR | |
| 15 HOME : VTAB 24 | |
| 20 HCOLOR= 1 | |
| 30 DIM TER(300) | |
| 40 TER(0) = 120 | |
| 50 FOR X = 1 TO 279 | |
| 60 TER(X) = TER(X -1) + RND(1) *4 -2 | |
| 70 NEXT X | |
| 100 FOR X = 0 TO 279 | |
| 110 HPLOT X,TER(X) TO X,191 |
This file contains hidden or 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 M = 100 | |
| 20 PRINT:PRINT:PRINT:PRINT:PRINT " SLOT GAME" | |
| 30 PRINT:PRINT:PRINT | |
| 40 PRINT "HOW MUCH WOULD YOU LIKE TO BET? YOU HAVE $"; | |
| 50 PRINT M | |
| 60 INPUT B | |
| 70 B = ABS(B) | |
| 80 IF B > M THEN PRINT "YOU DON'T HAVE ENOUGH!" | |
| 90 IF B > M THEN GOTO 30 | |
| 100 FOR C = 1 TO 10 |
This file contains hidden or 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
| SUBSYSTEMS=="usb", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666" | |
| KERNEL=="ttyACM*", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1" |
This file contains hidden or 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
| #include <IRremote.h> | |
| #define IR_PIN 11 | |
| IRrecv irrecv(IR_PIN); | |
| void setup() { | |
| Serial.begin(9600); | |
| irrecv.enableIRIn(); | |
| } |
This file contains hidden or 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
| #define LEDPWM 3 | |
| #define POT A1 | |
| void setup() { | |
| pinMode(LEDPWM, OUTPUT); | |
| pinMode(POT, INPUT); | |
| Serial.begin(9600); | |
| } | |
| void loop() { |
This file contains hidden or 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
| Name | Category | Frequency RX | Frequency TX | Tone | Mode | |
|---|---|---|---|---|---|---|
| 2m Simplex Calling | Amateur | 146.5200 | 146.5200 | NA | FM | |
| 2m Simplex | Amateur | 146.4000 | 146.4000 | NA | FM | |
| 2m Simplex | Amateur | 146.4150 | 146.4150 | NA | FM | |
| 2m Simplex | Amateur | 146.4300 | 146.4300 | NA | FM | |
| 2m Simplex | Amateur | 146.4450 | 146.4450 | NA | FM | |
| 2m Simplex | Amateur | 146.4600 | 146.4600 | NA | FM | |
| 2m Simplex | Amateur | 146.4750 | 146.4750 | NA | FM | |
| 2m Simplex | Amateur | 146.4900 | 146.4900 | NA | FM | |
| 2m Simplex | Amateur | 146.5050 | 146.5050 | NA | FM |
This file contains hidden or 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
| #include <IRremote.h> | |
| #define RECV_PIN 11 | |
| bool toggle = true; | |
| int num = 0; | |
| bool print_num = false; | |
| bool do_blink = false; | |
| IRrecv irrecv(RECV_PIN); |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| {"Alabama":[{"output":"145.31000","input":"144.71000","tone_out":"","tone_in":"","call_sign":"KI4SAZ","desc":"KI4SAZ-C (Magnolia Springs)","county":"Baldwin"},{"output":"145.43000","input":"144.83000","tone_out":"123.0 PL","tone_in":"123.0 PL","call_sign":"KD4HYG","desc":"North Baldwin County Amateur Radio Club (Raburn)","county":"Baldwin"},{"output":"146.68500","input":"146.08500","tone_out":"82.5 PL","tone_in":"82.5 PL","call_sign":"KI4ELU","desc":"South Baldwin Amateur Radio Club (Robertsdale)","county":"Baldwin"},{"output":"147.04500","input":"147.64500","tone_out":"","tone_in":"123.0 PL","call_sign":"WB4EMA","desc":"WB4EMA (linked with 147.09 Robertsdale)","county":"Baldwin"},{"output":"147.09000","input":"147.69000","tone_out":"82.5 PL","tone_in":"82.5 PL","call_sign":"WB4EMA","desc":"Baldwin County Emergency Management Agency","county":"Baldwin"},{"output":"444.17500","input":"449.17500","tone_out":"CSQ","tone_in":"203.5 PL","call_sign":"K4JIE","desc":"K4JIE (Bay Minette)","county":"Baldwin"},{"output" |
This file contains hidden or 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
| require 'open-uri' | |
| require 'json' | |
| region = "us" | |
| category = "newapplications" | |
| if !ARGV[0].nil? | |
| region = ARGV[0] | |
| end |
This file contains hidden or 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
| require 'json' | |
| require 'pp' | |
| type = ARGV[0] | |
| questions = [] | |
| lines = [] | |
| question_pos = [] | |
| file = File.open(type + '.txt', 'r').each_line do |line| |
NewerOlder