Tagged Questions
3
votes
1answer
123 views
What are some practical applications of the ROT13 algorithm?
What are some practical applications of the ROT13 algorithm? Since it can't be used for encryption, the only usages I've seen of it involve scrambling spoilers or answers to questions. Are there other ...
1
vote
5answers
1k views
Where is my one-line implementation of rot13 in JavaScript going wrong?
Code in question with syntax highlighting here: via Friendpaste
rot13.js:
<script>
String.prototype.rot13 = rot13 = function(s)
{
return (s = (s) ? s : this).split('').map(function(_)
...