Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.309.111 Times

Mathematic Writer freeware
Filter: All | Freeware | Demo
 

Mathematic Writer

< 1 2 3 4 5 > 
Released: September 13, 2011  |  Added: November 22, 2011 | Visits: 2.032

Kingsoft Writer Free 2012 As part of the Kingsoft Office Suite 2012, Kingsoft Writer 2012 is a powerful and user-friendly word processing program. It is fully compatible with all Microsoft Word, and it can process Microsoft Word files and save documents as various file formats including .doc, .docx, .txt, etc. formats...



Platforms: Windows

License: Freeware Size: 43.24 MB Download (112): Kingsoft Writer Free 2012 Download

Added: April 04, 2010 | Visits: 1.036

OPML Writer OPML Writer is a PHP4 class for writing OPML files with an object-oriented approach..





Platforms: *nix

License: Freeware Size: 163.84 KB Download (110): OPML Writer Download

Added: May 11, 2010 | Visits: 1.131

Doc::Perlish::Writer Doc::Perlish::Writer is a base class for stream output functions. SYNOPSIS # using - generally use a subclass my $writer = Doc::Perlish::Writer::XML->new(); $doc->receiver($writer); $doc->send_all(); my $output = $writer->output; # an IO::All object # or, you can pass an object or...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (110): Doc::Perlish::Writer Download

Added: April 01, 2010 | Visits: 931

FCFS RWLock FCFS RWLock is a Readers/Writers Lock (or RWLock for short) is a mechanism that allows an arbitrary number of readers or alternatively one writer to access a resource at any given time. FCFS RWLock project is useful in case writing may temporarily harm the integrity of the resource. Many...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (109): FCFS RWLock Download

Added: July 07, 2010 | Visits: 717

XML::Genx XML::Genx is a simple, correct XML writer. SYNOPSIS use XML::Genx; my $w = XML::Genx->new; eval { # < foo >bar< /foo > $w->StartDocFile( *STDOUT ); $w->StartElementLiteral( foo ); $w->AddText( bar ); $w->EndElement; $w->EndDocument; }; die "Writing XML failed: $@" if $@; This...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (107): XML::Genx Download

Added: October 15, 2010 | Visits: 889

XML::SAX::Writer XML::SAX::Writer is a Perl module with SAX2 Writer. SYNOPSIS use XML::SAX::Writer; use XML::SAX::SomeDriver; my $w = XML::SAX::Writer->new; my $d = XML::SAX::SomeDriver->new(Handler => $w); $d->parse(some options...); Why yet another XML Writer ? A new XML Writer was needed to match...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (105): XML::SAX::Writer Download

Added: January 25, 2010 | Visits: 623

WritersDB Pending Subs Widget WritersDB Pending Subs Widget connects to an individual's account on the Writer's Database site (www.writersdb.com) and displays their Pending Submissions--i.e., those manuscripts sent out to magazines or other markets that have not yet received replies.(The Writer's Database is a free site that...


Platforms: Mac

License: Freeware Download (102): WritersDB Pending Subs Widget Download

Added: June 26, 2010 | Visits: 967

webCDwriter webCDwriter can be used to make the CD- and DVD-writer(s) connected to a Linux box available to all users in your network. It consists of the server CDWserver and the clients webCDcreator and rcdrecord. CDWserver stores the files transmitted by the clients, reserves the CD-writer and controls...


Platforms: *nix

License: Freeware Size: 583.68 KB Download (98): webCDwriter Download

Added: August 09, 2008 | Visits: 1.032

Real PDF Writer DS Clock is a digital desktop clock that displays variable date and time information built from the format string. The program allows you to fully customize its look and feel, and can synchronize your computer's clock with Atomic Time Servers. You can select any combination of date and time, pick...


Platforms: Windows

License: Freeware Size: 1.3 MB Download (97): Real PDF Writer Download

Added: August 30, 2008 | Visits: 806

BlogMyCode BlogMyCode is Microsoft Visual Studio 2005 plugin, that helps you to blog formatted source code, by using Windows Live Writer. Just select source code from Visual Studio 2005, open context menu by clicking right mouse button and choose "Blog This".


Platforms: Windows

License: Freeware Size: 1.15 MB Download (96): BlogMyCode Download

Added: February 17, 2010 | Visits: 1.133

Graph::Writer::DrGeo Graph::Writer::DrGeo can save the graph output DrGeo scheme script. SYNOPSIS my $g = new Graph; # Add some vertices/edges to $g my $writer = Graph::Writer::DrGeo->new(); $writer->write_graph($g,"graph.scm"); # graph.scm can be evaluated and rendered with Dr.Geo Dr. Geo is a GTK...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (95): Graph::Writer::DrGeo Download

Added: January 18, 2010 | Visits: 1.595

XML::Writer::Simple XML::Writer::Simple is a Perl module to create XML files easily! SYNOPSIS use XML::Writer::Simple dtd => "file.dtd"; print para("foo",b("bar"),"zbr"); USAGE This module takes some ideas from CGI to make easier the life for those who need to generated XML code. You can use the module in...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (91): XML::Writer::Simple Download

Added: January 27, 2010 | Visits: 1.044

XML::Writer XML::Writer is a Perl extension for writing XML documents. SYNOPSIS use XML::Writer; use IO::File; my $output = new IO::File(">output.xml"); my $writer = new XML::Writer(OUTPUT => $output); $writer->startTag("greeting", "class" => "simple"); $writer->characters("Hello, world!");...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (91): XML::Writer Download

Added: March 24, 2010 | Visits: 2.216

ConfigFile for Haskell ConfigFile for Haskell is a configuration file parser and writer library for Haskell. The ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (91): ConfigFile for Haskell Download

Added: June 21, 2010 | Visits: 853

CGI::Ex::Conf CGI::Ex::Conf is a Perl module with Conf Reader/Writer for many different data format types. SYNOPSIS use CGI::Ex::Conf qw(conf_read conf_write); my $hash = conf_read("/tmp/foo.yaml"); conf_write("/tmp/foo.yaml", {key1 => $val1, key2 => $val2}); ### OOP interface my $cob =...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (89): CGI::Ex::Conf Download

Released: July 05, 2012  |  Added: July 05, 2012 | Visits: 1.388

MP4 Encoder DirectShow Filter Create MPEG4 video and MPEG4 audio files using DirectShow filter, which includes MPEG-4 video ASP encoder, MPEG-4 audio FAAC (Freeware Advanced Audio Codec) and ISO compliant MP4 file writer. Video-audio files can be played with QuickTime, Real and FFDShow based players. Save file as .divx if you...


Platforms: Windows

License: Freeware Size: 402 KB Download (76): MP4 Encoder DirectShow Filter Download

Released: June 15, 2012  |  Added: June 15, 2012 | Visits: 803

TruePDF TruePDF is the first truly free PDF printer, creator, and writer that quickly create PDF files from virtually any application on Microsoft Windows 7, Vista, 2008, 2003, and XP without the need for GhostScript or Adobe Acrobat. The software features a smart installer can set up both x86 and x64...


Platforms: Windows

License: Freeware Size: 1.7 MB Download (72): TruePDF Download

Added: May 10, 2013 | Visits: 391

phpCodeGenie phpCodeGenie is a code writer/generator for PHP/MySQL applications. It builds numerous forms and scripts, from your databsae tables. Just design your database and let phpCodeGenie do the coding for you.


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (71): phpCodeGenie Download

Released: July 09, 2015  |  Added: July 21, 2015 | Visits: 588

BulkPDF What is BulkPDF? BulkPDF is a free and easy to use freeware software (Open Source), which allows to automatically fill an existing PDF form with different values. Only a spreadsheet (Microsoft Excel 2007/2010/2013, LibreOffice or OpenOffice Calc) with the desired values is required. How does...


Platforms: Windows, Mac, *nix, Windows 7

License: Freeware Size: 4.88 MB Download (70): BulkPDF Download

Added: May 10, 2013 | Visits: 688

All In One SEO Pack Windows Live Writer Bridge By default users are unable to specify custom fields from Windows Live Writer. InstallationUnpack and upload it to the /wp-content/plugins/ directory.Activate the plugin through the 'Plugins' menu in WordPress. Key features "All In One SEO Pack Windows Live Writer Bridge": - Allows users to add...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris


< 1 2 3 4 5 >