Main > Free Download Search >

Free to disappear software for linux

to disappear

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 114
FFT Spectra 1.3

FFT Spectra 1.3


FFT Spectra is a tool for the visualization of frequency spectra of an audio signal. more>>
FFT Spectra is a tool for the visualization of frequency spectra of an audio signal.

Among other things, it can be used to verify whether you are able to sing and whistle in tune or to tune your guitar.

Examples:

Didgeridoo

Didgeridoo is actually the reason, why i started writing this software. The theory of physics explains that when you blow into a cylindrical tube (such as didgeridoo, but PVC pipe works as well) and vibrate your lips, standing waves develop inside the tube.

At that end of the tube, where the air leaves, there is nearly atmospheric pressure and the standing wave has a node there. At the other end, where one blows the air in, the changes in pressure are maximal and the standing wave must have an antinode here.

The situation is depicted on the picture on the right: The horizontal axis represents a position along the tube and the vertical axis represents a maximal pressure variation from the constant atmospheric pressure. The black vertical line represents a zero variation. The left black point is the mouth-side enpoint of the tube. The pressure variation are maximal here. The black point on the right is the open side od the tube - the pressure is constant here.

This node/antinode restriction permits only standing waves with appropriate wavelength (e.g. frequency) to be developed. Other frequencies are forbidden. So, the red curve is a minimal (fundamental) frequency, which is present in the didgeridoo sound. (Corresponds to 70Hz on the picture bellow).

If we squeezed the red curve twice, i.e. made the frequency twice as high, on both end-points there would be an antinode and the node/antinode constrain would not be fulfilled. Really, we see that the peak at 140Hz bellow almost disappears. If we squeeze the curve a little bit more to obtain the green curve, the boundary condition is again met and the peak at 210Hz is clearly visible bellow. And so on.

<<less
Download (0.097MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1168 downloads
Send to Coppermine 1.0

Send to Coppermine 1.0


Send to Coppermine is a service menu for send a jpeg/gif/png file to a Coppermine gallery install. more>>
Send to Coppermine is a service menu for send a jpeg/gif/png file to a Coppermine gallery install.

The add-on has been tested on Fedora core 2 and 3 (should work with FC4)

PNG and GIF support depends on your coppermine settings.
You can add keywords and description for the image while uploading.

This add-on requires the Coppermine API which we have already released.

The attached tarball contains a copy of API and two other files needed.

Installation:

1. Untar the attached tarball.
2. Copy the api folder to your coppermines root directory.
3. Copy kdesh to your home directory.
4. Copy Send2Coppermine.desktop to your/home/.kde/share/apps/konqueror/servicemenus (create servicemenus folder if not already there)
5. Now open kdesh in your favourite editor and modify the values of aid, username, password and URL to your coppermine installation.

Currently, the album id where photo is uploaded needs to be hardcoded in this file. The future version may allow choose album for each picture.
<<less
Download (0.012MB)
Added: 2006-01-04 License: GPL (GNU General Public License) Price:
1390 downloads
IRC to MSN gateway 0.1

IRC to MSN gateway 0.1


This is the IRC gateway for Microsoft(tm) Messenger. more>>
This is the IRC gateway for Microsoft(tm) Messenger.

You probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.

This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).

Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.

If this program doesnt run try to install corectly all required perl modules yourself.

The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.

When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.

<<less
Download (0.009MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
RIR to DNS converter 0.1

RIR to DNS converter 0.1


RIR to DNS converter is a tool to convert Regional Internet Registry data to a DNS country lookup zone. more>>
RIR to DNS converter is a tool to convert Regional Internet Registry data to a DNS country lookup zone. You can use it to build your own DNS zone for looking up country codes from IP addresses.

It uses data directly from RIPE, ARIN, APNIC, LACNIC, and AFRINIC. The data can be updated on a schedule of your choosing.

The input data comes from:

ftp://ftp.afrinic.net/pub/stats/afrinic/delegated-afrinic-latest
ftp://ftp.apnic.net/pub/stats/apnic/delegated-apnic-latest
ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest
ftp://ftp.ripe.net/pub/stats/ripencc/delegated-ripencc-latest
ftp://ftp.lacnic.net/pub/stats/lacnic/delegated-lacnic-latest

The input data format is described in:

http://www.apnic.net/db/rir-stats-format.html

The output is a BIND 9 zone file that can be used to look up country codes
in a similar fashion to in-addr.arpa. For example, to find out what country
203.30.47.58 is:

host 58.47.30.203.rir.example.com
58.47.30.203.rir.example.com has address 127.0.65.86

where 65 and 85 are ASCII for A and U, which means 203.30.47.58 is
in Australia (AU).

HOW TO USE IT

Just feed it the above delegated- -latest files into stdin and it will
spit out the zone file to stdout. The zone file will only have the IP addresses,
so you could $INCLUDE it into a zone file that contains NS records, SOA, $ORIGIN,
etc.

WHY USE IT

You dont need the resolution of MaxMinds GeoIP database, but you do want
something that is free and you want it kept up to date on a schedule that
you decide.

You could use this to block or tag email based on countries, block or redirect
visitors to your website based on end-user country, and so on. Be very
careful about blocking mail this way, though, as you may block legitimate
email. Instead of blocking outright, use it in a SpamAssassin rule to add
something to the spam level, based on where the email comes from.

HOW IT WORKS

The RIR files contain ranges of IP addresses, and indicate what CC each range is allocated to. At the simplest level, rir2dns just sorts the ranges then iterates
through the IPs in each range and generates a reverse-dns-style A record that
represents the country code.

HOW IT WORKS - IN DETAIL

Rather than iterate through each IP address, the program tries to skip through
entire classes at a time (256 IPs, 65536 IPs, etc). Rather than iterate
through each IP, the loop iterates through classes or IP ranges (whichever are
smaller at the loop control), using control-breaks to accummulate neighbouring
ranges where possible so that entire classes that are in the same country dont
generate huge numbers of records.

Firstly, IPs are considered to be 4-digit numbers, but in base-256. In other
words, each octet is dealt with as if it were a single base-256 digit. This
turns out to be convenient because optimisations of large chunks of IP space can be done by looking for places where least-significant base-256 digits are zero.

Next, IP ranges are broken down into the following sub-ranges:

Optional individual IP addresses (ie: 4 octets)
Optional A-class ranges (ie: 3 octets)
Optional B-class ranges (ie: 2 octets)
Optional C-class ranges (ie: 1 octet)
Optional B-class ranges (ie: 2 octets)
Optional A-class ranges (ie: 3 octets)
Optional individual IP addresses (ie: 4 octets)

Considering that there is a pattern here, Im sure theres an elegant way to
handle breaking this down into two loops (one reducing the octets and one
increasing the octets), but I cant be bothered, so Ill break it down into
seven loops. Kind of hard-coded, but at least its simple.

For ease of processing, the IP addresses are actually converted to 32-bit numbers, then back again. This simplifies mathematics and looping through ranges.

Thats pretty much it, really...

Note that currently there are about 80,000 RIR records between all five
registries. This takes about 35 seconds on a 2.4GHz P4 to process, and
generates a 26MB file with around 3/4 million lines (RRs). This causes BIND
to use about 100MB or so of memory, and on a slow machine will probably cause it to take too long to reply, while it searches the zone. That size zone can
take a minute or two to load, which is quite a while.

Basic algorithm:

Read & process RIR data:

Read RIR ranges
Sort RIR ranges by start IP address
Glue together contiguous ranges of the same country

For each range

Generate the IPs at the start of the range

Generate the A-classes at the start of the range

Generate the B-classes at the start of the range

Generate the C-classes in the middle of the range

Generate the B-classes at the end of the range

Generate the A-classes at the end of the range

Generate the IPs at the end of the range
<<less
Download (0.60MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
913 downloads
Scriptol to Php Compiler

Scriptol to Php Compiler


Scriptol to Php Compiler is a scriptol program that may be interpreted by the Php interpreter. more>>
Scriptol to Php Compiler is a scriptol program that may be interpreted by the Php interpreter and it may be also compiled either to C++ or directly as an executable.

The Php interpreter is required by solp (download it at www.php.net or get it on the Scriptol CD).

Installation:

It is better to install Scriptol at root of a disk, for example:
/home/user/scriptolp

Once the archive is extracted into the scriptolp directory, you have just to go to this directory from the console to run the compiler.

To use the compiler at command line from any directory, you have to put the compilers into the path, in the usr directory for exemple, or any directory assigned to the path variable (see .bashrc or equivalent). You may also add the scriptol directory to list of paths. Before to use the compiler, you have to read the licence, in the doc directory: licence.html.

Usage:

Type the source of your program in a text editor and save it as mysource.sol or any other name with the sol extension.

Then just type:

./solp mysource

To know the compilers options, type solp without argument, at command line.

Examples:

Type from the main scriptol directory:
./solp demos/helloyou
<<less
Download (0.29MB)
Added: 2005-12-02 License: Freeware Price:
1421 downloads
OO Text To Speech 0.1

OO Text To Speech 0.1


OO Text To Speech is a text-to speech macro for OpenOffice.org. more>>
OO Text To Speech is a text-to speech macro for OpenOffice.org.

Its a syllable analyzer: using a reading motor, it reads a document and translates it into a vocal message.

About OpenOffice

OpenOffice.org is a multiplatform and multilingual office suite and an open-source project. Compatible with all other major office suites, the product is free to download, use, and distribute.

It is an international office suite that will run on all major platforms and provide access to all functionality and data through open-component based APIs and an XML- based file format.
<<less
Download (4.8MB)
Added: 2006-03-01 License: GPL (GNU General Public License) Price:
1347 downloads
Transfer to Media Device 0.8

Transfer to Media Device 0.8


Transfer to Media Device is a script for transferring selected playlist items to your iPod. more>>
Transfer to Media Device is a script that creates a new Playlist Right Click Menu item for transferring selected playlist items to your iPod via the Media Device Browser.
This script now also supports generic copy to operation for USB mass storage devices. Currently the script will prompt for a destination directory on first copy, in the future this setting will be saved in a configuration file.
This script works with amaroK 1.3beta3 and above.
Usage:
Run from the amaroK script manager. A new menu item will appear in the Playlist right mouse button menu.
Select files in the playlist and Right click -> Transfer to -> iPod for transfering to an iPod.
Select files in the playlist and Right click -> Transfer to -> USB Device for transfering to a USB device.
Enhancements:
- Add support for Creative Nomad Jukebox devices using the kionjb kioslave. Thanks to Ralf T for the patch.
<<less
Download (0.003MB)
Added: 2005-12-23 License: GPL (GNU General Public License) Price:
1409 downloads
Sparkler 0.9

Sparkler 0.9


Sparkler is a small app that generates sparkles around the X pointer. more>>
Sparkler is a small app that generates "sparkles" around the X pointer.

It generates an effect similar to that of the game "Discworld": around the pointer, sparkles keep appearing and disappearing when it is moved.
<<less
Download (0.013MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1124 downloads
Add Podcast to amaroK 1.0

Add Podcast to amaroK 1.0


Add Podcast to amaroK is a script that allow you to add Podcasts to amaroK with just 3 clicks. more>>
This script is adding a new action item to Konqueror, this will allow you to add Podcasts to amaroK with just 3 clicks.

The item is adding the selected URL to amaroKs Podcast database.

Note that the script is not very dynamic. It will not be able to recognize PHP based Podcasts if its not having the correct mimetype (RDF/RSS/XML).

<<less
Download (0.008MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1397 downloads
DTD to XML Schema translator 1.60

DTD to XML Schema translator 1.60


DTD to XML Schema translator allows you to translate a Document Type Definition (DTD) into an XML Schema. more>>
DTD to XML Schema translator allows you to translate a Document Type Definition (DTD) into an XML Schema.

DTD to XML Schema translator lets you translate a Document Type Definition into an XML Schema (REC-xmlschema-1-20010502).

The translator can map meaningful DTD entities onto XML Schema constructs (simpleType, attributeGroup, group); the XML document model is not anonymized.

In addition, the translator can map DTD comments onto XML Schema documentation nodes in various ways.

Free available as Java class, Standalone application and as Web tool.

<<less
Download (0.53MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
976 downloads
Scriptol to binary Compiler

Scriptol to binary Compiler


Scriptol to binary Compiler is a C++ native compiler. more>>
Scriptol to binary Compiler is a C++ native compiler.

Installation:

It is better to install Scriptol at root of a disk, for example:
c:scriptolc

Once the archive is extracted into the scriptolc directory, you have just to change to this directory to run the compiler.

To use the compiler at command line from any directory, you have to put the compiler into the path variable.

The setup script installs required file into sub-directories, or into the directory given as argument. Before to use the compiler, you have to read the licence, in the doc
directory: licence.html.

Usage:

Just type:
./solc mysource

Type "solc" only to list the options.

If your program is a multi-file project, the source given as parameter must be the main source file, the compiler will know dependencies from "include" statements and will build what is needed.

Exemples:

Type from the main scriptol directory:
./solc -bre demosfibo

Configuring:

By editing the solc.ini file, you may change the second pass compiler (you may have to rebuild the libsol library for this compiler), change the options of the compiler or add header files to include.

To add header files, just add "header=someheader.hpp" lines into the config file.

A xxx.cfg file may be written for each project main source beeing xxx, and if present, it overloads the solc.ini file.
<<less
Added: 2005-12-02 License: Freeware Price:
1423 downloads
HTTPCapture 0.4

HTTPCapture 0.4


HttpCapture is a core wrapper around the packet-capture library pcap. more>>
HttpCapture is a core wrapper around the packet-capture library pcap and a framework for building plugins to filter, analyse, or display interesting network packets. The core of the application is minimal, and a collection of plugin libraries are used to actually process the packets.
The application couldnt exist without the existance of the USI++ library which Ive hijacked and included here (only because it appears to have disappeared from the internet).
Sincere thanks to the author of that library.
This application is designed to be extensible to the extent than any network traffic may be sniffed, decoded, and displayed.
This should be possible as the main driver includes no special logic, instead it delegates the processing of the collected packets to a collection of plugins.
Each plugin implements a different capturing method; so the application can be updated and improved upon by as many people as possible with a minimum of effort.
Included thus far are plugins for capturing, decoding, and displaying the following protocols:
HTTP Realm Authentification
Jabber Logins
FTP Logins
POP3 Logins
CVS (pserver) Logins.
Enhancements:
- Implemented Jabber sniffer.
- Added POP3 sniffer.
- Added CVS login sniffer (pserver).
- Added FTP sniffer.
- Added man page
- Cleaned up class file documentation.
- Pass endpoint addresses to plugins.
<<less
Download (0.034MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1208 downloads
Add to Noatun playlist

Add to Noatun playlist


Add to Noatun playlist is a service menu that can add files to the Noatun players playlist. more>>
Add to Noatun playlist is a service menu that can add files to the Noatun players playlist.

<<less
Download (MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
624 downloads
Scriptol to PHP for Linux 6.2

Scriptol to PHP for Linux 6.2


A modern programming language, designed to be simple and easy to learn. more>> Scriptol is a modern programming language, designed to be simple and easy to learn, allowing new users ready to program in some hours. The programming time is largely decreased.
Scriptol is object-oriented, xml-oriented, extensible, universal, uses C++, PHP or Java APIs, and GTK for graphical user interface. It is universal, that means it is convenient for scripting, to build applications or to make dynamic web pages.
Free scriptol interpreter and compilers are currently available for Windows and Unix.
Features of Scriptol
Scriptol is :
objectively modern: it has been designed according to seven rules for simplicity, safety, and doesnt carry ancient obsolete syntax.
object-oriented, even simple scalar as "int", or literal as "123", are objects and have methods.
typed: the compiler can check for content and type of variables, that is not possible with usually untyped scripting languages.
natural: types are not based on computers hardware but on humans concepts or mathematical sets: these are text, number, integer, real, etc...
powerful and safe: new control structures has been introduced with scriptol.
Examples:
- composite if, that is both an if statement and a switch case with any kind of values.
- while let, that protects from infinite loop.
- for .. in array, or for .. in a..b, the simplest way to express ranges.
simple: no symbols as -> or ::, just a dot in any case.
Adding 1 to x is just written: x + 1, and not x += 1.
No memory management required, executables have a garbage collector.
C++ compatible: you have just to link C++ object files or library files, and use the functions they hold, no any extension required to write!
For example, you have just to add the GTK import libraries in the configuration file of a scriptol source to use the GTK user interface...
PHP compatible: you can program web pages in Scriptol, your code is converted to Php and all Php functions may be used.
<<less
Download (346KB)
Added: 2009-04-21 License: Freeware Price: Free
185 downloads
OBEX Send to Phone 0.0.0

OBEX Send to Phone 0.0.0


OBEX Send to Phone service menu allows for sending any file(s) to a mobile phone equipped with OBEX stack. more>>
OBEX Send to Phone service menu allows for sending any file(s) to a mobile phone equipped with OBEX stack.

It is made for Nokia S60 (6630 to be precise) phone with USB connection. There are no settings, no progress indicator. Files are copied to the memory card (E: drive)

Requires openobex and obexftp.

Hope this script might be useful for someone. Please post fixes, comments and suggestions.

<<less
Download (MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1246 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5