binary
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1340
MSCBlob for Linux 2.0
MSCBlob is an auxiliary component for data blocks storing and transmitting more>> MSCBlob (Binary Large Object) is an auxiliary component for data blocks storing and transmitting. It could contain a raw data and represent it as a binary or string. There are 3 alternative string representations: as-is, Base64 and Hex. Also has an ability to save and load data from files on disk.<<less
Download (92KB)
Added: 2009-04-07 License: Freeware Price: Free
199 downloads
6502asm 0.11
6502asm project is a simple 2-pass assembler, capable of producing binary files for the 6502 processor. more>>
6502asm project is a simple 2-pass assembler, capable of producing binary files for the 6502 processor.
I will give you more updates once this project advances. For now, just run build.sh in your favourite shell and see what happens...
Enhancements:
- Support for single-quoted characters like 6,5,0,2, and a new output format called "src".
<<lessI will give you more updates once this project advances. For now, just run build.sh in your favourite shell and see what happens...
Enhancements:
- Support for single-quoted characters like 6,5,0,2, and a new output format called "src".
Download (0.007MB)
Added: 2007-08-12 License: BSD License Price:
803 downloads
EDB (Evans Debugger) 0.8.18
EDB (Evans Debugger) is a QT4 based binary mode debugger with the goal of having usability on par with OllyDbg. more>>
EDB (Evans Debugger) is a QT4 based binary mode debugger with the goal of having usability on par with OllyDbg.
EDB project uses a plugin architecture, so adding new features can be done with ease. The current release is for Linux, but future releases will target more platforms.
<<lessEDB project uses a plugin architecture, so adding new features can be done with ease. The current release is for Linux, but future releases will target more platforms.
Download (0.45MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
520 downloads
sx360 1.0
sx360 is an open source c++ library for dealing with 360 column binary format. more>>
sx360 is an open source c++ library for dealing with 360 column binary format. Although it is in its infancy, it is very complete in its featureset. The library supports files greater than 4 GB in size.
Project files are available for XCode, Visual Studio 2005, and Linux (autoconf/automake).
sx360 has been tested on :
- Mac OS X 10.4
- CentOS 5 (32 and 64 bit)
- Ubuntu 7.04 (32 bit)
- Windows XP SP2
<<lessProject files are available for XCode, Visual Studio 2005, and Linux (autoconf/automake).
sx360 has been tested on :
- Mac OS X 10.4
- CentOS 5 (32 and 64 bit)
- Ubuntu 7.04 (32 bit)
- Windows XP SP2
Download (0.46MB)
Added: 2007-08-06 License: BSD License Price:
811 downloads
python-dime 0.1
python-dime project provides a way to parse and generate DIME messages. more>>
python-dime project provides a way to parse and generate DIME messages.
Direct Internet Message Encapsulation (DIME) is a binary message format that can be used to encapsulate multiple payloads into a single message.
<<lessDirect Internet Message Encapsulation (DIME) is a binary message format that can be used to encapsulate multiple payloads into a single message.
Download (0.007MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
821 downloads
libjhttpd 0.2
libjhttpd project is a simple HTTP/1.0 compliant, threaded webserver-library written in Java. more>>
libjhttpd project is a simple HTTP/1.0 compliant, threaded webserver-library written in Java.
Main features:
- threaded
- very fast
- supports MIME-Types
- flexible configuration
- supports binary multipart POST-Requests, i.e. File Uploads
<<lessMain features:
- threaded
- very fast
- supports MIME-Types
- flexible configuration
- supports binary multipart POST-Requests, i.e. File Uploads
Download (0.040MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
823 downloads
Tree::Binary::Search 0.07
Tree::Binary::Search is a binary search tree for Perl. more>>
Tree::Binary::Search is a binary search tree for Perl.
SYNOPSIS
use Tree::Binary::Search;
my $btree = Tree::Binary::Search->new();
$btree->useNumericComparison();
$btree->insert(5 => "Five");
$btree->insert(2 => "Two");
$btree->insert(1 => "One");
$btree->insert(3 => "Three");
$btree->insert(4 => "Four");
$btree->insert(9 => "Nine");
$btree->insert(8 => "Eight");
$btree->insert(6 => "Six");
$btree->insert(7 => "Seven");
# this creates the following tree:
#
# +-------(5)----------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +----(8)
# | |
# (4) (6)-+
# |
# (7)
#
$btree->exists(7); # return true
$btree->update(7 => "Seven (updated)");
$btree->select(9); # return Nine
$btree->min_key(); # returns 1
$btree->min(); # returns One
$btree->max_key(); # return 9
$btree->max(); # return Nine
$btree->delete(5);
# this results in the following tree:
#
# +-------(6)-------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +-(8)
# | |
# (4) (7)
#
This module implements a binary search tree, which is a specialized usage of a binary tree. The basic principle is that all elements to the left are less than the root, all elements to the right are greater than the root. This reduces the search time for elements in the tree, by halving the number of nodes that need to be searched each time a node is examined.
Binary search trees are a very well understood data-structure and there is a wealth of information on the web about them.
Trees are a naturally recursive data-structure, and therefore, tend to lend themselves well to recursive traversal functions. I however, have chosen to implement the tree traversal in this module without using recursive subroutines. This is partially a performance descision, even though perl can handle theoreticaly unlimited recursion, subroutine calls to have some overhead. My algorithm is still recursive, I have just chosen to keep it within a single subroutine.
<<lessSYNOPSIS
use Tree::Binary::Search;
my $btree = Tree::Binary::Search->new();
$btree->useNumericComparison();
$btree->insert(5 => "Five");
$btree->insert(2 => "Two");
$btree->insert(1 => "One");
$btree->insert(3 => "Three");
$btree->insert(4 => "Four");
$btree->insert(9 => "Nine");
$btree->insert(8 => "Eight");
$btree->insert(6 => "Six");
$btree->insert(7 => "Seven");
# this creates the following tree:
#
# +-------(5)----------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +----(8)
# | |
# (4) (6)-+
# |
# (7)
#
$btree->exists(7); # return true
$btree->update(7 => "Seven (updated)");
$btree->select(9); # return Nine
$btree->min_key(); # returns 1
$btree->min(); # returns One
$btree->max_key(); # return 9
$btree->max(); # return Nine
$btree->delete(5);
# this results in the following tree:
#
# +-------(6)-------+
# | |
# +-(2)-+ +-(9)
# | | |
# (1) (3)-+ +-(8)
# | |
# (4) (7)
#
This module implements a binary search tree, which is a specialized usage of a binary tree. The basic principle is that all elements to the left are less than the root, all elements to the right are greater than the root. This reduces the search time for elements in the tree, by halving the number of nodes that need to be searched each time a node is examined.
Binary search trees are a very well understood data-structure and there is a wealth of information on the web about them.
Trees are a naturally recursive data-structure, and therefore, tend to lend themselves well to recursive traversal functions. I however, have chosen to implement the tree traversal in this module without using recursive subroutines. This is partially a performance descision, even though perl can handle theoreticaly unlimited recursion, subroutine calls to have some overhead. My algorithm is still recursive, I have just chosen to keep it within a single subroutine.
Download (0.027MB)
Added: 2007-07-21 License: Perl Artistic License Price:
825 downloads
Udis86 1.5
Udis86 is a binary file disassembler for x86/x86-64 with support for MMX, x87, 3Dnow! etc. more>>
Udis86/64 is (as of now) a binary file disassembler for the x86 and x86-64 (AMD64) architectures, capable of disassembling 16/32/64 bit binary files to AT&T or INTEL assembly language syntax.
[COPYRIGHt=1] Udis86 focuses on providing the basic disassembler functionality in executable format as well as a static library libudis86.a for use as the core of object/executable file diassembler programs.
Enhancements:
- Decode fixes.
- Fixed buffer overrun vulnerabilities. Input streaming is more robust now.
<<less[COPYRIGHt=1] Udis86 focuses on providing the basic disassembler functionality in executable format as well as a static library libudis86.a for use as the core of object/executable file diassembler programs.
Enhancements:
- Decode fixes.
- Fixed buffer overrun vulnerabilities. Input streaming is more robust now.
Download (0.10MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
835 downloads
SMA 1.1.0
SMA consists of a small collection of programs that perform different tests for association between genotypes. more>>
SMA software consists of a small collection of programs that perform different tests for association between genotypes at a single marker and a binary disease status.
<<less Download (0.81MB)
Added: 2007-07-08 License: GPL (GNU General Public License) Price:
840 downloads
nescom 1.1.3.1
nescom reads symbolic 6502/RP2A03/RP2A07 machine code and compiles (assembles) it into a relocatable object file. more>>
nescom reads symbolic 6502/RP2A03/RP2A07 machine code and compiles (assembles) it into a relocatable object file or into an IPS patch.
The produced object file is binary-compatible with those made with XA65.
<<lessThe produced object file is binary-compatible with those made with XA65.
Download (0.068MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
841 downloads
BinaryKlock 0.1
BinaryKlock project is a binary clock kicker applet. more>>
BinaryKlock project is a binary clock kicker applet.
The special thing about this clock is that it displays the time in binary instead of using the decimal system.
Binary is pretty easy to read and many people will nonetheless stare at your desktop, not believing how you can read the time from that.
This is my first KDE application, let me know if you like it ;)
Building:
This is my first KDevelop project as well, and Im not yet extremely familiar with it. It generated the usual autoconf files and you should be able to build it like this:
./configure
make
make install
<<lessThe special thing about this clock is that it displays the time in binary instead of using the decimal system.
Binary is pretty easy to read and many people will nonetheless stare at your desktop, not believing how you can read the time from that.
This is my first KDE application, let me know if you like it ;)
Building:
This is my first KDevelop project as well, and Im not yet extremely familiar with it. It generated the usual autoconf files and you should be able to build it like this:
./configure
make
make install
Download (0.61MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
844 downloads
UbuntuTrinux
UbuntuTrinux seeks to integrate elements of Trinux with the Debian/Ubuntu mkinitramfs infrastructure. more>>
UbuntuTrinux seeks to integrate elements (and code, where appropriate) of Trinux with the Debian/Ubuntu mkinitramfs infrastructure to allow easy development and packaging Ubuntu binary (and ultimately package and repository) compatible ramdisk distributions using recent 2.6.x kernels. As before, the most common use is network security monitoring and analysis.
Trinux: A Linux Security Toolkit was a ramdisk-based Linux distribution that was under active development from 1998-2003.
<<lessTrinux: A Linux Security Toolkit was a ramdisk-based Linux distribution that was under active development from 1998-2003.
Download (6.3MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
850 downloads
Squij 0.7
Squij is a quid refresh_pattern analysis program. more>>
Squij is a Squid refresh_pattern analysis program.
A paper and slides about Squij that was presented as a WIP at the International Web Caching Workshop 1999 are available.
If you have a platform request for a compiled binary, please tell me. If you have Python or can install it, please take pity on my link and get the Python version. Thanks.
squij-x.xx.tar.gz - Python source (requires Python 1.5 or greater)
squij-x.xx-[platform].tar.gz - platform-specific binaries.
The source distribution contains all needed modules.
<<lessA paper and slides about Squij that was presented as a WIP at the International Web Caching Workshop 1999 are available.
If you have a platform request for a compiled binary, please tell me. If you have Python or can install it, please take pity on my link and get the Python version. Thanks.
squij-x.xx.tar.gz - Python source (requires Python 1.5 or greater)
squij-x.xx-[platform].tar.gz - platform-specific binaries.
The source distribution contains all needed modules.
Download (0.021MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
853 downloads
NdisWrapper 1.47
NdisWrapper implements Windows kernel API and NDIS API within Linux kernel. more>>
NdisWrapper implements Windows kernel API and NDIS (Network Driver Interface Specification) API within Linux kernel.
A Windows driver for wireless network card is then linked to this implementation so that the driver runs natively, as though it is in Windows, without binary emulation.
<<lessA Windows driver for wireless network card is then linked to this implementation so that the driver runs natively, as though it is in Windows, without binary emulation.
Download (0.19MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
584 downloads
pmpkg 2007-06-11
pmpkg provides a script and definitions to build SysV style binary packages for Solaris. more>>
pmpkg provides a script and definitions to build SysV style binary packages for Solaris from source tarballs in an automated way, somewhat similar to ports or ebuilds.
pmpkg aims for reuse of system packages where possible and a minimalistic dependency set.
Enhancements:
- This release features more robust handling of the package tree in many places.
- It also includes the usual assortment of new packages (mkvtoolnix, xgcc-i386-elf, 0install, pyhashlib, ilmbase, libebml, libmatroska, smarteiffel) and updates (ddclient, openldap, dovecot, x264, erlang, php4, wine, pcre, wxwidgets, squeak, texmacs, bchunk, openexr, blender, ocaml, wavpack, gossip, ogle, git, star, boost, monotone, sbcl, scons).
<<lesspmpkg aims for reuse of system packages where possible and a minimalistic dependency set.
Enhancements:
- This release features more robust handling of the package tree in many places.
- It also includes the usual assortment of new packages (mkvtoolnix, xgcc-i386-elf, 0install, pyhashlib, ilmbase, libebml, libmatroska, smarteiffel) and updates (ddclient, openldap, dovecot, x264, erlang, php4, wine, pcre, wxwidgets, squeak, texmacs, bchunk, openexr, blender, ocaml, wavpack, gossip, ogle, git, star, boost, monotone, sbcl, scons).
Download (0.26MB)
Added: 2007-06-11 License: CDDL (Common Development and Distribution License) Price:
865 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 binary 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