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
; Inspired by emails from [email protected] to info-mcl in February 2021 | |
; Uncomment one of the following depending on whether this machine is a broadcaster or receiver | |
;(pushnew :broadcaster *features*) | |
;(pushnew :receiver *features*) | |
(defparameter *count* 0) | |
(defparameter *listening-port* 40001) | |
(defparameter *remote-host* "10.10.10.255" "or 192.168.1.255 or whatever matches your local network") |
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
;;;; +----------------------------------------------------------------+ | |
;;;; | Advent of Code 2020 | | |
;;;; +----------------------------------------------------------------+ | |
(defpackage #:snippets/aoc2020/day1 | |
(:use #:cl) | |
(:shadowing-import-from | |
#:screamer | |
#:defun | |
#:a-member-of |