hex a hop 1.00
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 327
Hex-a-hop 1.00
Hex-a-hop is a puzzle game based on hexagonal tiles. more>>
Hex-a-hop is a puzzle game based on hexagonal tiles. There is no time limit and no real-time elements.
The objective is simply to destroy all the green hexagonal tiles on each of the 100 levels. As you progress through the game, more types of tiles are introduced which make things more difficult and interesting (hopefully).
The project is built on top of SDL, which is an open-source layer for direct media access.
<<lessThe objective is simply to destroy all the green hexagonal tiles on each of the 100 levels. As you progress through the game, more types of tiles are introduced which make things more difficult and interesting (hopefully).
The project is built on top of SDL, which is an open-source layer for direct media access.
Download (0.80MB)
Added: 2007-06-14 License: Other/Proprietary License Price:
1245 downloads
Hop 1.6.0
Hop is a new programming language designed for the Web 2.0. more>>
Hop is a new programming language designed for the Web 2.0. Hop is a higher-order language for programming interactive web applications such as web agendas, web galleries, music players, etc.
Hop can be viewed as a replacement for traditional graphical toolkits. HOP is implemented as a Web broker, i.e., a Web server that may act indifferently as a regular Web server or Web proxy.
Enhancements:
- The highlights of this version are support for history and bookmarking, and a (single-threaded) Mac OS X port.
<<lessHop can be viewed as a replacement for traditional graphical toolkits. HOP is implemented as a Web broker, i.e., a Web server that may act indifferently as a regular Web server or Web proxy.
Enhancements:
- The highlights of this version are support for history and bookmarking, and a (single-threaded) Mac OS X port.
Download (0.64MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
866 downloads
Cairo 1.00
Cairo package contains Perl bindings to the cairo graphics library. more>>
Cairo package contains Perl bindings to the cairo graphics library.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
To avoid installing to a system directory, if you dont have root access, you can change the installation prefix at Makefile.PL time with
perl Makefile.PL PREFIX=/some/other/place
This will install the module to the subdirectory lib/perl5 under the given prefix. If this is not already in perls include path, youll need to tell perl how to get to this library directory so you can use it; there are three ways:
in your environment (the easiest):
# assuming a bourne-style shell
PERL5LIB=/some/other/place/lib/perl5/site_perl export PERL5LIB
on the perl command line:
perl -I /some/other/place/lib/perl5/site_perl yourscript
in the code of your perl script:
use lib /some/other/place/lib/perl5/site_perl;
<<lessINSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
To avoid installing to a system directory, if you dont have root access, you can change the installation prefix at Makefile.PL time with
perl Makefile.PL PREFIX=/some/other/place
This will install the module to the subdirectory lib/perl5 under the given prefix. If this is not already in perls include path, youll need to tell perl how to get to this library directory so you can use it; there are three ways:
in your environment (the easiest):
# assuming a bourne-style shell
PERL5LIB=/some/other/place/lib/perl5/site_perl export PERL5LIB
on the perl command line:
perl -I /some/other/place/lib/perl5/site_perl yourscript
in the code of your perl script:
use lib /some/other/place/lib/perl5/site_perl;
Download (0.042MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1143 downloads
ExtSub 1.00
ExtSub is an utility which extracts and decodes subtitle data from VOB files. more>>
ExtSub is an utility which extracts and decodes subtitle data from VOB files. This program is for extracting subtitles from DVD VOB files. It does not descramble CSS-encrypted files. To compile simpy type "make". The command line parameters are as next:
infile= The VOB file from which to extract subtitles.
videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)
subname= The prefix of all subtitle files (see below for
details on the individual files).
convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.
id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.
Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".
The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.
The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.
The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
<<lessinfile= The VOB file from which to extract subtitles.
videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)
subname= The prefix of all subtitle files (see below for
details on the individual files).
convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.
id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.
Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".
The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.
The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.
The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
Download (0.017MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1183 downloads
hexdump 1.6
hexdump is a hex dumper that can handle EBCDIC. more>>
hexdump produces a CP/M-like format by default, and can handle EBCDIC. It is internationalized, and has many formatting functions.
This hex dumper was born because
a) od octal format is appallingly ugly
b) od -x aint much better
c) I needed to dump EBCDIC files from SNA sessions
d) I needed to dump single blocks of files offset into the file.
If any of these describes your universe, youll like it too. The format resembles a CP/M or MS/DOS DEBUG dump screen. There is nothing UNIX-specific in the source, it should work OK under any C with a stdio.h library.
Enhancements:
- Source RPMs no longer depend on --define myversion
<<lessThis hex dumper was born because
a) od octal format is appallingly ugly
b) od -x aint much better
c) I needed to dump EBCDIC files from SNA sessions
d) I needed to dump single blocks of files offset into the file.
If any of these describes your universe, youll like it too. The format resembles a CP/M or MS/DOS DEBUG dump screen. There is nothing UNIX-specific in the source, it should work OK under any C with a stdio.h library.
Enhancements:
- Source RPMs no longer depend on --define myversion
Download (0.016MB)
Added: 2005-03-07 License: GPL (GNU General Public License) Price:
1695 downloads
Salat Book 1.00
Salat Book gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. more>>
Salat Book 1.00 gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. It is using month calendars, salat completion datagrid, statistics and graphs and is specially useful for Kaza (missed Salat) prayers.
Enhancements:
- Statistics filter & Graphs flter now changed to single Date Filter.
- Date Filter now enabled for Pie Charts & Bar Chart.
- Removal of Error Statistics debugging pop-ups with grand total stats.
- Graphs Bar Chart legend moved to top left.
- Application window & components resized & compacted for better visibility on
- lower resolution screens.
- Prayer Tab Salat selection button highlighting added.
- Prayer Tab Month datagrid...absent salah colour changed from light red/pink
- red to a darker red.
- Options Tab Backup function now enabled.
- Options Tab Restore function now enabled.
- Options Tab Error removal on Edit/Save function, corrupting data files.
- Application data files integrity check & repair code added during startup.
Requirements:
- Adobe AIR
Added: 2009-06-29 License: Freeware Price: FREE
1 downloads
Xws 1.00
Xws project is a multi-player Across Lite server with chat. more>>
Xws project is a multi-player Across Lite server with chat.
Xws is a text mode multi-player crossword and chat server. It presents the same puzzle to everyone, allowing people the option to try and/or discuss solutions.
Play may be friendly collaboration or fierce competition, depending on the players dispositions. Xws supports hundreds of puzzles in the popular Across Lite file format.
Copyright issues prevent the distribution from including any puzzles, but several archives and resources are listed in the README.
<<lessXws is a text mode multi-player crossword and chat server. It presents the same puzzle to everyone, allowing people the option to try and/or discuss solutions.
Play may be friendly collaboration or fierce competition, depending on the players dispositions. Xws supports hundreds of puzzles in the popular Across Lite file format.
Copyright issues prevent the distribution from including any puzzles, but several archives and resources are listed in the README.
Download (0.019MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1055 downloads
Sshpass 1.00
Sshpass is a tool for non-interactivly performing password authentication with SSH. more>>
Sshpass project is a tool for non-interactivly performing password authentication with SSHs so called "interactive keyboard password authentication".
Most users should use SSHs more secure public key authentication instead.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- This release makes sure that authentication failures are terminated early.
- It will better detect when the child has exited.
- Error reporting has been improved.
<<lessMost users should use SSHs more secure public key authentication instead.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- This release makes sure that authentication failures are terminated early.
- It will better detect when the child has exited.
- Error reporting has been improved.
Download (0.082MB)
Added: 2006-03-17 License: GPL (GNU General Public License) Price:
1326 downloads
GBAconv 1.00
GBAconv is a set of tools aimed at GameBoy Advance developers. more>>
GBAconv is a set of tools aimed at GameBoy Advance developers. GBAconv allows you to convert WAV sounds and PCX images into C arrays to be included in GBA programs.
It is composed of two programs:
- pcx2gba: exports a PCX 8-bpp image to 16-bit values C arrays: palette + image data (2 pixels per value)
- wav2gba: exports a WAV 8-bit mono sound to 8-bit signed values array.
There wont be any other releases of GBAconv, as Ive no interest for the GBA platform anymore.
Compiling:
Simply type "make" to compile the program.
It has been successfully compiled on:
- 32-bit x86 Architecture (Ubuntu Linux 5.10, FreeBSD 5.4)
Usage:
pcx2gba input.pcx output.inc array_name (Input File must be 8-bit PCX)
wav2gba input.wav output.inc array_name (Input File must be 8-bit, MONO)
<<lessIt is composed of two programs:
- pcx2gba: exports a PCX 8-bpp image to 16-bit values C arrays: palette + image data (2 pixels per value)
- wav2gba: exports a WAV 8-bit mono sound to 8-bit signed values array.
There wont be any other releases of GBAconv, as Ive no interest for the GBA platform anymore.
Compiling:
Simply type "make" to compile the program.
It has been successfully compiled on:
- 32-bit x86 Architecture (Ubuntu Linux 5.10, FreeBSD 5.4)
Usage:
pcx2gba input.pcx output.inc array_name (Input File must be 8-bit PCX)
wav2gba input.wav output.inc array_name (Input File must be 8-bit, MONO)
Download (0.010MB)
Added: 2006-01-16 License: GPL (GNU General Public License) Price:
1379 downloads
GD::Map 1.00
GD::Map is Perl extension for creating geographic map files with GD. more>>
GD::Map is Perl extension for creating geographic map files with GD.
SYNOPSIS
use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();
my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};
ABSTRACT
Perl extension for creating geographic map files with GD
<<lessSYNOPSIS
use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();
my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};
ABSTRACT
Perl extension for creating geographic map files with GD
Download (0.008MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Il Catalogo 1.00
A classical CD music cataloging utility more>> A classical CD music cataloging utility
Il Catalogo will allow you to keep track of all your CDs and organize you classical music collection. An easy to use and handy cataloguer written in Java.
<<less Download (865KB)
Added: 2009-04-07 License: GPL Price: FREE
199 downloads
Equalize 1.00
Equalize plug-in does a histogram equalization of the image. more>>
Equalize plug-in does a histogram equalization of the image.
That is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
<<lessThat is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
Download (0.006MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1130 downloads
edanator 1.03
edanator is an intuitive graphical binary and hex calculator. more>>
edanator is an intuitive graphical binary and hex calculator. Each nibble is displayed in hex and binary. Clicking on the button (hex nibble or binary bit) changes the value. Bit and nibble shifting is supported via dedicated buttons. The project supports variable widths per word (up to 64- bits), three words (each on a different row), and mathematical operations between words.
Enhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
<<lessEnhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
Download (0.007MB)
Added: 2007-03-27 License: LGPL (GNU Lesser General Public License) Price:
944 downloads
Smart Sharpening 1.00
Smart Sharpening plugin is a method of sharpening, which sharpens only the edges in the image. more>>
Smart Sharpening plugin is a method of sharpening, which sharpens only the edges in the image. This way the noise in the larger smooth parts doesnt get amplified as it does when using regular unsharp mask.
You can find more details on smart sharpening here at gimpguru.org.
Notice that the amount of sharpness is equal, but there is notably less noise. You can see that especially, when you look the hand of the guitar player.
<<lessYou can find more details on smart sharpening here at gimpguru.org.
Notice that the amount of sharpness is equal, but there is notably less noise. You can see that especially, when you look the hand of the guitar player.
Download (0.004MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1150 downloads
Search::Lemur 1.00
Search::Lemur is a Perl class to query a Lemur server, and parse the results. more>>
Search::Lemur is a Perl class to query a Lemur server, and parse the results.
SYNOPSYS
use Search::Lemur;
my $lem = Search::Lemur->new("http://url/to/lemur.cgi");
# run some queries, and get back an array of results
# a query with a single term:
my @results1 = $lem->query("encryption");
# a query with two terms:
my @results2 = $lem->query("encryption MD5");
# get corpus term frequency of MD5:
my $md5ctf = $results2[1]->ctf();
This module will make it easy to interact with a Lemur Toolkit for Language Modeling and Information Retrieval server for information retreival exercises. For more information on Lemur, see http://www.lemurproject.org/.
This module takes care of all parsing of responses from the server. You can just pass a query as a space-separated list of terms, and the module will give you back an array of result objects.
<<lessSYNOPSYS
use Search::Lemur;
my $lem = Search::Lemur->new("http://url/to/lemur.cgi");
# run some queries, and get back an array of results
# a query with a single term:
my @results1 = $lem->query("encryption");
# a query with two terms:
my @results2 = $lem->query("encryption MD5");
# get corpus term frequency of MD5:
my $md5ctf = $results2[1]->ctf();
This module will make it easy to interact with a Lemur Toolkit for Language Modeling and Information Retrieval server for information retreival exercises. For more information on Lemur, see http://www.lemurproject.org/.
This module takes care of all parsing of responses from the server. You can just pass a query as a space-separated list of terms, and the module will give you back an array of result objects.
Download (0.008MB)
Added: 2007-04-06 License: Perl Artistic License Price:
932 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above hex a hop 1.00 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed