ms word
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1073
MS Word to plaintext converter 0.1
MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. more>>
MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. The generated text file is named *.doc.txt.
I hope it is as useful for you as it is for me.
<<lessI hope it is as useful for you as it is for me.
Download (MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1283 downloads
X-word 1.0
X-word is a GTK program for doing crosswords. more>>
X-word is a GTK program for doing crosswords.
Xword is a GTK crossword puzzle program. It reads and writes puzzles in the AcrossLite format used by The New York Times.
It has printing, a clock, a word list, auto-saving, and options to check and reveal letters of the puzzle.
<<lessXword is a GTK crossword puzzle program. It reads and writes puzzles in the AcrossLite format used by The New York Times.
It has printing, a clock, a word list, auto-saving, and options to check and reveal letters of the puzzle.
Download (0.018MB)
Added: 2006-07-24 License: BSD License Price:
1191 downloads
Learn Words 0.1
Learn Words project is a tool for teaching words in foreign languages. more>>
Learn Words project is a tool for teaching words in foreign languages.
Once words and their meanings have been entered, the computer quizzes you and shows how many errors you made.
Main features:
- Dictionary quick searching
- Thumbnail view
Enhancements:
- Learn words from mini dictionary
- Full mini dictionary opening, editing and saving support
- Set tab at saving and doesnt ask filename again + save as... function.
- Minidict edit & save support
- Gnome menu
<<lessOnce words and their meanings have been entered, the computer quizzes you and shows how many errors you made.
Main features:
- Dictionary quick searching
- Thumbnail view
Enhancements:
- Learn words from mini dictionary
- Full mini dictionary opening, editing and saving support
- Set tab at saving and doesnt ask filename again + save as... function.
- Minidict edit & save support
- Gnome menu
Download (0.065MB)
Added: 2006-10-23 License: GPL (GNU General Public License) Price:
1099 downloads
jsWordsearch 0.4
jsWordsearch is a word search puzzle generator that is playable through your Web browser. more>>
jsWordsearch is a word search puzzle generator that is playable through your Web browser. You use your own words and have many options to choose from, including size, color, word direction, shape, and more.
<<less Download (0.022MB)
Added: 2006-08-17 License: GPL (GNU General Public License) Price:
1163 downloads
Games::GuessWord 0.15
Games::GuessWord is a guess the letters in a word (ie Hangman). more>>
Games::GuessWord is a guess the letters in a word (ie Hangman).
SYNOPSIS
use Games::GuessWord;
my $g = Games::GuessWord->new(file => "/path/to/wordlist");
print "Score: " . $g->score . "n";
print "Chances: " . $g->chances . "n";
print "Answer: " . $g->answer . "n";
my @guesses = $g->guesses;
$g->guess("t");
# ...
if ($g->won) {
print "You won!n";
$g->new_word;
}
This module is a simple wrapper around a word guessing game. You have to guess the word by guessing letters in the word, and is otherwise known as Hangman.
<<lessSYNOPSIS
use Games::GuessWord;
my $g = Games::GuessWord->new(file => "/path/to/wordlist");
print "Score: " . $g->score . "n";
print "Chances: " . $g->chances . "n";
print "Answer: " . $g->answer . "n";
my @guesses = $g->guesses;
$g->guess("t");
# ...
if ($g->won) {
print "You won!n";
$g->new_word;
}
This module is a simple wrapper around a word guessing game. You have to guess the word by guessing letters in the word, and is otherwise known as Hangman.
Download (0.004MB)
Added: 2007-01-06 License: Perl Artistic License Price:
1024 downloads
Wordplay 0.3
Wordplay is a game for Unix/GTK+. more>>
Wordplay is a game for Unix/GTK+. Wordplay is primarily aimed at Scrabble players looking to improve their anagramming and hooking skills, but can also be played for fun. The dictionary used is the full TWL98 word list (used for tournaments and club play in the U.S. and Canada).
Three types of games are available:
Word Mine: Find all words of a certain length which can be formed from the letters of a larger word. Letters may be repeated only as often as they appear in the given word.
Word Hooks: Find all words which "hook" off a given word: forming a new word by adding a letter to the beginning or end.
Bingos: Find all anagrams of the given (seven or more) letters. In a Scrabble game, playing a word which uses all letters on your rack is a bingo, netting you a 50-point bonus. The bingo puzzles included with wordplay comprise the 500 most statistically likely bingo-able 7-letter and 8-letter combinations, based on the standard Scrabble bag letter distribution.
<<lessThree types of games are available:
Word Mine: Find all words of a certain length which can be formed from the letters of a larger word. Letters may be repeated only as often as they appear in the given word.
Word Hooks: Find all words which "hook" off a given word: forming a new word by adding a letter to the beginning or end.
Bingos: Find all anagrams of the given (seven or more) letters. In a Scrabble game, playing a word which uses all letters on your rack is a bingo, netting you a 50-point bonus. The bingo puzzles included with wordplay comprise the 500 most statistically likely bingo-able 7-letter and 8-letter combinations, based on the standard Scrabble bag letter distribution.
Download (0.25MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
799 downloads
MIME::Words 5.420
MIME::Words is a Perl module to deal with RFC-1522 encoded words. more>>
MIME::Words is a Perl module to deal with RFC-1522 encoded words.
SYNOPSIS
Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait.
Ready? Ok...
use MIME::Words qw(:all);
### Decode the string into another string, forgetting the charsets:
$decoded = decode_mimewords(
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ,
);
### Split string into array of decoded [DATA,CHARSET] pairs:
@decoded = decode_mimewords(
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ,
);
### Encode a single unsafe word:
$encoded = encode_mimeword("xABFranxE7oisxBB");
### Encode a string, trying to find the unsafe words inside it:
$encoded = encode_mimewords("Me and xABFranxE7oisxBB in town");
Fellow Americans, you probably wont know what the hell this module is for. Europeans, Russians, et al, you probably do.
For example, heres a valid MIME header you might get:
From: =?US-ASCII?Q?Keith_Moore?= < moore@cs.utk.edu>
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld@dkuug.dk>
CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard < PIRARD@vm1.ulg.ac.be>
Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=
=?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?=
=?US-ASCII?Q?.._cool!?=
The fields basically decode to (sorry, I can only approximate the Latin characters with 7 bit sequences /o and e):
From: Keith Moore < moore@cs.utk.edu>
To: Keld J/orn Simonsen < keld@dkuug.dk>
CC: Andre Pirard < PIRARD@vm1.ulg.ac.be>
Subject: If you can read this you understand the example... cool!
<<lessSYNOPSIS
Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait.
Ready? Ok...
use MIME::Words qw(:all);
### Decode the string into another string, forgetting the charsets:
$decoded = decode_mimewords(
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ,
);
### Split string into array of decoded [DATA,CHARSET] pairs:
@decoded = decode_mimewords(
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= ,
);
### Encode a single unsafe word:
$encoded = encode_mimeword("xABFranxE7oisxBB");
### Encode a string, trying to find the unsafe words inside it:
$encoded = encode_mimewords("Me and xABFranxE7oisxBB in town");
Fellow Americans, you probably wont know what the hell this module is for. Europeans, Russians, et al, you probably do.
For example, heres a valid MIME header you might get:
From: =?US-ASCII?Q?Keith_Moore?= < moore@cs.utk.edu>
To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld@dkuug.dk>
CC: =?ISO-8859-1?Q?Andr=E9_?= Pirard < PIRARD@vm1.ulg.ac.be>
Subject: =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=
=?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?=
=?US-ASCII?Q?.._cool!?=
The fields basically decode to (sorry, I can only approximate the Latin characters with 7 bit sequences /o and e):
From: Keith Moore < moore@cs.utk.edu>
To: Keld J/orn Simonsen < keld@dkuug.dk>
CC: Andre Pirard < PIRARD@vm1.ulg.ac.be>
Subject: If you can read this you understand the example... cool!
Download (0.38MB)
Added: 2007-07-20 License: Perl Artistic License Price:
828 downloads
Antiword 0.37
Antiword is converts MS-Word documents to ASCII and Postscript. more>>
Antiword is a free MS-Word reader for Linux, RISC OS, and DOS. Antiword converts the documents from Word 2, 6, 7, 97, 2000, 2002, and 2003 to text, Postscript, and XML/DocBook.
Antiword tries to keep the layout of the document intact.
The programmers version is released under GNU General Public License. Check out the pages of the Free Software Foundation for a more detailed description about this license.
The programmers version does not contain any binaries, but the sources can be used to compile a Linux version. The sources can also be used to compile a version for most variations of the Unix operating system as well.
Users have reported successful compilations on FreeBSD, Solaris, IRIX, Digital Unix (OSF/1), AIX, SCO and HP-UX.
Currently Antiword is able to convert Word documents to plain text, to PostScript, to PDF and to XML/DocBook.
Version restrictions:
- The conversion to XML/DocBook is still experimental,
- The support for the Cyrillic alphabet is still experimental.
Enhancements:
- Displaying of page headers and footers was implemented for PostScript and PDF output.
- "footnote" tags were added to XML/DocBook output.
- Support for text removed by the revisioning system was added.
- The KDE helper script kantiword was improved.
<<lessAntiword tries to keep the layout of the document intact.
The programmers version is released under GNU General Public License. Check out the pages of the Free Software Foundation for a more detailed description about this license.
The programmers version does not contain any binaries, but the sources can be used to compile a Linux version. The sources can also be used to compile a version for most variations of the Unix operating system as well.
Users have reported successful compilations on FreeBSD, Solaris, IRIX, Digital Unix (OSF/1), AIX, SCO and HP-UX.
Currently Antiword is able to convert Word documents to plain text, to PostScript, to PDF and to XML/DocBook.
Version restrictions:
- The conversion to XML/DocBook is still experimental,
- The support for the Cyrillic alphabet is still experimental.
Enhancements:
- Displaying of page headers and footers was implemented for PostScript and PDF output.
- "footnote" tags were added to XML/DocBook output.
- Support for text removed by the revisioning system was added.
- The KDE helper script kantiword was improved.
Download (0.28MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
1434 downloads
Master Math Word Problems 1.6
Master Math Word Problems can help sharpen skills through practice. more>>
Solving word problems is an area where elementary students overwhelmingly display difficulties. Master Math Word Problems program can help sharpen skills through practice. Third through fifth graders learn to watch for key words and translate those into mathematical operations.
Students can learn new math skills, practice logic, get extended practice with word problems, but most of all they learn that they must read the problem. With regular practice your students may become master math word problem solvers.
Download and try out Master Math Word Problems.
<<lessStudents can learn new math skills, practice logic, get extended practice with word problems, but most of all they learn that they must read the problem. With regular practice your students may become master math word problem solvers.
Download and try out Master Math Word Problems.
Download (1.2MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price: $12
1262 downloads
GNOME Word of the Day 0.2.0
GNOME Word of the Day is a GNOME applet that displays a new vocabulary word each day. more>>
GNOME Word of the Day is a GNOME applet that displays a new vocabulary word each day.
No one likes to be lost in a sea of unknown words. With GNOME Word of the Day Applet, your vocabulary will evince perennial growth. Its a must when preparing for the SAT or GRE tests and for improving both reading comprehension and writing precision.
GNOME word of the day sits in your notification area as a whole word or as a small icon. You can retrieve words from a selection of online sources.
<<lessNo one likes to be lost in a sea of unknown words. With GNOME Word of the Day Applet, your vocabulary will evince perennial growth. Its a must when preparing for the SAT or GRE tests and for improving both reading comprehension and writing precision.
GNOME word of the day sits in your notification area as a whole word or as a small icon. You can retrieve words from a selection of online sources.
Download (0.043MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1189 downloads
WordSearch 1.4.1
WordSearch is a Perl script that generates word search puzzles. more>>
WordSearch is a Perl script that generates word search puzzles. WordSearch will generate random word search puzzles, or you can give it a list which will allow it to generate your own puzzles.
This program is based off of discussions Ive had with Stephen Uitti, who wrote a C program to create wordsearch puzzles.
Without these discussions, this application probably wouldnt even exist, let alone be useful. Thanks, Steve!
<<lessThis program is based off of discussions Ive had with Stephen Uitti, who wrote a C program to create wordsearch puzzles.
Without these discussions, this application probably wouldnt even exist, let alone be useful. Thanks, Steve!
Download (0.010MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1158 downloads
Scramble Words Generator 1.0
Can you raed tihs? Did you konw that it is poissble to raed text eevn wehn the iennr letrets hvae been rraeargned? If youre albe to raed tihs now, t... more>> <<less
Download (0KB)
Added: 2009-04-06 License: Freeware Price: Free
244 downloads
XDBCMS 0.13
XDBCMS is a Web-based, multi-user CMS. more>>
XDBCMS is a Web-based, multi-user CMS that can manage any number of Web sites, each site with any number of pages, and each site organised in a tree-based menu that can be any depth.
Where XDBCMS differs from most content management systems is that it actually generates a stand-alone Web site, which requires no database to drive it, can be released to any Web server, and would be able to cope with very large numbers of users.
For the authors, it features a WYSIWYG editor, similar to MS-Word in appearance, allowing full control over the format (tables, fonts, graphics, etc.) of each individual page. It allows multiple authors and features a group-based security system.
Here are the aims of "XDBCMS":
- To create a web-based system that can produce usable web sites with minimal training.
- To not restrict authors creativity by giving complete freedom over page layout, and text within that page via a WYSIWYG editor similar to MS-Word in look and feel.
- To have the ability to maintain an unlimited number of websites, each having an unlimited number of pages
- To have pages generated in their entirity, and then uploaded to any web server
Enhancements:
- XDBCMS now uses CSS based layout techniques, making it possible to completely re-skin the application.
- PHP mechanisms have now been updated so that it is no longer necessary to have the SET GLOBALS set to true.
- This means that XDBCMS can now be installed onto servers where admin privileges are not available.
- New graphics have been implemented, and the TinyMCE editor has been upgraded.
<<lessWhere XDBCMS differs from most content management systems is that it actually generates a stand-alone Web site, which requires no database to drive it, can be released to any Web server, and would be able to cope with very large numbers of users.
For the authors, it features a WYSIWYG editor, similar to MS-Word in appearance, allowing full control over the format (tables, fonts, graphics, etc.) of each individual page. It allows multiple authors and features a group-based security system.
Here are the aims of "XDBCMS":
- To create a web-based system that can produce usable web sites with minimal training.
- To not restrict authors creativity by giving complete freedom over page layout, and text within that page via a WYSIWYG editor similar to MS-Word in look and feel.
- To have the ability to maintain an unlimited number of websites, each having an unlimited number of pages
- To have pages generated in their entirity, and then uploaded to any web server
Enhancements:
- XDBCMS now uses CSS based layout techniques, making it possible to completely re-skin the application.
- PHP mechanisms have now been updated so that it is no longer necessary to have the SET GLOBALS set to true.
- This means that XDBCMS can now be installed onto servers where admin privileges are not available.
- New graphics have been implemented, and the TinyMCE editor has been upgraded.
Download (2.5MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1080 downloads
ms-sys 2.1.2
ms-sys is a Linux program for writing Microsoft compatible boot records. more>>
ms-sys is a Linux program for writing Microsoft compatible boot records. The program does the same as Microsoft "fdisk /mbr" to a hard disk or "sys d:" to a floppy or FAT partition except that it does not copy any system files, only the boot record is written.
It is also able to do the same as Microsoft "sys d:" to a floppy or FAT partition except that it does not copy any system files, only the boot record is written.
The program is useful when using Linux to restore a backup of a reference
Microsoft Windows installation.
Installation:
Step 1, unpack the archive:
tar -xzvf ms-sys*.tgz
Step 2, compile:
cd ms-sys
make
Step 3, become root and install
su (and give password)
make install
<<lessIt is also able to do the same as Microsoft "sys d:" to a floppy or FAT partition except that it does not copy any system files, only the boot record is written.
The program is useful when using Linux to restore a backup of a reference
Microsoft Windows installation.
Installation:
Step 1, unpack the archive:
tar -xzvf ms-sys*.tgz
Step 2, compile:
cd ms-sys
make
Step 3, become root and install
su (and give password)
make install
Download (0.036MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1446 downloads
Word Inspector 0.1a
Word Inspector project is a GTK frontend to Dict dictionary program. more>>
Word Inspector project is a GTK frontend to Dict dictionary program.
The dict program allows you to search through one or more dictionary-like reference books for a word, then displays its definition.
Word Inspector expands that by allowing you to enter words to look up more easily, easily look up words that appear in the definition for another word, and automatically look up a word in the X Windows selection.
<<lessThe dict program allows you to search through one or more dictionary-like reference books for a word, then displays its definition.
Word Inspector expands that by allowing you to enter words to look up more easily, easily look up words that appear in the definition for another word, and automatically look up a word in the X Windows selection.
Download (0.054MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1092 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ms word search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed