Skip to content

Instantly share code, notes, and snippets.

@nathan-russell
Created January 22, 2016 18:45
Show Gist options
  • Save nathan-russell/1e5ee66bd767f09088da to your computer and use it in GitHub Desktop.
Save nathan-russell/1e5ee66bd767f09088da to your computer and use it in GitHub Desktop.
saveRDS((v1 <- 1:5), file = "/tmp/v1.RDS"); system("gzip -cd -S=gz /tmp/v1.RDS | hexdump")
# 0000000 0a58 0000 0200 0300 0302 0200 0003 0000
# 0000010 0d00 0000 0500 0000 0100 0000 0200 0000
# 0000020 0300 0000 0400 0000 0500
# 000002a
saveRDS((v2 <- 6:10), file = "/tmp/v2.RDS"); system("gzip -cd -S=gz /tmp/v2.RDS | hexdump")
# 0000000 0a58 0000 0200 0300 0302 0200 0003 0000
# 0000010 0d00 0000 0500 0000 0600 0000 0700 0000
# 0000020 0800 0000 0900 0000 0a00
# 000002a
saveRDS((v3 <- 1:10), file = "/tmp/v3.RDS"); system("gzip -cd -S=gz /tmp/v3.RDS | hexdump")
# 0000000 0a58 0000 0200 0300 0302 0200 0003 0000
# 0000010 0d00 0000 0a00 0000 0100 0000 0200 0000
# 0000020 0300 0000 0400 0000 0500 0000 0600 0000
# 0000030 0700 0000 0800 0000 0900 0000 0a00
# 000003e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment