Add Brautigan poem (#373)

This commit is contained in:
Vincent Ollivier 2022-08-01 21:28:28 +02:00 committed by GitHub
parent 4431a3ef34
commit 78756bb94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 1 deletions

View File

@ -1,6 +1,6 @@
ALICE'S ADVENTURES IN WONDERLAND
Lewis Carroll
Lewis Carroll (1865)
CHAPTER I. Down the Rabbit-Hole

32
dsk/tmp/machines.txt Normal file
View File

@ -0,0 +1,32 @@
ALL WATCHED OVER BY MACHINES OF LOVING GRACE
Richard Brautigan (1967)
I like to think (and
the sooner the better!)
of a cybernetic meadow
where mammals and computers
live together in mutually
programming harmony
like pure water
touching clear sky.
I like to think
(right now please!)
of a cybernetic forest
filled with pines and electronics
where deer stroll peacefully
past computers
as if they were flowers
with spinning blossoms.
I like to think
(it has to be!)
of a cybernetic ecology
where we are free of our labors
and joined back to nature,
returned to our mammal
brothers and sisters,
and all watched over
by machines of loving grace.

View File

@ -50,6 +50,7 @@ pub fn copy_files(verbose: bool) {
copy_file("/ini/fonts/zap-vga-8x16.psf", include_bytes!("../../dsk/ini/fonts/zap-vga-8x16.psf"), verbose);
copy_file("/tmp/alice.txt", include_bytes!("../../dsk/tmp/alice.txt"), verbose);
copy_file("/tmp/machines.txt", include_bytes!("../../dsk/tmp/machines.txt"), verbose);
create_dir("/tmp/lisp", verbose);
copy_file("/tmp/lisp/factorial.lsp", include_bytes!("../../dsk/tmp/lisp/factorial.lsp"), verbose);