Main > Free Download Search >

Free new software for linux

new

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7516
SuperTuxKart 0.3.0

SuperTuxKart 0.3.0


SuperTuxKart is an enhanced version of TuxKart, a kart racing game. more>>
SuperTuxKart is an enhanced version of TuxKart, a kart racing game, originaly done by Steve Baker, featuring Tux and a bunch of his friends.
Main features:
- new characters
- new tracks
- a completly new userinterface
- some smaller graphical improvemnts (skidmarks, smoke, animated wheels, etc.)
- whole bunch of new bugs, in its current state its not really playable
<<less
Download (10MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
1170 downloads
Class::Classgen::New 3.03

Class::Classgen::New 3.03


Class::Classgen::New is a Perl module that creates the new() method for classes generated by classgen. more>>
Class::Classgen::New is a Perl module that creates the new() method for classes generated by classgen.

SYNOPSIS

Used within classgen.

The main purpose of New.pm is to write the new() method for a class generated by classgen. It provides code to derive local instance variables with my for all specified instance variables. It provides code to store them within an anonymous hash (only way in the current version). Finally, this hash is blessed into the desired class.

Methods generated by New.pm

In the blessing section of the generated new() method:
inherit_from(): copies the entries of the blessed {} from the base class into the blessed {} of the derived class.

ENVIRONMENT

Nothing special. Just use Perl5.

DIAGNOSTICS

There is no special diagnostics. New.pm is used within classgen which is called with the -w option.

<<less
Download (0.024MB)
Added: 2007-07-10 License: Perl Artistic License Price:
839 downloads
amavisd-new 2.5.2

amavisd-new 2.5.2


amavisd-new is a high-performance and reliable interface between MTAs and one or more content checkers, including virus scanners more>>
amavisd-new is a high-performance and reliable interface between mailer (MTA) and one or more content checkers: virus scanners, and/or Mail::SpamAssassin Perl module. amavisd-new is written in Perl, ensuring high portability, reliability and maintainability. It talks to MTA via (E)SMTP or LMTP protocols, or by using helper programs. No timing gaps exist in the design, which could cause a mail loss.
It is normally positioned at or near a central mailer, not necessarily where users mailboxes and final delivery takes place. If looking for a per-user and low-message-rate solution to be placed at the final stage of mail delivery (e.g. called from procmail or in place of a local delivery agent), there may be other solutions more appropriate.
When calling of Mail::SpamAssassin (SA) is enabled, it calls SA only once per message regardless of the number of recipients, and tries very hard to correctly honour per-recipient preferences, such as pass/reject, check/nocheck, spam levels, and inserting spam-related mail header fields.
amavisd-new benefits from the use of Perl module Net::Server, which offers a fast pre-forked multichild process control. amavisd-new provides rfc2821-compliant SMTP server, rfc2033-compliant LMTP server, SMTP client, and generates rfc3462/rfc3464-compliant (ex rfc1892/rfc1894) (non-)delivery status notifications.
This makes it suitable for mail anti-virus and/or anti-spam checking on a busy mail gateways that care for reliability and standards compliance.
amavisd-new grew out of amavisd(-snapshot) (which in turn is a daemonized version of amavis-perl), but through three years of development turned into a separate product, hardly resembling its origin. The code is several times the size of its predecessor, yet faster in throughput, richer in features, compliant to standards, includes optional support for spam detection, and makes virus scanning optional and easier to adjust/extend. Compatibility with helper programs from amavisd(-snapshot) is retained.
All modifications since the original amavisd done by Mark Martinec, with contribution of ideas, patches and reports from the amavis-user mailing list community and individuals.
Enhancements:
- Logging to SQL in a Milter setup was fixed.
- Message are saved only once when an archival quarantine is co-situated with other quarantines.
- Statistics counters are now available for cases where a pen pals feature has prevented a mail message from being blocked, allowing assessing usefulness of pen pals and facilitating adjusting of SA rules to minimize false positives.
- Incorporating additional configuration files has been made easier by a new routine include_config_files.
- A workaround for a crashing altermime has been provided.
- Two AV entries were updated.
- Documentation has been updated.
<<less
Download (0.80MB)
Added: 2007-06-28 License: GPL (GNU General Public License) Price:
849 downloads
CGI::Kwiki::New 0.18

CGI::Kwiki::New 0.18


CGI::Kwiki::New is the default new wiki generator for CGI::Kwiki. more>>
CGI::Kwiki::New is the default new wiki generator for CGI::Kwiki.

A Wiki is a website that allows its users to add pages, and edit any existing pages. It is one of the most popular forms of web collaboration. If you are new to wiki, visit http://c2.com/cgi/wiki?WelcomeVisitors which is possibly the oldest wiki, and has lots of information about how wikis work.

There are dozens of wiki implementations in the world, and many of those are written in Perl. As is common with many Perl hacks, they are rarely modular, and almost never released on CPAN. One major exception is CGI::Wiki. This is a wiki framework that is extensible and is actively maintained.

Another exception is this module, CGI::Kwiki. CGI::Kwiki focuses on simplicity and extensibility. You can create a new kwiki website with a single command. The module has no prerequisite modules, except the ones that ship with Perl. It doesnt require a database backend, although it could be made to use one. The default kwiki behaviour is fairly full featured, and includes support for html tables. Any behaviour of the kwiki can be customized, without much trouble.

SPECIAL FEATURES

CGI::Kwiki will come with some fancy addons not found in most wiki implementations. This comes with the promise that they will not interfere with the sheer simplicity of the default kwiki interface.

Check http://http://www.kwiki.org/index.cgi?KwikiFeatures from time to time to see what hot features have been added.

Kwiki Slide Show

You can create an entire PowerPoint-like slideshow, in a single kwiki page. There is Javascript magic for advancing slides, etc. See the sample page KwikiSlideShow.

EXTENDING

CGI::Kwiki is completely Object Oriented. You can easily override every last behaviour by subclassing one of its class modules and overriding one or more methods. This is generally accomplished in just a few lines of Perl.

The best way to describe this is with an example. Start with the config file. The default config file is called "config.yaml". It contains a set of lines like this:

config_class: CGI::Kwiki::Config
driver_class: CGI::Kwiki::Driver
cgi_class: CGI::Kwiki::CGI
cookie_class: CGI::Kwiki::Cookie
database_class: CGI::Kwiki::Database
metadata_class: CGI::Kwiki::Metadata
display_class: CGI::Kwiki::Display
edit_class: CGI::Kwiki::Edit
formatter_class: CGI::Kwiki::Formatter
template_class: CGI::Kwiki::Template
search_class: CGI::Kwiki::Search
changes_class: CGI::Kwiki::Changes
prefs_class: CGI::Kwiki::Prefs
pages_class: CGI::Kwiki::Pages
slides_class: CGI::Kwiki::Slides
javascript_class: CGI::Kwiki::Javascript
style_class: CGI::Kwiki::Style
scripts_class: CGI::Kwiki::Scripts

This is a list of all the classes that make up the kwiki. You can change anyone of them to be a class of your own.

Lets say that you wanted to change the BOLD format indicator from "*bold*" to bold. You just need to override the "bold()" method of the Formatter class. Start by changing "config.yaml".

formatter_class: MyKwikiFormatter

Then write a module called "MyKwikiFormatter.pm". You can put this module right in your kwiki installation directory if you want. The module might look like this:

package MyKwikiFormatter;
use base CGI::Kwiki::Formatter;

sub bold {
my ($self, $text) = @_;
$text =~ s!(.*?)!$1!g;
return $text;
}

1;

Not too hard, eh? You can change all aspects of CGI::Kwiki like this, from the database storage to the search engine, to the main driver code. If you come up with a set of classes that you want to share with the world, just package them up as a distribution and put them on CPAN.

By the way, you can even change the configuration file format from the YAML default. If you wanted to use say, XML, just call the file "config.xml" and write a module called "CGI::Kwiki::Config_xml".

<<less
Download (0.075MB)
Added: 2007-07-10 License: Perl Artistic License Price:
836 downloads
Mozilla New Mail Icon 1.2.2

Mozilla New Mail Icon 1.2.2


Mozilla New Mail Icon is an extension which displays an icon in the system tray when new mail arrives. more>>
Mozilla New Mail Icon is an extension which displays an icon in the system tray when new mail arrives in your Mozilla or Mozilla Thunderbird .

Mozilla New Mail Icon supports the standard (FreeDesktop.org) system tray, as used by GNOME, KDE and IceWM.

<<less
Download (0.029MB)
Added: 2006-04-25 License: GPL (GNU General Public License) Price:
1283 downloads
No New Window 0.1

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.

<<less
Download (0.003MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
920 downloads
Install New Theme 0.7

Install New Theme 0.7


Install New Theme is an extension that provides a button in the Theme Manager for installing themes from disk. more>>
Install New Theme is an extension that provides a button in the Theme Manager for installing themes from disk.

This extension provides a button inside the Firefox Theme Manager for installing new theme files from disk, and additionally adds a menu entry to the Theme Managers right-click context menu entry. The latest version includes the es-ES and it-IT locales.

To use the extension, simply open the Theme Manager, press the Install button and use the file picker to navigate to the themes .jar file. Once youve located it, select it and open it to get the theme installation dialog.

Additionally, you can use the Ctrl+S hotkey within the Theme Manager to invoke the filepicker.

<<less
Download (0.011MB)
Added: 2007-04-28 License: Other/Proprietary License Price:
919 downloads
New Adventure Shell 1.85.3

New Adventure Shell 1.85.3


New Adventure Shell is an adventure shell script. more>>
New Adventure Shell project is an adventure shell script.
The New Adventure Shell is a script that turns your shell into a text adventure game.
It ought to pose as little restrictions on normal shell use as possible, and allows as many adventure commands as possible.
The script is intended to pose as little restrictions on the normal use of the shell as possible, while allowing as many adventure commands as possible, and is written for maximum portability to other Unices.
No libraries or modules are needed to run the script; start it with:
# . nadvsh
Enhancements:
- Added stow away, wear and wield commands
- Added emote, cal and put commands
- Added unique colors for teleporter objects
- Added npc descriptions
- Implemented faint from exhaustion
- Implemented money objects (take, drop, examine and sell)
- Implemented displaying of chargecount in descriptions
- Fixed handling of cardinal numbers in item names
- Fixed problematic bugs in d_buy concerning armor and clothing
- Fixed Usage: lines
- Fixed singular/plural currency form
- Fixed several small bugs
- Code cleanup and optimizations
- Moved manual page to section 6
<<less
Download (0.069MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1048 downloads
New Tab Button on Tab Bar 2.0

New Tab Button on Tab Bar 2.0


New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar. more>>
New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar.

This extension adds a new tab button to the tab bar. You do not need an extension to add a new tab button to the *toolbar*, but if you want a new tab button on the *tab bar* youll need this extension.

This is a simple, single-feature extension, -- there are no options to configure!

Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.

<<less
Download (0.009MB)
Added: 2007-04-26 License: MPL (Mozilla Public License) Price:
916 downloads
New Driver and Tools 1.3 Beta

New Driver and Tools 1.3 Beta


New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools. more>>
New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools.

By clicking on the globe youll get on the homepage of the driver/tool.

(The wine homepage was not reachable at the time I took the screen)

Im looking forward for your feedback.

<<less
Download (0.029MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
942 downloads
Emnu, new menu for KDE(proof of concept) 0.1

Emnu, new menu for KDE(proof of concept) 0.1


Emnu, new menu for KDE(proof of concept) is a proof of concept I finished at aKademy. more>>
Emnu, new menu for KDE(proof of concept) is a proof of concept I finished at aKademy.

It is a new menu idea.

dnd any files to the startmenu.
dnd any desktop files(shortcut) to the startmenu.

drop quicklauncher and panel buttons.

.....

This is a idea, some codes is toke from baghira sidebar and xkmenu.

Dirty enough, just hack on kbutton.

<<less
Download (0.067MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
Create New Template Service Menu 0.2.1

Create New Template Service Menu 0.2.1


Create New Template Service Menu is a context menu item for KDE and Konqueror that automates adding Create New... menu entries. more>>
Create New Template Service Menu is a context menu item for KDE and Konqueror that automates adding Create New... menu entries from existing files. It adds a "Create Template" item to the Actions submenu of the context menu. It consists of a service menu .desktop file and a shell script.
KDE Create New Template Service Menu
This service menu removes the hassle of hand-coding Create New... menu entries. It is accessed by right-clicking regular file icons on the desktop or in Konqueror, pointing to Actions, and selecting Create Template.
It consists of a service menu .desktop file and a Bash shell script. The Create Template service menu runs a shell script that brings up two dialogs--one for choosing an icon to associate with the Create New... menu entry, and the other for entering the menu item text itself. It uses this information to write a Create New... menu item .desktop file. The shell script bases the name of the .desktop file on the name of the document file clicked on from the desktop and places a copy of the file in the .sources subdirectory of ~/.kde/share/templates.
The service menu should be placed in ~/.kde/share/apps/konqueror/servicemenus and the shell script in ~/bin.
I suggest that users first install the Simple Service Menu Installer available from http://www.kde-apps.org/content/download.php?content=23760&id=1. That service menu provides the same service for installable service menus that mine does for document templates and will greatly simplify the process of installing this service menu. After downloading that service menu just right-click on it, point to Actions, point to Install Service, and click one of the options available on the submenu. Then to install my service menu, just follow the same proceedure and place the shell script in your personal ~/bin directory.
From that point on you will have a nice, simple method of adding both installable service menus and templates to the KDE context menu.
This project is released under the terms of the GNU GPL v.2.0.
Enhancements:
- Changed menu icons to more appropriate ones.
<<less
Download (0.002MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
965 downloads
nEW uNIFIED mEMORY aCCESS 1.0

nEW uNIFIED mEMORY aCCESS 1.0


nEW uNIFIED mEMORY aCCESS is a file recovery tool for the ext3/ext2 file system. more>>
nEW uNIFIED mEMORY aCCESS (or numa for short) is a file recovery tool for the ext3/ext2 file system. It recovers deleted GIF files of less than 48kb.
Enhancements:
- This release also recovers MP3, PDF, PNG, HTML, and Java files.
<<less
Download (0.030MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
802 downloads
Kiwiana for Linux 1.0

Kiwiana for Linux 1.0


A well drawn small collection of cool New Zealand-themed icons more>> A well drawn small collection of cool New Zealand-themed icons - Make sure to check out the kiwis!<<less
Download (125KB)
Added: 2009-04-12 License: Freeware Price:
194 downloads
Trinacria Linux 2.0

Trinacria Linux 2.0


Trinacria Linux is a new Italian distribution based on KNOPPIX. more>>
Trinacria Linux is a new Italian distribution based on KNOPPIX.

Trinacria Linuxs primary target markets are the Italian office users and Linux beginners.
<<less
Download (683.9MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1114 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5