binhex mac
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 915
JBinHex 0.5
JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format. more>>
JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format.
It accepts the following command line parameters:
Either -u < url > or -f < file > to specify the source BinHexed file. If neither of those options is present, DeBinHex reads stdin.
-d to decode the data fork. It will be put in the file with the name that came from the BinHex header.
-df < filename > to decode the data fork to the named file instead of the name that came from the BinHex header.
-r to decode the resource fork. It will be put in the file with the name that came from the BinHex header, with the extension ".resource" appended to it.
-rf < filename > to decode the resource fork to the named file instead of the name that came from the BinHex header.
Both -d/-df options and -r/-rf may be present at the same time. If none of these options is present, DeBinHex will decode the data fork as if the -d options was specified.
-h to only show the header of the BinHex file on stdout. The decoding options are ignored.
<<lessIt accepts the following command line parameters:
Either -u < url > or -f < file > to specify the source BinHexed file. If neither of those options is present, DeBinHex reads stdin.
-d to decode the data fork. It will be put in the file with the name that came from the BinHex header.
-df < filename > to decode the data fork to the named file instead of the name that came from the BinHex header.
-r to decode the resource fork. It will be put in the file with the name that came from the BinHex header, with the extension ".resource" appended to it.
-rf < filename > to decode the resource fork to the named file instead of the name that came from the BinHex header.
Both -d/-df options and -r/-rf may be present at the same time. If none of these options is present, DeBinHex will decode the data fork as if the -d options was specified.
-h to only show the header of the BinHex file on stdout. The decoding options are ignored.
Download (0.035MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1164 downloads
Convert::BinHex 1.119
Convert::BinHex can extract data from Macintosh BinHex files. more>>
Convert::BinHex can extract data from Macintosh BinHex files.
ALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!
SYNOPSIS
Simple functions:
use Convert::BinHex qw(binhex_crc macbinary_crc);
# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);
# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);
Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up
Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource
Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up
Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;
# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");
# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core
# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);
PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);
BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.
<<lessALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!
SYNOPSIS
Simple functions:
use Convert::BinHex qw(binhex_crc macbinary_crc);
# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);
# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);
Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up
Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource
Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up
Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;
# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");
# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core
# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);
PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);
BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.
Download (0.083MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1234 downloads
Not another MAC theme 0.1
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. more>>
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. It is actually a mix of all the MAC OS X GTK themes.
GNOME is an international effort to build a complete desktop environment the graphical user interface which sits on top of a computer operating system entirely from free software. This goal covers creating software development frameworks, selecting application software for the desktop, and working on the programs which manage application launching, file handling, and window and task management.
Requirements:
- GNOME
Added: 2008-11-17 License: GPL Price: FREE
1 downloads

Phonetic for mac 1.0
A program that translates text to the phonetic alphabet. more>> It is freeware with the source code avaliable. You can run it in Linux or Windows.
Phoneic finds words within telephone numbers. Phonetic also converts phonetic telephone numbers into numeric digits.
All words found within the given telephone number will be listed. If you click on a word, every combination in which that word is included will be displayed.<<less
Download (809.72MB)
Added: 2009-04-21 License: Freeware Price: Free
198 downloads
ObexSend 0.1
OBEX is a commonly used protocol used over Bluetooth. more>>
OBEX is a commonly used protocol used over Bluetooth. ObexSend is a simple command line tool to transfer a file via OBEX FTP to a device with a Bluetooth interface. This project requires the user to specify the MAC address of the desination device, the OBEX FTP channel and the name of the file to send.
Usage:
Syntax: ./obexsend.sh < MAC > < Channel > < Filename >
<<lessUsage:
Syntax: ./obexsend.sh < MAC > < Channel > < Filename >
Download (0.007MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
799 downloads
LightZone 2.4
LightZone is a proprietary photo browser and editor for Mac OS, Windows, and Linux. more>>
LightZone is a proprietary photo browser and editor for Mac OS, Windows, and Linux. Its like Photoshop and The Gimp, but its easier to use and focused on photography.
LightZone photo editor features raw file support, high-fidelity color space management, color-managed printing and completely non-destructive editing
The Linux tarball is a complete binary including a manual and a Sun Java JRE. It requires no privileges and runs no install scripts.
LightZone is a proprietary photo editor developed by Light Crafts, Inc. of Palo Alto, CA.
<<lessLightZone photo editor features raw file support, high-fidelity color space management, color-managed printing and completely non-destructive editing
The Linux tarball is a complete binary including a manual and a Sun Java JRE. It requires no privileges and runs no install scripts.
LightZone is a proprietary photo editor developed by Light Crafts, Inc. of Palo Alto, CA.
Download (MB)
Added: 2007-02-14 License: Freely Distributable Price:
1002 downloads
File::Spec::Mac 3.25
File::Spec::Mac Perl module contains File::Spec for Mac OS (Classic). more>>
SYNOPSIS
require File::Spec::Mac; # Done internally by File::Spec if needed
Methods for manipulating file specifications.
METHODS
canonpath
On Mac OS, theres nothing to be done. Returns what its given.
catdir()
Concatenate two or more directory names to form a path separated by colons (":") ending with a directory. Resulting paths are relative by default, but can be forced to be absolute (but avoid this, see below). Automatically puts a trailing ":" on the end of the complete path, because thats whats done in MacPerls environment and helps to distinguish a file path from a directory path.
IMPORTANT NOTE: Beginning with version 1.3 of this module, the resulting path is relative by default and not absolute. This decision was made due to portability reasons. Since File::Spec->catdir() returns relative paths on all other operating systems, it will now also follow this convention on Mac OS. Note that this may break some existing scripts.
The intended purpose of this routine is to concatenate directory names. But because of the nature of Macintosh paths, some additional possibilities are allowed to make using this routine give reasonable results for some common situations. In other words, you are also allowed to concatenate paths instead of directory names (strictly speaking, a string like ":a" is a path, but not a name, since it contains a punctuation character ":").
So, beside calls like
catdir("a") = ":a:"
catdir("a","b") = ":a:b:"
catdir() = "" (special case)
calls like the following
catdir(":a:") = ":a:"
catdir(":a","b") = ":a:b:"
catdir(":a:","b") = ":a:b:"
catdir(":a:",":b:") = ":a:b:"
catdir(":") = ":"
are allowed.
Download (0.11MB)
Added: 2007-07-05 License: Perl Artistic License Price:
842 downloads

Finddouble 1.4
Finddouble searches directories for file duplicate. more>> finddouble 1.4 : is a Linux/Mac application. It searches directories for file duplicate. Very usefull to find copies of the same file : images, png, jpe, music, mp3, any kind of file.<<less
Download (22KB)
Added: 2009-04-27 License: Freeware Price: Free
428 downloads
GNU MAC Changer 1.5.0
GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces. more>>
GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces.
It can set specific, random, vendor-based (with a 6600+ vendor list), and device-type-based MACs.
Main features:
- Set specific MAC address of a network interface
- Set the MAC randomly
- Set a MAC of another vendor
- Set another MAC of the same vendor
- Set a MAC of the same kind (eg: wireless card)
- Display a vendor MAC list (today, 6800 items) to choose from
Possible usages
You should use your imagination :-), but well, these are some examples:
Youre in a DHCP network with some kind of IP-based restriction
Youve a cluster that boot with BOOTP and you want to have a clean set of MACs
Debug MAC based routes
<<lessIt can set specific, random, vendor-based (with a 6600+ vendor list), and device-type-based MACs.
Main features:
- Set specific MAC address of a network interface
- Set the MAC randomly
- Set a MAC of another vendor
- Set another MAC of the same vendor
- Set a MAC of the same kind (eg: wireless card)
- Display a vendor MAC list (today, 6800 items) to choose from
Possible usages
You should use your imagination :-), but well, these are some examples:
Youre in a DHCP network with some kind of IP-based restriction
Youve a cluster that boot with BOOTP and you want to have a clean set of MACs
Debug MAC based routes
Download (0.22MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
1003 downloads
genext2fs 1.4.1
genext2fs it generates an ext2 filesystem as a normal (i.e. non-root) user. more>>
genext2fs it generates an ext2 filesystem as a normal (i.e. non-root) user. It doesnt require you to mount the image file to copy files on it. It doesnt even require you to be the superuser to make device nodes or set group/user ids.
Enhancements:
- Cygwin and Mac OS X platforms are supported.
<<lessEnhancements:
- Cygwin and Mac OS X platforms are supported.
Download (0.10MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
919 downloads
Jin 2.14.1
Jin is a Java client for various chess servers. more>>
Jin is an open source, cross platform, graphical client (interface) for the Internet Chess Club and the Free Internet Chess Server.
Enhancements:
- This release focuses mainly on Mac OS X related fixes, but also adds beautiful new piece sets.
<<lessEnhancements:
- This release focuses mainly on Mac OS X related fixes, but also adds beautiful new piece sets.
Download (10MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
964 downloads
AudioCD::Mac 0.25
AudioCD::Mac is a MacPerl extension for controlling Audio CDs. more>>
AudioCD::Mac is a MacPerl extension for controlling Audio CDs.
SYNOPSIS
#!perl -w
use AudioCD;
use strict;
my $cd = new AudioCD;
$cd->volume(255);
$cd->play(2);
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
$cd->pause;
print "Now pausedn" if $cd->status == CD_PAUSE;
sleep(5);
$cd->volume(100);
$cd->continue;
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
my @info = $cd->info;
printf "Currently at track %d, %.2d:%.2dn", @info[0..2];
$cd->stop;
my $status = $cd->status;
print "Now stoppedn" if
($status == CD_FINISH || $status == CD_STOP);
if (do CDDB.pm) { # sold separately
my $cddb = new CDDB;
my @cddb_info = $cddb->calculate_id( $cd->cddb_toc );
my @discs = $cddb->get_discs(@cddb_info[0, 3, 4]);
print "You were probably listening to $discs[0]->[2]n";
}
$cd->eject;
This is the MacPerl module to be used by the AudioCD module. Other modules can be written for other platforms, but this one is Mac specific, calling Mac OS APIs to control the CD player.
<<lessSYNOPSIS
#!perl -w
use AudioCD;
use strict;
my $cd = new AudioCD;
$cd->volume(255);
$cd->play(2);
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
$cd->pause;
print "Now pausedn" if $cd->status == CD_PAUSE;
sleep(5);
$cd->volume(100);
$cd->continue;
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
my @info = $cd->info;
printf "Currently at track %d, %.2d:%.2dn", @info[0..2];
$cd->stop;
my $status = $cd->status;
print "Now stoppedn" if
($status == CD_FINISH || $status == CD_STOP);
if (do CDDB.pm) { # sold separately
my $cddb = new CDDB;
my @cddb_info = $cddb->calculate_id( $cd->cddb_toc );
my @discs = $cddb->get_discs(@cddb_info[0, 3, 4]);
print "You were probably listening to $discs[0]->[2]n";
}
$cd->eject;
This is the MacPerl module to be used by the AudioCD module. Other modules can be written for other platforms, but this one is Mac specific, calling Mac OS APIs to control the CD player.
Download (0.014MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
gTwitter 1.0 Beta
gTwitter project is a Linux client for reading and posting to twitter.com web service. more>>
gTwitter project is a Linux client for reading and posting to twitter.com web service.
Its a simple GTK+ based application for Linux, designed to interact with twitter.com web service.
Its written using Mono/C# and some of GNOME dependant libraries. GUI is inspired by Mac client Twitterrific.
<<lessIts a simple GTK+ based application for Linux, designed to interact with twitter.com web service.
Its written using Mono/C# and some of GNOME dependant libraries. GUI is inspired by Mac client Twitterrific.
Download (0.040MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
871 downloads
Beos
Beos provides a beautiful set of icons. more>>
Beos provides a beautiful set of icons.
Matthew McClintock created a beautiful set of icons for Mac OS X, that I converted to create this icon theme about one the best desktop OS I know.
For the moment, the theme is not fully complete: some of the mime icons are defined. I will finalize it later.
<<lessMatthew McClintock created a beautiful set of icons for Mac OS X, that I converted to create this icon theme about one the best desktop OS I know.
For the moment, the theme is not fully complete: some of the mime icons are defined. I will finalize it later.
Download (0.23MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
12601 downloads
mkhindex 0.20(2006-10-29)
mkhindex project generates HTML directory listings like the Option Indexes functionality of Apache. more>>
mkhindex project generates HTML directory listings like the "Option Indexes" functionality of Apache. Other than the Web server, these listings are static.
They greatly increase the performance of the Web server if you use it as a file server. MKHINDEX has been tested on Windows XP, Gentoo Linux, and Mac OS X.
<<lessThey greatly increase the performance of the Web server if you use it as a file server. MKHINDEX has been tested on Windows XP, Gentoo Linux, and Mac OS X.
Download (0.17MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
880 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 binhex mac 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