Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.362.164 Times

Binary Explosives Formulas freeware
Filter: All | Freeware | Demo
 

Binary Explosives Formulas

1 2 3 4 5 > 
Released: August 08, 2011  |  Added: August 29, 2011 | Visits: 1.998

Binary Viewer Binary Viewer is a free windows utility allowing you to open and view any file located on your computer regardless of format file was saved. It can display data in decimal, octal, hexadecimal and text (ASCII or Unicode) formats. Program supports Alternate Data Streams (ADS). It also provides...



Platforms: Windows

License: Freeware Size: 767.6 KB Download (692): Binary Viewer Download

Added: July 15, 2010 | Visits: 897

Parse::Binary::FixedFormat::Variants Parse::Binary::FixedFormat::Variants is a Perl module to convert between variant records and hashes. Parse::Binary::FixedFormat supports variant record formats. To describe a variant structure, pass a hash reference containing the following elements to new. The object returned to handle variant...





Platforms: *nix

License: Freeware Size: 31.74 KB Download (88): Parse::Binary::FixedFormat::Variants Download

Added: August 02, 2010 | Visits: 994

Parse::Binary::FixedFormat Parse::Binary::FixedFormat is a Perl module to convert between fixed-length fields and hashes. SYNOPSIS use Parse::Binary::FixedFormat; my $tarhdr = new Parse::Binary::FixedFormat [ qw(name:a100 mode:a8 uid:a8 gid:a8 size:a12 mtime:a12 chksum:a8 typeflag:a1 linkname:a100 magic:a6...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (96): Parse::Binary::FixedFormat Download

Added: January 27, 2010 | Visits: 946

Search::Binary Search::Binary is a Perl module for generic binary search. SYNOPSIS use Seach::Binary; $pos = binary_search($min, $max, $val, $read, $handle, [$size]); binary_search implements a generic binary search algorithm returning the position of the first record whose index value is greater than or...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (105): Search::Binary Download

Added: October 15, 2010 | Visits: 1.618

Formulas Rendering Plug-In for the Gimp 2 Formulas Rendering Plug-In for the Gimp 2 is a simple plugin that allows you to change the values of each color channel of each pixel of a layer by using mathematical expressions. It is able to handle RGB* and Gray* images. Available operators are: +, -, *, /, ^, and %. There are many functions...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (127): Formulas Rendering Plug-In for the Gimp 2 Download

Added: August 26, 2010 | Visits: 1.906

Tree::Binary Tree::Binary is a Object Oriented Binary Tree for Perl. SYNOPSIS use Tree::Binary; # a tree representaion of the expression: # ((2 + 2) * (4 + 5)) my $btree = Tree::Binary->new("*") ->setLeft( Tree::Binary->new("+") ->setLeft(Tree::Binary->new("2")) ->setRight(Tree::Binary->new("2"))...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (326): Tree::Binary Download

Added: October 13, 2010 | Visits: 1.177

Tree::Binary::Search 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");...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (253): Tree::Binary::Search Download

Released: November 08, 2013  |  Added: July 01, 2015 | Visits: 1.163

Binary Clock Binary Clock is a gadget that will add to your desktop or Sidebar a binary clock. This is a clock displays the current time in binary notation. Save settings to file. (File will be created - Path: %APPDATA% Filename: gadgetname_Settings.ini). Color changeable for all gadget's elements, including...


Platforms: Windows 7, Windows

License: Freeware Size: 319 KB Download (105): Binary Clock Download

Released: October 05, 2012  |  Added: October 05, 2012 | Visits: 760

Binary Viewer / Editor Binary Viewer / Editor is a compact application that enables you to view and edit the content of a file in binary view. That means the user can open every type of file, view the content and make modifications. It is a tool for the users accustomed to working with binary files. The program has a...


Platforms: Windows

License: Freeware Download (459): Binary Viewer / Editor Download

Released: June 13, 2012  |  Added: June 13, 2012 | Visits: 990

Decimal-Binary Unit Converter Decimal-Binary Unit Converter is a small, simple, Java based application specially designed to lend you a hand when you need to convert byte units. Using this tool is very easy: you just enter the unit value that you want to convert and let Decimal-Binary Unit Converter take care of the rest....


Platforms: Windows

License: Freeware Download (440): Decimal-Binary Unit Converter Download

Released: November 10, 2012  |  Added: November 10, 2012 | Visits: 560

Get Binary Get Binary was designed as a simple, accessible and easy-to-use Command Line-based tool that is able to extract binary information from a file. Now it is very easy to extract the binary data you want in no time at all with the help of this Open Source software.


Platforms: Windows

License: Freeware Download (419): Get Binary Download

Added: May 10, 2013 | Visits: 438

Format integer as binary string This script converts integers to binary strings with no leading zeros.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (58): Format integer as binary string Download

Added: May 10, 2013 | Visits: 583

Sending binary data to stdout This script allows you to send binary data, such as for an image, to stdout under Windows.If you are reading or writing binary data under Windows, such as for an image, then the file must specifically be opened in binary mode (Unix doesn't make a distinction between text and binary modes). But...


Platforms: Windows, Python,

License: Freeware Download (57): Sending binary data to stdout Download

Added: May 10, 2013 | Visits: 835

Parsing binary files with regular expressions This script allows you to use the regular expression engine to parse binary files, especially those for which the struct module alone is inadequate.The typical way to parse binary data in Python is to use the unpack method of the struct module. This works well for fixed-width fields, but...


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 492

Binary search and insert in Python This script demonstrates a binary search through sorted data using bisect. A large array of random numbers is generated and then sorted. The the application shows where a given number would be inserted in the random data list.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Binary search and insert in Python Download

Added: May 10, 2013 | Visits: 482

Binary search in one line This is an implementation of the binary search algorithm in (almost) one line. Given a number 'n' and a list 'L', the function returns the index of the number on the list, or -1.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (56): Binary search in one line Download

Added: May 10, 2013 | Visits: 468

Binary ordered tree This script is a simple example demonstrating the construction of binary trees.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): Binary ordered tree Download

Added: August 31, 2013 | Visits: 518

Binary Amplitude Shift Keying This script simulates the Binary Amplitude Shift keying. Since BASK is a digital modulation scheme, you can modulate as many bits as you want. however, I have only simulated it for 5 bits, so that the results are visible.This is code for BASK only, means it can only modulated two digital states.I...


Platforms: Matlab

License: Freeware Size: 10 KB Download (46): Binary Amplitude Shift Keying Download

Added: July 06, 2013 | Visits: 575

BOC(Binary Offset Carrier) new GPS Signal (Galileo) Binary Offset Carrier , resume.txt include


Platforms: Matlab

License: Freeware Size: 40.96 KB Download (41): BOC(Binary Offset Carrier) Download

Added: June 02, 2013 | Visits: 541

Binary Frequency Shift Keying This script simulates the Binary Frequency Shift keying. Since BFSK is a digital modulation scheme, you can modulate as many bits as you want. however, I have only simulated it for few bits, so that the results are visible.This is code for BFSK only, means it can only modulated two digital states...


Platforms: Matlab

License: Freeware Size: 10 KB Download (43): Binary Frequency Shift Keying Download

1 2 3 4 5 >