oscar peterson
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 27
OSCAR Cluster 5.0
OSCAR Cluster is a Linux cluster installer based on best known practices. more>>
OSCAR version 4.0 is a snapshot of the best known methods for building, programming, and using clusters. OSCAR Cluster project consists of a fully integrated and easy to install software bundle designed for high performance cluster computing.
Everything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
<<lessEverything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
Download (5.8MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1088 downloads
Net::Oscar 1.0
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.
<<less Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads
TkNapster 0.5.21
TkNapster is a bare-bones Napster client written in Tcl/Tk. more>>
TkNapster is a bare-bones Napster client written in Tcl/Tk. TkNapster is a bare-bones Napster client written in Tcl/Tk. It supports chat, firewalled download and upload, hotlists and a limited set of privileged user (e.g. moderator/admin) functions.
TkNap is a napster client written in Tcl/Tk. For installation instructions see INSTALL.
To add your shared MP3 files, use the /uladd command to add a base directory to search recursively for MP3 files. To remove a directory, use the /ulrem command. You can get a listing of your current shared directories with the /uldirs command.
Every time you change the contents of any of your shared directories, use the command /uladd again on the specific directory to update the file list and notify the server of the changes.
If the .tknaplist file list should become "out of sync" with your current shared directories for some reason (most probably because you have edited the directories in .tknaprc outside of TkNap, which is *not* recommended), just delete it and it will be rebuilt upon thenext invocation of the program.
Note: Try to avoid making changes to .tknaprc while the program is running. Since TkNap loads this file into memory on startup and in in some cases writes it back to disk on exit, it will overwrite the changes you made.
When someone initiates a download from you, the background of text boxes will change to a brighter color as a notification. It will "go back to normal" when there are no longer any active uploads.
Resume of a partially downloaded file from a previous session will only work if it has been saved with its original name.
Enhancements:
- tknap.in (napRecurse): Now accepts symbolic links (provided they point to regular files). Error messages while getting MP3 info now goes to the info window instead of popping up a message box.
- napLib/mp3info.c (MP3InfoCmd): Now using Tcl_UtfToExternalDString() to handle international characters in filenames.
- AUTHORS, README, napchat.tcl.in, tknap.in: Updated the e-mail address.
<<lessTkNap is a napster client written in Tcl/Tk. For installation instructions see INSTALL.
To add your shared MP3 files, use the /uladd command to add a base directory to search recursively for MP3 files. To remove a directory, use the /ulrem command. You can get a listing of your current shared directories with the /uldirs command.
Every time you change the contents of any of your shared directories, use the command /uladd again on the specific directory to update the file list and notify the server of the changes.
If the .tknaplist file list should become "out of sync" with your current shared directories for some reason (most probably because you have edited the directories in .tknaprc outside of TkNap, which is *not* recommended), just delete it and it will be rebuilt upon thenext invocation of the program.
Note: Try to avoid making changes to .tknaprc while the program is running. Since TkNap loads this file into memory on startup and in in some cases writes it back to disk on exit, it will overwrite the changes you made.
When someone initiates a download from you, the background of text boxes will change to a brighter color as a notification. It will "go back to normal" when there are no longer any active uploads.
Resume of a partially downloaded file from a previous session will only work if it has been saved with its original name.
Enhancements:
- tknap.in (napRecurse): Now accepts symbolic links (provided they point to regular files). Error messages while getting MP3 info now goes to the info window instead of popping up a message box.
- napLib/mp3info.c (MP3InfoCmd): Now using Tcl_UtfToExternalDString() to handle international characters in filenames.
- AUTHORS, README, napchat.tcl.in, tknap.in: Updated the e-mail address.
Download (0.083MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1221 downloads
wmapmmon 1.0
wmapmmon is a WindowMaker dock application that reads the APM information file in /proc/apm in APM enabled kernels. more>>
wmapmmon is a WindowMaker dock application that reads the APM information file in /proc/apm in APM enabled kernels. Then it shows the actual battery charge and its expected remaining time.
When the charge falls below 20%, the background turns red reflecting the need for AC power.
<<lessWhen the charge falls below 20%, the background turns red reflecting the need for AC power.
Download (0.021MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1075 downloads
POE::Component::OSCAR 0.05
POE::Component::OSCAR is a POE component for the Net::OSCAR module. more>>
POE::Component::OSCAR is a POE component for the Net::OSCAR module.
SYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
<<lessSYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
Download (0.006MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
Simple PHP Calendar 1.11
Simple PHP Calendar is a a simple, extensible PHP calendar class. more>>
Simple PHP Calendar is a a simple, extensible PHP calendar class. The project focuses exclusively on generating an HTML representation for a given month. It is meant to be easily extended for use in other applications, such as input widgets for forms, or full event calendaring applications. Its output is completely customizable via CSS.
A simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
<<lessA simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
Download (0.002MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1013 downloads
BBCD - Bootable Cluster CD 2.2.1c
The BCCD was created to facilitate instruction of parallel computing aspects and paradigms. more>>
BCCD - Bootable Cluster CD was created to facilitate instruction of parallel computing aspects and paradigms. Part of the difficulty instructors face is lack of dedicated resources to explore distributed computing aspects lack of time to preconfigure and test the supporting environment.
The BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
<<lessThe BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
Download (200MB)
Added: 2006-03-26 License: GPL (GNU General Public License) Price:
1316 downloads
Lua Messaging Engine 0.1.0
Lua Messaging Engine is a set of scripts that offer abstract functions for communication via AOLs OSCAR protocol. more>>
Lua Messaging Engine (LuME) is a set of scripts that offer abstract functions for communication via AOLs OSCAR protocol (as used by ICQ and AIM clients), Microsoft Messengers MSNP, and Yahoos YIM protocol. Lua Messaging Engine also includes utility functions for string operations, SHA hashing, and basic HTTPS communication.
An increasing number of software developers are making use of the simplicity and power behind employing a Lua script interface.
Meetroduction, LLC has been using a Lua script interface as a core design concept for the multi protocol messaging component of its proximity based people finder client: Meetro. Beyond that, the interface offers its users a flexible way to vastly extend the clients functionality.
<<lessAn increasing number of software developers are making use of the simplicity and power behind employing a Lua script interface.
Meetroduction, LLC has been using a Lua script interface as a core design concept for the multi protocol messaging component of its proximity based people finder client: Meetro. Beyond that, the interface offers its users a flexible way to vastly extend the clients functionality.
Download (0.089MB)
Added: 2006-01-26 License: MIT/X Consortium License Price:
1368 downloads
Twisted Words 0.4.0
Twisted Words provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber. more>>
Twisted Words library provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber.
Twisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
<<lessTwisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
Download (0.13MB)
Added: 2006-05-29 License: MIT/X Consortium License Price:
1246 downloads
Gaim for UNIX 1.4.0
Gaim for UNIX - Universal instant messenger client for AIM, ICQ, MSN, IRC, Yahoo, and Jabber more>>
Gaim is a multi-protocol instant messaging client for Linux, BSD, MacOS X, and Windows. It is compatible with AIM (Oscar and TOC protocols), ICQ, MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu, and Zephyr networks.
Gaim users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Gaim supports many features of the various networks, such as file transfer (coming soon), away messages, typing notification, and MSN window closing notification.
It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, and more.
Enhancements:
- Fix system log start times for some protocols
- SILC compiles with newer SILC toolkit versions (Pekka Riikonen)
- Fixed a bug where buddy icon cache files were left in the icon cache directory after they were no longer in use.
- Attempt to detect the file type of a buddy icon when saving.
- Additional Yahoo! boot protection (Peter Lawler)
- A few Yahoo! memory leaks plugged (Peter Lawler)
- Fixed handling of the new Yahoo! profile page. (Joshua Honeycutt, Peter Lawler)
- Fixed localized Yahoo! room lists. Please refer to the Yahoo! section of the Gaim FAQ for details. (Peter Lawler)
- Enabled sending files to ICQ users using ICQ 5.02 and newer (Jonathan Clark)
<<lessGaim users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Gaim supports many features of the various networks, such as file transfer (coming soon), away messages, typing notification, and MSN window closing notification.
It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, and more.
Enhancements:
- Fix system log start times for some protocols
- SILC compiles with newer SILC toolkit versions (Pekka Riikonen)
- Fixed a bug where buddy icon cache files were left in the icon cache directory after they were no longer in use.
- Attempt to detect the file type of a buddy icon when saving.
- Additional Yahoo! boot protection (Peter Lawler)
- A few Yahoo! memory leaks plugged (Peter Lawler)
- Fixed handling of the new Yahoo! profile page. (Joshua Honeycutt, Peter Lawler)
- Fixed localized Yahoo! room lists. Please refer to the Yahoo! section of the Gaim FAQ for details. (Peter Lawler)
- Enabled sending files to ICQ users using ICQ 5.02 and newer (Jonathan Clark)
Download (5MB)
Added: 2009-04-01 License: Freeware Price:
213 downloads
SIM Instant Messenger 0.9.4.3
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<lessBased on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
Jumpgate 0.7
Jumpgate is a TCP connection forwarder that provides many enhancements and improvements over the existing programs. more>>
Jumpgate is a TCP connection forwarder that provides many enhancements and improvements over the existing programs that do the same thing. It provides an interactive mode that queries the connected party for the forwarding information it needs. Also, there is the option to log the entire forwarded session in a file for later inspection. Furthermore, it can log information about the forwarded session via the syslog(3) facility. If you improve it further, please send me the diffs. As always, published under a BSD-style license, see the included LICENSE file.
Jumpgate has been tested and works on the following platforms:
OpenBSD 3.2 (i386).
OpenBSD 3.1 (i386).
OpenBSD 3.0 (i386).
Solaris 8, thanks to John Weekley and Jesper Peterson.
Solaris 7, thanks to Chris Donovan.
AIX, thanks to feedback from Michael Pacey.
FreeBSD 4.2-STABLE (i386), thanks to Kiriakos Oikonomakos for the shell account.
NetBSD 1.4.2 (i386).
Linux, various distributions and platforms, thanks to feedback from many people.
I have been told that it compiles and runs on Windows using Cygwin, but I have not tested it myself.
Enhancements:
- Compiled and tested on Debian Linux 3.0 (sparc).
- Compiled and tested on Solaris 2.8 (sparc).
- Added the --enable-debug option to configure.in.
- Now autoconf correctly handles Linux and Solaris.
- Added the option of having a delay in the forwarded connection, after a patch by Martin Donlon.
- Incorporated the additions of Oliver Fromme regarding the ability to use names from the services database instead of port numbers, the ability to use IP addresses for the -a option, and the ability to bind to a local IP.
- sigset() instead of signal() to install the handler for SIGCHLD on Solaris, fix provided by Jesper Peterson.
- Jumpgate should not exit if accept() generates ECONNABORTED, thanks to Jesper Peterson for the fix.
- Now jumpgate utilizes the autoconf package for portable configuration and compilation.
- Compiled and tested on Redhat Linux 6.2 (sparc), thanks to Brat3 for the shell account.
- Compiled and tested it on FreeBSD 4.2-STABLE.
- Compiled and tested it on NetBSD 1.4.2.
- Compiled and tested it on Slackware Linux 7.1.
- Gustavo Ambrozio added the ability to bind to a specific local IP, although finally the patch from Oliver Fromme was used.
- Created a manual page.
- Added an install and uninstall option to the Makefile.
<<lessJumpgate has been tested and works on the following platforms:
OpenBSD 3.2 (i386).
OpenBSD 3.1 (i386).
OpenBSD 3.0 (i386).
Solaris 8, thanks to John Weekley and Jesper Peterson.
Solaris 7, thanks to Chris Donovan.
AIX, thanks to feedback from Michael Pacey.
FreeBSD 4.2-STABLE (i386), thanks to Kiriakos Oikonomakos for the shell account.
NetBSD 1.4.2 (i386).
Linux, various distributions and platforms, thanks to feedback from many people.
I have been told that it compiles and runs on Windows using Cygwin, but I have not tested it myself.
Enhancements:
- Compiled and tested on Debian Linux 3.0 (sparc).
- Compiled and tested on Solaris 2.8 (sparc).
- Added the --enable-debug option to configure.in.
- Now autoconf correctly handles Linux and Solaris.
- Added the option of having a delay in the forwarded connection, after a patch by Martin Donlon.
- Incorporated the additions of Oliver Fromme regarding the ability to use names from the services database instead of port numbers, the ability to use IP addresses for the -a option, and the ability to bind to a local IP.
- sigset() instead of signal() to install the handler for SIGCHLD on Solaris, fix provided by Jesper Peterson.
- Jumpgate should not exit if accept() generates ECONNABORTED, thanks to Jesper Peterson for the fix.
- Now jumpgate utilizes the autoconf package for portable configuration and compilation.
- Compiled and tested on Redhat Linux 6.2 (sparc), thanks to Brat3 for the shell account.
- Compiled and tested it on FreeBSD 4.2-STABLE.
- Compiled and tested it on NetBSD 1.4.2.
- Compiled and tested it on Slackware Linux 7.1.
- Gustavo Ambrozio added the ability to bind to a specific local IP, although finally the patch from Oliver Fromme was used.
- Created a manual page.
- Added an install and uninstall option to the Makefile.
Download (0.039MB)
Added: 2006-07-03 License: BSD License Price:
1210 downloads
Missile Command 1.0.1
Missile Command project is a game in which you have to save your city from nuclear doom. more>>
Missile Command project is a game in which you have to save your city from nuclear doom.
Missile Command is a clone of the Atari save-your-city-from-impending-nuclear-doom game.
<<lessMissile Command is a clone of the Atari save-your-city-from-impending-nuclear-doom game.
Download (0.20MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1088 downloads
ASCIIweb 0.90
ASCIIweb is a text-to-HTML formatting system. more>>
ASCIIweb is a text-to-HTML formatting system that uses the pre tag to create ASCII art Web pages, either on-the-fly or for static retrieval.
Installing ASCIIweb is a snap. Simply download the tarball and unpack it in a directory that is web-accessible. Next, configure your web browser to allow cgi scripts (if you want to run dynamically), and set aw.cgi as a acceptable DirectoryIndex. If you are planning to utilize embedded scripts, please rename the sample scriptdir to something unique. An .htaccess file should exist there denying web users from listing the contents of the directory. If one does not exist, create one (see the sample in the tarball). Finally, load your page! If everyting is configured correctly, you should see a default ASCIIweb install. If you do not see the default ASCIIweb installation this is because of two reasons: you unpacked ASCIIweb in the wrong directory, or your web server is not properly configured.
NOTE: If you do not require ASCIIweb to run in dynamic mode, or you do not have permission to run cgi scripts in your webspace, you may install ASCIIweb anywhere you like and generate static pages which you would then copy into your website.
Enhancements:
- This version includes a line wrapping feature.
- Users no longer have to manually format their content pages.
<<lessInstalling ASCIIweb is a snap. Simply download the tarball and unpack it in a directory that is web-accessible. Next, configure your web browser to allow cgi scripts (if you want to run dynamically), and set aw.cgi as a acceptable DirectoryIndex. If you are planning to utilize embedded scripts, please rename the sample scriptdir to something unique. An .htaccess file should exist there denying web users from listing the contents of the directory. If one does not exist, create one (see the sample in the tarball). Finally, load your page! If everyting is configured correctly, you should see a default ASCIIweb install. If you do not see the default ASCIIweb installation this is because of two reasons: you unpacked ASCIIweb in the wrong directory, or your web server is not properly configured.
NOTE: If you do not require ASCIIweb to run in dynamic mode, or you do not have permission to run cgi scripts in your webspace, you may install ASCIIweb anywhere you like and generate static pages which you would then copy into your website.
Enhancements:
- This version includes a line wrapping feature.
- Users no longer have to manually format their content pages.
Download (0.031MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1201 downloads
Sjinn 1.01
S-Jinn is a free open-source Linux application written in C. more>>
S-Jinn is a free open-source Linux application written in C. It is designed to be used with external TIA/EIA-232 (RS-232) test, measurement, and control devices and allows for rapid prototyping, automation, and deployment. I believe you will find it easier-to-use, more intuitive, and more concise than stty or C-Kermit with regards to command-line and/or scripted RS-232 data acquisition and control.
Popular Linux communications packages like Minicom are easy-to-use, but are primarily designed to work with modems, PCs, and other standard equipment. They typically lack support for all of the possible combinations of UART communication settings required by RS-232 test, measurement, and control devices on the market.
Many popular communications packages lack command-line support. Some provide scripting languages, but S-Jinn frees you from these application-specific languages. S-Jinn allows you to manipulate your data from your favorite Unix shell and/or scripting language whether it be Bash, Python, Perl, Expect, or you name it.
Main features:
- Control RS-232 DTR and RTS lines from the command-line and optionally display DTR, RTS, CTS & DSR status
- Send control characters (i.e. the NULL character)
- Send values in hex
- Specify read length
- Display the read buffer in ASCII, hex or ASCII-over-hex.
- Program & display coded/programmable delay times
- Supports virutally all baud rates, parity, and data lengths found in standard PC UARTS
- Output Formats: Wrap text, truncate lines, add, display, or supress trailing new lines
It is not designed to be used for serial communications with modems or for use as a terminal emulator. There are a large number of free open-source applications available that are much better suited to those functions. S-Jinn is written to work with RS-232 based data acquisition equipment such as: Multimeters, A/D modules , D/A modules, digital inidicators, gauge multiplexers, temperature sensors, humidity sensors, etc.
Enhancements:
- The code was cleaned up to fix compilation issues with some new versions of GCC.
<<lessPopular Linux communications packages like Minicom are easy-to-use, but are primarily designed to work with modems, PCs, and other standard equipment. They typically lack support for all of the possible combinations of UART communication settings required by RS-232 test, measurement, and control devices on the market.
Many popular communications packages lack command-line support. Some provide scripting languages, but S-Jinn frees you from these application-specific languages. S-Jinn allows you to manipulate your data from your favorite Unix shell and/or scripting language whether it be Bash, Python, Perl, Expect, or you name it.
Main features:
- Control RS-232 DTR and RTS lines from the command-line and optionally display DTR, RTS, CTS & DSR status
- Send control characters (i.e. the NULL character)
- Send values in hex
- Specify read length
- Display the read buffer in ASCII, hex or ASCII-over-hex.
- Program & display coded/programmable delay times
- Supports virutally all baud rates, parity, and data lengths found in standard PC UARTS
- Output Formats: Wrap text, truncate lines, add, display, or supress trailing new lines
It is not designed to be used for serial communications with modems or for use as a terminal emulator. There are a large number of free open-source applications available that are much better suited to those functions. S-Jinn is written to work with RS-232 based data acquisition equipment such as: Multimeters, A/D modules , D/A modules, digital inidicators, gauge multiplexers, temperature sensors, humidity sensors, etc.
Enhancements:
- The code was cleaned up to fix compilation issues with some new versions of GCC.
Download (0.033MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
877 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above oscar peterson 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