author dinesen
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 641
dvdmenuauthor 0.02
dvdmenuauthor makes it easy and efficient to author a DVD with menus in an indirect (non-WYSIWYG) way. more>>
dvdmenuauthor project makes it easy and efficient to author a DVD with menus in an indirect (non-WYSIWYG) way. An XML project file drives the DVD authoring, from which both menus and a dvdauthor XML file are generated.
dvdauthor and spumux are then used to author the DVD filesystem. Menu items (buttons and static items such as images and text) can be specified conscisely in the project XML file with LaTeX markup (to be processed by pdfLaTeX and rendered by xpdf).
<<lessdvdauthor and spumux are then used to author the DVD filesystem. Menu items (buttons and static items such as images and text) can be specified conscisely in the project XML file with LaTeX markup (to be processed by pdfLaTeX and rendered by xpdf).
Download (0.097MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
921 downloads
Class::DBI::AutoIncrement 0.05
Class::DBI::AutoIncrement is a Perl module to emulate auto-incrementing columns on Class::DBI subclasses. more>>
Class::DBI::AutoIncrement is a Perl module to emulate auto-incrementing columns on Class::DBI subclasses.
SYNOPSIS
Lets assume you have a project making use of Class::DBI. You have implemented a subclass of Class::DBI called MyProject::DBI that opens a connection towards your projects database. You also created a class called MyProject::Book that represents the table Book in your database:
package MyProject::Book;
use base qw(MyProject::DBI);
MyProject::Book->table(book);
MyProject::Book->columns(Primary => qw(seqid));
MyProject::Book->table(Others => qw(author title isbn));
Now, you would like the column seqid of the table Book to be auto-incrementing, but your database unfortunately does not support auto-incrementing sequences. Instead, use Class::DBI::AutoIncrement to set the value of seqid automagically upon each insert():
package MyProject::Book;
use base qw(Class::DBI::AutoIncrement MyProject::DBI);
MyProject::Book->table(book);
MyProject::Book->columns(Primary => qw(seqid));
MyProject::Book->table(Others => qw(author title isbn));
MyProject::Book->autoincrement(seqid);
From now on, when you call:
my $book = Book->insert({author => me, title => my life});
$book gets its seqid field automagically set to the next available value for that column. If you had 3 rows in the table book having seqids 1, 2 and 3, this new inserted row will get the seqid 4 (assuming a default setup).
<<lessSYNOPSIS
Lets assume you have a project making use of Class::DBI. You have implemented a subclass of Class::DBI called MyProject::DBI that opens a connection towards your projects database. You also created a class called MyProject::Book that represents the table Book in your database:
package MyProject::Book;
use base qw(MyProject::DBI);
MyProject::Book->table(book);
MyProject::Book->columns(Primary => qw(seqid));
MyProject::Book->table(Others => qw(author title isbn));
Now, you would like the column seqid of the table Book to be auto-incrementing, but your database unfortunately does not support auto-incrementing sequences. Instead, use Class::DBI::AutoIncrement to set the value of seqid automagically upon each insert():
package MyProject::Book;
use base qw(Class::DBI::AutoIncrement MyProject::DBI);
MyProject::Book->table(book);
MyProject::Book->columns(Primary => qw(seqid));
MyProject::Book->table(Others => qw(author title isbn));
MyProject::Book->autoincrement(seqid);
From now on, when you call:
my $book = Book->insert({author => me, title => my life});
$book gets its seqid field automagically set to the next available value for that column. If you had 3 rows in the table book having seqids 1, 2 and 3, this new inserted row will get the seqid 4 (assuming a default setup).
Download (0.008MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1002 downloads
Python GnuPGInterface 0.3.2
GnuPGInterface is a Python module to interface with GnuPG . more>>
GnuPGInterface is a Python module to interface with GnuPG . It concentrates on interacting with GnuPG via filehandles, providing access to control GnuPG via versatile and extensible means.
This module is based on GnuPG::Interface, a Perl module by the same author.
To install this distribution, simply run the following commands:
python setup.py build
python setup.py install
See pydoc GnuPGInterface for module documentation. Only recent
versions of Python include the executable pydoc.
Enhancements:
- GnuPGInterface.py, NEWS, setup.py: bump version to 0.3.2 and news
<<lessThis module is based on GnuPG::Interface, a Perl module by the same author.
To install this distribution, simply run the following commands:
python setup.py build
python setup.py install
See pydoc GnuPGInterface for module documentation. Only recent
versions of Python include the executable pydoc.
Enhancements:
- GnuPGInterface.py, NEWS, setup.py: bump version to 0.3.2 and news
Download (0.012MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1200 downloads
Q DVD-Author 1.0.0 RC1
Q DVD-Author is a GUI for dvdauthor. more>>
Q DVD-Authors goal is to provide a complete DVDAuthoring solution for Linux with the emphasis of ease of use and a complete set of functionality.
Main features:
- You can generate the main menu.
- You can generate Sub Menus
- You can generate Buttons
- You can scale, color, stretch, twist and shout each object
- You can give each menu multiple sound tracks (not yet perfect though).
- You can import your own layers for Highlighted and for Selected Mask and combine it with the created objects
- You can generate a dvd-slideshow
- You can create a full blown DVD without knowing the command line tools
- You can modify every generated command before executing and generating the DVD
- You can generate MovieMenus
- You can generate MovieButtons
- You can modify the generated xml files within the GUI
- You can contribute to qdvdauthor.
- Thats it for now !!!
Enhancements:
- Translated into Esperanto.
- Reorganized the main window.
- Added library of frames / buttons.
- Fixed issues with 16 bit color depth
- Some improvements to QPlayer.
- Improved ShadowObjects.
- Added MenuSlide - dialog.
<<lessMain features:
- You can generate the main menu.
- You can generate Sub Menus
- You can generate Buttons
- You can scale, color, stretch, twist and shout each object
- You can give each menu multiple sound tracks (not yet perfect though).
- You can import your own layers for Highlighted and for Selected Mask and combine it with the created objects
- You can generate a dvd-slideshow
- You can create a full blown DVD without knowing the command line tools
- You can modify every generated command before executing and generating the DVD
- You can generate MovieMenus
- You can generate MovieButtons
- You can modify the generated xml files within the GUI
- You can contribute to qdvdauthor.
- Thats it for now !!!
Enhancements:
- Translated into Esperanto.
- Reorganized the main window.
- Added library of frames / buttons.
- Fixed issues with 16 bit color depth
- Some improvements to QPlayer.
- Improved ShadowObjects.
- Added MenuSlide - dialog.
Download (3.8MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
899 downloads
Swing XML Authoring Tool 0.5.5
SwiXAT is a Swing-based authoring tool for the quick and easy development of GUI Java applications. more>>
Swing XML Authoring Tool is a Swing-based authoring tool for the quick and easy development of GUI Java applications.
It implements out-of-box a true MVC framework and uses XML to define the view (SwiXml is used as the XUL engine), BeanShell as a scripting language for the controller, and JXPath as the binding mechanism between the view and model.
Swing XML Authoring Tool provides a complete environment in which it is possible to almost write an entire Java Swing application without writing Java compiled code. The use of XPath makes it very simple to traverse the object tree of the applications business model.
It takes a lot of work to develop a Swing application, laying out and configuring GUI components, and then integrating them with the application functionality. SwiXAT addresses both of these issues by providing a framework based on a complete implementation of the MVC architectural pattern.
The benefits obtained by a such framework are the followings:
- Architectural Correctness: By adopting a true MVC (Model View Controller) based framework, it is very easy to correctly implement any UI application. Its not difficult to write a Java/Swing application, but whats very difficult is to build a good, well designed Swing application, where the adoption of the MVC paradigm permits to reduce the maintenance costs, thanks to the clean separation between the view and the application logic.
- Development Speed: The adoption of a framework reduces the development cost by providing out-of-box, well integrated and easy to use common features, like wizards, plugins, support for MDI interfaces, etc. Moreover, the use of XML to define the user interface, as well as the adoption of an interpreted scripting language, permits to implement the Code&Test development style, where the compilation time is reduced to zero.
- Code Reuse: The net separation between the view and the control logic permits to write reusable modules that can be combined in several manners. The developer is naturally induced to modularize the application and write reusable code, minimizing the effort of building new applications or adding new functionality to existing ones.
SwiXAT is all the above, and we hope youll appreciate our effort.
<<lessIt implements out-of-box a true MVC framework and uses XML to define the view (SwiXml is used as the XUL engine), BeanShell as a scripting language for the controller, and JXPath as the binding mechanism between the view and model.
Swing XML Authoring Tool provides a complete environment in which it is possible to almost write an entire Java Swing application without writing Java compiled code. The use of XPath makes it very simple to traverse the object tree of the applications business model.
It takes a lot of work to develop a Swing application, laying out and configuring GUI components, and then integrating them with the application functionality. SwiXAT addresses both of these issues by providing a framework based on a complete implementation of the MVC architectural pattern.
The benefits obtained by a such framework are the followings:
- Architectural Correctness: By adopting a true MVC (Model View Controller) based framework, it is very easy to correctly implement any UI application. Its not difficult to write a Java/Swing application, but whats very difficult is to build a good, well designed Swing application, where the adoption of the MVC paradigm permits to reduce the maintenance costs, thanks to the clean separation between the view and the application logic.
- Development Speed: The adoption of a framework reduces the development cost by providing out-of-box, well integrated and easy to use common features, like wizards, plugins, support for MDI interfaces, etc. Moreover, the use of XML to define the user interface, as well as the adoption of an interpreted scripting language, permits to implement the Code&Test development style, where the compilation time is reduced to zero.
- Code Reuse: The net separation between the view and the control logic permits to write reusable modules that can be combined in several manners. The developer is naturally induced to modularize the application and write reusable code, minimizing the effort of building new applications or adding new functionality to existing ones.
SwiXAT is all the above, and we hope youll appreciate our effort.
Download (3.7MB)
Added: 2006-10-03 License: The Apache License 2.0 Price:
1118 downloads
KDE DVD Authoring Wizard 1.4.6
KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. more>>
KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. All you need to do is add one or multiple files to the playlist and answer the questions that follow.
You can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.
Main features:
- Playlist editor
- DVD menu with multiple pages
- Animated thumbnails in the menu
- Customizable menu graphics
- Add soundtrack from OGG or MP3
- Antialiased graphics prevent flickering on TV
- Both Widescreen and standard 4:3 support
- ISO DVD Image creation
<<lessYou can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.
Main features:
- Playlist editor
- DVD menu with multiple pages
- Animated thumbnails in the menu
- Customizable menu graphics
- Add soundtrack from OGG or MP3
- Antialiased graphics prevent flickering on TV
- Both Widescreen and standard 4:3 support
- ISO DVD Image creation
Download (0.55MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
890 downloads
I Love Autumn Icons for Linux -
An icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:16 Cute Love Autumn Icons<<less
Download (252KB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
Module::Build::Authoring 0.2805
Module::Build::Authoring are authoring Module::Build modules. more>>
Module::Build::Authoring are authoring Module::Build modules.
When creating a Build.PL script for a module, something like the following code will typically be used:
use Module::Build;
my $build = Module::Build->new
(
module_name => Foo::Bar,
license => perl,
requires => {
perl => 5.6.1,
Some::Module => 1.23,
Other::Module => >= 1.2, != 1.5, < 2.0,
},
);
$build->create_build_script;
A simple module could get away with something as short as this for its Build.PL script:
use Module::Build;
Module::Build->new(
module_name => Foo::Bar,
license => perl,
)->create_build_script;
The model used by Module::Build is a lot like the MakeMaker metaphor, with the following correspondences:
In Module::Build In ExtUtils::MakeMaker
--------------------------- ------------------------
Build.PL (initial script) Makefile.PL (initial script)
Build (a short perl script) Makefile (a long Makefile)
_build/ (saved state info) various config text in the Makefile
Any customization can be done simply by subclassing Module::Build and adding a method called (for example) ACTION_test, overriding the default test action. You could also add a method called ACTION_whatever, and then you could perform the action Build whatever.
For information on providing compatibility with ExtUtils::MakeMaker, see Module::Build::Compat and http://www.makemaker.org/wiki/index.cgi?ModuleBuildConversionGuide.
<<lessWhen creating a Build.PL script for a module, something like the following code will typically be used:
use Module::Build;
my $build = Module::Build->new
(
module_name => Foo::Bar,
license => perl,
requires => {
perl => 5.6.1,
Some::Module => 1.23,
Other::Module => >= 1.2, != 1.5, < 2.0,
},
);
$build->create_build_script;
A simple module could get away with something as short as this for its Build.PL script:
use Module::Build;
Module::Build->new(
module_name => Foo::Bar,
license => perl,
)->create_build_script;
The model used by Module::Build is a lot like the MakeMaker metaphor, with the following correspondences:
In Module::Build In ExtUtils::MakeMaker
--------------------------- ------------------------
Build.PL (initial script) Makefile.PL (initial script)
Build (a short perl script) Makefile (a long Makefile)
_build/ (saved state info) various config text in the Makefile
Any customization can be done simply by subclassing Module::Build and adding a method called (for example) ACTION_test, overriding the default test action. You could also add a method called ACTION_whatever, and then you could perform the action Build whatever.
For information on providing compatibility with ExtUtils::MakeMaker, see Module::Build::Compat and http://www.makemaker.org/wiki/index.cgi?ModuleBuildConversionGuide.
Download (0.18MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1104 downloads
UnHide fields 0.2 for Firefox
UnHide fields provides this extension allow you to view and edit hidden fields content. more>>
UnHide fields provides this extension allow you to view and edit hidden fields content.
In computer science, data that has several parts can be divided into fields. For example, a computer may represent todays date as three distinct fields: the day, the month and the year.
Programming languages usually have a record data type to represent composite data types as a series of fields. An array of boolean values can be represented as a bit field.
<<lessIn computer science, data that has several parts can be divided into fields. For example, a computer may represent todays date as three distinct fields: the day, the month and the year.
Programming languages usually have a record data type to represent composite data types as a series of fields. An array of boolean values can be represented as a bit field.
Download (0.013MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
926 downloads
Aries Icons for Linux -
A funny icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:Includes: applications icons, system icons and bonus icons<<less
Download (1.60MB)
Added: 2009-04-17 License: Freeware Price: Free
189 downloads
Knopperdisk 0.4.1
Knopperdisk is a Linux distribution designed for a USB pen drive. more>>
Knopperdisk is a Linux distribution designed for a USB pen drive.
The USB version is more than just a rescue disk. Its based on Gentoo and contains various other programs/utilities such as network related tools (nmap, ettercap).
The floppy version is a so called rescue disk which is a compilation of uclibc and busybox among other utilities. It even has a ssh client provided by dropbear (congrats to the author) and some filesystem tools.
<<lessThe USB version is more than just a rescue disk. Its based on Gentoo and contains various other programs/utilities such as network related tools (nmap, ettercap).
The floppy version is a so called rescue disk which is a compilation of uclibc and busybox among other utilities. It even has a ssh client provided by dropbear (congrats to the author) and some filesystem tools.
Download (62.4MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
947 downloads
No New Window 0.1
No New Window forces Firefox to never open links in a new window automatically. more>>
No New Window forces Firefox to never open links in a new window automatically.
If you want to open a link in a new window, you can still do that via the context menu, but if a website author specifies that a link should open in a new window, that is ignored.
Please note that this extension is not needed anymore (and does, indeed, not install) in Firefox 1.5, as that version offers the desired behaviour as a configuration option.
<<lessIf you want to open a link in a new window, you can still do that via the context menu, but if a website author specifies that a link should open in a new window, that is ignored.
Please note that this extension is not needed anymore (and does, indeed, not install) in Firefox 1.5, as that version offers the desired behaviour as a configuration option.
Download (0.003MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
920 downloads
Blu-ray video authoring tools 20070617-2301
Blu-ray video authoring tools suite allow you to produce Blu-ray video discs. more>>
Blu-ray video authoring tools package is a free open source suite of Blu-ray (BD-R and BD-RE) authoring tools that allow you to produce Blu-ray video discs.
mkudfiso (Blu-ray authoring tool set), a utility to create ISO images containing
a pure UDF filesystem, intended primarily for Blu-ray authoring but can be used
for any purpose (including CD-R and DVD-R). This tool can be used to author individual files larger than 4GB, which is a requirement for Blu-ray and other high-definition formats.
THIS TOOL DOES NOT GENERATE ISO 9660 STRUCTURES. Use "mkisofs" if you want ISO 9660, Joliet, Rock Ridge, etc. in the structure. This is a pure UDF generator.
<<lessmkudfiso (Blu-ray authoring tool set), a utility to create ISO images containing
a pure UDF filesystem, intended primarily for Blu-ray authoring but can be used
for any purpose (including CD-R and DVD-R). This tool can be used to author individual files larger than 4GB, which is a requirement for Blu-ray and other high-definition formats.
THIS TOOL DOES NOT GENERATE ISO 9660 STRUCTURES. Use "mkisofs" if you want ISO 9660, Joliet, Rock Ridge, etc. in the structure. This is a pure UDF generator.
Download (0.097MB)
Added: 2007-06-18 License: LGPL (GNU Lesser General Public License) Price:
536 downloads

my-black-theme 1.0
my-black-theme 1.0 is yet another excellent black GTK 2 theme which is a tweaked version of FC-Fino-Dark. The author has corrected several errors in the scripts and fixed a few tab images more>> <<less
Added: 2008-09-21 License: GPL Price: FREE
10 downloads
halo_radio 0.2.6-3
halo_radio is a python library for a mp3 radio station. more>>
halo_radio is a python library for a mp3 radio station. Included is a cgi web front-end for controlling the radio stations content. also, a backend streamer for re-encoding mp3s.
The system tracks requests and kills to auto generate playlists for random song selection.
HaloRadio makes use of existing software to provide some parts of its features and functionality. For example the transport of mp3s is provided by Icecast and the backed database is provided by MySQL.
There are quite a few prerequisite applications to be installed before your streaming radio station is fully operational. While the author would like to provide installation and configuration help for all the software used in this project these issues are extensively covered by their respective maintainers.
The author suggests recent versions of all programs listed below or a nice package management system like debians apt.
halo_radio is a free software released under the GPL license.
<<lessThe system tracks requests and kills to auto generate playlists for random song selection.
HaloRadio makes use of existing software to provide some parts of its features and functionality. For example the transport of mp3s is provided by Icecast and the backed database is provided by MySQL.
There are quite a few prerequisite applications to be installed before your streaming radio station is fully operational. While the author would like to provide installation and configuration help for all the software used in this project these issues are extensively covered by their respective maintainers.
The author suggests recent versions of all programs listed below or a nice package management system like debians apt.
halo_radio is a free software released under the GPL license.
Download (1.4MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1227 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 author dinesen 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