Main > Free Download Search >

Free dresses for 15 software for linux

dresses for 15

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 804
DParser 1.15

DParser 1.15


DParser is an simple but powerful tool for parsing. more>>
DParser project is an simple but powerful tool for parsing. You can specify the form of the text to be parsed using a combination of regular expressions and grammar productions.
Because of the parsing technique (technically a scannerless GLR parser based on the Tomita algorithm) there are no restrictions.
The grammar can be ambiguous, right or left recursive, have any number of null productions, and because there is no seperate tokenizer, can include whitespace in terminals and have terminals which are prefixes of other terminals.
DParser handles not just well formed computer languages and data files, but just about any wacky situation that occurs in the real world.
Main features:
- Powerful GLR parsing
- Simple EBNF-style grammars and regular expression terminals
- Priorities and associativities for token and rules
- Built-in error recovery
- Speculative actions (for semantic disambiguation)
- Auto-building of parse tree (optionally)
- Final actions as you go, or on the complete parse tree
- Tree walkers and default actions (multi-pass compilation support)
- Symbol table built for ambiguous parsing
- Partial parses, recursive parsing, parsing starting with any non-terminal
- Whitespace can be specified as a subgrammar
- External (C call interface) tokenizers and external terminal scanners
- Good asymptotically efficiency
- Comes with ANSI-C, Python and Verilog grammars
- Comes with full source
- Portable C for easy compilation and linking
- BSD licence, so you can included it in your application without worrying about licensing
Enhancements:
- Removed call to exec in python interface (Brian Sabbey)
- Fix binary_op_left in python interface (Brian Sabbey)
<<less
Download (0.26MB)
Added: 2006-10-18 License: BSD License Price:
1103 downloads
Drossellog rev-15

Drossellog rev-15


Drossellog is a simple logfile analyzer in ruby. more>>
Drossellog is a simple logfile analyzer in ruby. The application was created because we were unhappy with the interfaces and functionality of other, already existing opensource logfile analyzers.

We didnt want to extend the existing ones because we didnt liked their architecture either.

Drossellog is part of the XhochY projects.

<<less
Download (MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
817 downloads
Curses 1.15

Curses 1.15


Curses is a terminal screen handling and optimization. more>>
Curses is a terminal screen handling and optimization.

SYNOPSIS

use Curses;

initscr;
...
endwin;


Curses::supports_function($function);
Curses::supports_contsant($constant);

Curses is the interface between Perl and your systems curses(3) library. For descriptions on the usage of a given function, variable, or constant, consult your systems documentation, as such information invariably varies (:-) between different curses(3) libraries and operating systems. This document describes the interface itself, and assumes that you already know how your systems curses(3) library works.
Unified Functions
Many curses(3) functions have variants starting with the prefixes w-, mv-, and/or wmv-. These variants differ only in the explicit addition of a window, or by the addition of two coordinates that are used to move the cursor first. For example, addch() has three other variants: waddch(), mvaddch(), and mvwaddch(). The variants arent very interesting; in fact, we could roll all of the variants into original function by allowing a variable number of arguments and analyzing the argument list for which variant the user wanted to call.
Unfortunately, curses(3) predates varargs(3), so in C we were stuck with all the variants. However, Curses is a Perl interface, so we are free to "unify" these variants into one function. The section "Supported Functions" below lists all curses(3) function supported by Curses, along with a column listing if it is unified. If so, it takes a varying number of arguments as follows:
function( [win], [y, x], args );
win is an optional window argument, defaulting to stdscr if not specified.
y, x is an optional coordinate pair used to move the cursor, defaulting to no move if not specified.
args are the required arguments of the function. These are the arguments you would specify if you were just calling the base function and not any of the variants.
This makes the variants obsolete, since their functionality has been merged into a single function, so Curses does not define them by default. You can still get them if you want, by setting the variable $Curses::OldCurses to a non-zero value before using the Curses package. See "Perl 4.X cursperl Compatibility" for an example of this.

Objects

Objects are supported. Example:
$win = new Curses;
$win->addstr(10, 10, foo);
$win->refresh;
...

Any function that has been marked as unified (see "Supported Functions" below and "Unified Functions" above) can be called as a method for a Curses object.
Do not use initscr() if using objects, as the first call to get a new Curses will do it for you.

Security Concerns

It has always been the case with the curses functions, but please note that the following functions:

getstr() (and optional wgetstr(), mvgetstr(), and mvwgetstr())
inchstr() (and optional winchstr(), mvinchstr(), and mvwinchstr())
instr() (and optional winstr(), mvinstr(), and mvwinstr())

are subject to buffer overflow attack. This is because you pass in the buffer to be filled in, which has to be of finite length, but there is no way to stop a bad guy from typing.

In order to avoid this problem, use the alternate functions:

getnstr()
inchnstr()
innstr()

which take an extra "size of buffer" argument.

<<less
Download (0.080MB)
Added: 2007-05-09 License: Perl Artistic License Price:
901 downloads
Gunroar 0.15

Gunroar 0.15


Gunroar is a 360-degree gunboat shooter. more>>
Gunroar is a 360-degree gunboat shooter. An abstract shooter; Shoot in any direction, as you race through the levels.
Keep near the top of the screen to increase your score. Destroy the enemy fleet. Comes with a soundtrack and effects.
Enhancements:
- Added -enableaxis5 option. (for xbox 360 wired controller)
- Added mouse mode.
- Changed a drawing method of a game field.
- Fixed a problem with a score reel size in a double play mode.
- Increased the number of smoke particles.
<<less
Download (5.0MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1253 downloads
whouses 0.15

whouses 0.15


whouses Perl module is an impact analysis in a clearmake build environment. more>>
whouses Perl module is an impact analysis in a clearmake build environment.

SYNOPSIS

Run this script with the -help option for usage details. Here are some additional sample usages with explanations:

whouses foobar.h

Shows all DOs that make use of any file matching /foobar.h/.

whouses -recurse foobar.h

Same as above but follows the chain of derived files recursively.

whouses -exact foobar.h

Shows all DOs that make use of the specified file. The -exact flag suppresses pattern matching and shows only DOs which reference the exact file.

Whouses provides a limited form of "impact analysis" in a clearmake build environment. This is different from traditional impact analysis (see TRUE CODE ANALYSIS COMPARED below for details). In particular, it operates at the granularity of files rather than language elements.

Whouses is best described by example. Imagine you have a VOB /vobs_sw in which you build the incredibly simple application foo from foo.c. You have a Makefile which compiles foo.c to foo.o and then links it to produce foo. And lets further assume youve just done a build using clearmake.

Thus, foo is a derived object (DO) which has a config record (CR) showing how it was made. Whouses analyzes that CR and prints the data in easy-to-read indented textual format. For instance:

% whouses -do foo foo.c
/vobs_sw/src/foo.c =>
/vobs_sw/src/foo.o

The -do foo points to the derived object from which to extract and analyze the CR; it will be implicit in the remaining examples. The output indicates that foo.o uses foo.c, or in other words that foo.c is a contributor to foo.o. If we add the -recurse flag:

% whouses -r foo.c
/vobs_sw/src/foo.c =>
/vobs_sw/src/foo.o
/vobs_sw/src/foo

We see all files to which foo.c contributes, indented according to how many generations removed they are. If we now add -terminals

% whouses -r -t foo.c
/vobs_sw/src/foo.c =>
/vobs_sw/src/foo

Intermediate targets such as foo.o are suppressed so we see only the "final" targets descended from foo.c.

We can also go in the other direction using -backward:

% whouses -b -e foo
/vobs_sw/src/foo<<less
Download (0.021MB)
Added: 2007-06-08 License: Perl Artistic License Price:
868 downloads
Powerbox for Gtk 1.15

Powerbox for Gtk 1.15


Powerbox for Gtk is a patch to Gtk which replaces its GtkFileChooserDialog. more>>
Powerbox for Gtk is a patch to Gtk which replaces its GtkFileChooserDialog
Powerbox is a normal file chooser dialog box, except that it dynamically grants the application the right to access the file that the user picks.
This helps provide security because the application can be run without needing access to all the users files. Powerbox-for-Gtk patches Gtk to replace GtkFileChooserDialog with a powerbox.
It is based on Plash, which provides a restricted execution environment on Linux.
Enhancements:
- Add gtk-powerbox.c: an LD_PRELOADed patch to Gtk to replace the GtkFileChooserDialog interface so that it calls Plashs powerbox.
- Rename "plash" executable to "pola-shell".
- fs-operations.c: Add log method. Add an "end" log message when the fs_op object is dropped.
- gettextization
- make.sh: Add "-Wl,-z,relro" when linking ld.so. Fixes obscure problem when dlopen()ing libraries that might require an executable stack.
- Intercept getsockname() so that it returns the correct pathname for Unix domain sockets. Extended the g_fds array in libc so that it can contain these pathnames. It is now an array of "struct libc_fd"s, rather than an array of "cap_t"s. libc-fds.h: New file. libc-misc.c: Introduced fds_resize(), fds_slot_clear(). Changed open(), close(), dup2(), etc. libc-connect.c: Add getsockname() and change connect() and bind().
- Reason: I discovered that gconfd2 (or possibly Orbit) was relying on getsockname() returning the pathname that it earlier passed to bind(). This meant that Gnumeric was unable to spawn a gconf process itself, and it produced loads of errors.
- fs-operations.c, libc-misc.c: Fixed fstat() to return the correct information on directory FDs. Added the fsop_dir_fstat method to implement this.
- build-fs-dynamic.c: Implement link() and rename() methods. This is needed for when GNOME and KDE apps hard link files inside $HOME.
- filesysobj-real.c: Changes to allow rename and hard link calls of the form rename("dir/foo1", "dir/foo2") to work.
- The problem: The real_dir_rename and real_dir_link methods only work in the same-directory case; their test was a pointer comparison on real_dir objects. However, resolving a directory pathname like "dir" always returns a new real_dir object. This meant that the rename() call wouldnt work when you use full pathnames.
- This was causing some failures. eg. Konqueror wouldnt start: some code relied on creating "$HOME/.ICEauthority-l" as a hard link to "$HOME/.ICEauthority-c".
- The partial solution: Change the same-directory check to compare inode and device number of directory, after trying a pointer comparison.
<<less
Download (1.3MB)
Added: 2005-12-13 License: LGPL (GNU Lesser General Public License) Price:
1410 downloads
fuseisomount 0.15

fuseisomount 0.15


fuseisomount service menu that allows you to mount ISOs to ~/iso via FUSEISO. more>>
fuseisomount service menu that allows you to mount ISOs to ~/iso via FUSEISO.

Obviously needs FUSE and FUSEISO installed.

<<less
Download (MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1122 downloads
dnsproxy 1.15

dnsproxy 1.15


dnsproxy daemon is a proxy for DNS queries. more>>
dnsproxy daemon is a proxy for DNS queries. It forwards these queries to two previously configured nameservers: one for authoritative queries and another for recursive queries. The received answers are sent back to the client unchanged. No local caching is done.
Primary motivation for this project was the need to replace Bind servers with djbdns in an ISP environment. These servers get recursive queries from customers and authoritative queries from outside at the same IP address. Now it is possible to run dnscache and tinydns on the same machine with queries dispatched by dnsproxy.
Other scenarios are firewalls where you want to proxy queries to the real servers in your DMZ. Or internal nameservers behind firewalls, or...
Enhancements:
- Updated to libevent 1.1, portability fixes.
<<less
Download (0.11MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1326 downloads
Caravan Business Server for Linux 3.15-03D

Caravan Business Server for Linux 3.15-03D


Web App Development and Deployment Environment, Cross Platform, Tiny Footprint more>>
Caravan Business Server is an extremely easy to use comprehensive development and deployment framework which has been used to build Enterprise wide, mission critical Web-based applications.
It includes, as a seamless integrated package, an easy to use Scripting Language, Search Engine, Database Engine, a Web Server and a Communication Server, which makes it a 1-Tier Architecture.
Caravan Business Server is currently available on Linux. Once an application is developed on any OS, the same can be simply redeployed on any other OS without making any changes.
<<less
Download (1.9MB)
Added: 2009-04-21 License: Freeware Price:
188 downloads
hsftp 1.15

hsftp 1.15


hsftp provides a lightweight FTP emulator for ssh1. more>>
hsftp provides a lightweight FTP emulator for ssh1.
hsftp is an FTP emulator that provides the look-and-feel of an FTP session, but uses ssh to transport commands and data. It is written in C, and requires no additional libraries.
hsftp is written in C, and is known to compile with gcc under Linux and some Unix flavours. No additional libraries are required. No dedicated daemon (in addition to the sshd daemon) is required to run on the server side.
If you need a password, hsftp will ask for it. The password is encrypted by ssh before transmission. hsftp will store the password internally, so you do not need to type it in again during a session.
Main features:
- hsftp executes UNIX commands on the remote host, and thus will fail on non-Unix remote hosts.
- If hsftp is not set SUID root, and you have supplied a password/passphrase, it might get paged out to your swap partition during prolonged inactivity.
- For security, hsftp can be compiled to drop SUID root privileges irrevocably on startup, immediately after locking the memory for the password.
- For RSA authentication, you can avoid to have hsftp caching the passphrase if you use ssh-agent. In this case, you can use hsftp securely without setting it SUID root.
- hsftp has been developed on Linux. It is known to compile on a variety of other UNIX flavours (at least FreeBSD, Solaris, AIX, and HP-UX), but may not work on all. Fixes for portability are welcome for inclusion.
<<less
Download (0.014MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
cbrPager 0.9.15

cbrPager 0.9.15


cbrPager is a no-nonsense, simple to use, small viewer for cbr (comic book archive) files. more>>
cbrPager project is a no-nonsense, simple to use, small viewer for cbr (comic book archive) files. As it is written in C, the executable is small and fast. It views jpg (or jpeg), gif and png images, and you can zoom in and out.
Main features:
- Simple usage: A navigation bar stays on top of the pages.
- It works on any RAR-compressed image archive - normally the extension would be .cbr or .cbz, but other extensions work too.
- Advance/backup pages, and go to the begin and end.
- Zoom in and zoom out (10% steps) and return to 1:1.
- It should manage jpeg (jpg), png and gif images.
- A configuration window permits defining a few slightly more advanced tricks:
- When advancing go to the top of the next page (or bottom or stay where you are.)
- Same possibilities when paging backwards.
- Remember the last directory visited on startup, or always start in a defineable directory.
- Determine the initial size of the pager.
- Define where the navigation bar should be and its orientation.
<<less
Download (0.11MB)
Added: 2007-06-02 License: GPL (GNU General Public License) Price:
877 downloads
KinoSearch 0.15

KinoSearch 0.15


KinoSearch is a search engine library. more>>
KinoSearch is a search engine library.
SYNOPSIS
First, write an application to build an inverted index, or "invindex", from your document collection.
use KinoSearch::InvIndexer;
use KinoSearch::Analysis::PolyAnalyzer;
my $analyzer
= KinoSearch::Analysis::PolyAnalyzer->new( language => en );
my $invindexer = KinoSearch::InvIndexer->new(
invindex => /path/to/invindex,
create => 1,
analyzer => $analyzer,
);
$invindexer->spec_field(
name => title,
boost => 3,
);
$invindexer->spec_field( name => bodytext );
while ( my ( $title, $bodytext ) = each %source_documents ) {
my $doc = $invindexer->new_doc;
$doc->set_value( title => $title );
$doc->set_value( bodytext => $bodytext );
$invindexer->add_doc($doc);
}
$invindexer->finish;
Then, write a second application to search the invindex:
use KinoSearch::Searcher;
use KinoSearch::Analysis::PolyAnalyzer;
my $analyzer
= KinoSearch::Analysis::PolyAnalyzer->new( language => en );
my $searcher = KinoSearch::Searcher->new(
invindex => /path/to/invindex,
analyzer => $analyzer,
);
my $hits = $searcher->search( query => "foo bar" );
while ( my $hit = $hits->fetch_hit_hashref ) {
print "$hit->{title}n";
}
Main features:
- Extremely fast and scalable - can handle millions of documents
- Incremental indexing (addition/deletion of documents to/from an existing index).
- Full support for 12 Indo-European languages.
- Support for boolean operators AND, OR, and AND NOT; parenthetical groupings, and prepended +plus and -minus
- Algorithmic selection of relevant excerpts and highlighting of search terms within excerpts
- Highly customizable query and indexing APIs
- Phrase matching
- Stemming
- Stoplists
<<less
Download (0.22MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
864 downloads
ShaniXmlParser 1.4.15

ShaniXmlParser 1.4.15


ShaniXmlParser is an XML/HTML DOM/SAX parser that can be validating. more>>
ShaniXmlParser is an XML/HTML DOM/SAX parser that can be validating. It can parse badly formed XML files.
ShaniXmlParser can parse files with inverted tags and bad escaped &,< and >. ShaniXmlParser expands all HTML entities. ShaniXmlParser is well suited to parse HTML files.
It is up to 3 times faster than the internal JDK 1.5 xerces parser and as fast as the internal JDK 1.4 Crimson parser, compliant with the jaxp/w3c DOM interfaces, and very small.
Enhancements:
- Support of DOM 2 HTML interfaces.
- 668/685 succeeded tests on DOM 2 HTML Test Validation suite.
<<less
Download (2.0MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
913 downloads
AdvanceCOMP 1.15

AdvanceCOMP 1.15


AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files. more>>
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files.
Its mainly intended for recompressing your rom, snapshot and clip collection of emulated games.
Main features:
- Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip implementation.
- Recompress MNG files using Delta and Move optimization.
Enhancements:
- This release fixed a lot of bugs for 64-bit platforms.
<<less
Download (0.25MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1455 downloads
pyDirStat 0.9.15

pyDirStat 0.9.15


pyDirStat is a small tool to view statistical information about a directory. more>>
pyDirStat is a small tool to view statistical information about a directory.

It will generate a view of all files contained in a directory (and subdirectories) with rectangles.

Each rectangle area is proportional to file size. Its a perfect tool to view disk usage with graphics.

Configuration:

You can now configure pydirstat. pds-config.py is provided to help creating configuration file. It will ask few questions, and will write configuration file.
In the configuration file, you will be able to change color associations.

First find the configuration file by launching pds-config.py and answering questions. At the end, the configuration filename will be prompted.
Youll find a section options containing your answers. And then youll find several type:... sections. Those sections define the "type" associated to each file. A type is just a string like image or sound. Then there is the section color that define the color associated to a file type.

There is four type: section.
type:extension : Every file ending by this extension will have the associated type. This is case sensitive. Most of unix filenames will be recognized by this section.
type:extensionlower : This is the same section exept that the exentension is lowercased (so asf will match asf and ASF). Most of Windows filenames will be recognized by this section.
type:exactmatch : The whole file should be equal to the key. Exemple : "core" file under unix.
type:contain : The file contains the key. Exemple : ".so." to match linux libraries.
Note for windows users: If this is too complex, just edit the type:extensionlower and the color sections.
Note for unix users: If this is too complex, just edit the type:extension and the color sections.

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