lero ui mac osx set 0.3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6790
Added: 2009-03-17 License: GPL Price: FREE
1 downloads
Added: 2009-03-17 License: GPL Price: FREE
14 downloads
Folder Color Icon Set 1.0
Folder Color icon set is a must-have for any computer user who has lots of folders and would like to organize them for faster search and quick retrieval. These 36 color coded folder icons is the way to tackle the too-many-same-looking-folders problem. To change color of a folder: Right click the folder > select Properties > click Customize tab > click Change Icon... > select an icon from this icon set > click OK > click Apply > OK... more>> <<less
Download (446.2Kb)
Added: 2007-07-15 License: Free Price: Free
12 downloads
Loudmouth 1.2.3
Loudmouth is a lightweight and easy-to-use C library for programming with the Jabber protocol. more>>
Loudmouth is a lightweight and easy-to-use C library for programming with the Jabber protocol. Its designed to be easy to get started with and yet extensible to let you do anything the Jabber protocol allows.
Loudmouth project goal is to fully support Linux, *BSD, Mac OSX and Windows. It has currently only been tested on Linux, FreeBSD, Solaris and Windows. If someone with access to other systems can provide feedback we would be most grateful.
<<lessLoudmouth project goal is to fully support Linux, *BSD, Mac OSX and Windows. It has currently only been tested on Linux, FreeBSD, Solaris and Windows. If someone with access to other systems can provide feedback we would be most grateful.
Download (0.44MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
866 downloads
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
<<lessSYNOPSIS
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
Download (0.004MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1217 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
Python Music Daemon 0.3
Python Music Daemon is yet another jukebox written in Python. more>>
PyMusicD is yet another jukebox daemon written in python. It was born out of my frustration with the current mp3 jukeboxes, mostly the lack of features that I want. Ive also been playing with python quite a lot lately, and this is my first attempt at a large project in python.
The player is being written to satisfy my own requirements for a car mp3 player, although theres no reason you couldnt use this for a home mp3 player, or work mp3 player.
It assumes that your network users are (mostly) benign, and doesnt take a lot of precautions against malicious users who want to screw with your mp3s. Take appropriate measures to only allow trusted users to play with it, at least until I secure it a bit better.
Its primary purpose is to run in the background, and play mp3s whenever they are in the playlist.
Usage
Unpack this to its own directory. Edit the pymusicd.conf file to your liking. Run python PyMusicD, then run python pymusic to play around with it. The client operates very similarly to most shells, and includes tab completion for commands (but not arguments... yet.)
If you wish to install this to the system, you may do so by running python setup.py install. This will install the server binary in the default place for your platform (according to distutils.) You may then edit the config file (/etc/pymusicd.conf by default) and run the server by running PyMusicD. The cli client will be named pymusic.
This software is currently in development. It is not ready for end users yet. You should have familiarity with scripting in python before you set about to use this software. That being said, if you find bugs that arent listed in TODO, and/or have problems with the software that arent listed in TODO, email me (zwhite@darkstar.frop.org) and Ill see what I can do to help you. Code patches/suggestions are always welcome.
This is known to work on my Slackware 9.0 machine using the Python 2.2.2 package that came with it. I have also tested it on my Mac OSX 10.2.8 machine with Python 2.2. I have no reason to believe that it wont work on any machine with a Python 2.x interpreter and
either mpg123 or mpg321. Your mileage may vary. If it doesnt work on your platform, please let me know. My goal is to have this work on any platform that python runs on.
Enhancements:
- Fixed a bug when adding an entire directory with %2A instead of *
- Added a debug command to get server state, currently only playstatus is reported, will add more as needed.
- Changed the way the stop command works to eliminate a bug.
- Check to make sure a file exists before we add it to the playlist.
- We no longer start playing music as soon as the playlist has entries.
- Instead, we wait for a play command to be issued.
- Added config file support. Defaults to /etc/pymusicd.conf or ./pymusicd.conf
- Added a setup.py and setup.cfg file. Now users can install PyMusicD using the standard "python setup.py install" method that other scripts and modules use.
<<lessThe player is being written to satisfy my own requirements for a car mp3 player, although theres no reason you couldnt use this for a home mp3 player, or work mp3 player.
It assumes that your network users are (mostly) benign, and doesnt take a lot of precautions against malicious users who want to screw with your mp3s. Take appropriate measures to only allow trusted users to play with it, at least until I secure it a bit better.
Its primary purpose is to run in the background, and play mp3s whenever they are in the playlist.
Usage
Unpack this to its own directory. Edit the pymusicd.conf file to your liking. Run python PyMusicD, then run python pymusic to play around with it. The client operates very similarly to most shells, and includes tab completion for commands (but not arguments... yet.)
If you wish to install this to the system, you may do so by running python setup.py install. This will install the server binary in the default place for your platform (according to distutils.) You may then edit the config file (/etc/pymusicd.conf by default) and run the server by running PyMusicD. The cli client will be named pymusic.
This software is currently in development. It is not ready for end users yet. You should have familiarity with scripting in python before you set about to use this software. That being said, if you find bugs that arent listed in TODO, and/or have problems with the software that arent listed in TODO, email me (zwhite@darkstar.frop.org) and Ill see what I can do to help you. Code patches/suggestions are always welcome.
This is known to work on my Slackware 9.0 machine using the Python 2.2.2 package that came with it. I have also tested it on my Mac OSX 10.2.8 machine with Python 2.2. I have no reason to believe that it wont work on any machine with a Python 2.x interpreter and
either mpg123 or mpg321. Your mileage may vary. If it doesnt work on your platform, please let me know. My goal is to have this work on any platform that python runs on.
Enhancements:
- Fixed a bug when adding an entire directory with %2A instead of *
- Added a debug command to get server state, currently only playstatus is reported, will add more as needed.
- Changed the way the stop command works to eliminate a bug.
- Check to make sure a file exists before we add it to the playlist.
- We no longer start playing music as soon as the playlist has entries.
- Instead, we wait for a play command to be issued.
- Added config file support. Defaults to /etc/pymusicd.conf or ./pymusicd.conf
- Added a setup.py and setup.cfg file. Now users can install PyMusicD using the standard "python setup.py install" method that other scripts and modules use.
Download (0.013MB)
Added: 2005-05-10 License: Freely Distributable Price:
1629 downloads
MAC Changer GUI 0.03
MAC Changer GUI will display and change your MAC address to a user supplied or random value. more>>
MAC Changer GUI will display and change your MAC address to a user supplied or random value.
Created with kommander 1.3.0. Not sure if it works with previous versions.
Depends on kdialog and must be executed with the kdesu command.
Example:
kdesu kmdr-executor /home/someDIR/mac.kmdr
As this script is executed using root privileges it is good practice to inspect the script for malicious content. With that being said there is nothing in the script that can harm your computer. A reboot will restore your original MAC if you forget its value and want to change it back.
<<lessCreated with kommander 1.3.0. Not sure if it works with previous versions.
Depends on kdialog and must be executed with the kdesu command.
Example:
kdesu kmdr-executor /home/someDIR/mac.kmdr
As this script is executed using root privileges it is good practice to inspect the script for malicious content. With that being said there is nothing in the script that can harm your computer. A reboot will restore your original MAC if you forget its value and want to change it back.
Download (0.030MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
974 downloads
Open Tax Solver 0.5 (GUI)
OTS GUI is an optional Graphical User Interface for all Open Tax Solver programs and tax-form versions. more>>
Open Tax Solver GUI is an optional Graphical User Interface for all Open Tax Solver programs and tax-form versions. It provides a simple way to enter and edit your tax-data and to run the tax-solver on it. The OTS GUI is written to work with any OTS tax data file, both past, present, and future. It is a modular addition to the OTS program set.
The OTS GUI contains no specific tax-form data itself, but rather it reads your selected tax-form file and configures itself accordingly. By virtue of OTS-GUI, all OTS versions now automatically have a GUI front-end, and anyone, even without GUI-writing experience, may create new tax programs having this graphical front-end.
The OTS_GUI is written in C using the Otk (Open Tool Kit) graphics library. It appears to compile easily and run properly on all platforms, including Linux, Microsoft Windows, Mac OsX, Solaris, Irix, and other Unixs in general. Otk was chosen for its cross-platform support, simplicity, and smallness. The OTS GUI is a single C file having less than a thousand lines, and the Otk library consists of a few small files.
<<lessThe OTS GUI contains no specific tax-form data itself, but rather it reads your selected tax-form file and configures itself accordingly. By virtue of OTS-GUI, all OTS versions now automatically have a GUI front-end, and anyone, even without GUI-writing experience, may create new tax programs having this graphical front-end.
The OTS_GUI is written in C using the Otk (Open Tool Kit) graphics library. It appears to compile easily and run properly on all platforms, including Linux, Microsoft Windows, Mac OsX, Solaris, Irix, and other Unixs in general. Otk was chosen for its cross-platform support, simplicity, and smallness. The OTS GUI is a single C file having less than a thousand lines, and the Otk library consists of a few small files.
Download (0.090MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1294 downloads
GNU MAC Changer 1.5.0
GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces. more>>
GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces.
It can set specific, random, vendor-based (with a 6600+ vendor list), and device-type-based MACs.
Main features:
- Set specific MAC address of a network interface
- Set the MAC randomly
- Set a MAC of another vendor
- Set another MAC of the same vendor
- Set a MAC of the same kind (eg: wireless card)
- Display a vendor MAC list (today, 6800 items) to choose from
Possible usages
You should use your imagination :-), but well, these are some examples:
Youre in a DHCP network with some kind of IP-based restriction
Youve a cluster that boot with BOOTP and you want to have a clean set of MACs
Debug MAC based routes
<<lessIt can set specific, random, vendor-based (with a 6600+ vendor list), and device-type-based MACs.
Main features:
- Set specific MAC address of a network interface
- Set the MAC randomly
- Set a MAC of another vendor
- Set another MAC of the same vendor
- Set a MAC of the same kind (eg: wireless card)
- Display a vendor MAC list (today, 6800 items) to choose from
Possible usages
You should use your imagination :-), but well, these are some examples:
Youre in a DHCP network with some kind of IP-based restriction
Youve a cluster that boot with BOOTP and you want to have a clean set of MACs
Debug MAC based routes
Download (0.22MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
1003 downloads
Empathy 0.11
Empathy project is a Gnome IM/voice/video client reusing Gossips UI and using Nokias MissionControl. more>>
Empathy project is a Gnome IM/voice/video client reusing Gossips UI and using Nokias MissionControl.
Empathy consists of a rich set of reusable instant messaging widgets, and a GNOME client using those widgets. It uses Telepathy and Nokias Mission Control, and reuses Gossips UI.
The main goal is to permit desktop integration by providing libempathy and libempathy-gtk libraries. libempathy-gtk is a set of powerful widgets that can be embeded into any GNOME application.
Main features:
- Account editor (specialized UI for Jabber, gmail)
- Status icon
- Auto away and extended away
- Contact list (with presence/avatar/alias)
- Private chat (with smileys, spellcheck)
<<lessEmpathy consists of a rich set of reusable instant messaging widgets, and a GNOME client using those widgets. It uses Telepathy and Nokias Mission Control, and reuses Gossips UI.
The main goal is to permit desktop integration by providing libempathy and libempathy-gtk libraries. libempathy-gtk is a set of powerful widgets that can be embeded into any GNOME application.
Main features:
- Account editor (specialized UI for Jabber, gmail)
- Status icon
- Auto away and extended away
- Contact list (with presence/avatar/alias)
- Private chat (with smileys, spellcheck)
Download (1.0MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
881 downloads
AudioCD::Mac 0.25
AudioCD::Mac is a MacPerl extension for controlling Audio CDs. more>>
AudioCD::Mac is a MacPerl extension for controlling Audio CDs.
SYNOPSIS
#!perl -w
use AudioCD;
use strict;
my $cd = new AudioCD;
$cd->volume(255);
$cd->play(2);
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
$cd->pause;
print "Now pausedn" if $cd->status == CD_PAUSE;
sleep(5);
$cd->volume(100);
$cd->continue;
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
my @info = $cd->info;
printf "Currently at track %d, %.2d:%.2dn", @info[0..2];
$cd->stop;
my $status = $cd->status;
print "Now stoppedn" if
($status == CD_FINISH || $status == CD_STOP);
if (do CDDB.pm) { # sold separately
my $cddb = new CDDB;
my @cddb_info = $cddb->calculate_id( $cd->cddb_toc );
my @discs = $cddb->get_discs(@cddb_info[0, 3, 4]);
print "You were probably listening to $discs[0]->[2]n";
}
$cd->eject;
This is the MacPerl module to be used by the AudioCD module. Other modules can be written for other platforms, but this one is Mac specific, calling Mac OS APIs to control the CD player.
<<lessSYNOPSIS
#!perl -w
use AudioCD;
use strict;
my $cd = new AudioCD;
$cd->volume(255);
$cd->play(2);
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
$cd->pause;
print "Now pausedn" if $cd->status == CD_PAUSE;
sleep(5);
$cd->volume(100);
$cd->continue;
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);
my @info = $cd->info;
printf "Currently at track %d, %.2d:%.2dn", @info[0..2];
$cd->stop;
my $status = $cd->status;
print "Now stoppedn" if
($status == CD_FINISH || $status == CD_STOP);
if (do CDDB.pm) { # sold separately
my $cddb = new CDDB;
my @cddb_info = $cddb->calculate_id( $cd->cddb_toc );
my @discs = $cddb->get_discs(@cddb_info[0, 3, 4]);
print "You were probably listening to $discs[0]->[2]n";
}
$cd->eject;
This is the MacPerl module to be used by the AudioCD module. Other modules can be written for other platforms, but this one is Mac specific, calling Mac OS APIs to control the CD player.
Download (0.014MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
Exobius 0 0.3
Exobius 0 is an open source 2D shoot-em-up for *nix and OSX. more>>
Exobius 0 is an open source 2D shoot-em-up for *nix and OSX. It consists of 13 levels, which scroll in different directions.
<<less Download (0.060MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1111 downloads
GNU-LINUX Tierra-UI NON GLOBAL MENU 0.0
GNU-LINUX Tierra-UI NON GLOBAL MENU offers users a non global-menu version of the GNU-LINUX Tierra-UI theme. more>> <<less
Added: 2008-11-20 License: GPL Price: FREE
1 downloads
ImageSpace 0.5
ImageSpace is OpenSource software running on Unix/X11 systems. more>>
ImageSpace is OpenSource software running on Unix/X11 systems. ImageSpace is a genetic image generator, that means it generates and mutates mathematical functions while the users aesthetic perception is the fitness function, selecting an image which will be mutated.
Since the functions are represented by syntax trees, the search space is really infinite (though your computers capacity limit your voyeages to the more simple images).
ImageSpace allows you to choose some parameters like syntax tree depth, width and mutation probability.
Currently, the functions cant be saved, loaded or viewed in their symbolic form. Only the images can be saved in PNG format.
The software is built with the Trolltech QT3 widget-set, which means Windows and OSX- versions are possible, but the porting would cost money (Trolltech provides the free license for UNIX OpenSource development only) so its not available right now.
ImageSpace is released under the Gnu Public License (GPL), which basically means it is allowed to use and distribute it for free (and only for free). To learn more, go to www.gnu.org .
Enhancements:
- This release uses the Qt4 API.
- It compiles on Linux, Mac OS X, and Windows.
- A Windows binary is available on the homepage.
<<lessSince the functions are represented by syntax trees, the search space is really infinite (though your computers capacity limit your voyeages to the more simple images).
ImageSpace allows you to choose some parameters like syntax tree depth, width and mutation probability.
Currently, the functions cant be saved, loaded or viewed in their symbolic form. Only the images can be saved in PNG format.
The software is built with the Trolltech QT3 widget-set, which means Windows and OSX- versions are possible, but the porting would cost money (Trolltech provides the free license for UNIX OpenSource development only) so its not available right now.
ImageSpace is released under the Gnu Public License (GPL), which basically means it is allowed to use and distribute it for free (and only for free). To learn more, go to www.gnu.org .
Enhancements:
- This release uses the Qt4 API.
- It compiles on Linux, Mac OS X, and Windows.
- A Windows binary is available on the homepage.
Download (0.012MB)
Added: 2006-04-03 License: GPL (GNU General Public License) Price:
1299 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 lero ui mac osx set 0.3 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
