5
votes
4answers
140 views
Why 13 places in ROT13?
I understand the reasons for and against ROT13, but I'm wondering why specifically people have chosen 13 places to shift the alphabet? I understand it's halfway around, but is there an elegant reason …
0
votes
4answers
325 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(_)
…
-1
votes
4answers
372 views
How can one manipulate the Start menu’s “Recently Used Programs” list programmatically?
I'm looking for a way to make programs appear (frequently) used, so that they would appear in the Start menu's "Recently Used Programs" (after a zero touch install).
I'm trying to figure out how …
