|
|
|
@ -88,12 +88,14 @@ output/chatbot.txt: ocr/output.txt ## Comments a text with a simple chatbot. Dep
|
|
|
|
|
output/n7.txt: ocr/output.txt ## Replaces nouns with the 7th noun that follows. Dependencies: 91k_nouns
|
|
|
|
|
cat $< | python3 src/n_7.py > $(@)
|
|
|
|
|
|
|
|
|
|
output/carlandre.txt: ocr/output.txt ## Alice: Creates visual poetry out of a text. Dependencies: pytest
|
|
|
|
|
cat $< | python3 src/carlandre.py > $(@)
|
|
|
|
|
carlandre: ocr/output.txt ## Alice: Creates visual poetry out of a text. Dependencies: pytest
|
|
|
|
|
@python3 src/carlandre.py
|
|
|
|
|
.PHONY: carlandre
|
|
|
|
|
# cat $(@) > /dev/usb/lp0
|
|
|
|
|
|
|
|
|
|
output/overunder: ocr/output.txt ## Alice: An interpreted language that translate simple weaving instructions and creates a weaving pattern on text.
|
|
|
|
|
python3 src/overunder.py
|
|
|
|
|
overunder: ocr/output.txt ## Alice: An interpreted language that translate simple weaving instructions and creates a weaving pattern on text.
|
|
|
|
|
@python3 src/overunder.py
|
|
|
|
|
.PHONY: overunder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
visualization: $(images) $(tmpfile) ##Creates data visualization from images/*.jpg. Dependencies: mplayer
|
|
|
|
|