Main > Free Download Search >

Free wanted software for linux

wanted

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3054
Want 0.14

Want 0.14


Want is a Perl module created to implement the `want command. more>>
Want is a Perl module created to implement the `want command.

SYNOPSIS

use Want;
sub foo :lvalue {
if (want(qwLVALUE ASSIGN)) {
print "We have been assigned ", want(ASSIGN);
lnoreturn;
}
elsif (want(LIST)) {
rreturn (1, 2, 3);
}
elsif (want(BOOL)) {
rreturn 0;
}
elsif (want(qwSCALAR !REF)) {
rreturn 23;
}
elsif (want(HASH)) {
rreturn { foo => 17, bar => 23 };
}
return
}

This module generalises the mechanism of the wantarray function, allowing a function to determine in some detail how its return value is going to be immediately used.

...

EXAMPLES

use Carp croak;
use Want howmany;
sub numbers {
my $count = howmany();
croak("Cant make an infinite list") if !defined($count);
return (1..$count);
}
my ($one, $two, $three) = numbers();


use Want want;
sub pi () {
if (want(ARRAY)) {
return [3, 1, 4, 1, 5, 9];
}
elsif (want(LIST)) {
return (3, 1, 4, 1, 5, 9);
}
else {
return 3;
}
}
print pi->[2]; # prints 4
print ((pi)[3]); # prints 1


sub backstr :lvalue {
if (want(qwLVALUE ASSIGN)) {
my ($a) = want(ASSIGN);
$_[0] = reverse $a;
return undef;
}
elsif (want(RVALUE)) {
my $t = scalar reverse $_[0];
}
else {
carp("Not in ASSIGN context");
}
return
}

print "foo -> ", backstr("foo"), "n"; # foo -> oof
backstr(my $robin) = "nibor";
print "$robin is now $robinn"; # $robin is now robin

<<less
Download (0.017MB)
Added: 2007-05-05 License: Perl Artistic License Price:
902 downloads
I-Want-To-Make-Money 1.0

I-Want-To-Make-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
yaGTD 0.1.5

yaGTD 0.1.5


yaGTD is a very simple utility designed to make the management of your to-do list quick and easy. more>>
What I wanted was something lightweight and flexible, a simple way to carry and maintain my tasks around on a USB stick.

The program needed to be capable of running on different platforms and must not depend on any data format or any web connection.

yaGTD incorporates major features from Allens Getting Things Done philosophy and notion of urgency and importance preached by Stephen Covey (cf Seven Habits of Highly Effective People book).

To resume, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.

The project is released under the GPL so anyone can try it and make their own modifications.

<<less
Download (0.026MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1036 downloads
HTMLatex 1.3

HTMLatex 1.3


HTMLatex does on-the-fly rendering of LaTeX source to HTML documents. more>>
HTMLatex is a mod_python application that uses memcached to reduce the massive overhead of repeatedly rendering the same equation. It has an option to sanitize the latex source removing any potentially dangerous code. Currently it is only tested on Apache 2 + mod_python with python 2.3 and py-memcached-1.2. It is fairly generous about the HTML and latex it accepts.
Im unsure if this will work on Windows as I paid zero attention to interoperability.
HTMLatex has two main goals: first, I wanted to avoid preprocessing; I wanted to be able to type the raw latex into an HTML document and be finished. Second, I wanted the HTML/Latex file to remain untouched.
There is one option: DEBUG. If DEBUG is set, the intermediate files are maintained on disk in /tmp/htmlatex -- this is the only method available for helping to troubleshoot latex errors. Oddly enough, performance should theoretically *increase* if debug mode is on as it doesnt require repeated filesystem access to delete files.
There used to be another option: SANITIZE, which checked the latex source for dangerous code and replaces it with a sanitized graphic. I decidd that giving people the option to auto-render latex code over the web that could do arbitrary things to their PC was a bad idea.
All latex code is sanitized now. If you want to turn it off, just comment out all of the _sanitize() calls in Equation._translateToTex().
Enhancements:
- Internet Explorer users can now see the rendered equations.
- Memcached is no longer used. Instead, images are served from the filesystem.
<<less
Download (0.038MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1286 downloads
KMatrix3d 0.1

KMatrix3d 0.1


KMatrix3d is a nice 3D matrix OpenGL screen saver for KDE. more>>
KMatrix3d is a nice 3D matrix OpenGL screen saver for KDE.

This version is based on the code by Thomas John.

IMPORTANT: Packagers wanted - please contact developer.

Future:

Currently Im working on the V2 version of KMatrix3D which will contain following effects:

1) endless corridor section
2) matrix world transitions
3) matrix reloaded intro effects
4) extensive use of shaders
5) performace improvements
<<less
Download (MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
996 downloads
arpdetect 0.7

arpdetect 0.7


arpdetect is a Perl script that detects when the network youre connected to changes. more>>
arpdetect is a perl script to detect when the network youre connected to changes, and run some commands when that happens. It does this by detecting a MAC address of some host you specify (usually a router). Actions can be re-run at a predetermined period with crond.


I needed something that detected when I was on a new network and did some stuff. Like, if I was at work, I wanted to rsync some pictures to my server there, or if I was at home, I wanted to backup my mail. Things like that. I figured the easiest way was to arping for a box I knew would always be there (like the router) and run commands at that time. Of course, you may need to re-run these commands every once and a while, so it has that support as well. Take it for a spin, let me know what you think.

Install should be pretty easy; download and install the perl modules required:
Getopt::Long
XML::Simple
Proc::Daemon
and copy the program to where you like it to be (I recommend /usr/local/bin). Config the thing to do stuff the way you like it in some config file (I like putting it in /usr/local/etc/arpdetect.xml) and run it! You can do that w/ the included init.d script for RedHat, or by typing a command similar to the following:
/usr/local/bin/arpdetect -c /usr/local/etc/arpdetect.xml
If somethings not quite what you expect, or need something else, or it just plain works, let me know!
<<less
Download (0.009MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1215 downloads
VerticalMeters

VerticalMeters


VerticalMeters is a simple system monitor. more>>
VerticalMeters is a simple system monitor. Two vertical bars. It fits well in the bottom right corner of the screen. Included are both a version with no branding and a version with the BSD Daemon and the new FreeBSD logo in the background.

Obviously inspired by kirambaKUBUNTU, except I wanted one that fit in the right corner, and of course not kubuntu.

<<less
Download (0.038MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1223 downloads
iPirate 28032003

iPirate 28032003


iPirate project is a small application for sharing files between two friends. more>>
iPirate project is a small application for sharing files between two friends.

iPirate was written in a day because I wanted to download some songs from a friend of mine, whose internet connection does not allow connections from internet to his machine (so FTP and friends are out).

I also did not want to use any established P2P software, because this is just a small and private sharing of files. Furthermore, I found it fun to code such a program.

The features include sharing your files, search for files containg a string, listing a users files and downloading files from a user.

Due to the circumstances that lead to the writing of this software, the program supports two modes of download: you either connect to the machine you want to download stuff from and say: start sending data, or you let the remote machine connect to your machine and receive the given data.

<<less
Download (0.004MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1066 downloads
Punit 0.2

Punit 0.2


Punit is an attempt to create a Python CD ripper using cdparanoia and lame for Linux. more>>
Punit is an attempt to create a Python CD ripper using cdparanoia and lame for Linux.

I couldnt get Sound Juicer to rip mp3, GooBox encodes mp3 using VBR which screws up the mp3 times in Foobar2000. I wanted a simple mp3 ripper and i wanted to learn Python so I made my own.

Right now, its a straight forward ripper to mp3 with the format 128 kbps, 44100Hz, stereo. Comments, suggestions, improvements are all welcomed.

Thanks to CDDB.py for the CDDB module.

<<less
Download (0.032MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
804 downloads
jack_capture 0.2.3

jack_capture 0.2.3


jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file. more>>
jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file.

jack_capture is the program I always wanted to have for jack, but no one made. So here it is.

Usage:

jack_capture [ -b bitdepth ] [-c channels] [ -B bufsize ] [filename]

Filename is by default auotogenerated to something like "jack_capture_ .wav"
Bitdepth is by default FLOAT.
Channels is by default 2.
Bufsize is by default 262144.

<<less
Download (0.006MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1311 downloads
Steghide servicemenu

Steghide servicemenu


Steghide is a stenography software. more>>
Steghide is a stenography software. In short I can describe how it is used. You need jpeg, bmp or wav file and the file you want to hide.

Steghide will compress, encrypt and embed this file into jpeg, bmp or wav mentioned above. Nobody can see that this file contain another file. But if he has steghide and knows password, he can get embedded file out of original file.

Steghide is console programme and I just wanted to make some script that allow all the people to use it even though they dont like console programmes. With this script, you can use steghide just by means of right button in Konqueror. If you click on the jpeg, bmp or wav file by right button you will see in "Actions" possibility to embed file or extract file.
<<less
Download (0.008MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1144 downloads
Just Another Port Scanner 0.1

Just Another Port Scanner 0.1


Just Another Port Scanner (JAPS) is an easy to use, bare-bones TCP port scanner. more>>
Just Another Port Scanner (JAPS) is an easy to use, bare-bones TCP port scanner. JAPS requires the GTK+ library to run. I created JAPS because I felt it would be a fun project and I wanted to learn GTK+ programming basics.

To compile an install JAPS just type make.

Todo
Add subnet scanning
Add progress bar
Display service name next to port number in results box
If you have any suggestions please contact me. 1
<<less
Download (0.029MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1210 downloads
GedanKen 0.5

GedanKen 0.5


GedanKen is a little karamba widget for your notes I was inspired by TooDoo and dbkalender. more>>
GedanKen is a little karamba widget for your notes I was inspired by TooDoo and dbkalender.

Nethertheless I wanted a theme that looked good with dbkalender, so I used the backgrounds from dbKalendar for a consistent look.

I also used the "add" and "delete" button from TooDoo. After all this copying I added my python code, although it is not the best, it just works.

And I hope youll like it

<<less
Download (0.056MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
HomeBank 3.4

HomeBank 3.4


HomeBank is the software you have always wanted to manage your personal accounts at home. more>>
HomeBank is the software you have always wanted to manage your personal accounts at home. The main concept is to be light, simple and very easy to use. HomeBank brings you many features that allows you to analyze your finances in a detailed way instantly and dynamically with powerfull report tools based on filtering and graphical charts.

Furthermore HomeBank benefits now for more than 10 years of users experiences and feedbacks as its development started in 1995 on Amiga computers. It is now available on Amiga, GNU/Linux, and will probably be soon available for Microsoft Windows and MacOS X systems, as GTK+ exists on it.

Really, if you are looking for an easy way to do your home accounts, then HomeBank should be the software you choose. Just take a little time to try it out now, and you wont regret doing so...

<<less
Download (0.52MB)
Added: 2007-06-28 License: GPL (GNU General Public License) Price:
854 downloads
Witty CD Player 0.0.7

Witty CD Player 0.0.7


Witty CD Player is a cd player program that uses cdda2wav for software buffering. more>>
Witty CD Player is a cd player program that uses cdda2wav for software buffering.

I started having problems with my CD-ROM drive skipping badly on every audio track for several months. At the same time, I wanted to try my hand at GTK. So, I decided to write the "The Witty CD Player." (The name is a play on my last name The Witty CD Player uses the cdda2wav program to perform oversampling to account for the skips.

<<less
Download (0.014MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1538 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5