Samples
- Topica SOAP - Subscriber exports with a perl module
- Sandorf Encryption and Decryption scripts
- Scramble - Word puzzle solver
- Getting Keywords from a webpage
Topica SOAP - Subscriber exports with perl (modular)
Access Topica.com's Web services with a perl module. Programming becomes easier with Object Oriented Coding ! Click here to download
↑Sandorf Encryption Decryption script (based on Sandorf's cypher)
Click here to download this sandorf encryption decryption script file. For description/usage of Sandorf's encryption, please see the text file and the jpg file that describe the algorithm (provided in the .tar.gz file).
Usage -
Encryption:
perl sandorf_encrypter.pl some_text_file > encrypted_file
Decryption:
perl sandorf_decrypter.pl encrypted_file > decrypted_file
Scramble - Solution to jumbled words
Click here to download this Word Puzzle Solver file.
Use this script to solve word puzzles. Pass the puzzle-word to the script as an argument. This script uses the unix dictionary usually found at /usr/share/dict/words on many distributions.
e.g.
perl scramble.txt asttes
states
tastes
Facebook application based on this script
↑Getting keywords from web-page
Click here to download this get_keywords.tar.bz2 file.sh getKeywords.sh http://www.artists-india.com
With this command you can see unique words and the number of times they appear in that page. You can change the URL to see keywords of that page.
common_words file contains those words which may not be considered as keywords. You can add some more to this list. There's no need to add 1 or 2 lettered words. All such words are excluded from the statistics.
This set of files is a good tool for deciding on keywords for a web-page/text-file.
↑