Vigenere Cipher in Java
Posted on August 27, 2010 at 18:31 Java
By stumbling upon this page, I presume knowledge on the encryption is already at hand. Otherwise, take a walk first. The program is under the following assumptions:
- User only inputs characters (and spaces!) included in the given alphanumeric set.
- Numeric characters result in uppercase plain/cipher characters.
- Encryption/decryption key cannot have a space.
VigenereCipher.java
private static final char[] alphnum = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'
};
Glee Fever
Posted on at 01:38 Entehtainment

The main reason I finished watching the series as soon as possible is because I want to catch up with the second season, where Charice will be making a scene. Nonetheless, I’ve been listening to and liking the cast’s renditions beforehand, especially the mash-ups. I no longer remember how I got to them though…
Overall, the series is a yes for me, with the nifty editing and colorful characters in place. Maybe I only lacked the proper resources, but the last one that I spent some attention to was, if I remember correctly, Charmed. (Restrain your laugh.) Heroes, Gossip Girl, those are? (Although I occasionally catch myself peeking into some sensual scenes of the latter.)
Continue reading…