Main > Free Download Search >

Free 1.00 ringtones software for linux

1.00 ringtones

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 131
Bloo 1.00 RC2

Bloo 1.00 RC2


Bloo is a free, public-domain, object-oriented implementation of full-featured blog software, based on the Phoo Phramework. more>>
Bloo is a free, public-domain, object-oriented implementation of full-featured blog software, based on the Phoo Phramework. Both Phoo and Bloo are PHP systems. This projects are both covered under the Gnu Public License.
Main features:
- Role-based security at the object level (in other words, security is pervasive)
- Those with posting privileges can create and edit posts
- Readers can comment on posts
- Posts can receive trackbacks
- Comment and trackback moderation, spam and troll destruction, etc.
- Administrators have full control over the look and feel of the blog, via the overlay editor. All visual element templates can be edited on the fly, with a non-destructive edit.
- Themes control the look and feel. Administrators can create themes on the fly, cascade themes from other themes, and select the default theme.
- Optional theme-selector for blog readers to pick their favorite theme
- Bloo-administered Blogroll ("Bloogroll")
- Configurable blogroll categories
- Multiple Spam Control Extension SnapOns
- Multiple users
- Multiple post categories per post.
- Post keyword searches
- Easy to use installation and upgrade programs
- Developers can create new Extension SnapOns to add functionality to the blog
- All input and output components of the system are XML-based and separate from the code
- New functionality can be added via Bloo Extension SnapOns
Enhancements:
- New features in this release include support for multiple post categories, IP blacklist and comments-flood protection, an enhanced theme selector, RSS fixes, among others.
<<less
Download (MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
809 downloads
i.Mage 1.00 Beta 2

i.Mage 1.00 Beta 2


i.Mage is a small and fast graphics editor slanted towards quite and easy pixel editing. more>>
i.Mage is a small and fast graphics editor slanted towards quite and easy pixel editing, ala DPaint from the DOS/Amiga days.
i.Mage project is not designed to compete with the other graphics programs out there, there are plenty that do a much better job than i.Mage.
However it starts in under a second and it does a lot of the mundane jobs of image editing quickly and without fuss.
Main features:
- Load/Save: Gif, Tiff, Jpg, Pcx, Bmp, Ico.
- 2 pane view, zoomed and 1:1.
- Downsampling/upsampling bit-depth, dithering, halftone, error diffusion.
- Resampling (smart resizing), cropping, rotating, offseting and flipping images.
- 8-bit palette editor: RGB/HLS ramps, colour cubes/stock palettes, reverse ramps, remapping.
- Clipboard support.
- Alpha blending.
- Basic linear/radial gradient fill.
- Undo que for most tools.
- Conversion of image to C/C++ code.
- Transparency support.
- Invert image.
- Convert to grayscale.
- Brightness/contrast adjust.
- Save/load/flip/rotate the current brush.
- Flood fill.
- Basic drawing primitives.
- Polyline editor.
- Text tool.
- Basic colour management via Little CMS, does RGBRGB on load/save to the internal colour space (sRGB), allows viewing of colour profile details.
Enhancements:
- Fixed the enable undo menuitem and the enable undo toolbar button being out of sync with each other.
- Fixed Bug #48: Undo doesnt work.
- Fixed the brush becoming part of the document when you say resize the image and the brush is still overlaid on the image.
<<less
Download (0.84MB)
Added: 2005-12-08 License: GPL (GNU General Public License) Price:
1460 downloads
Xws 1.00

Xws 1.00


Xws project is a multi-player Across Lite server with chat. more>>
Xws project is a multi-player Across Lite server with chat.

Xws is a text mode multi-player crossword and chat server. It presents the same puzzle to everyone, allowing people the option to try and/or discuss solutions.

Play may be friendly collaboration or fierce competition, depending on the players dispositions. Xws supports hundreds of puzzles in the popular Across Lite file format.

Copyright issues prevent the distribution from including any puzzles, but several archives and resources are listed in the README.

<<less
Download (0.019MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1055 downloads
J51 1.00

J51 1.00


J51 is an 8051 emulator/debugger. more>>
J51 project is a Java Intel MCS51(8051,8052, etc) family microprocessor emulator, with integrated debugger, disassembler, Intel hex file loader and more.
Main features:
- Disassembler
- Debugger
- Intel Hex file loader
Standard peripheral emulated:
- Timer 0/1 (Mode 0,1,2 and interrupt)
- Serial interface (Only in polled mode)
- Standard port 0 to 4
Microprocessor emulated:
- Intel MCS 8051 (no peripheral)
- Intel 8051
- Intel 8052
- Philips LPC674
- Philips LPC900
This version is still experimental the sources are distributed only for reference, full source and documentation will be available with the first stable release.
<<less
Download (0.13MB)
Added: 2006-12-14 License: Freeware Price:
1048 downloads
conntrack 1.00 Beta1

conntrack 1.00 Beta1


conntrack is a userspace command line program targeted at system administrators. more>>
conntrack is a userspace command line program targeted at system administrators. conntrack program enables them to view and manage the in-kernel connection tracking state table.
Main features:
- listing the contents of the conntrack table
- searching for individual entries in the conntrack table
- adding new entries to the conntrack table
- listing entries in the expect table
- adding new entries to the expect table
<<less
Download (0.21MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1359 downloads
Make 1.00

Make 1.00


Make is a Perl module for processing makefiles. more>>
Make is a Perl module for processing makefiles.

SYNOPSIS

require Make;
my $make = Make->new(...);
$make->parse($file);
$make->Script(@ARGV)
$make->Make(@ARGV)
$make->Print(@ARGV)

my $targ = $make->Target($name);
$targ->colon([dependancy...],[command...]);
$targ->dolon([dependancy...],[command...]);
my @depends = $targ->colon->depend;
my @commands = $targ->colon->command;

Make->new creates an object if new(Makefile => $file) is specified then it is parsed. If not the usual makefile Makefile sequence is used. (If GNU => 1 is passed to new then GNUmakefile is looked for first.)

$make->Make(target...) makes the target(s) specified (or the first real target in the makefile).

$make->Print can be used to print to current selected stream a form of the makefile with all variables expanded.

$make->Script(target...) can be used to print to current selected stream the equivalent bourne shell script that a make would perform i.e. the output of make -n.

There are other methods (used by parse) which can be used to add and manipulate targets and their dependants. There is a hierarchy of classes which is still evolving. These classes and their methods will be documented when they are a little more stable.

The syntax of makefile accepted is reasonably generic, but I have not re-read any documentation yet, rather I have implemented my own mental model of how make works (then fixed it...).

In addition to traditional

.c.o :
$(CC) -c ...

GNU makes pattern rules e.g.

%.o : %.c
$(CC) -c ...

Likewise a subset of GNU makes $(function arg...) syntax is supported.
Via pmake Make has built perl/Tk from the MakeMaker generated Makefiles...

<<less
Download (0.012MB)
Added: 2007-05-09 License: Perl Artistic License Price:
944 downloads
Objective Modula-2 1.00 (Language Definition)

Objective Modula-2 1.00 (Language Definition)


Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2. more>>
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2 based on the object model and runtime of Objective-C.

The design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.

The projects scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
<<less
Download (0.23MB)
Added: 2007-07-21 License: (FDL) GNU Free Documentation License Price:
516 downloads
 
Other version of Objective Modula-2
Objective Modula-2 1.00 (Reference Implementation)Benjamin Kowarsch - Objective Modula-2 1.00 (Reference Implementation)Objective Modula-2 1.00 (Reference ... Objective Modula
License:(FDL) GNU Free Documentation License
Download (0.019MB)
825 downloads
Added: 2007-07-21
Cairo 1.00

Cairo 1.00


Cairo package contains Perl bindings to the cairo graphics library. more>>
Cairo package contains Perl bindings to the cairo graphics library.

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

To avoid installing to a system directory, if you dont have root access, you can change the installation prefix at Makefile.PL time with

perl Makefile.PL PREFIX=/some/other/place

This will install the module to the subdirectory lib/perl5 under the given prefix. If this is not already in perls include path, youll need to tell perl how to get to this library directory so you can use it; there are three ways:

in your environment (the easiest):
# assuming a bourne-style shell
PERL5LIB=/some/other/place/lib/perl5/site_perl export PERL5LIB
on the perl command line:
perl -I /some/other/place/lib/perl5/site_perl yourscript
in the code of your perl script:
use lib /some/other/place/lib/perl5/site_perl;

<<less
Download (0.042MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1143 downloads
oscjoy 1.00

oscjoy 1.00


oscjoy is a simple command line program that lets you use any connected joysticks as OpenSoundControl devices. more>>
oscjoy is a simple command line program that lets you use any connected joysticks as OpenSoundControl devices.
Whenever the state of a connected joystick changes, oscjoy will send UDP packets with OpenSoundControl messages in them to the specified IP address and port. The oscjoy archive includes source code and binaries for Linux, Mac OS X, and Windows XP.
Main features:
- Monitors all connected joysticks (or joystick-like input devices)
- Monitors all axes, buttons, hats, and trackballs on each device
- Sends OpenSoundControl packets via UDP to the specified IP address and port whenever any controls state changes
- Has options to set the OpenSoundControl name prefix, polling rate, scaling, etc
- Portable to most any OS (uses cross-platform joystick code from the SDL project)
- Very small -- compiles to less than 100 kilobytes
- Able to run in the background as a daemon process
- Open source, licensed under the GNU LGPL license
<<less
Download (0.15MB)
Added: 2006-03-29 License: LGPL (GNU Lesser General Public License) Price:
1304 downloads
ExtSub 1.00

ExtSub 1.00


ExtSub is an utility which extracts and decodes subtitle data from VOB files. more>>
ExtSub is an utility which extracts and decodes subtitle data from VOB files. This program is for extracting subtitles from DVD VOB files. It does not descramble CSS-encrypted files. To compile simpy type "make". The command line parameters are as next:


infile= The VOB file from which to extract subtitles.

videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)

subname= The prefix of all subtitle files (see below for
details on the individual files).

convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.

id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.

Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".

The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.

The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.

The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
<<less
Download (0.017MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1183 downloads
Twindy 1.00

Twindy 1.00


Twindy is a window manager for linux inspired by Tracktion. more>>
Twindy is a window manager for linux and possibly any system running an X server, inspired by Tracktion, the multitrack audio editor/sequencer for Windows and OS X.
Twindy tries to apply Tracktions workflow, where everything is on screen at once, to a window manager.
As such, there are two panels, a main panel where new windows/programs open by default and may be selected using tabs, and a lower panel, which can only hold one window/program at a time.
The idea is that youll do your main work in the top panel, and use the bottom panel for a terminal, or a file manager youd want to keep open. See the screenshots page for some examples.
The philosophy behind Twindy isnt particularly complicated:
- Twindy is intended to be as simple as possible. That means it is only a window manager - its not intended to become a huge Desktop Environment like KDE/Gnome, with all sorts of applications developed specifically for it.
- All Twindys options must be configurable from Twindy itself - there shouldnt be any messing about with configuration files necessary. (okay, were not there yet, but eventually...)
- Twindy should be fairly lightweight - Im not entirely sure how well it succeeds in this yet, as I dont have a low-ish spec machine to test it on, but on my P4 laptop, it only takes up ~10MB while running, which I reckon is pretty good, compared to Gnome and KDE. Since it uses JUCE to do pretty much everything, it should be pretty good on this front, and its got very few dependencies (basically the X libs, and freetype).
Main features:
- Windows are automatically mapped to either the upper or lower panel, and fixed in position.
- Upper window panels are tabbed.
- Fully customisable colour scheme, colours are read from .tracktionscheme files, so you can import your favourite Tracktion 2 scheme. This is probably the best place to find .tracktionschemes.
- You dont have to start it from an xterm anymore!
- Fourteen user-customisable buttons in the lower left corner, which can be set to open a popup menu with a number of program entries, or just start a particular program.
- Can run any number of programs at startup (particularly useful for gnome-settings-daemon).
- Clicking the clock switches between showing the current time, or the date.
Enhancements:
- This is the last release of the project.
- Various small improvements to the UI have been made, such as labeling the upper and lower panel buttons, asking whether the user wants to log out, and providing buttons to switch apps between the upper and lower panels.
- Localization support was also added.
<<less
Download (2.1MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
876 downloads
Kimboot 1.00

Kimboot 1.00


Kimboot is a sick and addictive arcade game. more>>
Kimboot is a sick and addictive arcade game.

You control a hand holding some very heavy ball on a rope (physics simulation included), and there are a lot of enemies trying to eat your hand. You wont let them! Crushem all with the ball!

<<less
Download (1.9MB)
Added: 2007-03-12 License: zlib/libpng License Price:
959 downloads
GD::Map 1.00

GD::Map 1.00


GD::Map is Perl extension for creating geographic map files with GD. more>>
GD::Map is Perl extension for creating geographic map files with GD.

SYNOPSIS

use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();

my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};

ABSTRACT

Perl extension for creating geographic map files with GD

<<less
Download (0.008MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
rphpMMS 1.00

rphpMMS 1.00


rphpMMS is a script for xmms that chooses songs at random for xmms for multiple users. more>>
rphpMMS is a script for xmms that chooses songs at random for xmms for multiple users. rphpMMS uses a highest common rating approach to selecting the songs.
This is great for people who have kids, and dont want certain songs with adult themes/cussing being played when the kids are around, or if you were in a college dorm, the chances of a song everyone likes would greatly increase.
Main features:
- Time based history (strict, or flexable)
- Song history
- Artist history
- ices metadata update
- play only specific genres
- move/rename songs user defined database information
- synchronize id3/ogg tags to database mp3
- mplayer support - beta
<<less
Download (0.47MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1301 downloads
GBAconv 1.00

GBAconv 1.00


GBAconv is a set of tools aimed at GameBoy Advance developers. more>>
GBAconv is a set of tools aimed at GameBoy Advance developers. GBAconv allows you to convert WAV sounds and PCX images into C arrays to be included in GBA programs.

It is composed of two programs:

- pcx2gba: exports a PCX 8-bpp image to 16-bit values C arrays: palette + image data (2 pixels per value)
- wav2gba: exports a WAV 8-bit mono sound to 8-bit signed values array.

There wont be any other releases of GBAconv, as Ive no interest for the GBA platform anymore.

Compiling:

Simply type "make" to compile the program.

It has been successfully compiled on:

- 32-bit x86 Architecture (Ubuntu Linux 5.10, FreeBSD 5.4)

Usage:

pcx2gba input.pcx output.inc array_name (Input File must be 8-bit PCX)
wav2gba input.wav output.inc array_name (Input File must be 8-bit, MONO)
<<less
Download (0.010MB)
Added: 2006-01-16 License: GPL (GNU General Public License) Price:
1379 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5