binhex 4.0 mac
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1211
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
TimeMon 4.0
TimeMon gives a graphical representation of where the CPU cycles are going. more>>
TimeMon gives a graphical representation of where the CPU cycles are going. TimeMon is coarse, but better than nothing.
The best feature is that it runs in an icon on your dock, so that you never lose it.
Originally by Scott Hess, this app has been ported to both GNUstep and Mac OS X.
<<lessThe best feature is that it runs in an icon on your dock, so that you never lose it.
Originally by Scott Hess, this app has been ported to both GNUstep and Mac OS X.
Download (0.26MB)
Added: 2006-02-21 License: Freely Distributable Price:
1340 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
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
Frinika 0.4.0
Frinika is a free, complete music workstation program for Linux. more>>
Frinika is a free, complete music workstation program for Linux, Windows, Mac OS X Tiger, and other operating systems running Java 1.5 (J2SE5.0). Frinika features a sequencer, soft-synths, real-time effects, and audio recording.
Main features:
- Pure Java 1.5 = cross-platform
- Runs on Linux, Windows, Mac OSX Tiger and other platforms supporting J2SE5.0
- Old-school tracker inspired, but fully MIDI-compatible sequencer
- Simple mixer
- Automation through MIDI Control Change events
- Realtime effects (echo, distortion ++)
- Soft sampler with audio recording features
- Limited Soundfont V2 import
- Simple Analog synth
- Interacts with other sound-applications using JACK audio connection kit (Linux only)
- MIDI is native sequencer file format
- All real-time effect and synth params are controlled through MIDI events
- Can seperately load/save gear (synth setup & samples)
- Fully self-contained project files (including synth setup, samples and sequence)
- Direct export to WAV
Enhancements:
- Notation editor (View/Edit)
- Added import of Midi to existing project (TODO tempo logic)
- Moved some menu items from file to edit.
- Selecting new creates a project called "New" (removed file dialog)
- rasmusDSP drum soundfonts now play zero length notes.
- now using toot-r2-beta8 mixer (some API changes)
- pianoroll now treats zero duration notes as drum beats and displays as diamonds
- All libraries are now properties in build.xml
- (PJS) If somehow libpriority fails, dont crash the audioserver because of that....
- (PJS) libpriority for amd64
- (PJS) Added ant run target (runs the jar with 512m)
- (PJL) added configure setting for javasound server. Allow setting of: priority of audioprocess thread / underruns before server aborts START/STOP
- (PJL) support for multiplexed javasound IO devices. (e.g. 10 inputs appear in a single line)
- (PJL) Configure frame for adjusting audioserver setting (Javasound)
- (PJS) Watchdog-like functionality in PriorityAudioServer to prevent system from hanging
- (PJS) setVisible before setSize assures that the window doesnt open blank (happens always when using XGL (compiz/beryl))
- (PJL) Added setting to disable views or set cursor jump increment when playing (allows reduction of CPU load)
- (PJS) Frinika SynthRack only supported NoteOn vel 0, and not NoteOff messages
- (KH) Bugfix so that window doesnt become blank during playback
<<lessMain features:
- Pure Java 1.5 = cross-platform
- Runs on Linux, Windows, Mac OSX Tiger and other platforms supporting J2SE5.0
- Old-school tracker inspired, but fully MIDI-compatible sequencer
- Simple mixer
- Automation through MIDI Control Change events
- Realtime effects (echo, distortion ++)
- Soft sampler with audio recording features
- Limited Soundfont V2 import
- Simple Analog synth
- Interacts with other sound-applications using JACK audio connection kit (Linux only)
- MIDI is native sequencer file format
- All real-time effect and synth params are controlled through MIDI events
- Can seperately load/save gear (synth setup & samples)
- Fully self-contained project files (including synth setup, samples and sequence)
- Direct export to WAV
Enhancements:
- Notation editor (View/Edit)
- Added import of Midi to existing project (TODO tempo logic)
- Moved some menu items from file to edit.
- Selecting new creates a project called "New" (removed file dialog)
- rasmusDSP drum soundfonts now play zero length notes.
- now using toot-r2-beta8 mixer (some API changes)
- pianoroll now treats zero duration notes as drum beats and displays as diamonds
- All libraries are now properties in build.xml
- (PJS) If somehow libpriority fails, dont crash the audioserver because of that....
- (PJS) libpriority for amd64
- (PJS) Added ant run target (runs the jar with 512m)
- (PJL) added configure setting for javasound server. Allow setting of: priority of audioprocess thread / underruns before server aborts START/STOP
- (PJL) support for multiplexed javasound IO devices. (e.g. 10 inputs appear in a single line)
- (PJL) Configure frame for adjusting audioserver setting (Javasound)
- (PJS) Watchdog-like functionality in PriorityAudioServer to prevent system from hanging
- (PJS) setVisible before setSize assures that the window doesnt open blank (happens always when using XGL (compiz/beryl))
- (PJL) Added setting to disable views or set cursor jump increment when playing (allows reduction of CPU load)
- (PJS) Frinika SynthRack only supported NoteOn vel 0, and not NoteOff messages
- (KH) Bugfix so that window doesnt become blank during playback
Download (0.76MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
902 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
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

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
SnowIsh 1.0
SnowIsh provides a Mac-inspired icon theme. more>>
SnowIsh provides a Mac-inspired icon theme.
Also greatly inspired by VannillA Cream Icon Set made by djnjpendragon.
Again, all done with inkscape.
Version restrictions:
- Beautiful icons, but the gtk-media-previous-ltr icon is missing from both the PNG and SVG sets (it should be a copy of gtk-media-next-rtl). Also, the Trash icon doesnt show up at large sizes - the fallback is used instead.
Enhancements:
- Add a PNG version (faster)
<<lessAlso greatly inspired by VannillA Cream Icon Set made by djnjpendragon.
Again, all done with inkscape.
Version restrictions:
- Beautiful icons, but the gtk-media-previous-ltr icon is missing from both the PNG and SVG sets (it should be a copy of gtk-media-next-rtl). Also, the Trash icon doesnt show up at large sizes - the fallback is used instead.
Enhancements:
- Add a PNG version (faster)
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
969 downloads
AsteriskNOW 1.4.0 Beta
AsteriskNOW helps you install Asterisk in 30 minutes or less. more>>
AsteriskNOW helps you install Asterisk in 30 minutes or less. The most popular open source PBX software, Asterisk, can now be easily configured with a graphical interface.
AsteriskNOW is an open source Software Appliance; a customized Linux distribution that includes Asterisk, the Asterisk GUI, and all other software needed for an Asterisk system.
Asterisk is a complete IP PBX in software. It runs on a wide variety of operating systems including Linux, Mac OS X, OpenBSD, FreeBSD and Sun Solaris and provides all of the features you would expect from a PBX including many advanced features that are often associated with high end (and high cost) proprietary PBXs.
Asterisk supports Voice over IP in many protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware.
Asterisk and AsteriskNOW are released as open source under the GNU General Public License (GPL), meaning that they are available for download free of charge.
Asterisk was created by Mark Spencer of Digium, Inc in 1999. Code has been contributed from open source coders around the world, and testing and bug-patches from the community have provided invaluable aid to the development of this software.
<<lessAsteriskNOW is an open source Software Appliance; a customized Linux distribution that includes Asterisk, the Asterisk GUI, and all other software needed for an Asterisk system.
Asterisk is a complete IP PBX in software. It runs on a wide variety of operating systems including Linux, Mac OS X, OpenBSD, FreeBSD and Sun Solaris and provides all of the features you would expect from a PBX including many advanced features that are often associated with high end (and high cost) proprietary PBXs.
Asterisk supports Voice over IP in many protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware.
Asterisk and AsteriskNOW are released as open source under the GNU General Public License (GPL), meaning that they are available for download free of charge.
Asterisk was created by Mark Spencer of Digium, Inc in 1999. Code has been contributed from open source coders around the world, and testing and bug-patches from the community have provided invaluable aid to the development of this software.
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
641 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

NINJAM Client for Linux 0.06 beta
It allows people to make real music together via the Internet. more>> NINJAM is a program to allow people to make real music together via the Internet. Every participant can hear every other participant. Each user can also tweak their personal mix to his or her liking. NINJAM is cross-platform, with clients available for Mac OS X and Windows.<<less
Download (71KB)
Added: 2009-04-28 License: Freeware Price: Free
189 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
.icns A.00.02
.icns allows you to use Mac OS X .icns icon files as easily as PNG pictures in GTK+ applications (custom icons, etc.) more>>
.icns allows you to use Mac OS X .icns icon files as easily as PNG pictures in GTK+ applications (custom icons, etc.)
Enhancements:
- This version adds support for 48x48, 32x32, and 16x16 icons, and for legacy icons (B&W, 16, and 256 colors).
- A command line tool that displays detailed information about icons contained in a .icns file has been added.
<<lessEnhancements:
- This version adds support for 48x48, 32x32, and 16x16 icons, and for legacy icons (B&W, 16, and 256 colors).
- A command line tool that displays detailed information about icons contained in a .icns file has been added.
Download (0.049MB)
Added: 2007-03-05 License: LGPL (GNU Lesser General Public License) Price:
968 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
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 4.0 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