Workshop Title
Dates
URL
Textbooks have been used for learning for centuries. However, in general, and especially in our specific context — computing education — they suffer from some critical defects:
| <!DOCTYPE html> | |
| <!-- Credits: mostly written by GPT-4. --> | |
| <html> | |
| <head> | |
| <title>Quick Items</title> | |
| <style> | |
| /* Add your CSS styles here */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| } |
| #lang racket | |
| ;; I sometimes include a data file in my program source, and | |
| ;; find it useful to sort the data *in the source* | |
| ;; (e.g., to make it easier to find something, or just to | |
| ;; eliminate the cost of sorting each time the program runs). | |
| ;; This file provides four scripts. Each one accepts a *selection* | |
| ;; of lines. It does not "parse" the lines: e.g., if you have a | |
| ;; '( at the front of one of the lines, that will not be ignored |