Main > Free Download Search >

Free step up software for linux

step up

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 19
bcr steps 0.2

bcr steps 0.2


bcr steps is a step sequencer and arpeggiator made for the Behringer BCR2000 controller. more>>
bcr steps is a step sequencer and arpeggiator made for the Behringer BCR2000 controller. The project can also be used on its own, or with almost any other MIDI controller.

If you like, you can try out the applet version, though it wont give you the full MIDI capabilities of the standalone application.

Instructions:

Download and run with java -jar bcr-steps.jar

<<less
Download (0.10MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
849 downloads
Step-by-Step 0.96

Step-by-Step 0.96


Step-by-Step is a simple logic game where you have to clear all colored tiles by stepping over them. more>>
Step-by-Step is a simple logic game where you have to clear all colored tiles by stepping over them.

Depending on the colour of the tile, this takes one to three steps. Step-by-Step project contains 99 levels and a separate level editor.

<<less
Download (1.1MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 downloads
Net::UPS 0.04

Net::UPS 0.04


Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.

SYNOPSIS

use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);

Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.

This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.

<<less
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 downloads
Falling Up 004

Falling Up 004


Falling Up its another tetris clone. more>>
Falling Up its another tetris clone. No, Im not trying to make any money off of it or claim it as particularly unique. It is fun. Try it. Its evil. Im told that frequently.
People have even praised it. I wrote it as a precursor to other games, a way to learn new technologies (GLUT, OpenGL, OpenAL, NSIS, ...), and to brush up on old ones (c, for that matter).
The source code is essentially free to do with as you please, if you like. If you "steal" most of it, Id prefer you give credit back to here, but really... whatever. I learned from lots of places and anything I can do to pay that back is cool.
The game is... tetris. You have the same old blocks, and they fall down. You use left and right to move blocks left and right, up to rotate, down to move down a line, and spacebar to drop.
Theres a next item (optional), sound (optional), and... stuff like that. Please, just download it and play it already! Geeze! Youd think I was just rambling...
Enhancements:
- The score file was adding 1 to the "level" the score was attained at every time a new high score was made, give or take; that is fixed.
- I added a background image (doesnt work with trails, may slow down on slower systems), and made F4 quit out of playing the game.
<<less
Download (0.45MB)
Added: 2005-12-06 License: GPL (GNU General Public License) Price:
1422 downloads
Network UPS Tools 2.2.0

Network UPS Tools 2.2.0


Network UPS Tools is an extremely powerful and versatile client/server based approach to UPS monitoring. more>>
Network UPS Tools is a collection of programs which provide a common interface for monitoring and administering UPS hardware. Network UPS Tools uses a layered approach to connect all of the parts.
Drivers are provided for a wide assortment of equipment. They understand the specific language of each UPS and map it back to a compatibility layer.
This means both an expensive "smart" protocol UPS and a simple "power strip" model can be handled transparently.
This information is cached by the network server upsd, which then answers queries from the clients. upsd contains a number of access control features to limit the abilities of the clients. Only authorized hosts may monitor or control your UPS hardware if you wish.
Since the notion of monitoring over the network is built into the software, you can hang many systems off one large UPS and they will all shut down together.
Clients such as upsmon check on the status of the hardware and do things when necessary. The most important task is shutting down the operating system cleanly before the UPS runs out of power.
Other programs are also provided to log UPS status regularly, monitor status through your web browser, and more.
Enhancements:
- HAL support. IPv6 support.
- Support for many new devices.
- Many driver improvements.
- This release uses automake.
<<less
Download (0.64MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
847 downloads
Set up iptables NAT rules 1.2b2

Set up iptables NAT rules 1.2b2


Set up iptables NAT rules is an example IPTables 1.2.1 script for a multi-homed firewall. more>>
Set up iptables NAT rules is an example IPTables 1.2.1 script for a multi-homed firewall.

Please feel free to send me any comments or suggestions.

Current versions and documentation are available at http://www.sentry.net/~obsid/IPTables/rc.scripts.dir/current/

Sample:

## Variables ##
IPTABLES="/usr/local/sbin/iptables" ## Default IPTables >= v. 1.2.0
#IPTABLES="/usr/local/bin/iptables" ## Default IPTables<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
989 downloads
Image::PBMlib 1.05

Image::PBMlib 1.05


Image::PBMlib Perl module contains helper functions for PBM/PGM/PPM image file formats. more>>
Image::PBMlib Perl module contains helper functions for PBM/PGM/PPM image file formats.

SYNOPSIS

use Image::PBMlib;

... open(PPM, "< image.ppm")...

my $ref = readppmheader(*PPM);

my @pixels = readpixels_raw(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );

my @pixels = readpixels_dec(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );

my @rgb = hextriplettoraw("F00BA4");

my @rgb = dectriplettoraw("17:34:51");

my $header = makeppmheader($ref);

This is primarily a library for reading portable bitmap (PBM), portable graymap (PGM), and portable pixmap (PPM) files. These image formats are only the barest step up from raw data, and have a very simple format which is the key to be "portable". Writing out images in these formats is very easy.

Reading images in these formats is also easy, but not quite "very easy". Proper reading of the file needs to happen one byte at a time, since there is no fixed header length. Headers can also contain comments, which must be ignored. Then, once past the header, there are a total of six different ways that the data might need to be read: a raw and an ascii encoding of each image color level.

<<less
Download (0.006MB)
Added: 2007-07-13 License: Perl Artistic License Price:
834 downloads
SEO Rank Checker 2.1

SEO Rank Checker 2.1


Search-Engine-Optimized project is a free online resource for anyone who wants to step up their search engine optimization. more>>
Search-Engine-Optimized project is a free online resource for anyone who wants to step up their search engine optimization strategies to the next gear.
The web is a constantly changing place, expecially search engines, but there are numerous search engine optimization strategies that are consistant across all the major search engines, and are probably going to be very useful for a long time to come.
Read on to learn what they are and how to employ them in the development of your web site.
Main features:
SEO Rank Checker is a nice little script for checking your keyword status for a few select keywords without going through the trouble of checking the search engine result pages yourself.
- Automated fetching of the top 100 results for MSN, Yahoo and Google to check for your site.
- Easy to read, compare and print output
- Installation is super easy, just upload to your server and youre done!
- Super small script, just a few KBs of space!
<<less
Download (0.003MB)
Added: 2006-01-24 License: Freeware Price:
1371 downloads
Net::UP::Notify 1.01

Net::UP::Notify 1.01


Net::UP::Notify is a Perl module that can send Net Alerts to cellular phones with the Unwired Planet browser. more>>
Net::UP::Notify is a Perl module that can send "Net Alerts" to cellular phones with the "Unwired Planet" browser (AKA phone.com, AKA OpenWave UP.Browser).

SYNOPSIS

use Net::UP::Notify;
$blah=new Net::UP::Notify;
$blah->subscriberid("111111111-9999999_atlsnup2.adc.nexteldata.net");
$blah->location("http://www.perl.com/");
$blah->description("The Perl.com Homepage");
print $blah->send;

This allows you to send a Net Alert to a cellular phone, provided you know the subscriber ID of the user. This also requires the end user to have the Wireless Web service on their phone, and they also must have it provisioned by the carrier.

This was designed and tested using a Nextel phone, but I think that both Cingular and Sprint PCS should be supported here when given the proper subscriberid string.
My intention is to completely support the entire UP SDK, but for right now, I can only support the sending of Net Alerts.

<<less
Download (0.003MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1218 downloads
SUM - Start-up Manager 1.0.10

SUM - Start-up Manager 1.0.10


SUM - Start-up Manager software is a gui tool for changing settings in the bootloader and splash screen in Ubuntu. more>>
SUM - Start-up Manager software is a gui tool for changing settings in the bootloader and splash screen in Ubuntu.
Main features:
Change:
- Grub timeout, default boot title, number of kernels in bootloader menu, enable/disable boot option for memtest86, enable/disable boot option for "rescue mode", if the default boot option should be automatically updated, bootup resolution and color depth, grub menu colors and background, and usplash theme.
- Create "rescue floppy"
Change visibility of:
- Grub menu, colors, background image, usplash and usplash text.
Password protection:
- Password protect grub menu from editing
- Password protect "alternate" boot options
- Password protect old boot options
Themes:
- Install new grub backgrounds(either from a png, or a correctly sized and colored .xpm or xpm.gz)
- Remove grub backgrounds
- Install new usplash themes(from a correctly made .so file)
- Remove Usplash themes
Enhancements:
- Translations added
<<less
Download (0.061MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
809 downloads
UIM Isnt Mock-up 1.0.0

UIM Isnt Mock-up 1.0.0


UIM Isnt Mock-up is a multilingual input method library. more>>
Uim is a multilingual input method library. Uims project goal is to provide secure and useful input method for all languages.
Main features:
Portable
- Uim works in many environments. Uim supports of course general desktop system such as GNOME or KDE, but also supports Linux Zaurus, Mac OS X.
Just a library
- Many input method frameworks such as XIM is implemented as a client/server system. But uim is a library, not a client/server system. Most of users dont need input method system at all or need simple table based input method system. Such users wouldnt install complex input method system, so we want keep our input method simple. Now uim may not be simple so much, but we have a will to make uim as simple as we can.
Applications that can be used with UIM:
- All X applications. (You can use them with uim-xim.)
- Gtk+ applications such as gedit. There are two way to use uim. Through uim gtk-immodule directly, or through xim immodule. We recommend using uim through gtk immodule directly.
- All qt applications. There are two way to use uim. Through XIM or qt-immodule. If you want to uim with qt-immodule, you will need a patch now.
- All console applications. (You can use them with uim-fep.)
Enhancements:
- A bridge for Emacs (uim.el), a Hangul input suite (byeoru), and yet another Japanese input method (mana) were added.
- Many bugfixes were made.
<<less
Download (1.8MB)
Added: 2005-12-23 License: GPL (GNU General Public License) Price:
1401 downloads
UPS 3.38 beta2

UPS 3.38 beta2


UPS is a light C and C++ debugger under X11. more>>
Ups is a source level C,C++ and Fortran debugger that runs under X11. Currently supported systems are FreeBSD and GNU/Linux on Intel x86 and Solaris on SPARC.

On these systems it runs native; it is not a front-end to GNU gdb. An ANSI C interpreter is included; this is built in to ups to provide conditional debugging and can also be built as a seperate program.

If you are using some other operating system or processor then please see the systems information as ups has in the past been ported to a variety of computers, and may include code for your system.

Ups was written by Mark Russell of the Computer Science department at the University of Kent at Canterbury, and was originally part of the Kent Software Tools suite.
<<less
Download (2.5MB)
Added: 2005-04-18 License: Free To Use But Restricted Price:
1652 downloads
Dial-Up Bot 0.3

Dial-Up Bot 0.3


Dial-Up Bot project aims to be a fully functional automated replacement for the /etc/ppp/ip-{up,down}.d hierarchy. more>>
Dial-Up Bot project aims to be a fully functional automated replacement for the /etc/ppp/ip-{up,down}.d hierarchy. Its supposed to be started by cron at night. It cant satisfy the requirements of impatient roots. Its not designed for hosts with a permanent Internet connection.
Enhancements:
- This is the first public release since dubot reached minimal useful functionality and stability. Installation mech is minimally stable (at least for install in /usr/local hierarchy).
<<less
Download (MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
883 downloads
BUM - Boot-Up Manager 2.1.8

BUM - Boot-Up Manager 2.1.8


BUM - Boot-Up Manager is a graphical runlevel configuration editor for Debian-based systems. more>>
BUM - Boot-Up Manager is a Perl-Gtk2 application to handle runlevels configuration of any debian derivative system.

With this program the user will easily start and stop boot-up scripts, without the necessity to handle thru complex links and permissions.

Boot-Up Manager has been tested on an Ubuntu 05.04 release, but as it only relies on Perl-Gtk2 libraries, it can be run on any Debian-like system.

<<less
Download (0.057MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1124 downloads
UPS monitor 0.8.3

UPS monitor 0.8.3


UPS monitor is a graphical monitoring application that lets users watch a UPSs status in real time. more>>
UPS monitor is a graphical monitoring application that lets users watch a your UPSs status in real time.
Main features:
- Saves your session if UPS switches to battery power
- Warns you when power is critically low
- Lets you monitor networked UPSes
- Remembers configuration and restarts when you log on
- Extremely easy to use
<<less
Download (0.072MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1444 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2