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.071.709 Times

Perl Hex Dec freeware
Filter: All | Freeware | Demo
 

Perl Hex Dec

< 1 2 3 4 5 > 
Added: January 18, 2010 | Visits: 1.205

Number::Bytes::Human Number::Bytes::Human is a Perl module that can convert byte count to human readable format. SYNOPSIS use Number::Bytes::Human qw(format_bytes); $size = format_bytes(0); # 0 $size = format_bytes(2*1024); # 2.0K $size = format_bytes(1_234_890, bs => 1000); # 1.3M $size = format_bytes(1E9,...



Platforms: *nix

License: Freeware Size: 9.22 KB Download (98): Number::Bytes::Human Download

Added: September 03, 2010 | Visits: 1.397

Hardware::iButton Hardware::iButton is a Perl module that allows to talk to DalSemi iButtons via a DS2480 serial widget. SYNOPSIS use Hardware::iButton::Connection; $c = new Hardware::iButton::Connection "/dev/ttyS0"; @b = $c->scan(); foreach $b (@b) { print "family: ",$b->family(), "serial number: ",...





Platforms: *nix

License: Freeware Size: 21.5 KB Download (111): Hardware::iButton Download

Added: August 09, 2010 | Visits: 1.057

PDL::Transform::Cartography PDL::Transform::Cartography Perl module contains useful cartographic projections. SYNOPSIS # make a Mercator map of Earth use PDL::Transform::Cartography; $a = earth_coast(); $a = graticule(10,2)->glue(1,$a); $t = t_mercator; $w = pgwin(xs); $w->lines($t->apply($a)->clean_lines());...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (103): PDL::Transform::Cartography Download

Added: February 09, 2010 | Visits: 1.115

Regexp::Common::net Regexp::Common::net is a Perl module that provide regexes for IPv4 addresses. SYNOPSIS use Regexp::Common qw /net/; while (<>) { /$RE{net}{IPv4}/ and print "Dotted decimal IP address"; /$RE{net}{IPv4}{hex}/ and print "Dotted hexadecimal IP address"; /$RE{net}{IPv4}{oct}{-sep => :}/ and...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (109): Regexp::Common::net Download

Added: February 26, 2010 | Visits: 1.166

auto-build auto-build is a Perl module that can run automated, unattended software build processes. SYNOPSIS # auto-build [OPTION]... Run build using latest code currently in source control # auto-build --config /etc/auto-build.d/auto-build.conf Run build using code committed prior to 12:30 on Dec...


Platforms: *nix

License: Freeware Size: 204.8 KB Download (106): auto-build Download

Added: February 17, 2010 | Visits: 950

PAUS - Perl AUtomation System 1.0 Paus is all about controlling "stuff" with easy scripts. You could for example make the light in your house go on and off in the way you specify. You also could use paus to create a remote controlled mp3box that also has a web-interface at the same time and shows the current song on an LCD...


Platforms: *nix

License: Freeware Size: 358.4 KB Download (98): PAUS - Perl AUtomation System 1.0 Download

Added: April 24, 2010 | Visits: 769

Math::BaseCalc Math::BaseCalc is a Perl module that can convert numbers between various bases. SYNOPSIS use Math::BaseCalc; my $calc = new Math::BaseCalc(digits => [0,1]); #Binary my $bin_string = $calc->to_base(465); # Convert 465 to binary $calc->digits(oct); # Octal my $number =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Math::BaseCalc Download

Added: October 22, 2010 | Visits: 1.444

Games::Maze::SVG::Manual Games::Maze::SVG::Manual is a Perl module with manual for the Games::Maze::SVG modules. PURPOSE The Games::Maze::SVG module supports the creation of 2-dimensional mazes in an SVG format suitable for printing or playing interactively. This module use the Games::Maze module to perform the...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (104): Games::Maze::SVG::Manual Download

Added: August 19, 2010 | Visits: 1.621

Scrape::USPS::ZipLookup Perl Module The United States Postal Service (USPS) has on its web site an HTML form at http://www.usps.com/zip4/ for standardizing an address. Given a firm, urbanization, street address, city, state, and zip, it will put the address into standard form (provided the address is in their database) and display...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (130): Scrape::USPS::ZipLookup Perl Module Download

Added: March 19, 2010 | Visits: 989

Time::Warp Time::Warp is a Perl module to control over the flow of time. SYNOPSIS use Time::Warp qw(scale to time); to(time + 5); # 5 seconds ahead scale(2); # make time flow twice normal Our external experience unfolds in 3 1/2 dimensions (time has a dimensionality of 1/2). The Time::Warp module...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): Time::Warp Download

Added: May 20, 2010 | Visits: 1.176

HTML::Entities::Numbered HTML::Entities::Numbered is a Perl module for conversion of numbered HTML entities. SYNOPSIS use HTML::Entities::Numbered; $html = Hi Honey♥; # convert named HTML entities to numbered (decimal) $decimal = name2decimal($html); # Hi Honey♥ # to numbered (hexadecimal) $hex =...


Platforms: *nix

License: Freeware Size: 8 MB Download (92): HTML::Entities::Numbered Download

Added: March 11, 2010 | Visits: 1.037

Perl x86 Disassembler The libdisasm library provides basic disassembly of Intel x86 instructions from a binary stream. The intent is to provide an easy to use disassembler which can be called from any application; the disassembly can be produced in AT&T syntax and Intel syntax, as well as in an intermediate format...


Platforms: *nix

License: Freeware Size: 38.91 KB Download (138): Perl x86 Disassembler Download

Added: January 13, 2010 | Visits: 961

Digest::SHA::PurePerl Digest::SHA::PurePerl is a Perl implementation of SHA-1/224/256/384/512. SYNOPSIS In programs: # Functional interface use Digest::SHA::PurePerl qw(sha1 sha1_hex sha1_base64 ...); $digest = sha1($data); $digest = sha1_hex($data); $digest = sha1_base64($data); $digest = sha256($data);...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (93): Digest::SHA::PurePerl Download

Added: July 08, 2010 | Visits: 815

Image::Xpm Image::Xpm is a Perl module that can load, create, manipulate and save xpm image files. SYNOPSIS use Image::Xpm; my $j = Image::Xpm->new(-file, Camel.xpm); my $i = Image::Xpm->new(-width => 10, -height => 16); my $h = $i->new; # Copy of $i $i->xy(5, 8, red); # Set a colour (& add to...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (99): Image::Xpm Download

Added: July 14, 2010 | Visits: 1.214

Data::Type Data::Type is a Perl module with versatile data and value types. SYNOPSIS use Data::Type qw(:all); use Error qw(:try); try { verify $email , EMAIL; verify $homepage , URI(http); verify $cc , CREDITCARD( MASTERCARD, VISA ); verify $answer_a , YESNO; verify $gender , GENDER; verify...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (96): Data::Type Download

Added: April 22, 2010 | Visits: 997

Math::BigInt::Calc Math::BigInt::Calc is a pure Perl module to support Math::BigInt. SYNOPSIS Provides support for big integer calculations. Not intended to be used by other modules. Other modules which sport the same functions can also be used to support Math::BigInt, like Math::BigInt::GMP or...


Platforms: *nix

License: Freeware Size: 194.56 KB Download (96): Math::BigInt::Calc Download

Added: September 20, 2013 | Visits: 1.878

Perl Audio Converter Perl Audio Converter is a tool for converting multiple audio types from one format to another. It supports AAC, AC3, AIFF, APE, AU, AVR, BONK, CAF, CDR, FAP, FLA, FLAC, IRCAM, LA, LPAC, M4A, MAT, MAT4, MAT5, MMF, MP2, MP3, MP4, MPC, MPP, NIST, OFR, OFS, OGG, PAC, PAF, PVF, RA, RAM, RAW, SD2, SF,...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (283): Perl Audio Converter Download

Added: January 25, 2010 | Visits: 975

Hex Fiend Hex Fiend is a fast, clever, and free Hex Editor that has many unique features:Insert, delete, rearrange — Hex Fiend is not limited to in-place changes like some hex editors.Work with huge files — Hex Fiend can handle as big a file as you're able to create. It's been tested on files as large...


Platforms: Mac

License: Freeware Download (122): Hex Fiend Download

Released: October 06, 2009  |  Added: January 09, 2012 | Visits: 588

Puzzle Hex In this game a picture will be cut into a number of hexagonal tiles and the tiles will be mixed up, your task is to recover the picture. You can move the tiles by clicking on a tile that is adjacent to the empty space, and the tile will be moved to fill the empty space. You can also click on a...


Platforms: Windows

License: Freeware Size: 261.4 KB Download (95): Puzzle Hex Download

Released: August 19, 2012  |  Added: August 19, 2012 | Visits: 656

CI Hex Viewer (Mac OS) CI Hex Viewer is a hexadecimal viewer and editor specially designed to facilitate low-level data processing. The software allows to analyze and edit raw binary data of both files and disks of any size. This program enables handling data on hard drives and any external USB storages as well as disk...


Platforms: Mac

License: Freeware Size: 7.26 MB Download (59): CI Hex Viewer (Mac OS) Download

< 1 2 3 4 5 >