Main > Free Download Search >

Free artists supplies software for linux

artists supplies

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 756
ICS::Simple 0.06

ICS::Simple 0.06


ICS::Simple is a simple interface to CyberSource ICS2. more>>
ICS::Simple is a simple interface to CyberSource ICS2.

SYNOPSIS

Here is some basic code. Hopefully Ill come back through soon to document it properly.

use ICS::Simple;

my $ics = ICS::Simple->new(
ICSPath => /opt/ics,
MerchantId => v0123456789, # CyberSource supplies this number to you
Mode => test,
Currency => USD,
Grammar => UpperCamel, # defaults to raw ICS responses, so you might want to set this
#ErrorsTo => all-errors@some.fun.place.com,
CriticalErrorsTo => only-critical-errors@some.fun.place.com,
);

my $request = {
OrderId => order19857219,
FirstName => Fred,
LastName => Smith,
Email => fred.smith@buyer-of-stuff.com,
CardNumber => 4111111111111111,
CardCVV => 123,
CardExpYear => 2008,
CardExpMonth => 12,
BillingAddress => 123 Main St,
BillingCity => Olympia,
BillingRegion => WA,
BillingPostalCode => 98501,
BillingCountryCode => US,
ShippingAddress1 => 6789 Industrial Pl,
ShippingAddress2 => Floor 83, Room 11415,
ShippingCity => Olympia,
ShippingRegion => WA,
ShippingPostalCode => 98506,
ShippingCountryCode => US,
ShippingFee => 25.05,
HandlingFee => 5.00,
Items => [
{ Description => Mega Lizard Monster RC,
Price => 25.00,
SKU => prod15185 },
{ Description => Super Racer Parts Kit,
Price => 15.30,
SKU => prod23523 },
{ Description => Uber Space Jacket,
Price => 72.24,
SKU => prod18718 },
],
};

my $response = $ics->requestBill($request);

if ($response->{success}) {
print "Woo! Success!n";
$response = $response->{response};
print "Thanks for your payment of $$response->{BillAmount}.n";
}
else {
print "Boo! Failure!n";
print "Error: $response->{error}->{description}n";
}

<<less
Download (0.010MB)
Added: 2007-03-21 License: Perl Artistic License Price:
949 downloads
Last.sk 0.3

Last.sk 0.3


Last.sk is a SuperKaramba theme which shows last.fm user info. more>>
Data is fetched from audioscrobbler web services. In this version it shows nine views: top artists, top tracks, top albums, systems recomendations and recent tracks, etc. Data is updated every five minutes or clicking on refresh button.

Use: First write your last.fm user name on the input box and click the apply button. After a moment, use arrows button for select the view.

<<less
Download (0.053MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
KSpline 0.31

KSpline 0.31


Spline is a three parts library which supplies spline functions. more>>
KSpline is a three parts library which supplies spline functions.
The library contains three parts:
A spline class. This class is invisible, it is used to store the coords and calculates the spline polynoms. Theoretical it can be used outside of KDE.
A visual Editor. This editor requires an initialisized spline class and works as an interface to this spline. Nearly all spline functions can be adjusted with this editor.
A demo program. This program creates two splines. They can be modified either manually (directy calls to the spline functions) or visuell with the editor.
System requirements:
- V 0.31 : KDE 3.0x (not tested with KDE 3.1x)
- qt 3 or newer
<<less
Download (0.61MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1129 downloads
aTunes 1.7.1

aTunes 1.7.1


aTunes is an app to manage and play mp3 files. more>>
aTunes is an app to manage and play mp3 files.
Main features:
- Mp3 player
- Reads ID3v1, ID3v1.1 and ID3v2 tags (only essential information)
- Tag editor
- Show pictures of song: pictures inside ID3v2 tag, or in the same folder
- Load / save play list in m3u format
- Navigate through songs sorted by tag information or by folder
- Filters for fast find what you want
- Songs, albums or artists can be marked as favorites, and viewed through a special view
- Full view with all controls
- Simple view, with just essential controls
- Tiny view, to place window in a square of window
- Sticky borders for Simple and Tiny views
- Always on top property
- OSD (like amaroK)
- Five languages supported: english, spanish, french, german and portuguese
- State saved: repository, play list, last played song, shuffle, repeat, position in desktop, size, type of view...
<<less
Download (5.7MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
1627 downloads
amaroK XUL Remote 1.0

amaroK XUL Remote 1.0


AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network. more>>
AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network.
Main features:
- basic player manipulation: play, pause, stop, next, previous, seek, volume
- playlist view, plays a track when clicking on it
- collection browser with filtering, support for compilations
- drag and drop tracks, album and artists from the collection to the playlist
<<less
Download (0.038MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
544 downloads
Chart::Plot::Canvas 0.02

Chart::Plot::Canvas 0.02


Chart::Plot::Canvas is a Perl module to plot two dimensional data in an Tk Canvas. more>>
Chart::Plot::Canvas is a Perl module to plot two dimensional data in an Tk Canvas.

SYNOPSIS

use Chart::Plot::Canvas;

my $img = Chart::Plot::Canvas->new();
my $anotherImg = Chart::Plot::Canvas->new ($image_width, $image_height);

$img->setData (@dataset) or die( $img->error() );
$img->setData (@xdataset, @ydataset);
$img->setData (@anotherdataset, red_dashedline_points);
$img->setData (@xanotherdataset, @yanotherdataset,
Blue SolidLine NoPoints);

my ($xmin, $ymin, $xmax, $ymax) = $img->getBounds();

$img->setGraphOptions (horGraphOffset => 75,
vertGraphOffset => 100,
title => My Graph Title,
horAxisLabel => my X label,
vertAxisLabel => my Y label );

print $img->draw();

$img->canvas($toplevel)->pack();

This package overloads Chart::Plot and supplies a new method canvas that returns a Tk Canvas equivalent to GD::Image returned by the method draw of Chart::Plot.

The graphs are descripted by same way as for Chart::Plot.

With Chart::Plot::Canvas, the method draw works like with Chart::Plot.

USAGE

See Chart::Plot for all over methods.

Create the canvas: canvas()

$img->canvas(toplevel);

This method creates the canvas and returns it.

use Chart::Plot::Canvas;

my $img = Chart::Plot->new();
$img->setData (@xdataset, @ydataset);
my $cv = $img->canvas($toplevel);
$cv->pack();

<<less
Download (0.005MB)
Added: 2007-04-24 License: Perl Artistic License Price:
913 downloads
Blender For Solaris 2.44

Blender For Solaris 2.44


High quality 3D sofeware For Solaris more>> Aimed world-wide at media professionals and artists, Blender can be used to create 3D visualizations, stills as well as broadcast and cinema quality video, while the incorporation of a real-time 3D engine allows for the creation of 3D interactive content for stand-alone playback.
Originally developed by the company Not a Number (NaN), Blender now is continued as Free Software, with the source code available under the GNU GPL license. It now continues development by the Blender Foundation in the Netherlands.
Key Features:
For Linux; Solaris 2.8/Python 2.5
Fully integrated creation suite, offering a broad range of essential tools for the creation of 3D content, including modeling, uv-mapping, texturing, rigging, weighting, animation, particle and other simulation, scripting, rendering, compositing, post-production, and game creation;
Cross platform, with OpenGL uniform GUI on all platforms, ready to use for all versions of Windows (98, NT, 2000, XP), Linux, OS X, FreeBSD, Irix, Sun and numerous other operating systems;
High quality 3D architecture enabling fast and efficient creation work-flow;
<<less
Download (16.7MB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
amaroK Last.fm tags 0.1.1

amaroK Last.fm tags 0.1.1


amaroK Last.fm tags script fetches your tags from Last.fm for artists, albums, and tracks. more>>
amaroK Last.fm tags script fetches your tags from Last.fm for artists, albums, and tracks. It stores them as id3v2 COMM tags in your music files and appends them to the comment for the given track in amaroKs collection where they can be used to contruct smart playlists.

So far this script only fetches your tags, it doesnt syncronize changes you make locally back to Last.fm. Probably this feature should wait until the implementation of "labels" which is coming in amaroK 1.5.

Also so far it is only possible to fetch tags for a selection within a playlist. The other context sub-menus just provide helpful messages saying that this feature isnt implimented yet.

As usual this software comes with no warrenty, it might eat your lunch, etc.. That said it works for me.

I owe a large debt of gratitude to Miguel Angel Alvarez whoes amaroK Replaygain script served as the skeleton of this one. Thanks Miguel!

<<less
Download (0.021MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1083 downloads
Yahoo::Music::Ratings 2.00

Yahoo::Music::Ratings 2.00


Yahoo::Music::Ratings is a method for retrieving a Yahoo! Music members song ratings. more>>
Yahoo::Music::Ratings is a method for retrieving a Yahoo! Music members song ratings.

SYNOPSIS

use Yahoo::Music::Ratings;

my $ratings = new Yahoo::Music::Ratings( {
memberName => yahooMusicMemberName,
} );

# Fetch an arrayRef of all yahooMusicMemberName song ratings
# this may take a couple minutes...
my $arrayRef = $ratings->getRatings();

# Print out a nice tab seperated version so that we can easily
# read the list in a spreadsheet program (and then filter by
# artists etc). tab_output() will output in artists alphabetical
# order.
print $ratings->tab_output();

This module provides a way to retrieve a users list of song ratings from Yahoo!s Music service, including the LaunchCast and Unliminted services.

As Yahoo! do not provide an offical feed for a member to download their ratings, the methods used within this module are subject to change and simply may not work tomorrow. However at the time of writing this README i would suspect the methods used should be stable for atleast a few days :)

<<less
Download (0.005MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1054 downloads
Aqua_Project

Aqua_Project


Aqua_Project is a complete system set for KDE. more>>
Aqua_Project is a complete system set for KDE. I have assembled this set from icons by Everaldo, Louie Mantia and me. I used Louie Mantias mimetype and folder icons as a template.
I created this set because there are no iconsets for KDE that I find completely polished. I hope everyone enjoys this set and I give all credit to the great artists who made most of these icons.
To install this set:
1. download the zip file
2. extraxt the zip file
3. cd into the Aqua_Crystal folder
4. open a terminal there
5. run ./buildset
6. get a beer
7. Install the icon theme in KDE Control Panel
8. Enjoy
Enhancements:
- Added Baghira sidebar icons
- Added choice of Trash icons...before building set go to the filesystems folder, rename trashcan_empty to trashcan_empty1, rename trashcan_full to trashcan_full1, pick the Trashcan set you like and remove the number from the name then run ./buildset
<<less
Download (MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
937 downloads
amaroKollection 0.43

amaroKollection 0.43


amaroKollection is a bash script that exports information from amaroKs collection database. more>>
amaroKollection is a bash script that exports information from amaroKs collection database. This is done in plain text or to a HTML file.
Whats planned:
- more views (currently there is only a "Artists and their albums" view)
- css support (currently its just plain HTML)
Please give feedback if it runs smoothly or if there are any problems. Tell me what kind of views you would like to have implemented!
Enhancements:
- Changed amaroK to Amarok everywhere. The scripts name will stay "amaroKollection" though.
- Added a check if the specified target directory exists, otherwise amaroKollection exits.
<<less
Download (0.008MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
862 downloads
AudioLink 0.05

AudioLink 0.05


AudioLink is a tool that makes searching for music on your local storage media easier and faster. more>>
.AudioLink is a tool that makes searching for music on your local storage media easier and faster. Your searches can include a variety of criteria, like male artists, female artists, band, genre, etc. It is flexible, you have options of using a command line interface, multiple choices of GUIs, designing your own search criteria, etc. The possibilities are endless.
Currently, its called AudioLink, cos the first milestone would just handle audio files... subsequent versions will be capable of searching for content in HTMLs, PDFs, PSs and other file formats.
This project started with my need of searching for files on my local machine, be it music or any stored information in .txt, .html, .pdf formats. The main goal of the software is to make searching for _content_ on local file systems (or remote file systems mounted in the local namespace) easier. This differs from other search tools, which look for files, not content. You cant use traditional tools like grep to search for songs or a particular artist, for example.
If you are in search of such a tool, AudioLink is the right choice for you for you!
The project will further be improved upon to include a LAN crawler, which will sniff on NFS, SMB, FTP, among other protocols, to collect information on the files residing on other machines as well.
Enhancements:
- * code/alsearch:
1. config file isnt perl code now; simple "a = b" stuff
2. command-line args override config file options
- code/alfilldb: ouch! one more ref. to alfilldb_usage code/alfilldb: removed ref. to alfilldb_usage.txt
- code/alfilldb:
- config file isnt perl code now; simple "a = b" stuff
- command-line args override config file options
- code/audiolink: 1. clean up the printed statements.
- added a verbose mode
- config file isnt perl code now; simple "a = b" stuff
- default to localhost for the host field
- command-line args override config file options
- cvsignore: ignore debian/ and gui/
- Documentation/alsearch_usage.txt, Documentation/alfilldb_usage.txt: remove the _usage.txt files; we now have *_doc.html files.
- INSTALL:
- You can now use the audiolink script to create the datbase and table.
- README: better 1st para
- TODO: 1. We have a config file
- Debian packaging is done; get rpms done now
<<less
Download (0.033MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
Tupsmand 0.6.1

Tupsmand 0.6.1


Tupsmand is the core of the Tecnoupman manager. more>>
Tecnoupman project is a manager/monitor for the UPS Tecnoware Adv. Tecnoware (FIRENZE), only supplies a payment proprietary cable and software.
So, even if the UPS is equipped of RS-232 interface its not possible, without spent a lot of money, to manage the UPS directly from the PC.
Ive tried several times to contact the Tecnoware (firenze), but ive obtained zero support and zero technical infos about the UPSes and the cables pinouts. The cable, in fact, is a non standard one.
USAGE:
After that youve compiled the sources, and connected the UPS to Serial Port, youre ready to use the manager/monitor. Tupsmand is the core of the system. It can monitor and manage the power and the shutdown of the server/ups.
Youve to startup the daemon using a command like:
revolution#tupsmand /etc/tupsmand.conf
after startup, tupsmandll daemonize monitoring all the parameters from the
UPS. All paramters for the startup, must be specified in the config file:
tupsman.conf, like this format:
DEBUGL=1<<less
Download (0.018MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
977 downloads
Last.fm Suggests for amaroK 0.6

Last.fm Suggests for amaroK 0.6


Last.fm Suggests for amaroK is a script that lets you quickly check what artists are similar to those that you already have. more>>
Last.fm Suggests for amaroK is a script that lets you quickly check what artists are similar to those that you already have in your playlist. The script uses last.fms suggestions feature without making you leave the amaroK interface.

This script will create links directly to the Last.fm page of the artist, and you dont have to be currently listening to anything to query last.fm for similar artists. Also, you can have the script list only artists that are not already in your collection... to make it even easier to find new music.

The default number of links to show is 12, but this can be changed using the configure option in the script manager.

Installation:

Use the built-in script installer for amarok on the tarball.

<<less
Download (0.012MB)
Added: 2007-05-27 License: BSD License Price:
880 downloads
jUPS 0.2

jUPS 0.2


jUPS project is a Java class that implements MetaSystems Uninterruptible Power Supplies management protocol v1.12d. more>>
jUPS project is a Java class that implements MetaSystems Uninterruptible Power Supplies management protocol v1.12d.
It was successfully tested against:
Metasystem Megaline rack 2500
MetaSystem UPSes must be connected via a 3-wires serial cable to a PC where a serial-to-TCP tool must be installed
jUPS was written using Corey Minyards ser2net acting as a bridge between the serial port and a TCP socket.
The UPS-PC serial cable pinout is:
UPS PC
9 pin 9 pin 25 pin
male female female
2 --------------------------- 2 ----------- 3
3 --------------------------- 3 ----------- 2
5 --------------------------- 5 ----------- 7
ser2net needs to be configured to bridge the serial port with 2400,8N1 parameters to a TCP socket.
A working ser2net.conf file is:
9999:raw:600:/dev/ttyS0:2400 NONE 1STOPBIT 8DATABITS -XONXOFF -RTSCTS -LOCAL
This setup forwards serial port /dev/ttyS0 (COM1) as 2400,8N1 to local TCP port 9999
Quickstart
For a quickstart download the tarball and have a look at jUPStest.java.
Enhancements:
- The creation of a jUPSCommand for an empty jUPSPacket was fixed.
<<less
Download (0.043MB)
Added: 2006-12-20 License: LGPL (GNU Lesser General Public License) Price:
1038 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5