Main > Free Download Search >

Free for mac os x software for linux

for mac os x

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2129
Phonetic for mac 1.0

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
Font Mate 1.0

Font Mate 1.0


Font Mate is a simple program to help you see how fonts look on your computer, and to help you find symbol characters. more>>
Font Mate application helps you to see how fonts look on your computer, and it also helps you find symbol characters.

Using Font Mate

There isnt much to it: Font Mate shows you a list of all the fonts installed on your computer. Choose any font from the list and it will show you what all the characters in that font look like. Choose any one of those characters and you will see an enlarged version of it at the bottom of the page (with its ASCII code in decimal and hex, should you be interested). Click the button to copy that character to the clipboard if you want to use it in another application.

Works on...

We wrote Font Mate originally for Mac OS X, but we have included versions for Windows and Linux too. We wrote it using REALbasic, a great tool for cross-platform rapid development. Source is available on request.

How much?

Font Mate is freeware. Download, use, share as you wish. No warranty is offered, and we accept no liability for anything strange or nasty that it might do to your computer.

And another thing

If you like Font Mate, why not have a look at our main site at tellura.co.uk and check out our other products and services?
<<less
Download (0.91MB)
Added: 2007-07-18 License: Freeware Price:
828 downloads
Saurus CMS Free for Linux / Mac OS X 4.5.1

Saurus CMS Free for Linux / Mac OS X 4.5.1


Saurus CMS Free - content management system combining usability with technology more>> <<less
Download (10.59MB)
Added: 2009-04-01 License: Freeware Price: Free
209 downloads
Not another MAC theme 0.1

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
<<less
Added: 2008-11-17 License: GPL Price: FREE
1 downloads
FreeMat 3.4

FreeMat 3.4


FreeMat is a free environment for rapid engineering and scientific prototyping and data processing. more>>
FreeMat is a free environment for rapid engineering and scientific prototyping and data processing. FreeMat project is similar to commercial systems such as MATLAB from Mathworks, and IDL from Research Systems, but is Open Source.
FreeMat includes several novel features such as a codeless interface to external C/C++/FORTRAN code, parallel/distributed algorithm development (via MPI), and plotting and visualization capabilities.
FreeMat is available under an MIT-type license. Supported platforms include Linux, Windows and Mac OS X.
Enhancements:
- This release fixes some critical bugs in the previous release.
- In particular, the 64-bit compilation bug has been fixed, and the Mac OS X package has been fixed.
- Also, several general bugs have been fixed.
<<less
Download (7.0MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
799 downloads
DateTime::Format::Epoch::MacOS 0.10

DateTime::Format::Epoch::MacOS 0.10


DateTime::Format::Epoch::MacOS is a Perl module that can convert DateTimes to/from Mac OS epoch seconds. more>>
DateTime::Format::Epoch::MacOS is a Perl module that can convert DateTimes to/from Mac OS epoch seconds.

SYNOPSIS

use DateTime::Format::Epoch::MacOS;

my $dt = DateTime::Format::Epoch::MacOS->parse_datetime( 1051488000 );
DateTime::Format::Epoch::MacOS->format_datetime($dt);
# 1051488000

my $formatter = DateTime::Format::Epoch::MacOS->new();

my $dt2 = $formatter->parse_datetime( 1051488000 );

$formatter->format_datetime($dt2);
# 1051488000

This module can convert a DateTime object (or any object that can be converted to a DateTime object) to the number of seconds since the Mac OS epoch.
Note that the Mac OS epoch is defined in the local time zone. This means that these two pieces of code will print the same number of seconds, even though they represent two datetimes 6 hours apart:

$dt = DateTime->new( year => 2003, month => 5, day => 2,
time_zone => Europe/Amsterdam );
print $formatter->format_datetime($dt);

$dt = DateTime->new( year => 2003, month => 5, day => 2,
time_zone => America/Chicago );
print $formatter->format_datetime($dt);

Mac OS X is a Unix system, and uses the Unix epoch (1970-01-01T00:00:00). Use DateTime::Format::Epoch::Unix instead.

<<less
Download (0.017MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1166 downloads
Ophcrack LiveCD 1.1.4

Ophcrack LiveCD 1.1.4


Ophcrack is a Windows password cracker based on rainbow tables. more>>
Ophcrack is a Windows password cracker based on rainbow tables. It is a very efficient implementation of rainbow tables done by the inventors of the method.
The project comes with a GTK+ Graphical User Interface and runs on Windows, Mac OS X (Intel CPU) as well as on Linux.
Main features:
- Runs on Windows, Linux and Mac OS X (intel).
- Cracks LM and NTLM hashes.
- Free tables available for alphanumeric LM hashes.
- Loads hashes from local SAM, remote SAM.
- Loads hashes from encrypted SAM recovered from a Windows partition.
The ophcrack LiveCD contains a full linux system (SLAX), ophcrack for linux and rainbow tables for alphanumerical passwords.
The liveCD cracks passwords automatically, no installation necessary, no admin passwort necessary (as long as you can boot from cd).
Enhancements:
- Vista support with the latest version of ophcrack (2.3.4)
- Easier to changes tables
<<less
Download (462.2MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
821 downloads
Mac::PropertyList 1.29

Mac::PropertyList 1.29


Mac::PropertyList is a Perl module to work with Mac plists at a low level. more>>
Mac::PropertyList is a Perl module to work with Mac plists at a low level.
SYNOPSIS
use Mac::PropertyList;
my $data = parse_plist( $text );
# == OR ==
my $data = parse_plist_file( $filename );
# == OR ==
open my( $fh ), $filename or die "...";
my $data = parse_plist_fh( $fh );
my $text = plist_as_string( $data );
my $plist = create_from_hash( %hash );
my $plist = create_from_array( @array );
my $plist = Mac::PropertyList::dict->new( %hash );
This module is a low-level interface to the Mac OS X Property List (plist) format. You probably shouldnt use this in applications---build interfaces on top of this so you dont have to put all the heinous multi-level object stuff where people have to look at it.
You can parse a plist file and get back a data structure. You can take that data structure and get back the plist as XML. If you want to change the structure inbetween thats your business.
You dont need to be on Mac OS X to use this. It simply parses and manipulates a text format that Mac OS X uses.
Enhancements:
- Perl
<<less
Download (0.017MB)
Added: 2006-09-18 License: Perl Artistic License Price:
1133 downloads
AudioCD::Mac 0.25

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.

<<less
Download (0.014MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
FlashGot 0.6.1 for Firefox

FlashGot 0.6.1 for Firefox


FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click. more>>
FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click, using the most popular external download managers for Windows, Mac OS X, Linux and FreeBSD (dozens currently supported products, see http://flashgot.net for details).
FlashGot offers also a Build Gallery functionality which helps to synthetize full media galleries in one page, from serial contents previously scattered on several pages, for easy and fast "download all".
FlashGot contextual menu
- for Windows (FlashGet, Free Download Manager, Fresh Download, GetRight, GigaGet, HiDownload, iGetter, InstantGet, Internet Download Accelerator, Internet Download Manager, LeechGet, Mass Downloader, Net Transport, NetXfer (Net Transport 2), NetAnts, ReGet, Star Downloader, Thunder (Chinese only popular product), TrueDownloader and Ukrainian Download Master [Russian language only] ), WellGet
- for Linux / FreeBSD / other Unix-like OSes (Aria, cURL, Downloader 4 X, GNOME Gwget and KDE KGet )
- for Mac OS X (iGetter and Speed Download)
<<less
Download (0.23MB)
Added: 2007-07-16 License: MIT/X Consortium License Price:
534 downloads
File::Spec::Mac 3.25

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.

<<less
Download (0.11MB)
Added: 2007-07-05 License: Perl Artistic License Price:
842 downloads
Flagpoll 0.8.3

Flagpoll 0.8.3


Flagpoll is a tool for developers to use meta-data files for storing information on what is needed to compile their software. more>>
Flagpoll project is a tool for developers to use meta-data files for storing information on what is needed to compile their software.
Think of it as the rpm of software development. It provides developers with total control over which packages, versions, architectures, et cetera that they want to use meta-data from.
Instead of specifying other packages cflags and ldflag manually, you can call `flagpoll mylib --cflags --ldflags` and it will retrieve the flags for its package as well as its dependencies.
For example:
gcc -o foo foo.c `flagpoll --libs --cflags gtk+-2.0`
Is a lot cleaner than:
gcc -o foo foo.c -L/usr/lib64 -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm
-lgobject-2.0 -lglib-2.0 -lgmodule-2.0 -ldl -lpango-1.0
-lpangocairo-1.0 -lcairo -latk-1.0
-I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include
-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
-I/usr/include/pango-1.0 -I/usr/include/cairo
-I/usr/include/atk-1.0
All of the dependencies needed for compilation are kept in each packages meta-data file. The dependencies are resolved and the results are all necessary libs and includes needed for gtk+.
Enhancements:
- Support for Mac OS X frameworks was added.
- A serious path ordering bug and a command line usage bug were fixed.
<<less
Download (0.024MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
849 downloads
Mac-on-Linux 0.9.72.1

Mac-on-Linux 0.9.72.1


Mac-on-Linux (MOL) is a virtual machine which runs Mac OS (inlucluding Mac OS X) on top of Linux/ppc. more>>
Mac-on-Linux (MOL) is a virtual machine which runs Mac OS (inlucluding Mac OS X) on top of Linux/ppc.
Main features:
- Added nvram.x installation
- Fix bootstrap check
- Fix dmdma.c strict aliasing warning
- Make sure that log and lock dirs are created
- Integrated BootX with the build system
- Added check for zlib
- Fixed test invocations (== is invalid)
- Fixed VT Switching
- Removed Sheep from defconfig
- Fixed Ubuntu -fno-stack-protector bug
- Removed duplicate nvram, fix doesnt really work
- Some docs cleanups, changed the website address
- Removed libimport script
- Fixed another MacOS segfault on startup
- Ensured that all read/write/seek disk pointers are set properly
- Removed some debugging text
- Fixed MacOS ethernet softlock (Thanks SolraBizna for noticing)
- Fixed MacOS segfault on startup (Thanks to SolraBizna for noticing)
- Changed BootX Read to pass addresses instead of casting them as long
- Fixed BootX read size bug preventing booting on QCOW/DMG
- Cleaned up a bunch of gcc4 issues
- Removed TUN from defconfig
- Updated network driver help info
- Integrated patch from Marcus Comstedt for USB mice
- Removed linux/compiler.h from USB to fix Ubuntu issue
- Fix mol-img bug
- Added support to recognize HFSX disks
- Added bootx source to main MOL build (with backports from newer BootX)
- Fixed gcc4 include issue
Enhancements:
- Fix building on FC7 by adding missing headers
- Additional fixes for find_physical_rom
- Fix bus frequency reporting
- 2.6.22 kmod fixes
- Remove TUN from defconfig (again)
- Fix XDGA off by one error
- Update netdriver Kconfig
- Re-arrange the Kconfig menus
- Remove configure directory
- OSX Compatibility fixes
<<less
Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
873 downloads
Mac::EyeTV 0.30

Mac::EyeTV 0.30


Mac::EyeTV is a interface to the Elgato EyeTV Digital Video Recorder. more>>
Mac::EyeTV is a interface to the Elgato EyeTV Digital Video Recorder.

SYNOPSIS

use Mac::EyeTV;
my $eyetv = Mac::EyeTV->new();

# See Mac::EyeTV::Channel
foreach my $channel ($eyetv->channels) {
my $name = $channel->name;
my $number = $channel->number;
print "$number $namen";
}

# See Mac::EyeTV::Programme
foreach my $programme ($eyetv->programmes) {
my $start = $programme->start;
my $stop = $programme->stop;
my $title = $programme->title;
print "$title $start - $stopn";
}

This module allows you to interface to the Elgato EyeTV Digital Video Recorder. EyeTV is a piece of software and hardware for Mac OS X which can record and play back television much like a Tivo. This module allows you to interface to the EyeTV software, view the channel list and the recorded programmes and schedule recordings.

See Mac::EyeTV::Programme for information on scheduling a recording.
You should create Mac::Glue bindings to EyeTV before using this (along the lines of sudo gluemac EyeTV).

The EyeTV software itself is available from Elgato Systems at http://www.elgato.com/index.php?file=support_updates_eyetv

<<less
Download (0.004MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1217 downloads
iODBC Driver Manager and SDK 3.52.5

iODBC Driver Manager and SDK 3.52.5


iODBC is a cross-platform Driver Manager that comforms to the Microsoft ODBC 2.x & 3.x and X/Open SQL CLI data access specs. more>>
iODBC is a cross-platform Driver Manager that comforms to the Microsoft ODBC 2.x & 3.x and X/Open SQL CLI data access specs.
iODBC Driver Manager and SDK enables the development of database-centric solutions that are both database and platform independent.
What is the ODBC Value Proposition?
The ability to develop applications independent of back-end database engine.
What is iODBC?
iODBC is the acronym for Independent Open DataBase Connectivity, an Open Source platform independent implementation of both the ODBC and X/Open specifications. It is rapidly emerging as the industry standard for developing solutions that are language, platform and database independent.
What is the iODBC Value Proposition?
The ability to develop applications independent of back-end database engine, operating system, and for the most part programming language. Although ODBC and iODBC are both C based Application Programming Interfaces (APIs) there are numerous cross language hooks and bridges from languages such as: C++, Java, Perl, Python, TCL etc.
iODBC has been ported to numerous platforms, including:
Linux (x86, Itanium, Alpha, Mips, and StrongArm), Solaris (Sparc & x86), AIX, HP-UX (PA-RISC & Itanium), Digital UNIX, Dynix, Generic UNIX 5.4, FreeBSD, MacOS 9, MacOS X, DG-UX, and OpenVMS.
This is a great SDK for porting WIN32-based ODBC applications to Linux and other OS platforms.
Enhancements:
- Added support for FileDSN
- Added support for Connection Pooling
- Added check for tracefile size
- Call ODBC 2.x functions in driver if application uses ODBC 2.x only calls
- Fixed problem parsing driver result in SQLSetStmtAttr
- Fixed source code readability
- Fixed bug in overwriting driver name
- Fixed check for /Library/ODBC for Mac OS X
- Fixed prototypes
- Rewrote bootstrap script and configure summary
- Use localtime_r in tracing when available
- Fixed build issues with Mac OS X
- Small code cleanups and fixes
<<less
Download (0.50MB)
Added: 2007-01-05 License: LGPL (GNU Lesser General Public License) Price:
609 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5