aka
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 164
Aklabeth 1.0
Aklabeth is a remake of the original Ultima. more>>
Aklabeth project is a remake of the original Ultima.
Aklabeth is a rewrite of Richard C Garriotts Ultima Prequel. Like Ultima 1 to 5, it features a mixture of wandering through (sort of) 3D dungeons, monsters, and tasks to complete.
This game is a port, written in a mixture of C and C++. I wrote this a year or two back, cant remember why, in C. I glued it to my SDL wrapper library and released it.
Its a RPG - sort of. You wander the top world, visit 3D (sort of) dungeons, beat up monsters and perform tasks for the legendary Lord British (AKA Richard Garriott).
Keys:
N S E W (and arrow keys) move player both in upper world, and in the dungeons.
A - attack
I - inventory
Q - quit
X - enter town/shop/dungeon/climb up and down.
<<lessAklabeth is a rewrite of Richard C Garriotts Ultima Prequel. Like Ultima 1 to 5, it features a mixture of wandering through (sort of) 3D dungeons, monsters, and tasks to complete.
This game is a port, written in a mixture of C and C++. I wrote this a year or two back, cant remember why, in C. I glued it to my SDL wrapper library and released it.
Its a RPG - sort of. You wander the top world, visit 3D (sort of) dungeons, beat up monsters and perform tasks for the legendary Lord British (AKA Richard Garriott).
Keys:
N S E W (and arrow keys) move player both in upper world, and in the dungeons.
A - attack
I - inventory
Q - quit
X - enter town/shop/dungeon/climb up and down.
Download (0.22MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1025 downloads
aKode 2.0.2
aKode is the decoding library used in akode_artsplugin in kdemultimedia. more>>
aKode is not really a KDE application and not even an application, but very usefull non the less.
aKode is the decoding library used in akode_artsplugin in kdemultimedia, and improves the aRts experience by fewer drop-outs, more supported formats and fewer bugs in general.
It can also be used directly without aRts in JuK and Amarok.
aKode supports decoding of MPEG audio, Ogg Vorbis, Ogg FLAC, old FLAC, Speex, WAV, and Musepack audio.
aKode currently has the following decoder plugins:
- mpeg: Uses libMAD to decoder all MPEG 1/2 layer I-III audio. GPL licensed and patent issue in the US.
- mpc: Decodes musepack aka mpc audio. LGPL licensed.
- xiph: Decodes FLAC, Ogg/FLAC, Speex and Ogg Vorbis audio. LGPL licensed, patent free.
- ffmpeg: Experimental decoder using the FFMPEG decoding library. Enables WMA and RealAudio playback. LGPL and possible patent and reengineering issues in the US.
aKode also has the following audio outputs:
- oss: Outputs to the OSS (Open Sound System) of for instance FreeBSD and Linux 2.4
- alsa: Outputs to ALSA of Linux 2.6 (version 0.9 or 1.x required) (dmix is recommended).
- sun: Outputs to Sun OS/Solaris audio device .
- jack: Outputs using Jack audio backend.
- polyp: Output to the polypaudio server. Recommended for network transparent audio.
Enhancements:
- Support for new FLAC C API (1.1.3+)
- Fixed WAV replay bug.
- Improved FFMPEG decoder
<<lessaKode is the decoding library used in akode_artsplugin in kdemultimedia, and improves the aRts experience by fewer drop-outs, more supported formats and fewer bugs in general.
It can also be used directly without aRts in JuK and Amarok.
aKode supports decoding of MPEG audio, Ogg Vorbis, Ogg FLAC, old FLAC, Speex, WAV, and Musepack audio.
aKode currently has the following decoder plugins:
- mpeg: Uses libMAD to decoder all MPEG 1/2 layer I-III audio. GPL licensed and patent issue in the US.
- mpc: Decodes musepack aka mpc audio. LGPL licensed.
- xiph: Decodes FLAC, Ogg/FLAC, Speex and Ogg Vorbis audio. LGPL licensed, patent free.
- ffmpeg: Experimental decoder using the FFMPEG decoding library. Enables WMA and RealAudio playback. LGPL and possible patent and reengineering issues in the US.
aKode also has the following audio outputs:
- oss: Outputs to the OSS (Open Sound System) of for instance FreeBSD and Linux 2.4
- alsa: Outputs to ALSA of Linux 2.6 (version 0.9 or 1.x required) (dmix is recommended).
- sun: Outputs to Sun OS/Solaris audio device .
- jack: Outputs using Jack audio backend.
- polyp: Output to the polypaudio server. Recommended for network transparent audio.
Enhancements:
- Support for new FLAC C API (1.1.3+)
- Fixed WAV replay bug.
- Improved FFMPEG decoder
Download (0.45MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
936 downloads
multitask 0.2.0
multitask allows Python programs to use generators (aka coroutines) to perform cooperative multitasking and asynchronous I/O. more>>
multitask allows Python programs to use generators (aka coroutines) to perform cooperative multitasking and asynchronous I/O. Applications written using multitask consist of a set of cooperating tasks that yield to a shared task manager whenever they perform a (potentially) blocking operation, such as I/O on a socket or getting data from a queue.
The task manager temporarily suspends the task (allowing other tasks to run in the meantime) and then restarts it when the blocking operation is complete. Such an approach is suitable for applications that would otherwise have to use select() and/or multiple threads to achieve concurrency.
This project is free software, distributed under the MIT license.
Examples:
As a very simple example, heres how one could use multitask to allow two unrelated tasks to run concurrently:
>>> def printer(message):
... while True:
... print message
... yield
...
>>> multitask.add(printer(hello))
>>> multitask.add(printer(goodbye))
>>> multitask.run()
hello
goodbye
hello
goodbye
hello
goodbye
[and so on ...]
For a more useful example, heres how one could implement a multitasking server that can handle multiple concurrent client connections:
def listener(sock):
while True:
conn, address = (yield multitask.accept(sock))
multitask.add(client_handler(conn))
def client_handler(sock):
while True:
request = (yield multitask.recv(sock, 1024))
if not request:
break
response = handle_request(request)
yield multitask.send(sock, response)
multitask.add(listener(sock))
multitask.run()
The functions and classes in the multitask module allow tasks to yield for I/O operations on sockets and file descriptors, adding/removing data to/from queues, or sleeping for a specified interval. When yielding, a task can also specify a timeout. If the operation for which the task yielded has not completed after the given number of seconds, the task is restarted, and a Timeout exception is raised at the point of yielding.
Tasks can also yield other tasks, which allows for composition of tasks and reuse of existing multitasking code. A child task runs until it either completes or raises an exception, and its output or exception is propagated to its parent. For example:
>>> def parent():
... try:
... print good child says: %s % (yield child())
... print bad child says: %s % (yield child(bad=True))
... except Exception, e:
... print caught exception: %s % e
...
>>> def child(bad=False):
... if bad:
... raise RuntimeError(oops!)
... yield Hi, Mom!
...
>>> multitask.add(parent())
>>> multitask.run()
good child says: Hi, Mom!
caught exception: oops!
<<lessThe task manager temporarily suspends the task (allowing other tasks to run in the meantime) and then restarts it when the blocking operation is complete. Such an approach is suitable for applications that would otherwise have to use select() and/or multiple threads to achieve concurrency.
This project is free software, distributed under the MIT license.
Examples:
As a very simple example, heres how one could use multitask to allow two unrelated tasks to run concurrently:
>>> def printer(message):
... while True:
... print message
... yield
...
>>> multitask.add(printer(hello))
>>> multitask.add(printer(goodbye))
>>> multitask.run()
hello
goodbye
hello
goodbye
hello
goodbye
[and so on ...]
For a more useful example, heres how one could implement a multitasking server that can handle multiple concurrent client connections:
def listener(sock):
while True:
conn, address = (yield multitask.accept(sock))
multitask.add(client_handler(conn))
def client_handler(sock):
while True:
request = (yield multitask.recv(sock, 1024))
if not request:
break
response = handle_request(request)
yield multitask.send(sock, response)
multitask.add(listener(sock))
multitask.run()
The functions and classes in the multitask module allow tasks to yield for I/O operations on sockets and file descriptors, adding/removing data to/from queues, or sleeping for a specified interval. When yielding, a task can also specify a timeout. If the operation for which the task yielded has not completed after the given number of seconds, the task is restarted, and a Timeout exception is raised at the point of yielding.
Tasks can also yield other tasks, which allows for composition of tasks and reuse of existing multitasking code. A child task runs until it either completes or raises an exception, and its output or exception is propagated to its parent. For example:
>>> def parent():
... try:
... print good child says: %s % (yield child())
... print bad child says: %s % (yield child(bad=True))
... except Exception, e:
... print caught exception: %s % e
...
>>> def child(bad=False):
... if bad:
... raise RuntimeError(oops!)
... yield Hi, Mom!
...
>>> multitask.add(parent())
>>> multitask.run()
good child says: Hi, Mom!
caught exception: oops!
Download (0.010MB)
Added: 2007-06-12 License: MIT/X Consortium License Price:
864 downloads
LayManSys 0.4.0
LayManSys is an RDF-based PHP framework for generating a consistent layout for Web documents. more>>
LayManSys short for Layout Managment System is a PHP framework, that helps you providing a consistent look&feel of your web pages (it is no CMS). LayManSys project stores the meta information about the documents in RDF files and uses them for generating the HTML frame (< head > and footer).
LayManSys is a RDF-based PHP framework for generating a consistent layout of web documents. It is a include library (and no CMS) that can be used online as well as on the command line. It generates the documents HTML frame, that is its < head > and footer, manages (CSS) style definitions, shortcut icons (aka favicons), static HTML and dynamic PHP content and much more.
The necessary meta information is either stored in (the) RDF files or in special layout configuration files; these files can be seen as some kind of themes. To use LayManSys benefits, you only need to write the body of your web document, collect all meta information about it in a RDF file, include the LayManSys library into the document and call its initialization function.
At the documents bottom you may want to call a LayManSys finalization routine that builds the footer element.
As mentioned above, there is only one function call to start parsing the meta information and building the HTML frame. This function delegates most work to helper functions and objects, that parse the RDF file(s), parse a layout configuration if necessary, send HTTP header and generate HTML output until the < body > element. The default is to write also the main heading, < h1 id="doktitel" >, using the same information as for the
<<lessLayManSys is a RDF-based PHP framework for generating a consistent layout of web documents. It is a include library (and no CMS) that can be used online as well as on the command line. It generates the documents HTML frame, that is its < head > and footer, manages (CSS) style definitions, shortcut icons (aka favicons), static HTML and dynamic PHP content and much more.
The necessary meta information is either stored in (the) RDF files or in special layout configuration files; these files can be seen as some kind of themes. To use LayManSys benefits, you only need to write the body of your web document, collect all meta information about it in a RDF file, include the LayManSys library into the document and call its initialization function.
At the documents bottom you may want to call a LayManSys finalization routine that builds the footer element.
As mentioned above, there is only one function call to start parsing the meta information and building the HTML frame. This function delegates most work to helper functions and objects, that parse the RDF file(s), parse a layout configuration if necessary, send HTTP header and generate HTML output until the < body > element. The default is to write also the main heading, < h1 id="doktitel" >, using the same information as for the
Download (0.081MB)
Added: 2007-03-28 License: LGPL (GNU Lesser General Public License) Price:
941 downloads
network jack 2.0
network jack is an Internet troubleshooting and information gathering tool. more>>
network jack is an Internet troubleshooting and information gathering tool. It provides a Web interface to several common command-line tools, including ping, traceroute, dig, and whois, as well as a subnet mask and CIDR block calculator.
Current Modules which you can find in the application:
Pinger
- Ping a host on the internet (currently only IPv4)
Tracer
- Traceroute to a host on the internet from the web server (currently only IPv4)
Digger
- Do a DNS Dig of a hostname or IP address (for reverse lookups)
Drooler
- block list lookup (aka RBL query, blackhole lookup)
Whoser
- lookup for domain names and IP addresses / blocks
Netter
- Mask / CIDR calculator
Linker
- Front" page for the tools, provides spot for links
Main features:
- It is intended to be easy to add new modules
- Seperates html code into its own file so can be customized without modifying the program files
<<lessCurrent Modules which you can find in the application:
Pinger
- Ping a host on the internet (currently only IPv4)
Tracer
- Traceroute to a host on the internet from the web server (currently only IPv4)
Digger
- Do a DNS Dig of a hostname or IP address (for reverse lookups)
Drooler
- block list lookup (aka RBL query, blackhole lookup)
Whoser
- lookup for domain names and IP addresses / blocks
Netter
- Mask / CIDR calculator
Linker
- Front" page for the tools, provides spot for links
Main features:
- It is intended to be easy to add new modules
- Seperates html code into its own file so can be customized without modifying the program files
Download (0.027MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1211 downloads
DBD::Amazon 0.10
DBD::Amazon is a DBI driver abstraction for the Amazon E-Commerce Services API. more>>
DBD::Amazon is a DBI driver abstraction for the Amazon E-Commerce Services API.
SYNOPSIS
$dbh = DBI->connect(dbi:Amazon:, $amznid, undef,
{ amzn_mode => books,
amzn_locale => us,
amzn_max_pages => 3
})
or die "Cannot connect: " . $DBI::errstr;
#
# search for some Perl DBI books
#
$sth = $dbh->prepare("
SELECT ASIN,
Title,
Publisher,
PublicationDate,
Author,
SmallImageURL,
URL,
SalesRank,
ListPriceAmt,
AverageRating
FROM Books
WHERE MATCHES ALL(Perl, DBI) AND
PublicationDate >= 2000-01-01
ORDER BY SalesRank DESC,
ListPriceAmt ASC,
AverageRating DESC");
$sth->execute or die Cannot execute: . $sth->errstr;
print join(, , @$row), "n"
while $row = $sth->fetchrow_arrayref;
$dbh->disconnect;
DBD::Amazon provides a DBI and SQL syntax abstraction for the Amazon(R) E-Commerce Services 4.0 API aka ECS. http://www.amazon.com/gp/. Using the REST interface, and a limited SQL dialect, it provides a DBI-friendly interface to ECS.
Be advised that this is ALPHA release software and subject to change at the whim of the author(s).
<<lessSYNOPSIS
$dbh = DBI->connect(dbi:Amazon:, $amznid, undef,
{ amzn_mode => books,
amzn_locale => us,
amzn_max_pages => 3
})
or die "Cannot connect: " . $DBI::errstr;
#
# search for some Perl DBI books
#
$sth = $dbh->prepare("
SELECT ASIN,
Title,
Publisher,
PublicationDate,
Author,
SmallImageURL,
URL,
SalesRank,
ListPriceAmt,
AverageRating
FROM Books
WHERE MATCHES ALL(Perl, DBI) AND
PublicationDate >= 2000-01-01
ORDER BY SalesRank DESC,
ListPriceAmt ASC,
AverageRating DESC");
$sth->execute or die Cannot execute: . $sth->errstr;
print join(, , @$row), "n"
while $row = $sth->fetchrow_arrayref;
$dbh->disconnect;
DBD::Amazon provides a DBI and SQL syntax abstraction for the Amazon(R) E-Commerce Services 4.0 API aka ECS. http://www.amazon.com/gp/. Using the REST interface, and a limited SQL dialect, it provides a DBI-friendly interface to ECS.
Be advised that this is ALPHA release software and subject to change at the whim of the author(s).
Download (0.057MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
KFTPGrabber 0.8.1
KFTPGrabber is a graphical FTP client for KDE. more>>
KFTPGrabber is a graphical FTP client for KDE. KFTPGrabber supports SSL encryption, FXP transfers, multiple FTP sessions (using tabs), bookmark system and more.
Main features:
- multiple FTP sessions (tabs)
- transfer queue
- TLS/SSL support for encrypted connections
- partial X509 certificate support for authentication
- FXP transfer support (site-to-site)
- OTP (one time password) support - S/KEY, MD5, RMD160, SHA1
- drag and drop support
- site bookmarking
- encrypted bookmark support (password can be saved to KWallet)
- distributed FTP support (PRET)
- SSCN and CPSV support
- skiplist
- ZeroConf (aka. Rendezvous) support for local site discovery
- bookmark sharing with Kopete contacts (KDE >= 3.3)
- bookmark import plugins
- support for SFTP protocol
- traffic graph
<<lessMain features:
- multiple FTP sessions (tabs)
- transfer queue
- TLS/SSL support for encrypted connections
- partial X509 certificate support for authentication
- FXP transfer support (site-to-site)
- OTP (one time password) support - S/KEY, MD5, RMD160, SHA1
- drag and drop support
- site bookmarking
- encrypted bookmark support (password can be saved to KWallet)
- distributed FTP support (PRET)
- SSCN and CPSV support
- skiplist
- ZeroConf (aka. Rendezvous) support for local site discovery
- bookmark sharing with Kopete contacts (KDE >= 3.3)
- bookmark import plugins
- support for SFTP protocol
- traffic graph
Download (1.3MB)
Added: 2007-04-28 License: GPL (GNU General Public License) Price:
912 downloads
KLinkStatus 0.3.1
KLinkStatus is a KDE link checker. more>>
KLinkStatus is a KDE link checker. KLinkStatus project can be run as a standalone application or be embedded inside another application.
It supports HTTP, FTP, SSH (fish or SFTP), and file protocols, proxies, authentication, the HTML 4.0 and HTTP 1.1 standards, server-side includes, regular expressions for restrict which URLs are searched, the display of link results as they are checked, a tree-like view that reflects the file structure of the documents, a flat view, the ability to limit the search depth, and more
Main features:
- Support several protocols (allowing fast checking of local documents): http, ftp, ssh (fish or sftp) and file.
- Proxy support
- Allows authentication when checking restricted documents
- Supports the latest Web standards-- HTML 4.0, HTTP 1.1
- Server-Side Includes (SSI, aka SHTML) are supported and checked
- Regular expressions to restrict which URLs are searched
- Show link results as they are checked
- Tree like view (that reflects the file structure of the documents) or flat view
- Limit the search depth
- Fragment identifiers ("#" anchor links that point to a specific section in a document) are supported and checked
- Pause/Resume of checking session
- History of checked URLs
- Tabbed checking (allow multiple sessions at the same time)
- Filter checked links (good, broken, malformed and undetermined)
- Configurable number of simultaneous connections (performance tunning)
- Other configurable options like "check external links", "check parent folders", "timeout"
- Good integration with Quanta+
Enhancements:
- Some bugfixes and feature improvements were done.
<<lessIt supports HTTP, FTP, SSH (fish or SFTP), and file protocols, proxies, authentication, the HTML 4.0 and HTTP 1.1 standards, server-side includes, regular expressions for restrict which URLs are searched, the display of link results as they are checked, a tree-like view that reflects the file structure of the documents, a flat view, the ability to limit the search depth, and more
Main features:
- Support several protocols (allowing fast checking of local documents): http, ftp, ssh (fish or sftp) and file.
- Proxy support
- Allows authentication when checking restricted documents
- Supports the latest Web standards-- HTML 4.0, HTTP 1.1
- Server-Side Includes (SSI, aka SHTML) are supported and checked
- Regular expressions to restrict which URLs are searched
- Show link results as they are checked
- Tree like view (that reflects the file structure of the documents) or flat view
- Limit the search depth
- Fragment identifiers ("#" anchor links that point to a specific section in a document) are supported and checked
- Pause/Resume of checking session
- History of checked URLs
- Tabbed checking (allow multiple sessions at the same time)
- Filter checked links (good, broken, malformed and undetermined)
- Configurable number of simultaneous connections (performance tunning)
- Other configurable options like "check external links", "check parent folders", "timeout"
- Good integration with Quanta+
Enhancements:
- Some bugfixes and feature improvements were done.
Download (0.80MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1304 downloads
Critical Mass 1.0.1
Critical Mass (Critter) is an SDL/OpenGL space shootem up game. more>>
Critical Mass (aka Critter) is an SDL/OpenGL space shootem up game. Critical Mass project currently runs on Mac OS X, Windows, and Linux.
The latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
<<lessThe latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
Download (4.9MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1213 downloads
phpSocketDaemon 1.0
phpSocketDaemon is a PHP socket daemon framework that can handle thousands of client and server connections. more>>
phpSocketDaemon is a PHP socket daemon framework that can handle thousands of client and server connections, asynchronously, with built-in buffering, state handling, etc.
The implementation of a new TCP client or server service (or a mix thereof) with this library is very easy, and allows maximum flexibility.
Motivation for writing this library:
This project came into existence while i was writing a new, ground breaking IRC chat web application.
To deal with 1000s of concurrent, always on (comet aka hanging iframe) http (server) connections, and an equal amount of IRC client connections, plus being able to interpret and parse and delegate all the messages and events, i needed a very fast, stable, flexible and easy to use daemon library for PHP.
However no such thing existed yet, hence this library was created.
The tarbal includes a demo HTTP server implimentation, which will give you a good impression of what its capable off, and how to use this library.
<<lessThe implementation of a new TCP client or server service (or a mix thereof) with this library is very easy, and allows maximum flexibility.
Motivation for writing this library:
This project came into existence while i was writing a new, ground breaking IRC chat web application.
To deal with 1000s of concurrent, always on (comet aka hanging iframe) http (server) connections, and an equal amount of IRC client connections, plus being able to interpret and parse and delegate all the messages and events, i needed a very fast, stable, flexible and easy to use daemon library for PHP.
However no such thing existed yet, hence this library was created.
The tarbal includes a demo HTTP server implimentation, which will give you a good impression of what its capable off, and how to use this library.
Download (0.015MB)
Added: 2006-12-21 License: LGPL (GNU Lesser General Public License) Price:
1040 downloads
Games::Roshambo 1.01
Games::Roshambo is a brilliant module which manages a game of Rock/Paper/Scissors, aka Roshambo more>>
Games:Roshambo 1.01 is a brilliant module which manages a game of Rock/Paper/Scissors, aka Roshambo
Major Features:
- You can specify an optional hashref containing configuration items.
- Valid configuration items are: numthrows
- The number of separate valid throws for a game, for example, in Rock, Paper, Scissors, there are 3 throws, while in a spirited game of RPS-101, there are 101 valid throws. If not specified, this defaults to 3.
- sortable
- OPTIONAL: Behold the madness of Chris Prather. Passing a TRUE value to new for this item will cause the judge method to return values of -1 if Player 1 wins, 0 for a tie and 1 for Player 2, instead of the 0, 1 and 2 it does normally.
- The entirely dubious benefit of this is that the function can be used in conjunction with sort. It's his fault. He asked for it. Any questions as to the relative usefulness of this should be directed at him. The management disavows all knowledge.
- This method will judge a game of RPS, returning a 1 for Player 1 winning, a 2 for Player 2, and a 0 for a tie.
- It takes up to two arguments, indicating the throws for Player 1 and Player 2, as text representations.
- If one or both arguments are omitted, the method will internally call $self->gen_throw to randomly generate one.
- getaction
- When called with two throws, this will return the text of the action for this combination. For example, if called as $rps-getaction("rock", "paper")> the returned value will be "covers".
- This module contains actions for three throw (Rock, Paper, Scissors) and 101 throw games, in any other number of throws, this method will return undef.
Requirements: Perl
Added: 2009-05-14 License: Perl Artistic License Price: FREE
1 downloads
Mail Notification 4.1
Mail Notification is a status icon (aka tray icon) that informs you if you have new mail. more>>
Mail Notification is a status icon (aka tray icon) that informs you if you have new mail.
Mail Notification works with system trays implementing the freedesktop.org System Tray Specification, such as the GNOME Panel Notification Area, the Xfce Notification Area and the KDE System Tray.
Main features:
- multiple mailbox support
- mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support
- SASL authentication support
- APOP authentication support
- SSL/TLS support
- automatic detection of mailbox format
- immediate notification (the status icon is updated within seconds after a mailbox changes)
- a mail summary
- HIG 2.0 compliance.
<<lessMail Notification works with system trays implementing the freedesktop.org System Tray Specification, such as the GNOME Panel Notification Area, the Xfce Notification Area and the KDE System Tray.
Main features:
- multiple mailbox support
- mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support
- SASL authentication support
- APOP authentication support
- SSL/TLS support
- automatic detection of mailbox format
- immediate notification (the status icon is updated within seconds after a mailbox changes)
- a mail summary
- HIG 2.0 compliance.
Download (0.70MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
851 downloads
Sinek 0.7
Sinek is a GTK+ video/audio player, capable of supporting all formats libxine supports. more>>
Sinek is a GTK+ video/audio player, capable of supporting all formats libxine supports. At the moment, this includes; Audio MPEG 1, 2, and 3, Vorbis (.ogg), Video MPEG 1 and 2, MPEG 4 (aka OpenDivX), MS MPEG 4 (aka DivX) and motion jpeg.
One of the main differences between Sinek and other popular multimedia players is that it doesnt use skins; instead, it has a standard GTK+ interface. In other words, it works with your GTK+ theme.
Main features:
- scriptable with scheme language,
- supports text subtitles,
- you can adjust font (any X font!) and placement of subtitles on the fly,
- playlist with repeat, repeat current, and shuffle options,
- configurable key bindings,
- changing the volume with the mouse wheel,
Enhancements:
- playlist.c: playlist dont repeat when repeat_list mode isnt active.
- doubleclick and play button dont remove entries from list anymore (workaround for gtk_tree_selection_selected_foreach limitation).
<<lessOne of the main differences between Sinek and other popular multimedia players is that it doesnt use skins; instead, it has a standard GTK+ interface. In other words, it works with your GTK+ theme.
Main features:
- scriptable with scheme language,
- supports text subtitles,
- you can adjust font (any X font!) and placement of subtitles on the fly,
- playlist with repeat, repeat current, and shuffle options,
- configurable key bindings,
- changing the volume with the mouse wheel,
Enhancements:
- playlist.c: playlist dont repeat when repeat_list mode isnt active.
- doubleclick and play button dont remove entries from list anymore (workaround for gtk_tree_selection_selected_foreach limitation).
Download (0.24MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 downloads
Compass::Bearing 0.05
Compass::Bearing is a Perl module to convert angle to text bearing (aka heading). more>>
Compass::Bearing is a Perl module to convert angle to text bearing (aka heading).
SYNOPSIS
use Compass::Bearing;
my $obj = Compass::Bearing->new();
print "Bearing: $_ deg => ", $obj->bearing($_), "n" foreach (12,45,78,133);
print "Compass: ", join(":", $obj->data),"n";
CONSTRUCTOR
new
The new() constructor may be called with any parameter that is appropriate to the set method.
my $obj = Compass::Bearing->new();
METHODS
bearing
Method returns a text string based on bearing
my $bearing=$obj->bearing($degrees_from_north);
bearing_rad
Method returns a text string based on bearing
my $bearing=$obj->bearing_rad($radians_from_north);
set
Method sets and returns key for the bearing text data structure.
my $key=$self->set;
my $key=$self->set(1);
my $key=$self->set(2);
my $key=$self->set(3); #default value
data
Method returns an array of text values.
my $data=$self->data;
<<lessSYNOPSIS
use Compass::Bearing;
my $obj = Compass::Bearing->new();
print "Bearing: $_ deg => ", $obj->bearing($_), "n" foreach (12,45,78,133);
print "Compass: ", join(":", $obj->data),"n";
CONSTRUCTOR
new
The new() constructor may be called with any parameter that is appropriate to the set method.
my $obj = Compass::Bearing->new();
METHODS
bearing
Method returns a text string based on bearing
my $bearing=$obj->bearing($degrees_from_north);
bearing_rad
Method returns a text string based on bearing
my $bearing=$obj->bearing_rad($radians_from_north);
set
Method sets and returns key for the bearing text data structure.
my $key=$self->set;
my $key=$self->set(1);
my $key=$self->set(2);
my $key=$self->set(3); #default value
data
Method returns an array of text values.
my $data=$self->data;
Download (0.020MB)
Added: 2007-05-16 License: Perl Artistic License Price:
895 downloads
MakeMovingMenus 0.6.0
MakeMovingMenus is a tool to generate a thumbnail menu background for DVD authoring. more>>
MakeMovingMenus (aka mmm) is a tool to generate a thumbnail menu background for DVD authoring for chapters of one file or multiple clips.
To prevent misunderstandings: mmm is not (yet?) a DVD menu authoring tool! It is a simple helper script to create fancy backgrounds for menus authored with dvdauthor, spumux etc.
Main features:
- Resizing of source pictures
- Generate PAL/NTSC compilant MPEG2 files
- arbitrary backgrounds through images or solid color
- play clips one after anoter or all at once
Enhancements:
- It is now possible to use any sound file as background music for your menu.
- More code cleanup has been done.
<<lessTo prevent misunderstandings: mmm is not (yet?) a DVD menu authoring tool! It is a simple helper script to create fancy backgrounds for menus authored with dvdauthor, spumux etc.
Main features:
- Resizing of source pictures
- Generate PAL/NTSC compilant MPEG2 files
- arbitrary backgrounds through images or solid color
- play clips one after anoter or all at once
Enhancements:
- It is now possible to use any sound file as background music for your menu.
- More code cleanup has been done.
Download (0.007MB)
Added: 2005-10-28 License: Perl Artistic License Price:
1457 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 aka 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