Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
275 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 ...
3
votes
3answers
216 views

Regex matching and encoding duplicate characters in a string

My problem is that I've got URL access keys that look like "Bd333333d". I need the string length to be no longer than the original, but may be shorter. I want to convert/obfuscate the duplicate ...
3
votes
1answer
120 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 ...
2
votes
1answer
68 views

ROT-13 function in java?

Is there already a rot13() and unrot13() implementation as part of one of the standard Java libraries? Or do I have to write ones myself (i.e. as in "reinvent the wheel")? As in: int rot13 ( int c ...
2
votes
3answers
112 views

Involutary cipher (like ROT13) for an alphabet with an odd number of symbols

ROT13 has the nice property of being an involution for an A-Z alphabet (26 letters), that is to say: ROT13(ROT13(string-A-to-Z)) = string-A-to-Z ; What is a simple cipher function for an alphabet ...
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(_) ...
0
votes
2answers
121 views

ROT-13 Link Decoding Failing in Internet Explorer

I'm encoding all email addresses on a website as ROT-13, then decoding the addresses using Javascript (to avoid spam). However, the decoding just flat-out doesn't work in IE 7 or 8. Works splendidly ...
0
votes
0answers
233 views

applying ROT13 process in c [closed]

This is my question write a fully modular C program that reads a string of a defined maximum length from the keyboard. This input should have the ROT13 process applied to it and then ...
-1
votes
4answers
2k 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 ...