Main > Free Download Search >

Free amazing software for linux

amazing

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 50
Amazing Media Browser 0.23

Amazing Media Browser 0.23


Amazing Media Browser automatically searches for all embed objects in a website and shows you a list of the source links. more>> <<less
Download (0.25MB)
Added: 2007-06-20 License: MPL (Mozilla Public License) Price:
1314 downloads
MayaVi 1.5

MayaVi 1.5


MayaVi is a free, cross platform, easy-to-use scientific data visualizer. more>>
MayaVi is a free, easy to use scientific data visualizer. It is written in Python and uses the amazing Visualization Toolkit (VTK) for the graphics.
It provides a GUI written using Tkinter. MayaVi is free and distributed under the conditions of the BSD license. It is also cross platform and should run on any platform where both Python and VTK are available (which is almost any *nix, Mac OSX or Windows).
Main features:
- An easy to use GUI.
- Can be imported as a Python module from other Python programs and can also be scripted from the Python interpreter.
- Provides modules to:
- Visualize computational grids.
- Visualize scalar, vector and tensor data.
- Quite a few data filters are also provided.
- Supports volume visualization of data via texture and ray cast mappers.
- Support for any VTK dataset using the VTK data format. Works for rectilinear, structured, unstructured grid data and also for polygonal data. Both the original VTK data formats and the new XML formats are supported.
- Support for PLOT3D data. Only the binary structured grid format works because of current limitations in VTKs vtkPLOT3DReader. Simple support for multi-block data is also incorporated.
- Support for EnSight data. EnSight6 and EnSightGold formats are supported. Only single parts are supported at this time.
- Multiple datasets can be used simultaneously. Multiple modules can be viewed simultaneously.
- Support for data files belonging to a time series.
- A pipeline browser with which you can browse and edit objects in the VTK pipeline. A segmented pipeline browser is used to make it easier to look at parts of the VTK pipeline.
- Support for importing a simple VRML or 3D Studio scene. Texturing in VRML is not yet supported due to limitations in VTKs vtkVRMLImporter.
- A modular design so you can add your own modules and filters.
- A Lookup Table editor to customize your lookup tables easily while visualizing data!
- An interactive data picker that lets you probe your data interactively.
- A light manipulation kit that lets you modify the lighting of the visualization.
- The visualization (or a part of it) can be saved and reused in the future.
- Export the visualized scene to a Post Script file, PPM/BMP/TIFF/JPEG/PNG image, Open Inventor, Geomview OOGL, VRML files, Wavefront OBJ or RenderMan RIB files. It is also possible to save the scene to a vector graphic via GL2PS. This is only available if VTK is built with GL2PS support.
- And a lot more! MayaVi can be easily modified to do things differently.
Enhancements:
- This release added a new LUT editor, support for user defined sources, a vorticity filter, support for the VolumeProMapper, and support for VTK-CVS and VTK-5.x.
- A new utility script for searching the VTK documentation using a GUI was included.
- A severe bug in opening data files belonging to a time-series under Win32 was fixed.
- There were also other miscellaneous bugfixes and enhancements.
<<less
Download (11.3MB)
Added: 2005-09-13 License: BSD License Price:
1507 downloads
PodMail 1.0

PodMail 1.0


PodMail brings together open-source telephony and Podcasting to create a new, amazing way of accessing voicemail and podcasting. more>>
PodMail brings together telephony and podcasting by integrating with Asterisk to provide a secure podcast of your voicemail.

PodMail integrates with Asterisk to provide a secure podcast of your voicemail. Use PodMail to subscribe to your own voicemail box. Each time you dock your iPod, your new voicemails will sync right along. Listen to your voicemail at your convenience and without using cell minutes.

PodMail also allows for a brand new type of PodCasting. Unchain Podcasting from the computer! Configure PodMail as public and you have a ready-to-run PodCast. Updating your Podcast is as easy as phone call. Moblogging has never been so easy or flexible.

PodMail is flexible; configurable to integrate with Asterisk::LDAP or use regular Asterisk flat files to provide a Podcast requiring authentication. Safe, secure voicemail right to your favourite Podcasting software.

Use PodMail to subscribe to your own voicemail box. Each time you sync your iPod your new voicemails go right along. Undock and go! Listen to your voicemail at your convenience and without using cell minutes.

PodMail also allows for a brand new type of Podcasting. Configure PodMail without a login and you have a ready-to-run Podcast without needing a computer. Produce your Podcast from anywhere in the world... all you need is a phone!
<<less
Download (0.012MB)
Added: 2006-01-20 License: GPL (GNU General Public License) Price:
1373 downloads
AI::FuzzyInference 0.05

AI::FuzzyInference 0.05


AI::FuzzyInference is a Perl module to implement a Fuzzy Inference System. more>>
AI::FuzzyInference is a Perl module to implement a Fuzzy Inference System.

SYNOPSYS

use AI::FuzzyInference;

my $s = new AI::FuzzyInference;

$s->inVar(service, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);

$s->inVar(food, 0, 10,
poor => [0, 0,
2, 1,
4, 0],
good => [2, 0,
4, 1,
6, 0],
excellent => [4, 0,
6, 1,
8, 0],
amazing => [6, 0,
8, 1,
10, 0],
);

$s->outVar(tip, 5, 30,
poor => [5, 0,
10, 1,
15, 0],
good => [10, 0,
15, 1,
20, 0],
excellent => [15, 0,
20, 1,
25, 0],
amazing => [20, 0,
25, 1,
30, 0],
);

$s->addRule(
service=poor & food=poor => tip=poor,
service=good & food=poor => tip=poor,
service=excellent & food=poor => tip=good,
service=amazing & food=poor => tip=good,

service=poor & food=good => tip=poor,
service=good & food=good => tip=good,
service=excellent & food=good => tip=good,
service=amazing & food=good => tip=excellent,

service=poor & food=excellent => tip=good,
service=good & food=excellent => tip=excellent,
service=excellent & food=excellent => tip=excellent,
service=amazing & food=excellent => tip=amazing,

service=poor & food=amazing => tip=good,
service=good & food=amazing => tip=excellent,
service=excellent & food=amazing => tip=amazing,
service=amazing & food=amazing => tip=amazing,

);

$s->compute(service => 2,
food => 7);

<<less
Download (0.010MB)
Added: 2007-07-14 License: Perl Artistic License Price:
832 downloads
spamhammerd 1.0

spamhammerd 1.0


spamhammerd is a simple perl script to help combat spammers. more>>
spamhammerd is a simple perl script to help combat spammers. spammers are generally sloppy, and tend to blast every address they know of on your mail server at the same time, even if they dont exist. spamhammer watches your logfile (currently works only with postfix) and dynamically creates an accessfile. connections are tracked, and every time a client attempts to send to an unknown user, the counter is incremented. when the threshold is crossed, the ip is blocked for a configurable length of time!

i realize that this may sound way too simple to be effective, but in working with a large mailfarm, the worst spammers tend to be "throwaway" dialup or dsl users who can send an amazing amount of garbage in a short period of time. our block list on any given smtp server usually hovers around 5000 lines.

To use it, simply write:
check_client_access hash:/etc/postfix/generated/spammers
<<less
Download (0.004MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1204 downloads
SmartSplitter 1.3

SmartSplitter 1.3


SmartSplitter is a cross-platform open-source control splitter class for REALbasic 5 or greater. more>>
SmartSplitter is a cross-platform open-source control splitter class for REALbasic 5 or greater. The SmartSplitter control allows the user to resize other controls contained in the window as desired.
SmartSplitter can automatically attach nearby controls thus achieving full functionality with NO coding and NO binding! SmartSplitter is developed for and tested on Linux, Mac OS 9, Mac OS X, and Windows 98/2000/XP.
SmartSplitter began like so many other classes do - as a simple crappy class in an early crappy project. But as I used this divider thingy in more of my projects, I gradually added in smarts until so great the intellect of this amazing class, I felt obliged to spend the extra effort to simplify it, clean it up, and make it more accessible.
The SmartSplitter class is provided free for all to use. However, I do maintain ownership of SmartSplitter. You are free to redistribute the source code. If you distribute it as a standalone class, please include this documentation with it. If you distribute source code containing SmartSplitter, you do not need to include this documentation. There is no requirement to credit me in your program for using SmartSplitter.
Enhancements:
- Fixed control smarts to handle embeded control resize change in REALbasic 2005
- Added logic to handle invisible attached controls
- (Use new subroutine setAttachedControlNormallyVisible to alert SmartSplitter if an attached control changes visibility)
- Using DisableLiveDrag looks MUCH better
- Fixed a Win32 "expanding" handle refresh problem
<<less
Download (0.20MB)
Added: 2006-05-11 License: Freeware Price:
1262 downloads
autopano-sift 2.3

autopano-sift 2.3


A helper utility for automated panorama image generation. more>>
Panorama images are wide-angle images that amaze people: you often feel
being inside the scene when watching a good panorama image.
Creating such images is easy and everybody with a digital camera and a bit of patience can do it. Autopano-SIFT is there to make the creation of panorama images more fun.
Main features:
- SIFT - Scalable Invariant Feature Transform implementation to extract control points from images
- automatic pre-aligning of images
- sub-pixel coordinate precision for control point coordinates
- Linux, other Unixs and Windows supported
GUIs:
- Gtk# GUI
- Windows native GUI
- Command line utilities
- 100% managed C# code, developed with Mono
<<less
Download (0.66MB)
Added: 2005-05-19 License: GPL (GNU General Public License) Price:
1621 downloads
ADODB 4.95a

ADODB 4.95a


ADOdb is a PHP database abstraction layer. more>>
ADOdb is a database abstraction library for PHP.
The PHP version currently supports an amazing number of databases, thanks to the wonderful ADOdb community: MySQL, PostgreSQL, Interbase, Firebird, Informix, Oracle, MS SQL, Foxpro, Access, ADO, Sybase, FrontBase, DB2, SAP DB, SQLite, Netezza, LDAP, and generic ODBC, ODBTP. The Sybase, Informix, FrontBase and PostgreSQL, Netezza, LDAP, ODBTP drivers are community contributions.
Many popular web applications such as ACID, PostNuke, Xaraya, phpWiki, Mambo, PHP GACL, TikiWiki, eGroupWare and phpLens App Server are using ADOdb as their database abstraction layer.
Main features:
- Designed for speed. It is probably the fastest open source database abstraction library available for PHP. See benchmarks.
- Provides extensive portability support such as date and type-handling and portable schema creation. See portable sql tips
- Support many enterprise features such as database backed sessions (with session expiry notification), SQL code generation, pivot tables, SELECT LIMIT emulation for all databases, performance monitoring.
- Easy to learn, especially if you have Windows programming experience, as it uses many ADO conventions.
- Extensive QA, every release is unit-tested on Access, MySQL, PostgreSQL, MS SQL, Oracle 9.
- Mature, continiously developed since August 2000. Has a large community of users.
- Very reasonable licensing terms (BSD). This means that you can incorporate (and even compile) it into your software applications royalty-free without asking the authors permission, provided you include license.txt in your release. Also dual-licensed (Lesser GPL).
<<less
Download (0.40MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
889 downloads
RabbIT 3.10

RabbIT 3.10


RabbIT is a mutating, caching webproxy to speed up surfing over slow links. more>>
RabbIT is a proxy for HTTP, it is HTTP/1.1 compliant (testing being done with Co-Advisors test, http://coad.measurement-factory.com/) and should hopefully support the latest HTTP/x.x in the future. RabbITs main goal is to speed up surfing over slow links by removing unnecessary parts (like background images) while still showing the page mostly like it is. For example, we try not to ruin the page layout completely when we remove unwanted advertising banners. The page may sometimes even look better after filtering as you get rid of pointless animated gif images.
Since filtering the pages is a "heavy" process, RabbIT caches the pages it filters but still tries to respect cache control headers and the old style "pragma: no-cache". RabbIT also accepts request for nonfiltered pages by prepending "noproxy" to the adress (like http://noproxy.www.altavista.com/). Optionally, a link to the unfiltered page can be inserted at the top of each page automatically.
RabbIT is developed and tested under Solaris and Linux. Since the whole package is written in java, the basic proxy should run on any plattform that supports java. Image processing is done by an external program and the recomended program is convert (found in ImageMagick). RabbIT can of course be run without image processing enabled, but then you lose a lot of the time savings it gives.
RabbIT works best if it is run on a computer with a fast link (typically your ISP). Since every large image is compressed before it is sent from the ISP to you, surfing becomes much faster at the price of some decrease in image quality. If some parts of the page are already cached by the proxy, the speedup will often be quite amazing. For 1275 random images only 22% (2974108 bytes out of a total of 13402112) were sent to the client. That is 17 minutes instead of 75 using 28.8 modem.
RabbIT works by modifying the pages you visit so that your browser never sees the advertising images, it only sees one fixed image tag (that image is cached in the browser the first time it is downloaded, so sequential requests for it is made from the browsers cache, giving a nice speedup). For images RabbIT fetches the image and run it through a processor giving a low quality jpeg instead of the animated gif-image. This image is very much smaller and download of it should be quick even over a slow link (modem).
Main features:
- Compress text pages to gzip streams. This reduces size by up to 75%
- Compress images to 10% jpeg. This reduces size by up to 95%
- Remove advertising
- Remove background images
- Cache filtered pages and images
- Uses keepalive if possible
- Easy and powerful configuration
- Multi threaded solution written in java
- Modular and easily extended
- Complete HTTP/1.1 compliance
Enhancements:
- This release tries to make parsing of non-HTML break down more nicely.
- It fixes a problem with broken image downloads for some users.
<<less
Download (0.70MB)
Added: 2007-07-10 License: BSD License Price:
843 downloads
Makefile::Parser 0.11

Makefile::Parser 0.11


Makefile::Parser is a Simple Parser for Makefiles. more>>
Makefile::Parser is a Simple Parser for Makefiles.

SYNOPSIS

use Makefile::Parser;

$parser = Makefile::Parser->new;

# Equivalent to ->parse(Makefile);
$parser->parse or
die Makefile::Parser->error;

# Get last value assigned to the specified variable CC:
print $parser->var(CC);

# Get all the variable names defined in the Makefile:
@vars = $parser->vars;
print join( , sort @vars);

@roots = $parser->roots; # Get all the "root targets"
print $roots[0]->name;

@tars = $parser->targets; # Get all the targets
$tar = join("n", $tars[0]->commands);

# Get the default target, say, the first target defined in Makefile:
$tar = $parser->target;

$tar = $parser->target(install);
# Get the name of the target, say, install here:
print $tar->name;

# Get the dependencies for the target install:
@depends = $tar->depends;

# Access the shell command used to build the current target.
@cmds = $tar->commands;

# Parse another file using the same Parser object:
$parser->parse(Makefile.old) or
die Makefile::Parser->error;

# Get the target who is specified by variable EXE_FILE
$tar = $parser->target($parser->var(EXE_FILE));

This is a parser for Makefiles. At this very early stage, the parser only supports a limited set of features, so it may not recognize some advanced features provided by certain make tools like GNU make. Its initial purpose is to provide basic support for another module named Makefile::GraphViz, which is aimed to render the building process specified by a Makefile using the amazing GraphViz library. The Make module is not satisfactory for this purpose, so I decided to build one of my own.

<<less
Download (0.018MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1098 downloads
Terra Letras (lyrics plugin) 0.7

Terra Letras (lyrics plugin) 0.7


Terra Letras (lyrics plugin) is an amaroKs plugin that fetch lyrics from the amazing letras.mus.brs database. more>>
This is my first amaroKs plugin that fetch lyrics from the amazing letras.mus.brs database. Its quite simple and can (no doubt) be improved.

Terra Letras (lyrics plugin) also store displayed lyrics in your homedir so that you can sing along even offline.

To stop fetching lyrics only in brazilian portuguese you have to change the default value of the "locale" variable in the very begining of the shell script.

Its not possible to configure it using a GUI, for now.

<<less
Download (0.009MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
951 downloads
Excalibur: Morganas Revenge 3.0

Excalibur: Morganas Revenge 3.0


Excalibur: Morganas Revenge is a first-person action adventure game using the Aleph One (Marathon) engine. more>>
Excalibur: Morganas Revenge (EMR) is a unique scenario based upon the Aleph One (Marathon) engine. It is a first-person action adventure game, featuring an epic and in-depth story line. As a Federation Marine resting after your last mission, you start aboard the exploration class Starship Kronos where you learn that your real mission has yet to begin. You are re-acquainted with the AI Merlin, who introduces you to Kronos time traveling technology, and reveals your new mission: to save mankind from the clutches of Morgana and her minions. Through untamed raptor-infested jungles, castle arenas, and war-torn streets of the future, you will wield weapons from all time periods - including the Sword of Power, Excalibur - in an effort to thwart the diabolical plot that unfolds. The EMR adventure, spread across 42 solo levels, weaves a tale of truth and honor, knighthood and bravery, and darkness and treachery. EMR also delivers 27 adrenaline pumped network levels. EMR immerses you in an amazing new world, creating an addictive, fun and unique gaming experience.

For those that played EMR under the old Marathon Infinity engine, EMR 3.0 brings exciting new maps, new high resolution textures and landscapes, a completely new set of weapons, new monsters and friends, new scenery, new 16-bit sounds, original music, and a carefully woven original story line that transcends time. Using the Aleph One engine, EMR now sports loads of new special features using Aleph Ones MML and Lua scripting languages. Please note that the AlephOne engine is old technology improved. Architecture is still simulated 3D, so there are no ramps, bridges, and balconies, nor horizontal doors. The sprites in EMR are made up of 2D images posed in different views, not 3D models. Do not expect the latest state-of-the-art graphics engine, but you can expect an intriguing storyline, creative map architectures, engaging graphics, original spellbinding music, and mood-setting sound effects.

Whats New in This Release:


  • Levels with fog and mist
  • Persistent effects such as poison, earthquakes, fire storm spell, and timed grenades
  • Original MP3 music
  • 12 unique weapons, including a new Dragon Flamer and T9000 Railgun
  • New spells for your wand, including fire storm, teleportation, and raise the
    dead
  • Beautifully rendered OpenGL textures and landscapes
  • New graphics for Morgana, the Trex, raven, and Jurassic bug
  • A huge variety of new hi-res scenery items
  • New holodeck programs, including driving a Flintstone mobile through Bedrock!
  • Blood Gulch style net map with 8 simulated net players and a huge battlefield
  • A basketball court netmap where grenades in a basket win points for your team
  • A beautiful new future level that lets you drive a Hoverbike!
  • A total of 5 brand new solo maps and 4 new net maps
  • Lots of updated maps with new areas, new tasks, new features, and new secrets
  • New powerups, such as apples, bananas, health kits, emergency kits, and finally
    a use for all those magic scrolls!
  • And much, much, more...
<<less
Download (227.1MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
877 downloads
Balazar Brothers 0.3.1

Balazar Brothers 0.3.1


Balazar Brother is an amazing libre (GPLed) 3D puzzle game, realized by Jiba and Nekeme Prod. more>>
Balazar Brother is an amazing libre 3D puzzle game, realized by Jiba and Nekeme Prod.

A 3D platform universe, two characters and two keys, one for each character, and at the end of the road two princesses to free. Just press a key and the corresponding character will jump on the next platform in front of him.

Simple ? Yes ! Easy ? Not sure ! Because nothing will be spared to you : moving platforms, dangerous monsters, vicious traps... will you manage to find your way trough mad levels and free the princesses ? You can count only on your agility, your guile... and the unforgettable acrobatics of the Balazar Brothers !

Aspirin is not included ! (another game coded by pharmacists to sell their medicine, would say the bad tongues...

Balazar Brothers developpers and users can be found on the #nekeme and #soya IRC channel of Freenode.

<<less
Download (7.0MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
hasciicam 1.0

hasciicam 1.0


hasciicam is a webcam for live ASCII video. more>>
HasciiCam makes it possible to have live ascii video on the web. hasciicam captures video from a tv card and renders it into ascii letters, formatting the output into an html page with a refresh tag, or in a live ascii window, or in a simple text file.
It gives the possiblity to anybody that has a bttv card, a unix box and a cheap modem line to show live (h)ascii video can be viewed without any need for extra applications, plugins, java etc.
Main features:
- low bandwidth live cam "streaming"
- command line settings
- customizable refresh rate
- amazing live mode
- gives you the coolest .plan you ever had
- draws nifty symbols on your face
Enhancements:
- More Webcams are supported (grabbing YUV420P).
<<less
Download (0.07MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1188 downloads
openPlaG 1.01

openPlaG 1.01


openPlaG is an online function graph plotter, written in PHP. more>>
openPlaG is an online function graph plotter, written in PHP. This application can compute and plot a very high amount of functions, including many probability functions and is fairly good configurable.
Instructions:
To run the program, youll need access to a web server with PHP 4 or 5 and GDlib running. I dont know with which PHP4 versions it works, but at least with 4.4.1 it does. For lower versions just try it out.
The downloaded program is a zipped tarball, which contains these files:
- function.php the iframe content where the graph (png-image) is shown.
- gnu_gpl.txt GNU GENERAL PUBLIC LICENSE Version 2. Read it, dont change it.
- graph.css the used style sheet. This is very minimalistic.
- graph.php calculates the graph and draws the image.
- init.php security check and formulae (functions) definitions.
- instructions.html explains the use of the plotter.
- openPlaG.html start here when getting into the source code. This is the start page with the two iframes for the graph and the single value. You may want to change its name to index.html or something like that.
- single.php calculates a formula with a single value, not the whole graph. The result is shown in the second iframe.
Upload the files on your server. The program should work without problems, if server and PHP are configured properly. Make your changes as you want to, but dont forget to tell me if you make something really amazing or useful.
<<less
Download (0.024MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4