Main > Free Download Search >

Free darkness 1.15 software for linux

darkness 1.15

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 58
Glow-in-the-Darkness 1.15

Glow-in-the-Darkness 1.15


Yet another dark theme for your GNOME desktop more>> <<less
Added: 2009-04-14 License: GPL Price: FREE
18 downloads
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
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
GD::Barcode 1.15

GD::Barcode 1.15


GD::Barcode is a Perl module to create barcode image with GD. more>>


SYNOPSIS

ex. CGI
use GD::Barcode::UPCE;
binmode(STDOUT);
print "Content-Type: image/pngnn";
print GD::Barcode->new(EAN13, 123456789012)->plot->png;
with Error Check
my $oGdBar = GD::Barcode->new(EAN13, 12345678901);
die $GD::Barcode::errStr unless($oGdBar); #Invalid Length
$oGdBar->plot->png;

GD::Barcode is a subclass of GD and allows you to create barcode image with GD. This module based on "Generate Barcode Ver 1.02 By Shisei Hanai 97/08/22".

From 1.14, you can use this module even if no GD (except plot method).
new

$oGdBar = GD::Barcode::UPCE->new($sType, $sTxt);
Constructor. Creates a GD::Barcode::$sType object for $sTxt.
plot()

$oGd = $oGdBar->plot([Height => $iHeight, NoText => 0 | 1]);
creates GD object with barcode image for the $sTxt specified at new method. $iHeight is height of the image. If NoText is 1, the image has no text image of $sTxt.
ex.
my $oGdB = GD::Barcode->new(EAN13, 123456789012);
my $oGD = $oGdB->plot(NoText=>1, Height => 20);
# $sGD is a GD image with Height=>20 pixels, with no text.
barcode()
$sPtn = $oGdBar->barcode();
returns a barcode pattern in string with 1 and 0. 1 means black, 0 means white.
ex.
my $oGdB = GD::Barcode->new(UPCE, 123456789012);
my $sPtn = $oGdB->barcode();
# $sPtn = ;
$errStr
$GD::Barcode::errStr
has error message.
$text
$oGdBar->{$text}
has barcode text based on $sTxt specified in new method.

<<less
Download (0.87MB)
Added: 2007-04-24 License: Perl Artistic License Price:
925 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
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
GNoise 0.1.15

GNoise 0.1.15


GNoise is a wave file editor for Linux. more>>
GNoise is a wave file editor for Linux. Prime considerations were for it to be speedy and be able to handle big files. So far it can: load and display files, generate a display cache, play the file, cut, copy, paste, (unlimited) undo, mute, fade in/out, reverse, normalize, and more.
The primary design objectives are stability, speed, and the ability to handle big files (i.e. 70MB ripped CD tracks) easily. In fact GNoise is known to work with >500MB files although the author doesnt happen to have any wave files that size laying about.
See the TODO list for things Im considering adding/fixing in the near future. Feel free to send me patches or email, especially for any bugs you encounter.
The custom gtk widgets within GNoise support setting colors through the normal gtkrc mechanisms, there is a sample gtkrc file included, just drop it in ~/.gnoise and edit it to your likings.
Note that GNoise is a destructive editor: all editing operates directly on the soundfile, work on a copy of something you really dont want to lose. Note also that you should not mix the use of the disable undo option on different edits within an editing session (ie. if you start editing a file with undo disabled then leave undos disabled until you close the file, at which point you can turn undo on and re-open the file if you wish to edit with undo capability).
Enhancements:
- Finally did the markers/cue points. Add/delete markers that are saved in a standard cue chunk inside the wave file.
<<less
Download (0.069MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1194 downloads
Netrik 1.15.5

Netrik 1.15.5


Netrik is the ANTRIK Internet Viewer/Browser/Explorer/Navigator/whatever. more>>
Netrik is the ANTRIK Internet Viewer/Browser/Explorer/Navigator/whatever. (Tell us which one you like best.

Netrik is Free Source Software published under the GNU GPL, which essentially states that you can do anything with the programm and its source code, as long as it remains free.

There are a lot of reasons to use a text browser.

The first one is that a text mode browser runs almost everywhere, even in environments without a graphical mode. Especially the possibility to use them through Telnet can be very useful. Also, a text mode browser needs very few system ressources, as displaying text needs much less processor time and memory than graphical pages. On a heavily loaded machine it steals less ressources and feels much better.

The second one is that its a very good possibility for web authors to test the usability of their pages. In a text mode browser many flaws of web pages are obvious, which are hidden in Netscape&Co., but could cause problems in other browsers.

The third reason (which seems to be the decisive one for many users) is that the avialable text mode browsers have very quick startup times. Thus they can be used to take a quick glance at a page without having to start a "big" graphical browser, and also without having to start the graphical environment if you do not have one running all the time. (I do not.) This can be very valuable, especially for program documentation in html format.

The fourth reason to use a text mode browser is that it "saves" one from graphically overloaded pages. Many pages are much clearer in a text mode browser, and thus information retrieval is much more efficient. Note that for many pages this is only true if the text mode resolution is high enough. (No problem in an xterm or on a Linux console with an fb-device.)

The fifth reason (the main reason why I use text mode browsers) is that many people generally prefer text mode over graphical mode. There are many reasons for this, but I guess this is more a question of taste... Only please do not make your sentence without having experienced it :-)

Last but not least, a text mode browser is the most reasonable possibility to browse the web for blind users.
<<less
Download (0.471MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
1041 downloads
Apache2::ASP 1.15

Apache2::ASP 1.15


Apache2::ASP was developed in an attempt to address some of the problems associated with web application development in Perl. more>>
Apache2::ASP was developed in an attempt to address some of the problems associated with web application development in Perl.
Main features:
- Easy to install and get going.
- Requires only a small number of dependencies, each of which install automatically.
- Offers some structure without enforcing undue rigidity.
- Scales out instantly across multiple servers without requiring front-end proxies.
<<less
Download (0.060MB)
Added: 2007-07-11 License: Perl Artistic License Price:
842 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
AudioMove 1.15

AudioMove 1.15


AudioMove is a handy GUI-based batch audio file converter/ copier program. more>>
AudioMove project is a simple, easy to use GUI-based batch audio file copy-and-conversion program.
You just tell it what files to convert, what format to convert them to, and where to put the output files, and it does it.
Main features:
- Converts from any format that libsndfile can read, to WAV, AIFF, or LCS format
- Uses libsamplerate for high-quality sample rate conversion to various sample rates (11.025kHz-192kHz)
- Supports 8-bit, 16-bit, 24-bit, 32-bit, or floating-point output sample widths
- Specify files to convert using file requester or drag-and-drop
- Multithreaded design for faster processing on multiprocessor machines
- Pipelined dataflow for efficient resource utilization
- Recursively batch-convert entire directory trees in a single step
- Conversion-batch sizes may be arbitrarily large (e.g. thousands of files at a time)
- Can be controlled from the command line (useful for invoking batch conversions from scripts)
- No installation necessary -- just unzip and run
- Qt-based GUI means AudioMove is portable to most major OSs
- Open source (GPL); source code is available below
- SUSE 9.1, MacOS/X and Windows binaries available below for your convenience.
Enhancements:
- The codebase has been ported to Qt 4.2.3.
- The ability to split multitrack files into single-track stems has been added.
- A "Convert in Place" mode has been added.
- BEXT chunks in WAV files are now preserved.
- Support has been added for 64-bit float sample widths.
- The column layout is now more customizable.
- All controls now have keyboard shortcuts.
- Several bugs have been fixed.
<<less
Download (2.7MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
870 downloads
Gequel 1.15

Gequel 1.15


Gequel is a MySQL GUI for manipulating records (insert, modify, delete, search). more>>
Gequel project is a MySQL GUI for manipulating records (insert, modify, delete, search).

GEQUEL is a GTK/C based frontend for the MySQL database engine loosely derived from an older program xsqlmenu.

Can retrieve data from MySQL databases, present them in nice browser, and allows for update,delete,insert,query,search and copy operations

<<less
Download (0.70MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Gedcom 1.15

Gedcom 1.15


Gedcom is a Perl module to manipulate Gedcom genealogy files. more>>
Gedcom is a Perl module to manipulate Gedcom genealogy files.

SYNOPSIS

use Gedcom;

my $ged = Gedcom->new;
my $ged = Gedcom->new($gedcom_file);
my $ged = Gedcom->new(grammar_version => 5.5,
gedcom_file => $gedcom_file,
read_only => 1,
callback => $cb);
my $ged = Gedcom->new(grammar_file => "gedcom-5.5.grammar",
gedcom_file => $gedcom_file);

return unless $ged->validate;
my $xref = $self->resolve_xref($value);
$ged->resolve_xrefs;
$ged->unresolve_xrefs;
$ged->normalise_dates;
my %xrefs = $ged->renumber;
$ged->order;
$ged->write($new_gedcom_file, $flush);
$ged->write_xml($new_xml_file);
my @individuals = $ged->individuals;
my @families = $ged->families;
my $me = $ged->get_individual("Paul Johnson");
my $xref = $ged->next_xref("I");
my $record = $ged->add_header;
add_submitter
add_individual
add_family
add_note
add_repository
add_source
add_trailer
my $source = $ged->get_source("S1");

<<less
Download (0.094MB)
Added: 2007-05-11 License: Perl Artistic License Price:
896 downloads
NNGS 1.1.21

NNGS 1.1.21


NNGS project consists of a free Internet Go server. more>>
NNGS project consists of a free Internet Go server.
The NNGS (No Name Go Server) is a full-featured server which allows you to play the game of Go over the Internet.
It runs on Unix machines as well as on Windows, and supports connections from many clients (both graphical and text based).
The code is based on the Free Internet Chess Server (FICS) code, and currently only supports the game of Go.
Main features:
- make it work with more clients
- make it easier to use in text mode
- make the code easier to understand and extend
- make the code more portable (allow it to run on more platforms)
- implement internationalization and add translations
- give people the chance to run their own server
- allow people to test clients and go programs more easily
Enhancements:
- added default_komi and default_komi9 to configurable items.
- silly tell-command returned prematurely.
- Say/tell/shout/kibitz/channel/etc-Formatstrings. Sigh.
- Removed some more double-indexing of [pg]array.
- (GIFU2006) fixed bugs that were introduced (in 1.1.15??) by changing calloc() -->> malloc(); added some memset()...
- use server_http (instead of hardcoded nngs.cosmic.org) in last line of usage-command.
- added handling of dotted quad in lists/ban file
- network.c : netstruct.in_full is never set to anything != zero. plan to reuse it.
- moved more tunable constants to the conffile.
- added fromport (portnumber) into netstruct.
- changed return form xystat() to be st_size iff stat() returns >=0
- changed player_write() to only clear is_dirty if file was written succesfully.
<<less
Download (0.78MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
952 downloads
Honeyd 1.5c

Honeyd 1.5c


Honeyd is a small daemon that creates virtual hosts on a network. more>>
The hosts can be configured to run arbitrary services, and their personality can be adapted so that they appear to be running certain operating systems. Honeyd enables a single host to claim multiple addresses - I have tested up to 65536 - on a LAN for network simulation.

Honeyd improves cyber security by providing mechanisms for threat detection and assessment. It also deters adversaries by hiding real systems in the middle of virtual systems.
It is possible to ping the virtual machines, or to traceroute them. Any type of service on the virtual machine can be simulated according to a simple configuration file. Instead of simulating a service, it is also possible to proxy it to another machine.

annotate "AIX 4.0 - 4.2" fragment old
# Example of a simple host template and its binding create template
set template personality "AIX 4.0 - 4.2"
add template tcp port 80 "sh scripts/web.sh"
add template tcp port 22 "sh scripts/test.sh $ipsrc $dport"
add template tcp port 23 proxy 10.23.1.2:23
set template default tcp action reset

bind 10.21.19.102 template

The different TCP personalities are learned from reading a nmap fingerprint file. The configured personality is the operating system that nmap or xprobe will return. Personalities can be annotated to determine if they allow FIN-scans for open ports or to select the preference in which they reassemble fragmented IP packets.

Honeyd can be used to create a virtual honey net or for general network monitoring. It supports the creation of a virtual network topology including dedicated routes and routers. The routes can be attributed with latency and packet loss to make the topology seem more realistic.
Because Honeyd interacts with potentially malicious adversaries, you should sandbox it with Systrace. Systrace prevents an adversary from exploiting bugs in your Honeyd scripts.

Subsystem Virtualization

Honeyd supports service virtualization by executing Unix applications as subsystems running in the virtual IP address space of a configured honeypot. This allows any network application to dynamically bind ports, create TCP and UDP connections using a virtual IP address.
Subsystems are virtualized by intercepting their network requests and redirecting them to Honeyd. Every configuration template may contain subsystems that are started as separated processes when the template is bound to a virtual IP address. An additional benefit of this approach is the ability of honeypots to create sporadic background traffic like requesting web pages and reading email, etc.

Network Simulation/Internet-In-The-Box

Honeyd supports assymetric routes and the integration of physical machines into the virtual network topology. As a result, it is possible to use Honeyd for simple network simulations: Physical hosts can be exposed to high latency or packet loss, arbitrary routing infrastructures, etc.

route entry 10.0.0.1 network 10.0.0.0/8
route 10.0.0.1 link 10.0.0.0/24
route 10.0.0.1 add net 10.4.0.0/14 tunnel "thishost" "honeyd-b"
route 10.0.0.1 add net 10.1.0.0/16 10.1.0.1 latency 55ms loss 0.1
route 10.0.0.1 add net 10.2.0.0/16 10.2.0.1 latency 20ms loss 0.1
route 10.0.0.1 add net 10.3.0.0/16 10.2.0.1 latency 20ms loss 0.1
route 10.1.0.1 link 10.1.0.0/24
route 10.2.0.1 link 10.2.0.0/24
[...]
route 10.2.0.1 add net 10.3.0.0/16 10.3.0.1 latency 10ms loss 0.1
route 10.3.0.1 link 10.3.0.0/24
route 10.3.0.1 add net 10.3.1.1/24 10.3.1.1 latency 10ms
route 10.3.0.1 add net 10.3.240.0/20 10.3.240.1 latency 5ms
route 10.3.1.1 link 10.3.1.1/24
route 10.3.240.1 link 10.3.240.0/20
route 10.3.240.1 add net 0.0.0.0/0 10.3.0.1 latency 40ms loss 0.5
[...]
bind 10.2.0.243 to fxp0
bind 10.3.1.15 to fxp0

Using GRE tunneling allows the creation of distributed setups that allow Honeyd to scale to larger networks. It also allows virtual machines to be spread across separate address spaces as GRE tunnel selection can be based on the source addresses.

<<less
Download (0.87MB)
Added: 2007-05-29 License: GPL (GNU General Public License) Price:
888 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4