write
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5080
LibMSWrite 0.9
LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document. more>>
LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document format. LibMSWrite library supports what is believed to be the complete featureset of the Write file format.
It is fully portable across 32-bit and 64-bit architectures and has no dependencies other than C++. Both Linux, Windows and any other system that supports C++ is supported (STL is not required).
It employs XML-based code generation techniques to simplify the process of manipulating binary Write data structures, in a portable manner.
What can LibMSWrite do for me?
LibMSWrite provides a comprehensive API that serves as a significant abstraction layer for the Microsoft Write file format. Its primary use is in the "backend" of Write Import and Export filters for office suites. LibMSWrite simplifies the creation of such filters because developers no longer need to know the innards of the Write file format.
LibMSWrite forms the basis of the Write filters for KWord >= 1. (http://www.koffice.org), the word processor that complements the K Desktop Environment (http://www.kde.org), which is the most popular free GUI for Unix-based systems (e.g. Linux, FreeBSD).
The LibMSWrite Project does not just provide a library. It also includes:
- mswrite2html: program which converts Write files to XHTML
- list.h: alternative linked list implementation to STL
- xmlparser.cpp: quick & dirty XML parser
- wmf.cpp: WMF parser and BMP-to-WMF converter
Microsoft Write ?
Microsoft Write was the word processor included in Microsoft Windows 3.x (now more than a decade old). With the notable exception of tables, it supported all of the features needed for writing simple documents (essays, book reviews, reports etc.). The Microsoft Write format is almost completely unrelated to the, now (2003) de-facto, Microsoft Word format.
Microsoft Write files usually have the extension .WRI. Although, there are some .WRI files that are actually RTFs.
LibMSWrite was written because there was a need to guarantee that Write documents could continue to be read in the face of diminishing compatibility for old, binary document file formats. For instance, this is important if you have 7 years worth of work in the format...
The LibMSWrite project is not endorsed by Microsoft.
<<lessIt is fully portable across 32-bit and 64-bit architectures and has no dependencies other than C++. Both Linux, Windows and any other system that supports C++ is supported (STL is not required).
It employs XML-based code generation techniques to simplify the process of manipulating binary Write data structures, in a portable manner.
What can LibMSWrite do for me?
LibMSWrite provides a comprehensive API that serves as a significant abstraction layer for the Microsoft Write file format. Its primary use is in the "backend" of Write Import and Export filters for office suites. LibMSWrite simplifies the creation of such filters because developers no longer need to know the innards of the Write file format.
LibMSWrite forms the basis of the Write filters for KWord >= 1. (http://www.koffice.org), the word processor that complements the K Desktop Environment (http://www.kde.org), which is the most popular free GUI for Unix-based systems (e.g. Linux, FreeBSD).
The LibMSWrite Project does not just provide a library. It also includes:
- mswrite2html: program which converts Write files to XHTML
- list.h: alternative linked list implementation to STL
- xmlparser.cpp: quick & dirty XML parser
- wmf.cpp: WMF parser and BMP-to-WMF converter
Microsoft Write ?
Microsoft Write was the word processor included in Microsoft Windows 3.x (now more than a decade old). With the notable exception of tables, it supported all of the features needed for writing simple documents (essays, book reviews, reports etc.). The Microsoft Write format is almost completely unrelated to the, now (2003) de-facto, Microsoft Word format.
Microsoft Write files usually have the extension .WRI. Although, there are some .WRI files that are actually RTFs.
LibMSWrite was written because there was a need to guarantee that Write documents could continue to be read in the face of diminishing compatibility for old, binary document file formats. For instance, this is important if you have 7 years worth of work in the format...
The LibMSWrite project is not endorsed by Microsoft.
Download (0.074MB)
Added: 2006-03-30 License: BSD License Price:
1303 downloads
pyXLWriter 0.4a3
pyXLWriter is a Python library for generating Excel spreadsheets. more>>
pyXLWriter is a Python library for generating Excel spreadsheets. Its a port of John McNamaras Spreadsheet::WriteExcel Perl module.
To install run python setup.py install in the root of the distribution.
Enhancements:
- Simple Worksheet.write correction (thanks to Frank Tobin)
- Corrected authors e-mail: fufff@users.sourceforge.net
<<lessTo install run python setup.py install in the root of the distribution.
Enhancements:
- Simple Worksheet.write correction (thanks to Frank Tobin)
- Corrected authors e-mail: fufff@users.sourceforge.net
Download (0.15MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1200 downloads
Classfile Reader & Writer
Classfile Reader & Writer is a package for reading and writing Java .class files. more>>
This package makes it easy to read and write java classfiles. It doesnt, however, provide any help with displaying the contents of a classfile to the user (unless you count debug output), or disassembling the bytecodes.
This code snippet will read in a classfile and write it back out to a different file.
InputStream is = new FileInputStream("Foo.class");
OutputStream os = new FileOutputStream("FooCopy.class");
ClassInfo classInfo = new ClassInfo();
new ClassFileReader().read(is, classInfo);
classInfo.setName("FooCopy"); // Java requires the class name to match the file name
new ClassFileWriter().write(classInfo, os);
is.close();os.close();
The package can read "obfuscated" classfiles, like those generated by Crema, but it cant write them. Obfuscated classfiles have invalid data in them and the only reason they work is because most VMs ignore the data thats invalid (attributes like SourceFile, LineNumberTable, and LocalVariableTable). If a ClassFileReader encounters invalid data, it just ignores it.
<<lessThis code snippet will read in a classfile and write it back out to a different file.
InputStream is = new FileInputStream("Foo.class");
OutputStream os = new FileOutputStream("FooCopy.class");
ClassInfo classInfo = new ClassInfo();
new ClassFileReader().read(is, classInfo);
classInfo.setName("FooCopy"); // Java requires the class name to match the file name
new ClassFileWriter().write(classInfo, os);
is.close();os.close();
The package can read "obfuscated" classfiles, like those generated by Crema, but it cant write them. Obfuscated classfiles have invalid data in them and the only reason they work is because most VMs ignore the data thats invalid (attributes like SourceFile, LineNumberTable, and LocalVariableTable). If a ClassFileReader encounters invalid data, it just ignores it.
Download (0.056MB)
Added: 2005-04-22 License: Public Domain Price:
1651 downloads
Spreadsheet::WriteExcelXML 0.10
Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. more>>
Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format.
SYNOPSIS
To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls:
use Spreadsheet::WriteExcelXML;
# Create a new Excel workbook
my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls");
# Add a worksheet
$worksheet = $workbook->add_worksheet();
# Add and define a format
$format = $workbook->add_format(); # Add a format
$format->set_bold();
$format->set_color(red);
$format->set_align(center);
# Write a formatted and unformatted string, row and column notation.
$col = $row = 0;
$worksheet->write($row, $col, "Hi Excel!", $format);
$worksheet->write(1, $col, "Hi Excel!");
# Write a number and a formula using A1 notation
$worksheet->write(A3, 1.2345);
$worksheet->write(A4, =SIN(PI()/4));
The Spreadsheet::WriteExcelXML module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003.
Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format.
Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.
This module cannot, as yet, be used to write to an existing Excel XML file.
<<lessSYNOPSIS
To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls:
use Spreadsheet::WriteExcelXML;
# Create a new Excel workbook
my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls");
# Add a worksheet
$worksheet = $workbook->add_worksheet();
# Add and define a format
$format = $workbook->add_format(); # Add a format
$format->set_bold();
$format->set_color(red);
$format->set_align(center);
# Write a formatted and unformatted string, row and column notation.
$col = $row = 0;
$worksheet->write($row, $col, "Hi Excel!", $format);
$worksheet->write(1, $col, "Hi Excel!");
# Write a number and a formula using A1 notation
$worksheet->write(A3, 1.2345);
$worksheet->write(A4, =SIN(PI()/4));
The Spreadsheet::WriteExcelXML module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003.
Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format.
Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.
This module cannot, as yet, be used to write to an existing Excel XML file.
Download (0.14MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Sprite 3.21
Sprite is a Perl module to manipulate text delimited databases using SQL. more>>
Sprite is a Perl module to manipulate text delimited databases using SQL.
SYNOPSIS
use Sprite;
$rdb = new Sprite;
$rdb->set_delimiter (-Read => ::) ## OR: (Read, ::);
$rdb->set_delimiter (-Write => ::) ## OR: (Write, ::);
$rdb->set_os (Win95);
## Valid arguments (case insensitive) include:
##
## Unix, Win95, Windows95, MSDOS, NT, WinNT, OS2, VMS,
## MacOS or Macintosh. Default determined by $^O.
$rdb->set_lock_file (c:win95tmpSprite.lck, 10);
$rdb->set_db_dir (Mac OS:Perl 5:Data) || die "Cant access dir!n";
$data = $rdb->sql (<<less
SYNOPSIS
use Sprite;
$rdb = new Sprite;
$rdb->set_delimiter (-Read => ::) ## OR: (Read, ::);
$rdb->set_delimiter (-Write => ::) ## OR: (Write, ::);
$rdb->set_os (Win95);
## Valid arguments (case insensitive) include:
##
## Unix, Win95, Windows95, MSDOS, NT, WinNT, OS2, VMS,
## MacOS or Macintosh. Default determined by $^O.
$rdb->set_lock_file (c:win95tmpSprite.lck, 10);
$rdb->set_db_dir (Mac OS:Perl 5:Data) || die "Cant access dir!n";
$data = $rdb->sql (<<less
Download (0.014MB)
Added: 2007-05-16 License: Perl Artistic License Price:
900 downloads
wipe 2.2.0
Wipe is a file and block device wiping utility. more>>
Wipe is a file and block device wiping utility. It is based on work by Peter Gutmann.
There are some low level issues that must be taken into consideration. One of these is that there must be some sort of write barrier between passes. Wipe uses fdatasync(2)
(or fsync(2)) as a write barrier, or if fsync(2) isnt available, the file is opened with the O_DSYNC or O_SYNC flag.
For wipe to be effective, each pass must be completely written. To ensure this, the drive must support some form of a write barrier, write cache flush, or write cache disabling. SCSI supports ordered command tags, has a force
media access bit for commands, and write cache can be disable on mode page 8. IDE/ATA drives support write cache flushes and write cache disabling.
Unfortunetly, not all drives actually disable write cache when yjhis is set up.Those drives are broken. Write caching should always be disabled, unless your system is battery backed and always powers down cleanly.
Enhancements:
- typo in Makefile.in (Ricardo Branco)
<<lessThere are some low level issues that must be taken into consideration. One of these is that there must be some sort of write barrier between passes. Wipe uses fdatasync(2)
(or fsync(2)) as a write barrier, or if fsync(2) isnt available, the file is opened with the O_DSYNC or O_SYNC flag.
For wipe to be effective, each pass must be completely written. To ensure this, the drive must support some form of a write barrier, write cache flush, or write cache disabling. SCSI supports ordered command tags, has a force
media access bit for commands, and write cache can be disable on mode page 8. IDE/ATA drives support write cache flushes and write cache disabling.
Unfortunetly, not all drives actually disable write cache when yjhis is set up.Those drives are broken. Write caching should always be disabled, unless your system is battery backed and always powers down cleanly.
Enhancements:
- typo in Makefile.in (Ricardo Branco)
Download (0.068MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1947 downloads
RubyFilter 0.12
RubyFilter provides a Ruby email filtering program and library. more>>
RubyFilter provides a Ruby email filtering program and library.
RubyFilter is a Ruby email filtering program that can serve as a replacement for email delivery programs such as procmail.
It is also a Ruby module which provides classes that make it easy to write programs that filter and deliver email.
<<lessRubyFilter is a Ruby email filtering program that can serve as a replacement for email delivery programs such as procmail.
It is also a Ruby module which provides classes that make it easy to write programs that filter and deliver email.
Download (0.059MB)
Added: 2007-04-17 License: BSD License Price:
921 downloads
MooDriver 0.20
MooDriver is a library providing a C++ museekd more>>
MooDriver is a library providing a C++ museekd "driver" class (Moo::Driver) MooDriver makes it easy to write museekd clients without having to deal with the museekd daemon and its protocol directly. museekd is a daemon which acts as a gateway to the SoulSeek P2P network.
<<less Download (0.38MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1076 downloads
bandwidth 0.13
bandwidth project is an artificial benchmark for measuring memory bandwidth, useful for identifying a computers weak areas. more>>
bandwidth project is an artificial benchmark for measuring memory bandwidth, useful for identifying a computers weak areas.
It tests several types of memory:
- Main memory read accesses
- Main memory write accesses
- Level 2 cache read accesses
- Level 2 cache write accesses
- Framebuffer read accesses
- Framebuffer write accesses
- String library routines
Enhancements:
- 64-bit support has been added.
<<lessIt tests several types of memory:
- Main memory read accesses
- Main memory write accesses
- Level 2 cache read accesses
- Level 2 cache write accesses
- Framebuffer read accesses
- Framebuffer write accesses
- String library routines
Enhancements:
- 64-bit support has been added.
Download (0.009MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
1112 downloads
INews 0.8
INews is a system to write and publish newspapers on the internet. more>>
INews is a system to write and publish newspapers on the internet.
INews is different, because:
* the newspaper has a traditional structure, with pages and articles distributed like in a paper newspaper.
* the newspaper is not published using HTML, but can be read with a java application.
INews is a complete system, composed by:
* a server application.
* an editor application, to write and publish editions of the newspaper.
* a reader application, to read the last edition of the newspaper on the internet.
* an administration application.
Purposes of the system are:
* speed and simplicity to write and publish the newspaper:
if the articles are ready as RTF documents (written with the most common word processors) and the pictures are ready, it should be a matter of minutes to publish the newspaper.
* to work in team to publish the newspaper.
* to keep an archive with all the articles, images and editions of the newspaper.
* to be open: all the articles and images are saved in the filesystem in a directory tree.
It is possible to build new parts types (like articles and images) and add them to the system.
<<lessINews is different, because:
* the newspaper has a traditional structure, with pages and articles distributed like in a paper newspaper.
* the newspaper is not published using HTML, but can be read with a java application.
INews is a complete system, composed by:
* a server application.
* an editor application, to write and publish editions of the newspaper.
* a reader application, to read the last edition of the newspaper on the internet.
* an administration application.
Purposes of the system are:
* speed and simplicity to write and publish the newspaper:
if the articles are ready as RTF documents (written with the most common word processors) and the pictures are ready, it should be a matter of minutes to publish the newspaper.
* to work in team to publish the newspaper.
* to keep an archive with all the articles, images and editions of the newspaper.
* to be open: all the articles and images are saved in the filesystem in a directory tree.
It is possible to build new parts types (like articles and images) and add them to the system.
Download (0.92MB)
Added: 2005-09-23 License: Freeware Price:
1495 downloads
Osicat 0.5
Osicat is lightweight operating system interface for Common Lisp on POSIX-like systems. more>>
Osicat is lightweight operating system interface for Common Lisp on POSIX-like systems.
Osicat uses UFFI for foreign bindings, so it is relatively portable, though most active development happens on SBCL and Debian GNU/Linux, so other platforms may experience wrinkles.
Main features:
- directory iteration and deletion
- environment variables
- symbolic links
- file permissions
- file-type identification
Installation:
If you have asdf-install, just:
$ asdf-install osicat
Sample usage:
- (with-directory-iterator (next "/")
(loop for entry = (next)
while entry
when (member group-write (file-permissions entry))
collect entry))
(#P"/home" #P"/vmlinuz" #P"/tmp" #P"/initrd.img" #P"/initrd.img.old")
- (file-permissions "/initrd.img")
(USER-READ USER-WRITE
USER-EXEC
GROUP-READ
GROUP-WRITE
GROUP-EXEC
OTHER-READ
OTHER-WRITE
OTHER-EXEC)
- (file-kind "/initrd.img")
:SYMBOLIC-LINK
- (read-link "/initrd.img")
#P"boot/initrd.img-2.4.20-3-686"
*
<<lessOsicat uses UFFI for foreign bindings, so it is relatively portable, though most active development happens on SBCL and Debian GNU/Linux, so other platforms may experience wrinkles.
Main features:
- directory iteration and deletion
- environment variables
- symbolic links
- file permissions
- file-type identification
Installation:
If you have asdf-install, just:
$ asdf-install osicat
Sample usage:
- (with-directory-iterator (next "/")
(loop for entry = (next)
while entry
when (member group-write (file-permissions entry))
collect entry))
(#P"/home" #P"/vmlinuz" #P"/tmp" #P"/initrd.img" #P"/initrd.img.old")
- (file-permissions "/initrd.img")
(USER-READ USER-WRITE
USER-EXEC
GROUP-READ
GROUP-WRITE
GROUP-EXEC
OTHER-READ
OTHER-WRITE
OTHER-EXEC)
- (file-kind "/initrd.img")
:SYMBOLIC-LINK
- (read-link "/initrd.img")
#P"boot/initrd.img-2.4.20-3-686"
*
Download (0.014MB)
Added: 2006-03-17 License: MIT/X Consortium License Price:
1316 downloads
PictureStories 1.4
PictureStories lets you make little webpages of stories you write where some of the words are replaced with images. more>>
PictureStories lets you make little webpages of stories you write where some of the words are replaced with images which is called rebus. What makes PictureStories cool is that the images are dynamically pulled from popular web-based image search engines (like Google).
Weve seen lots of cute little storybooks for kids that are like this, and we thought itd be neat to be able to do my own. Someone has probably had this idea before, but we couldnt find anything online anywhere, so we wrote it.
<<lessWeve seen lots of cute little storybooks for kids that are like this, and we thought itd be neat to be able to do my own. Someone has probably had this idea before, but we couldnt find anything online anywhere, so we wrote it.
Download (0.18MB)
Added: 2006-06-26 License: Freeware Price:
1215 downloads
DWR 2.0 RC4
DWR is a Java open source library that helps developers wanting to write Web sites that include AJAX technology. more>>
DWR is a Java open source library that helps developers wanting to write Web sites that include AJAX technology.
DWR project allows code in a Web browser to use Java functions running on a Web server as if it was in the browser.
Enhancements:
- Changes include a JavaScript proxy API, reverse AJAX, and new security features.
- There were also security and bugfixes.
Enhancements:
- This release adds Guice support and fixes many reverse AJAX bugs.
<<lessDWR project allows code in a Web browser to use Java functions running on a Web server as if it was in the browser.
Enhancements:
- Changes include a JavaScript proxy API, reverse AJAX, and new security features.
- There were also security and bugfixes.
Enhancements:
- This release adds Guice support and fixes many reverse AJAX bugs.
Download (0.17MB)
Added: 2007-04-11 License: The Apache License 2.0 Price:
928 downloads
PostScript::Graph::Style 1.02
PostScript::Graph::Style is a style settings for postscript objects. more>>
SYNOPSIS
Simplest
Each time a new object is created the default style will be slightly different.
use PostScript::File;
use PostScript::Graph::Style;
my $file = new PostScript::File();
my $seq = new PostScript::Graph::Sequence();
while (...) {
my $style = new PostScript::Graph::Style(
sequence => $seq,
point => {}
);
$style->write($file);
$file->add_to_page(<<less
Download (0.054MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1180 downloads
AnimeSys 1.2
AnimeSys is a system monitoring SuperKaramba theme. more>>
AnimeSys is a system monitoring SuperKaramba theme.
It monitors:
- Date and time
- System Info
- CPU Usage
- Memory Load
- amaroK control
AnimeSys is my first attempt in programming a desktop karamba theme....hope you like it! Please write comments so that i can improve my skills for further projects...
The picture is from the anime series chobits!
<<lessIt monitors:
- Date and time
- System Info
- CPU Usage
- Memory Load
- amaroK control
AnimeSys is my first attempt in programming a desktop karamba theme....hope you like it! Please write comments so that i can improve my skills for further projects...
The picture is from the anime series chobits!
Download (0.33MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 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 write 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
Contact Us | Submit Software | Advertise with us | Terms and Conditions | Privacy Policy | Publisher List | Browse Categories | Blog | Discussion Board
Copyright (c)2005-2009 WareSeeker.com. All rights reserved.
Copyright (c)2005-2009 WareSeeker.com. All rights reserved.