apple iphone
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 191
iPhone 1.0
iPhone is a SuperKaramba theme inspired by the latest Apple iPhone marketing. more>>
iPhone is a SuperKaramba theme inspired by the latest Apple iPhone marketing.
<<less Download (MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
987 downloads
Apples Icons for Linux -
9 freeware icons of Apples products. more>> This is one of the Dirceu Veiga's products. This contains 9 freeware icons of Apples products.
Its content includes variations of Cinema Display, eMac and iMac<<less
Download (195KB)
Added: 2009-04-11 License: Freeware Price: Free
198 downloads
AppleII::ProDOS 0.08
AppleII::ProDOS is a Perl module created to access files on Apple II ProDOS disk images. more>>
AppleII::ProDOS is a Perl module created to access files on Apple II ProDOS disk images.
SYNOPSIS
use AppleII::ProDOS;
my $vol = AppleII::ProDOS->open(image.dsk); # Open an existing disk
print $vol->catalog; # List files in volume directory
my $file = $vol->get_file(Startup); # Read file from disk
$vol->path(Subdir); # Move into a subdirectory
$vol->put_file($file); # And write it back there
AppleII::ProDOS provides high-level access to ProDOS volumes stored in the disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) It uses the AppleII::Disk module to handle low-level access to image files.
All the following classes have two constructors. Constructors named open are for creating an object to represent existing data in the image file. Constructors named new are for creating a new object to be added to an image file.
AppleII::ProDOS
AppleII::ProDOS is the primary interface to ProDOS volumes. It provides the following methods:
$vol = AppleII::ProDOS->new($volume, $size, $filename, [$mode])
Constructs a new image file and an AppleII::ProDOS object to access it. $volume is the volume name. $size is the size in blocks. $filename is the name of the image file. The optional $mode is a string specifying how to open the image (see the open method for details). You always receive read and write access.
$vol = AppleII::ProDOS->open($filename, [$mode])
Constructs an AppleII::ProDOS object to access an existing image file. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
$vol = AppleII::ProDOS->open($disk)
Constructs an AppleII::ProDOS object to access an existing image file. $disk is the AppleII::Disk object representing the image file.
$bitmap = $vol->bitmap
Returns the volume bitmap as an AppleII::ProDOS::Bitmap object.
$dir = $vol->dir
Returns the current directory as an AppleII::ProDOS::Directory object.
$disk = $vol->disk
Returns the AppleII::ProDOS::Disk object which represents the image file.
$disk = $vol->disk_size
Returns the size of the volume in blocks. This is the logical size of the ProDOS volume, which is not necessarily the same as the actual size of the image file.
$name = $vol->name
Returns the volume name.
$path = $vol->path([$newpath])
Gets or sets the current path. $newpath is the new pathname, which may be either relative or absolute. `.. may be used to specify the parent directory, but this must occur at the beginning of the path (`../../dir is valid, but `../dir/.. is not). If $newpath is omitted, then the current path is not changed. Returns the current path as a string beginning and ending with /.
$catalog = $vol->catalog
$file = $vol->get_file($filename)
$entry = $vol->new_dir($name)
$vol->put_file($file)
These methods are passed to the current directory. See AppleII::ProDOS::Directory for details.
<<lessSYNOPSIS
use AppleII::ProDOS;
my $vol = AppleII::ProDOS->open(image.dsk); # Open an existing disk
print $vol->catalog; # List files in volume directory
my $file = $vol->get_file(Startup); # Read file from disk
$vol->path(Subdir); # Move into a subdirectory
$vol->put_file($file); # And write it back there
AppleII::ProDOS provides high-level access to ProDOS volumes stored in the disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) It uses the AppleII::Disk module to handle low-level access to image files.
All the following classes have two constructors. Constructors named open are for creating an object to represent existing data in the image file. Constructors named new are for creating a new object to be added to an image file.
AppleII::ProDOS
AppleII::ProDOS is the primary interface to ProDOS volumes. It provides the following methods:
$vol = AppleII::ProDOS->new($volume, $size, $filename, [$mode])
Constructs a new image file and an AppleII::ProDOS object to access it. $volume is the volume name. $size is the size in blocks. $filename is the name of the image file. The optional $mode is a string specifying how to open the image (see the open method for details). You always receive read and write access.
$vol = AppleII::ProDOS->open($filename, [$mode])
Constructs an AppleII::ProDOS object to access an existing image file. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
$vol = AppleII::ProDOS->open($disk)
Constructs an AppleII::ProDOS object to access an existing image file. $disk is the AppleII::Disk object representing the image file.
$bitmap = $vol->bitmap
Returns the volume bitmap as an AppleII::ProDOS::Bitmap object.
$dir = $vol->dir
Returns the current directory as an AppleII::ProDOS::Directory object.
$disk = $vol->disk
Returns the AppleII::ProDOS::Disk object which represents the image file.
$disk = $vol->disk_size
Returns the size of the volume in blocks. This is the logical size of the ProDOS volume, which is not necessarily the same as the actual size of the image file.
$name = $vol->name
Returns the volume name.
$path = $vol->path([$newpath])
Gets or sets the current path. $newpath is the new pathname, which may be either relative or absolute. `.. may be used to specify the parent directory, but this must occur at the beginning of the path (`../../dir is valid, but `../dir/.. is not). If $newpath is omitted, then the current path is not changed. Returns the current path as a string beginning and ending with /.
$catalog = $vol->catalog
$file = $vol->get_file($filename)
$entry = $vol->new_dir($name)
$vol->put_file($file)
These methods are passed to the current directory. See AppleII::ProDOS::Directory for details.
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
883 downloads
Snow-Apple
Snow-Apple provides an icon pack for Gnome. more>>
Snow-Apple provides an icon pack for Gnome.
Mark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.
<<lessMark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.
Download (0.50MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1010 downloads
Apple Disk Transfer ProDOS 1.0.2
Apple Disk Transfer ProDOS transfers diskettes and logical disk images between Apple ][-era computers and the modern world. more>>
Apple Disk Transfer ProDOS (or ADTPro for short) transfers diskettes and logical disk images between Apple ][-era computers and the modern world. If youre familiar with the original ADT, ADTPro extends ADTs reach by working with more logical disk formats, drive types, communications devices, and host operating systems.
Main features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
<<lessMain features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
816 downloads
AppleII::Disk 0.08
AppleII::Disk is a Perl module for block-level access to Apple II disk image files. more>>
AppleII::Disk is a Perl module for block-level access to Apple II disk image files.
SYNOPSIS
use AppleII::Disk;
my $disk = AppleII::Disk->new(image.dsk);
my $data = $disk->read_block(1); # Read block 1
$disk->write_block(1, $data); # And write it back :-)
AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module.
AppleII::Disk provides the following methods:
$disk = AppleII::Disk->new($filename, [$mode])
Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order.
If you specify w to allow writes, then the image file is created if it doesnt already exist.
$size = $disk->blocks([$newsize])
Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks.
This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file.
When you create a new image file, you must use blocks to set its size before writing to it.
$contents = $disk->read_block($block)
Reads one block from the disk image. $block is the block number to read.
$contents = $disk->read_blocks(@blocks)
Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly.
$contents = $disk->read_sector($track, $sector)
Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images.
$disk->fully_allocate()
Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files.
$disk->write_block($block, $contents, [$pad])
Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes.
$disk->write_blocks(@blocks, $contents, [$pad])
Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks.
As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly.
$disk->write_sector($track, $sector, $contents, [$pad])
Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images.
$padded = AppleII::Disk::pad_block($data, [$pad, [$length]])
Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes.
If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes.
pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you.
<<lessSYNOPSIS
use AppleII::Disk;
my $disk = AppleII::Disk->new(image.dsk);
my $data = $disk->read_block(1); # Read block 1
$disk->write_block(1, $data); # And write it back :-)
AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module.
AppleII::Disk provides the following methods:
$disk = AppleII::Disk->new($filename, [$mode])
Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order.
If you specify w to allow writes, then the image file is created if it doesnt already exist.
$size = $disk->blocks([$newsize])
Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks.
This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file.
When you create a new image file, you must use blocks to set its size before writing to it.
$contents = $disk->read_block($block)
Reads one block from the disk image. $block is the block number to read.
$contents = $disk->read_blocks(@blocks)
Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly.
$contents = $disk->read_sector($track, $sector)
Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images.
$disk->fully_allocate()
Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files.
$disk->write_block($block, $contents, [$pad])
Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes.
$disk->write_blocks(@blocks, $contents, [$pad])
Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks.
As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly.
$disk->write_sector($track, $sector, $contents, [$pad])
Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images.
$padded = AppleII::Disk::pad_block($data, [$pad, [$length]])
Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes.
If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes.
pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you.
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
881 downloads
SOPE Application Server 4.5.9
The SOPE package is an extensive set of frameworks. more>>
SOPE Application Server is an extensive set of frameworks (16 frameworks, ~1500 classes) which form a complete Web application server environment.
Besides the Apple WebObjects compatible appserver extended with Zope concepts, it contains a large set of reusable classes: XML processing (SAX2, DOM, XML-RPC), MIME/IMAP4 processing, LDAP connectivity, RDBMS connectivity, and iCalendar parsing.
The individual frameworks of the package can be used standalone (for example in Cocoa applications) and do not require the application server itself.
For MacOSX developers, the package includes SOPE:X, which contains special Xcode and Cocoa support for SOPE.
Enhancements:
- This release fixes a set of minor bugs.
- It improves the vCard parser, the IMAP4 client library, the MySQL adaptor, and BSD packaging.
<<lessBesides the Apple WebObjects compatible appserver extended with Zope concepts, it contains a large set of reusable classes: XML processing (SAX2, DOM, XML-RPC), MIME/IMAP4 processing, LDAP connectivity, RDBMS connectivity, and iCalendar parsing.
The individual frameworks of the package can be used standalone (for example in Cocoa applications) and do not require the application server itself.
For MacOSX developers, the package includes SOPE:X, which contains special Xcode and Cocoa support for SOPE.
Enhancements:
- This release fixes a set of minor bugs.
- It improves the vCard parser, the IMAP4 client library, the MySQL adaptor, and BSD packaging.
Download (4.0MB)
Added: 2006-08-28 License: LGPL (GNU Lesser General Public License) Price:
1152 downloads
GNUMail.app 1.2.0pre3
GNUMail.app is the complete and fast mail application for GNUstep. more>>
GNUMail.app is a fully featured mail application running on Linux (or FreeBSD, OpenBSD, etc) and Apple Mac OS X.
GNUMail.app uses the GNUstep development framework or Apple Cocoa, which is based on the OpenStep specification provided by NeXT, Inc.. GNUMail.app is licensed under the GPL, and the full sources of the application are available.
GNUMail.app was written from scratch. It uses Pantomime as its mail handling framework.
Main features:
- Multiple POP3 (with APOP support) accounts with local cache support (for leaving messages on server);
- Multiple delivery agents (SMTP or local mailer);
- Mail spool file support for receiving;
- Good IMAP support with local caching;
- Full RFC822 and RFC2822 support;
- Read, compose, bounce, reply and forward mails;
- Mailbox management (create, delete, locking and transfer messages) using the Berkeley mbox format;
- Personal preferences management;
- MIME support (decode and encode);
- A full MIME types manager;
- Quoted Printable and BASE64 support;
- Address Book with groups support;
- Find Panel with regular expressions support;
- Automatic or manual fetching of your mails (users choice);
- Powerful filters that supports regular expressions;
- GPG (PGP) support through a bundle;
- Messages threading;
- And more...
<<lessGNUMail.app uses the GNUstep development framework or Apple Cocoa, which is based on the OpenStep specification provided by NeXT, Inc.. GNUMail.app is licensed under the GPL, and the full sources of the application are available.
GNUMail.app was written from scratch. It uses Pantomime as its mail handling framework.
Main features:
- Multiple POP3 (with APOP support) accounts with local cache support (for leaving messages on server);
- Multiple delivery agents (SMTP or local mailer);
- Mail spool file support for receiving;
- Good IMAP support with local caching;
- Full RFC822 and RFC2822 support;
- Read, compose, bounce, reply and forward mails;
- Mailbox management (create, delete, locking and transfer messages) using the Berkeley mbox format;
- Personal preferences management;
- MIME support (decode and encode);
- A full MIME types manager;
- Quoted Printable and BASE64 support;
- Address Book with groups support;
- Find Panel with regular expressions support;
- Automatic or manual fetching of your mails (users choice);
- Powerful filters that supports regular expressions;
- GPG (PGP) support through a bundle;
- Messages threading;
- And more...
Download (1.1MB)
Added: 2007-02-06 License: GPL (GNU General Public License) Price:
991 downloads
mozplayerxp
mozplayerxp is a scriptable Mozilla mplayer plugin. more>>
mozplayerxp is an attempt to embed videos in mozilla firebird and mozilla under linux, the goal is to implement as much windows media/apple quicktime support as possible.
you might ask why another plugin theres already one out there? mplayerplug-in?
mplayerplug-in uses many global variables in its shared library enviroment this is not reliable since there might be problems when running more than one instances (its like 2 people are going to share 1 glass at the same time)
the second aim is usability, this project relies on GTK2+ right now, another patch has to get submitted to the mplayer project for adding ALT-RETURN support to that plugin as well.
currently the plugin is able to switch to fullscreen, start and stop without any problems (that means the hardest part of that plugin is done since threading and forking dont affect anything else anymore).
<<lessyou might ask why another plugin theres already one out there? mplayerplug-in?
mplayerplug-in uses many global variables in its shared library enviroment this is not reliable since there might be problems when running more than one instances (its like 2 people are going to share 1 glass at the same time)
the second aim is usability, this project relies on GTK2+ right now, another patch has to get submitted to the mplayer project for adding ALT-RETURN support to that plugin as well.
currently the plugin is able to switch to fullscreen, start and stop without any problems (that means the hardest part of that plugin is done since threading and forking dont affect anything else anymore).
Download (0.03MB)
Added: 2005-05-05 License: Free To Use But Restricted Price:
1632 downloads
Policy Daemon 1.81
Policy Daemon is an anti-spam plugin for Postfix. more>>
Policy Daemon project is an anti-spam plugin for Postfix (written in C) that does Greylisting, Sender-(envelope, SASL or host / ip)-based throttling (on messages and/or volume per defined time unit), Recipient rate limiting, Spamtrap monitoring / blacklisting, HELO auto blacklisting and HELO randomization preventation.
Enhancements:
- Merged OSX -L < libdir > vs. -L< libdir > fix into v1.8x branch
- Added quirk for SIGPIPE on Apple
- Added quirk for some versions of NetBSD which dont have SO_NOSIGPIPE
- Added error message that if we cannot find how to handle SIGPIPE on the host platform to contact the devel mailing list
- Make "stats" command a bit better aligned
- Be paranoid bout our read buffer size check
- Better check to see if weve run out of available slots, if we have emit a warning and close connection
- Fixed potential buffer overflow when line length exceeds MAXLINE
<<lessEnhancements:
- Merged OSX -L < libdir > vs. -L< libdir > fix into v1.8x branch
- Added quirk for SIGPIPE on Apple
- Added quirk for some versions of NetBSD which dont have SO_NOSIGPIPE
- Added error message that if we cannot find how to handle SIGPIPE on the host platform to contact the devel mailing list
- Make "stats" command a bit better aligned
- Be paranoid bout our read buffer size check
- Better check to see if weve run out of available slots, if we have emit a warning and close connection
- Fixed potential buffer overflow when line length exceeds MAXLINE
Download (0.35MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
airoleap 0.7.3
Airctl is a commad-line utility to trigger connection and disconnection events on. more>>
Airctl is a commad-line utility to trigger connection and disconnection events on, and to print the status of an Apple AirPort Base Station. At the moment this is not a configuration utility; try the AirPort Java Configurator http://edge.mcs.drexel.edu/GICL/people/sevy/airport/] , airconf [http://c0re.jp/c0de/airconf/] , or Apples own software to configure thing.
To install follow these commands:
make airctl
Usage:
./airctl -h
<<lessTo install follow these commands:
make airctl
Usage:
./airctl -h
Download (0.011MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
Telemonitor 0.91
Telemonitor is a datalimit monitor for the Belgian ISP Telenet. more>>
Telemonitor is a datalimit monitor for the Belgian ISP Telenet.
This theme uses the SOAPpy python package to fetch datalimit usage information from telemeter4tools.services.telenet.be.
The graphics used are from a apple dashboard widget created by n00.be (www.n00.be)
How-to:
click the i, hidden in the right corner, after entering your username and password.
<<lessThis theme uses the SOAPpy python package to fetch datalimit usage information from telemeter4tools.services.telenet.be.
The graphics used are from a apple dashboard widget created by n00.be (www.n00.be)
How-to:
click the i, hidden in the right corner, after entering your username and password.
Download (0.050MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1219 downloads
AFELO 6.7
AFELO allows you to compress and send images to your webserver. more>>
AFELO allows you to compress and send images to your webserver.
Compressing images and sending them to your webserver has never been so easy before! AFELO allows to select images on your local computer, to resize and compress them and to send them to your server with only a few clicks!
AFELO is free and can be used by anyone! You can send your images to your OLEFA server (using your usual OLEFA username & password), to any other website (via FTP) or save them to your local computer.
AFELO can be used on any computer and is fully compatible with Microsoft Windows, Apple MacOS X and Linux/UNIX operating systems!
<<lessCompressing images and sending them to your webserver has never been so easy before! AFELO allows to select images on your local computer, to resize and compress them and to send them to your server with only a few clicks!
AFELO is free and can be used by anyone! You can send your images to your OLEFA server (using your usual OLEFA username & password), to any other website (via FTP) or save them to your local computer.
AFELO can be used on any computer and is fully compatible with Microsoft Windows, Apple MacOS X and Linux/UNIX operating systems!
Download (1.4MB)
Added: 2006-08-29 License: Freeware Price:
1151 downloads
LibQtPod 0.3 RC1
LibQtPod provides access to the contents of an Apple iPod. more>>
LibQtPod provides access to the contents of an Apple iPod. The code was formerly part of the kio ipodslave, but is now a separate Qt-based library.
LibQtPod library features reading and writing of the iTunesDB music database and provides access to hardware specific information like disc space statistics.
Main features:
- Reading/Writing the iTunesDB Music database
- access to hardware specific information like disc space statistics
Bugs/noticable problems:
- please report any problem you encounter with the software to the sourceforge project page at http://sourceforge.net/projects/kpod
- Since podcasts and smart playlists are unsupported at the moment youll lose them when synchronizing the database.
Installation:
1. `cd to the directory containing the packages source code and type `qmake to configure the package for your system and to create the Makefiles. qmake can be found in the bin directory of your Qt installation. You may have to add the directory to your PATH before running it.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Whats New in 0.2 Stable Release:
- This version contains lots of fixes and code cleanups.
- On the functional side, this release adds playlist sorting by setting one of the predefined sort order criteria and a new track(list) search implementation with user definable predicates.
- Browsing while on the go was speeded up by writing out type 52 MHODs; this may also result in smaller gaps between songs.
Whats New in 0.3 RC1 Development Release:
- Documentation fixes
- added trackNumber to ITunesDB::findTrack and TrackPredicated::ByFullInfo
- changed ITunesDB::findFirstTrackBy() and ::getTracksBy() to use a reference instead of a pointer to the predicate
- implemented Smart Playlists
- fixed DBID generation
- fixed ordering artists with a "The" in the name
- create backup copies for all DB files when writing
- implemented ipod initialization for pristine devices
- lots of small fixes - code + design
- builds with gcc-4.1
<<lessLibQtPod library features reading and writing of the iTunesDB music database and provides access to hardware specific information like disc space statistics.
Main features:
- Reading/Writing the iTunesDB Music database
- access to hardware specific information like disc space statistics
Bugs/noticable problems:
- please report any problem you encounter with the software to the sourceforge project page at http://sourceforge.net/projects/kpod
- Since podcasts and smart playlists are unsupported at the moment youll lose them when synchronizing the database.
Installation:
1. `cd to the directory containing the packages source code and type `qmake to configure the package for your system and to create the Makefiles. qmake can be found in the bin directory of your Qt installation. You may have to add the directory to your PATH before running it.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Whats New in 0.2 Stable Release:
- This version contains lots of fixes and code cleanups.
- On the functional side, this release adds playlist sorting by setting one of the predefined sort order criteria and a new track(list) search implementation with user definable predicates.
- Browsing while on the go was speeded up by writing out type 52 MHODs; this may also result in smaller gaps between songs.
Whats New in 0.3 RC1 Development Release:
- Documentation fixes
- added trackNumber to ITunesDB::findTrack and TrackPredicated::ByFullInfo
- changed ITunesDB::findFirstTrackBy() and ::getTracksBy() to use a reference instead of a pointer to the predicate
- implemented Smart Playlists
- fixed DBID generation
- fixed ordering artists with a "The" in the name
- create backup copies for all DB files when writing
- implemented ipod initialization for pristine devices
- lots of small fixes - code + design
- builds with gcc-4.1
Download (0.10MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1203 downloads
KMacBacklight 0.2
KMacBacklight project is a kicker applet to adjust the backlight of an Apple iMac or MacBook Pro. more>>
KMacBacklight project is a kicker applet to adjust the backlight of an Apple iMac or MacBook Pro. You also can assign shortcuts.
I take absolutely no responsibility for any kind of harm caused to your Mac.
Installation:
After unpacking with "tar xvfj" and changing to the directory with "cd kmacbacklight" the usual "./configure && make && sudo make install".
You might need the package "pciutils-dev" to compile backlight.c.
Afterwards you should be able to add the applet to your KDE panel.
Todo:
- MacBook support. Can anyone with a MacBook please confirm that this [ http://desrt.mcmaster.ca/code/macbook-backlight/macbook-backlight.c ] backlight adjuster works and which backlight values you can use. I use values between 33 and 255 for the MacBook Pro backlight adjuster at the moment.
Enhancements:
- removed sudo, setuid should be enough
<<lessI take absolutely no responsibility for any kind of harm caused to your Mac.
Installation:
After unpacking with "tar xvfj" and changing to the directory with "cd kmacbacklight" the usual "./configure && make && sudo make install".
You might need the package "pciutils-dev" to compile backlight.c.
Afterwards you should be able to add the applet to your KDE panel.
Todo:
- MacBook support. Can anyone with a MacBook please confirm that this [ http://desrt.mcmaster.ca/code/macbook-backlight/macbook-backlight.c ] backlight adjuster works and which backlight values you can use. I use values between 33 and 255 for the MacBook Pro backlight adjuster at the moment.
Enhancements:
- removed sudo, setuid should be enough
Download (0.52MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
982 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 apple iphone 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