Build a Caesar's Cipher

This is a companion discussion topic for the original entry at https://www.kirupa.com/html5/caesar_cipher.htm"
2 Likes

This took me the longest of any tutorial recently that I have had to write. I think Covid-related lockdown has greatly reduced my attention span for writing long-winded content. This is probably because I spend so much time during the day sitting in front of a computer either talking or writing 🥸

It could also be this:

:scream_cat:

…I did notice a few cat hairs in this tutorial.

2 Likes

Yes, it was very meowving …

1 Like

Haha! Wow :fire:

And associated video is up as well:

Puuurrrfect…

1 Like

It was fun watching it. I always get new videos in the morning.

1 Like
cc = function(string, n) {
  chartr(paste(letters, collapse = ""),
         paste(letters[n:(n + 25) %% 26 + 1], collapse = ""),
         string)
}
cc("pizzapizzapizza", 2)