Main > Free Download Search >

Free findwild 0.03 software for linux

findwild 0.03

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 208
Findwild 0.03

Findwild 0.03


Findwild is a program to search for files. more>>
Findwild is (yet another) program to search for files. It works quite differently from the other programs you may have used.
This software offers the following search criteria:
- directory path to search, with multiple wildcards placed anywhere
- file name(s) to search for, with multiple wildcards anywhere
- file name(s) to exclude, with multiple wildcards anywhere
- file content string(s) to search for, with multiple wildcards anywhere
- file content string(s) to exclude, with multiple wildcards anywhere
- file modification date within a desired range
- your choice of delimiters that define the file strings to be searched
Search criteria can be saved and recalled. It is relatively easy to modify a query incrementally, to zero-in on the results you need.
Performance Indicators:
+ Search /usr/share/* (69000 files) for all files containing the string thumb* 193 files found, 89 seconds
+ Modify the query to search only files named *.html 51 files found, 12 seconds
<<less
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
811 downloads
xpidl 0.03

xpidl 0.03


xpidl project is an XPIDL parser. more>>
xpidl project is an XPIDL parser.

SYNOPSIS

xpidl -m mode [-a] [-w] [-v] [-t version number] [-I path] [-o basename | -e filename.ext] filename.idl

OPTIONS

-a

Emit annotations to typelib.

-w

Turn on warnings (recommended).

-v

Display version.

-t version number

Create a typelib of a specific version number.

-I path

Add entry to start of include path for ``#include "nsIThing.idl".

-o basename

Use basename (e.g. ``/tmp/nsIThing) for output.

-e filename.ext

Use explicit output filename.

-i path

Specify a path for import (only for IDL version 3.0).

-x

Enable export (only for IDL version 3.0).

-m mode

Specify output mode:

header Generate C++ header (.h)

typelib Generate XPConnect typelib (.xpt)

doc Generate HTML documentation (compat xpidl) (.html)

java Generate Java interface (.java)

html Generate HTML documentation (use idl2html) (.html)

<<less
Download (0.026MB)
Added: 2007-06-11 License: Perl Artistic License Price:
877 downloads
foundation 0.03

foundation 0.03


foundation Perl module inheritance without objects. more>>
foundation Perl module to inheritance without objects.

SYNOPSIS

package Foo;

sub fooble { 42 }

package Bar;

sub mooble { 23 }
sub hooble { 13 }

package FooBar;
use foundation;
foundation(qw(Foo Bar));

sub hooble { 31 }

print fooble(); # prints 42
print moodle(); # prints 23
print hooble(); # prints 31 (FooBar overrides hooble() from Bar)
print SUPER(hooble); # prints 13 (Bars hooble())

Havent drunk the OO Kool-Aid yet? Think object-oriented has something to do with Ayn Rand? Do you eat Java programmers for breakfast?

If the answer to any of those is yes, than this is the module for you! foundation adds the power of inheritance without getting into a class-war!

Simply use foundation and list which libraries symbols you wish to "inherit". It then sucks in all the symbols from those libraries into the current one.

Functions

foundation

foundation(@libraries);

Declares what libraries you are founded on. Similar to use base.

SUPER

my @results = SUPER($function, @args);

Calls the named $function of the current packages foundation with the given @args.

Similar to $obj-SUPER::meth();>

<<less
Download (0.004MB)
Added: 2007-06-19 License: Perl Artistic License Price:
857 downloads
Siren 0.03

Siren 0.03


Siren is a music player for GNOME with an extremely minimalist interface. more>>
Siren is a music player for GNOME with an extremely minimalist interface. It is written in Perl and uses the GTK2-Perl libraries, and GStreamer.

<<less
Download (0.015MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1547 downloads
FLV::Info 0.03

FLV::Info 0.03


FLV::Info is an extract metadata from Flash Video files. more>>
FLV::Info is an extract metadata from Flash Video files.

SYNOPSIS

use FLV::Info;
my $reader = FLV::Info->new();
$reader->parse(video.flv);
my %info = $reader->get_info();
print "$info{video_count} video framesn";
print $reader->report();

This module reads Macromedia FLV files and reports metadata about those files.

<<less
Download (0.72MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1208 downloads
Unix::Mknod 0.03

Unix::Mknod 0.03


Unix::Mknod is a Perl extension for mknod, major, minor, and makedev. more>>
Unix::Mknod is a Perl extension for mknod, major, minor, and makedev.

SYNOPSIS

use Unix::Mknod qw(:all);
use File::stat;
use Fcntl qw(:mode);

$st=stat(/dev/null);
$major=major($st->rdev);
$minor=minor($st->rdev);

mknod(/tmp/special, S_IFCHR|0600, makedev($major,$minor+1));

This module allows access to the device routines major()/minor()/makedev() that may or may not be macros in .h files.

It also allows access to the mknod system call.

<<less
Download (0.005MB)
Added: 2007-02-21 License: Perl Artistic License Price:
975 downloads
Memlockd 0.03

Memlockd 0.03


Memlockd project locks a list of files into RAM so that if the system starts paging excessively the sysadmin will still recover. more>>
Memlockd project locks a list of files into RAM so that if the system starts paging excessively (as the result of a DOS attack or buggy program), the sysadmin will still be able to login to recover it.
The project will lock regular files as well as programs in memory, and for programs, it can optionally lock all shared objects that they are linked against.
Enhancements:
- The daemon now writes a PID file.
- The restart option of the init.d script now starts a new instance unconditionally so that the new instance can kill the old one.
- This means that there is no time window when memlockd is not running.
<<less
Download (0.007MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
954 downloads
GCJ::Cni 0.03

GCJ::Cni 0.03


GCJ::Cni is a Perl module for CNI Bindings to GNU Compiler for Java. more>>
GCJ::Cni is a Perl module for CNI Bindings to GNU Compiler for Java.

SYNOPSIS

Using this module in Perl is similar to using it in C++:
use GCJ::Cni;

if ( GCJ::Cni::JvCreateJavaVM(undef) ) {
die "Failed to initialize JavaVM, cannot continue...";
}

unless ( my $thread_obj = GCJ::Cni::JvAttachCurrentThread(undef, undef) ) {
die "Failed to attach thread, cannot continue...";
}

...

if ( GCJ::Cni::JvDetachCurrentThread() ) {
die "Failed to detach current thread, cannot continue...";
}

This module wraps the GCJ CNI interface for use in Perl. This library is needed to call natively compiled (by way of GCJ) Java classes from Perl. This can be used to write Perl modules in Java instead of the customary C or C++.

<<less
Download (0.020MB)
Added: 2006-12-01 License: Perl Artistic License Price:
1067 downloads
XmlAutoIndex 0.03

XmlAutoIndex 0.03


XmlAutoIndex (xai) is a module forApache written in perl that browses your directories and outputs it into Xml. more>>
XmlAutoIndex (xai) is a module for Apache written in perl that browses your directories and outputs it into Xml.

The aim of this project is to replace mod_autoindex in Apache:
I would like to separate data from design, that is why I have made a xml output.

After that, using Xslt you can translate it into Html, Svg or Xul for example (you can make your own theme by updating xsl style sheet and with never touching the core engine).

Each plugins are indepentant and are here to generate thumbnails, previews, etc... Each previews, meta-data are cached in a cache directory to accelerate http queries. bonus: I have included in engine a handler that allows you to add comments per file, this behaviour does not require SQL server because comments are saved in files caches meta-data.

<<less
Download (1.3MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1143 downloads
etvis 0.03

etvis 0.03


etvis is a demo viewer/commenter for Wolfenstein: Enemy Territory FPS game. more>>
etvis is a demo viewer/commenter for Wolfenstein: Enemy Territory FPS game.
Demos recorded with ET can be sorted, renamed, deleted, and viewed. Comments can be stored for each demo individually.
Comments will remain no matter if a demo-file gets renamed by etvis or by another application.
For now you have to edit some things by hand before compiling, this will be changed in a later release:
Edit src/main.h EXECPARAMS for options to give to ET
src/main.c line 174 for the dir that is filled with your demos
src/main.c line 184 for your ET executable
Usage:
double-click on the filename to rename it
delete-key to delete the selected demo files
double-click views the selected demo in ET
Enhancements:
- A demo file can now be given as a command line parameter to omit the GUI, which is nice for associating etvis with .dm_84 files in your favorite file manager.
- In addition, basic gettext functionality was added.
<<less
Download (0.089MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1267 downloads
Plonx 0.03

Plonx 0.03


Plonx is a simple puzzle game for Linux console. more>>
Plonx is a simple puzzle game for Linux console.

Plonx is a small puzzle game, where youll have to avoid bombs and collect points.
You control the white @-sign.

The red asterisks are bombs. Youll have to collect the green numbers, while avoiding the bombs, the upper and lower edges of the map, and the blue trail you leave behind.

The left and right edges of the map wrap around. Youll move 1-6 spaces forward, depending on what number you first pick up on that move.

During game, you can press ? to get help, use the number-keys to move, or press q to quit.

Plonx also accepts some commandline parameters:

--wid X Sets the map width to X. Default is 20.
--hei Y Sets the map height to Y. Default is 20.
--level N Sets the number of bombs on the level to N. Default is 10.
--seed N Sets the random number seed used to generate the map.
--delay N Sets the delay for moving on the map. Default is 50000.

<<less
Download (0.003MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1431 downloads
uvlan 0.03

uvlan 0.03


uvlan is a project consisting of a User-space Virtual Local Area Network. more>>
uvlan is a project consisting of a User-space Virtual Local Area Network.
In other words, uvlan peers act as nodes on a network switch. Ethernet traffic is routed between peers intelligently. This allows for multiple networks to share resources and even IP address space.
Some may call it a VPN (Virtual Private Network) application, but its much more powerful: it is peer-to-peer, is much simpler, and operates at layer 2 (ethernet). VPNs generally operate at layer-3 (IP), and layer 2 applications like gaming cant be supported with layer 3 tunneling.
Differences with traditional VPN technology:
- It is peer-to-peer
- It doesnt require licensing
- It is much simpler
- It operates at Layer-2 (Ethernet), VPNs generally operate at Layer-3 (IP) Layer-2 applications like gaming cant be supported with Layer-3 tunneling.
<<less
Download (0.11MB)
Added: 2007-01-20 License: Public Domain Price:
1007 downloads
XML::DOM2 0.03

XML::DOM2 0.03


XML::DOM2 is a DOM controlled, strict XML module for extentable xml objects. more>>
XML::DOM2 is a DOM controlled, strict XML module for extentable xml objects.
XML::DOM2 is yet _another_ perl XML module.
Main features:
- DOM Level2 Compilence in both document, elements and attributes
- NameSpace control for elements and attributes
- XPath (its just one small method once you have a good DOM)
- Extendability:
- Document, Element or Attribute classes can be used as base class for other kinds of document, element or attribute.
- Element and Attribute Handler allows element specific child elements and attribute objects.
- Element and Attribute serialisation overiding.
- Parsing with SAX (use XML::SAX::PurePerl for low dependancy installs)
- Internal serialisation
<<less
Download (0.017MB)
Added: 2006-07-14 License: Perl Artistic License Price:
1199 downloads
pytick 0.03

pytick 0.03


pytick is a customizable stock ticker. more>>
pytick is a customizable stock ticker.
pytick is a fully configurable and elegant stock ticker written in python for your desktop.
pytick gathers its stock quotes from finance.yahoo.com and displays them in a easy to read fashion.
Main features:
- Intuitive Interface
- Fits naturally into your desktop
- Custom Font Selection
- Variable Scroll Speed
<<less
Download (0.007MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
Poissonrun 0.03

Poissonrun 0.03


Poissonrun runs a given command statistically once every T seconds. more>>
Poissonrun runs a given command statistically once every T seconds. The program can be run at any given time, but on average, it is every T seconds.
The random process is based on the poisson distribution.
Installation:
./configure
make
make install
Enhancements:
- This release adds new methods for specifying probabilities and time intervals, improves documentation, and adds a feature for having multiple commands in a running state simultaneously.
<<less
Download (0.003MB)
Added: 2007-02-16 License: Public Domain Price:
983 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5