about 1 month ago - 1 comment
Ok so I ran into this while looking at my site after upgrading to wordpress version 2.9 and found that all my comments for pages disappeared but the post comments were fine, So I googled and found that arras theme has a conflict with wordpress v2.9. and this is the issue and wamo-bamo it worked!
about 2 months ago - No comments
Ok So I wanted to tell everyone about how when an upgrade for a plugin is needed to create a box under the update to show custom update options from the developer. So this is how that happens:
about 9 months ago - 9 comments
I am finally able to sit down and tell you about the media player that I put on my website. As you can see to the right is a music player and the code that I used is valid XHTML. So here we go:
about 10 months ago - No comments
I wanted to make a pseudo login scheme for my page and came across some really cool stuff so take a look….
about 10 months ago - 2 comments
Thanks to great find I was able to make some sweet adjustments to my site. With some modification to what JTK said on his website I used some really cool drop down boxes to achieve what I wanted on my site. I will give you the code for both…
about 11 months ago - No comments
Have you ever wanted to encode your html to make it show up inside of um say wordpress post and not be ran through html scripting? Well here yah go: This will output that for you!…
about 11 months ago - No comments
So you have those crazy post revisions listed on your blog under your post development page. You also know for a fact that you don’t need to keep them and are happy with your current revision…
about 1 year ago - 5 comments
You need these following files to make it work:
This is the Dictionary so that it can check the words in the file
Cipher file that you can use to change to plain text
Cipher file much of same #2
Cipher file much of same #3
Cipher file much of same #4
Input file to change to cipher text
Input file much of the same #2
Input file much of the same #3
/* Project #4
Project Description:
In this project, you will implement three basic cryptography procedures for shift cipher.
Cryptography refers to the use of encryption (or encoder) to convert plain text information into
unintelligible gibberish (cipher text) for security purposes. A corresponding decryption
algorithm (or decoder) will convert the cipher text back to the plain text with the correct
decryption key. A code breaker tries to decode the cipher text without the key.
Shift cipher is one of the simplest cryptography systems. It encrypts the plain text message by
shifting each character for fixed number of characters down the relevant alphabet. This fixed
number is called the encryption key. For example, consider the English alphabet, when the
encryption key is 2, a, b, c, …, x, y, z will be shifted to c, d, e, …, z, a, b, respectively. A shift
cipher with encryption key 2 will convert the plain text “project” into cipher text “rtqlgev”. The
decoder in this case will be shifting each letter 2 position to the left, that is, replacing a, b, c, …,
x,y,z in the cipher text by y, z, a, …, v, w, x, respectively. It suffices for a code breaker in this
case to guess the value of the encryption/decryption key.
You need to write a single program to perform these three basic cryptography procedures at the
user’s choice. Assuming that a.out is the executable of your program:
a.out 1 input output key encodes input file with key and write cipher text to output
a.out 2 input output key decodes input file with key and write plain text to output
a.out 3 input output breaks the cipher text input and write plain text to output
The code breaker procedure tries all the possible key values and matches the words in the
corresponding plain text with the words in a dictionary “mydictional.txt”. The key that produces
the maximal number of matches will be considered as the key and will be used to generate the
plain text file output…