Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active October 12, 2020 16:53
Show Gist options
  • Save jeroen/572e8f7264dc7c0200a62109842ead4f to your computer and use it in GitHub Desktop.
Save jeroen/572e8f7264dc7c0200a62109842ead4f to your computer and use it in GitHub Desktop.
Terminal movie
# Run in an R terminal window (not GUI)
con <- socketConnection('towel.blinkenlights.nl', 23, open = 'rb')
repeat{
buf <- readBin(con, raw(), 10)
if(length(buf))
cat(rawToChar(buf))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment