Main > Free Download Search >

Free snow apple software for linux

snow apple

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 212
Snow-Apple

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.

<<less
Download (0.50MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1010 downloads
Snow & Ice 1.0

Snow & Ice 1.0


This product offers a beautiful screensaver with a winter’s theme. more>> <<less
Added: 2008-03-01 License: GPL Price: FREE
14 downloads
Xsnow 1.42

Xsnow 1.42


Xsnow is the X-windows application that will let it snow on the root, in between and on windows. more>>
Xsnow application is the X-windows application that will let it snow on the root, in between and on windows.
Santa and his reindeer will complete your festive-season feeling.
How to compile:
To build:
xmkmf
make depend
make
To run:
./xsnow
or:
./xsnow& (in the background)
To install (be root):
make install
make install.man
If xmkmf does not work and you cannot get a working Makefile that way then try compiling yourself, eh, xsnow this way:
cc -o xsnow snow.c -lXext -lX11 -lXpm -lm -lsocket -lnsl
gcc, SUN Solaris users without a C-compiler, but with gcc installed, try the following two commands. The first compiles Xsnow, the second links Xsnow.
gcc -c -O2 -I/usr/openwin/include -DSVR4 -DSYSV xsnow.c
gcc -o xsnow xsnow.o -O2 -L/usr/openwin/lib -lXext -lX11 -lXpm -lm -lsocket -lnsl
Note: Xsnow-1.41 needs the Xpm library. It is available from:
ftp://ftp.x.org/contrib/libraries/
The current Xpm version is xpm3.4k
Enhancements:
- All you KDE-users can now be even happier with a KDE-enabled Xsnow 1.42!
- The snow will magnificently wipe out your icons, but not to worry, theyre not really gone.
- By wiping with a window or something you can make them reappear.
- Car owners are used to this for years. Thanks to Robin Hogan who figured this out for xpenguin.
<<less
Download (0.055MB)
Added: 2006-04-13 License: Freeware Price:
1292 downloads
SOPE Application Server 4.5.9

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.
<<less
Download (4.0MB)
Added: 2006-08-28 License: LGPL (GNU Lesser General Public License) Price:
1152 downloads
mozplayerxp

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).
<<less
Download (0.03MB)
Added: 2005-05-05 License: Free To Use But Restricted Price:
1632 downloads
AppleII::ProDOS 0.08

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.

<<less
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
883 downloads
GNUMail.app 1.2.0pre3

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...
<<less
Download (1.1MB)
Added: 2007-02-06 License: GPL (GNU General Public License) Price:
991 downloads
Snow Path Formation Simulator 0.5.3

Snow Path Formation Simulator 0.5.3


Snow Path Formation Simulator it graphically displays the formation of paths in the snow formed by people. more>>
Snow Path Formation Simulator is a program that models the process of people forming very distinct, and yet not always altogether logical looking, paths in the snow as they walk across open spaces.

The evolving condition of the snow is displayed graphically. This project may eventually mature into a screensaver.
<<less
Download (0.10MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1646 downloads
Net::DAAP::Client 0.42

Net::DAAP::Client 0.42


Net::DAAP::Client is a client for Apple iTunes DAAP service. more>>
Net::DAAP::Client is a client for Apple iTunes DAAP service.

SYNOPSIS

my $daap; # see WARNING below
$daap = Net::DAAP::Client->new(SERVER_HOST => $hostname,
SERVER_PORT => $portnum,
PASSWORD => $password);
$dsn = $daap->connect;

$dbs_hash = $daap->databases;
$current_db = $daap->db;
$daap_db($new_db_id);

$songs_hash = $daap->songs;
$playlists_hash = $daap->playlists;
$array_of_songs_in_playlist = $daap->playlist($playlist_id);

$url = $daap->url($song_or_playlist_id);

$binary_audio_data = $obj->get($song_id);
$binary_audio_data = $obj->get(@song_ids);
$song_id = $obj->save($dir, $song_id);
@song_ids = $obj->get($dir, @song_ids);

$daap->disconnect;

if ($daap->error) {
warn $daap->error; # returns error string
}

Net::DAAP::Client provides objects representing connections to DAAP servers. You can fetch databases, playlists, and songs. This module was written based on a reverse engineering of Apples iTunes 4 sharing implementation. As a result, features that iTunes 4 doesnt support (browsing, searching) arent supported here.

Each connection object has a destructor, so that you can forget to disconnect without leaving the server expecting you to call back.

WARNING

If you store your object in a global variable, Perl cant seem to disconnect gracefully from the server. Until I figure out why, always store your object in a lexical (my) variable.

<<less
Download (0.012MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1083 downloads
DeskNow Mail and Collaboration Server 3.1.9

DeskNow Mail and Collaboration Server 3.1.9


DeskNow is a fully featured and easy to use mail and collaboration server. more>>
DeskNow project is a fully featured and easy to use mail and collaboration server that can handle all the communication and collaboration needs of your company.
Main features:
- fully featured mail server
- advanced antispam technologies, antivirus integration and content filtering
- dynamic webmail interface
- document management
- advanced calendaring with meeting planning, free/busy search, shared calendars, task lists, resource booking, iCal publishing (Mozilla Sunbird, Apple iCal)
- Outlook connector to integrate personal and group calendars, tasks, contacts
- SyncML synchronization with Palm, PocketPC, BlackBerry and most mobile phones
- secure Jabber instant messaging with integrated web client
- automatic authentication and account import with Active Directory and LDAP servers
Enhancements:
- This version introduces minor improvements to IMAP import and features improved SyncML duplicate detection and a maxhops configuration setting.
<<less
Download (24.4MB)
Added: 2006-08-11 License: GPL (GNU General Public License) Price:
1178 downloads
Apples Icons for Linux -

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
Gnake 0.94b

Gnake 0.94b


Gnake project is a Nibbles-like game for the console. more>>
Gnake project is a Nibbles-like game for the console.
Its simple but customizable: you can change the number of apples, the size of the board, the time, apple growth, and other parameters.
This version of "Gnake" allows you to change:
- the playground size (potentially bigger than the size of the terminal),
- the speed,
- the number of apples,
- how much eating an apple makes you grow,
- the length of the snake and
- the time-based growth - as advised by my friend Luca.
Enhancements:
- Added support for terminal resize and (pretty stupid) computer driven worms.
<<less
Download (0.064MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
rstudio 0.6

rstudio 0.6


rstudio is a GTK+ GUI that controls programs used in recording, CD mastering, and managing a SHOUTcast server. more>>
rstudio project is a GTK+ GUI that controls programs used in recording, CD mastering, and managing a SHOUTcast server.
The "Radio Station" referred to here is a Shoutcast server. Before you can play any music on the station, you need to either record your own, or use a Peer-to-Peer program or other source to download some music.
The GTK-Gnutella button starts a peer to peer fileshareing program called GTK-Gnutella where you can get a wide variety of music free.
Start Radio station starts up the shoutcast server and its source client, which feeds an mp3 playlist to the server for broadcast.
The playlist file is created when you press the "Close" button in the playlist manager. The playlist manager lets you view either the downloaded files from GTK-Gnutella, or the permanent collection of files. You can select a file, then move it to the permanent collection, only if you are viewing the downloaded files. For either set, you may delete a file, or play it.
Audacity is a very versatile recording tool that can be used to create original content, or to record from other sources, such as a Shoutcast.com station, (or even your own shoutcast station).
Shoutcast.com button starts firefox, with the url of http://www.shoutcast.com so that you may listen to other shoutcast stations, or your own.
Kill XMMS stops any running xmms.
Quit exits rstudio.
GTK-Gnutella starts the P-2-P filesharing system.
K3B can be used to master audio CDs, or even mp3 data CDs that can be played on an mp3-compatible cd player or dvd player.
Enhancements:
- A shuffle playlist button was added.
- The audio player was changed to Audacious since Gentoo does not support XMMS.
- This version was tested on Gentoo AMD64 and Kubuntu 386.
<<less
Download (1.1MB)
Added: 2007-04-01 License: GPL (GNU General Public License) Price:
941 downloads
k5n Desktop Calendar 0.9.4

k5n Desktop Calendar 0.9.4


k5n Desktop Calendar application is a calendar application for your desktop. more>>
k5n Desktop Calendar (k5nCal, for short) application is a calendar application for your desktop. It shares features with applications like Apple iCal and Microsoft Outlook, but it is open source.
This project is built upon Java Calendar Tools, and all data is stored in RFC 2445 iCalendar format.
Main features:
- Supports Mac OS X, Linux or Windows (requires Java 1.5)
- Saves all entries in iCalendar RFC 2445 format
- Simple and intuitive user interface similar
- Open source license so you can download and modify the source and use it free of charge.
<<less
Download (0.76MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
819 downloads
snd123 1.0.1

snd123 1.0.1


snd123 is a simple command line audio player. more>>
snd123 is a simple command line audio player that supports MP2, MP3, AAC, Ogg Vorbis, Speex, FLAC, Apple Lossless, AC3, CDDA, WMA 1 and 2, MOD, XM, IT, S3M, 669, MTM, and STM.

Supported Formats:

MP2, MP3, AAC, Ogg Vorbis, Speex, FLAC, Apple Lossless, AC3, CDDA, WMA 1 and 2.
MOD formats: MOD, XM, IT, S3M, 669, MTM, STM.

<<less
Download (2.3MB)
Added: 2005-09-22 License: GPL (GNU General Public License) Price:
1503 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5