Main > Free Download Search >

Free stuff software for linux

stuff

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 491
XPTracker 20090706

XPTracker 20090706


XPTracker is a radical alternative agile planning tool. more>> XPTracker 20090706 is developed to be a radical alternative agile planning utility aimed at keeping out of your way and making sure you can see the stuff you care about at a glance.

Requirements: Java 2 Standard Edition Runtime Environment

Enhancements: This release fixes a defect where an exception was thrown when rejecting a story that wasnt in a queue.

<<less
Added: 2009-07-07 License: GPL Price: FREE
20 downloads
Huawei e220 rc 2 installer for linux rc 2

Huawei e220 rc 2 installer for linux rc 2


solution for trouble in configuration of Huawei E220 modem on linux. more>> Hi.. I made this after I made many research for Huawei modem E220. Better try it. It is easy and save a time. A reason why I develope this installer is to make solution for trouble in configuration of Huawei E220 modem on linux. Read at read me. Execute this tar.gz file first. This is my first post to linuxers. Hope this stuff could solve your problems. The easiest way is to save our time to get connecting on internet. Get the stuff at here:
Huawei E220 on Ubuntu, pclos 2007, pclos 2008, Linux Mint 4.0 Daryna and mandriva.
How to install??
Extract file
cd to the directory
make
make install
Thats all. This is built only for Pclinuxos and mandriva. Dont use my e220rc1 or he220rc2. This installer is final release for mandriva and pclinuxos. Its stable.
Huawei E220 Installer For Linux, Mint, Ubuntu, Mandriva, Pclinuxos, Opensuse, Fedora etc
<<less
Download (400kb)
Added: 2009-04-18 License: Freeware Price: Free
188 downloads
Rezlooks-candy 0.1

Rezlooks-candy 0.1


Rezlooks-candy is a colorful GTK theme made to use some of the new stuff in Rezlooks-0.5. more>>

Rezlooks-candy 0.1 is yet another excellent colourful theme made to use some of the new stuff in Rezlooks-0.5 for Gnome users. The colours were inspired (rather obviously) by lokheed's cobble theme.

Requirements:

  • Gnome
<<less
Added: 2008-05-04 License: GPL Price: FREE
10 downloads
Text::Template::Inline 0.13

Text::Template::Inline 0.13


Text::Template::Inline allows easy formatting of hierarchical data. more>>
Text::Template::Inline allows easy formatting of hierarchical data.

SYNOPSIS

# you can import any name you want instead of "render"
use Text::Template::Inline render;

# yields "Replace things and stuff."
render {
foo => things,
bar => stuff,
}, q ;

# yields "Three Two One Zero"
render [qw/ Zero One Two Three /], {3} {2} {1} {0};

# for a blessed $obj that has id and name accessors:
render $obj, {id} {name};

# a "fat comma" can be used as syntactic sugar:
render $obj => {id} {name};

# its also possible to traverse heirarchies of data,
# even of different types.
# the following yields "one two three"
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => {a.d} {b.e} {c.f.3};

# theres also an automatic unindent feature that
# lines up to the least-indented line in the template:
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => q{
{a.d}
{b.e}
{c.f.3}
};
# the above results in this:
one
two
three


<<less
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
libwnck 2.18.3 / 2.19.90

libwnck 2.18.3 / 2.19.90


libwnck is Window Navigator Construction Kit, i.e. a library to use for writing pagers and taskslists and stuff. more>>
libwnck is Window Navigator Construction Kit, i.e. a library to use for writing pagers and taskslists and stuff.
libwnck isnt supported in the devel platform, which means OS vendors wont guarantee the API/ABI long-term, but authors of open source apps should feel free to use libwnck as users can always recompile against a new version. (And the API/ABI has historically changed very little, Im not changing it gratuitously or without soname increments.)
There are API docs in the source code, and API documentation can be generated by configuring --enable-gtk-doc. Also tasklist.c and pager.c make good sample code.
Whats New in 2.18.3 Stable Release:
- Fix a crash when dragging a window to somewhere like another workspace/viewport (Vincent) [#420713]
- Fix crash on multihead setups (Vincent)
- Improve a bit the drawing of the workspaces in the pager (Vincent)
<<less
Download (0.62MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
802 downloads
unionfs-fuse 0.18

unionfs-fuse 0.18


unionfs-fuse is an effort to create a userland unionfs implementation. more>>
unionfs-fuse filesystem is an effort to create a userland unionfs implementation that is probably slower but way more flexible than the current kernel-only based unionfs solution.
Main features:
Why choose this stuff
- The filesystem has to be mounted after the roots are mounted when using the standard module. With unionfs-fuse, you can mount the roots later and their contents will appear seamlesly
- You get caching which speeds things up a lot for free
- You get nice stats (optional)
Why NOT choose it
- Compared to kernel-space solution we need lots of useless context switches which makes kernel-only solution clear speed-winner
Available parameters
- --roots=/root1,/root2
- --stats
Enhancements:
- This version feaatures read-only branches, copy-on-write, bugfixes, and more.
<<less
Download (0.004MB)
Added: 2007-08-10 License: BSD License Price:
805 downloads
Thread::Tie 0.12

Thread::Tie 0.12


Thread::Tie can tie variables into a thread of their own. more>>
Thread::Tie can tie variables into a thread of their own.

SYNOPSIS

use Thread::Tie; # use as early as possible for maximum memory savings

# use default thread + tieing + create thread when needed
tie $scalar, Thread::Tie;
tie @array, Thread::Tie;
tie %hash, Thread::Tie;
tie *HANDLE, Thread::Tie;

# use alternate implementation
tie $scalar, Thread::Tie,
{ module => Own::Tie::Implementation, # used automatically
use => Use::This::Module::Also, # optional, also as []
eval => arbitrary Perl code, # optional
};

# initialize right away
tie $scalar, Thread::Tie, {}, 10;
tie @array, Thread::Tie, {}, qw(a b c);
tie %hash, Thread::Tie, {}, (a => A, b => B, c => C);
tie *HANDLE, Thread::Tie, {},>:layer,filename;

# create an alternate thread and use that
my $tiethread = Thread::Tie::Thread->new;
tie $scalar, Thread::Tie, {thread => $tiethread};

# object methods
my $tied = tie stuff,Thread::Tie,parameters;
my $tied = tied( stuff );
my $semaphore = $tied->semaphore; # scalar for lock()ing tied variable
my $module = $tied->module; # module tied to in thread
my $tiethread = $tied->thread; # thread to which variable is tied

my $tid = $tiethread->tid; # thread id of tied thread
my $thread = $tiethread->thread; # actual "threads" thread

untie( stuff ); # calls DESTROY in thread, cleans up thoroughly

Thread::Tie->shutdown; # shut down default handling thread
$tiethread->shutdown; # shut down specific thread

<<less
Download (0.015MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
Open Blue Lab 2.1.6 (Financial/Accounting)

Open Blue Lab 2.1.6 (Financial/Accounting)


Open Blue Lab is an enterprise resource planning system. more>>
Open Blue Lab is an enterprise resource planning system.
Whatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Enhancements:
- Attributes are now private instead of public.
- All entities (classes, attributes, and methods) are documented, allowing HTML documentation generation.
- iReport reporting has been integrated for journal, ledger, balance, and statistics.
<<less
Download (0.057MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
821 downloads
Python-LDAP 2.3.1

Python-LDAP 2.3.1


Python-LDAP provides an object-oriented API to access LDAP directory servers from Python programs. more>>
Python-LDAP provides an object-oriented API to access LDAP directory servers from Python programs. Mainly it wraps the OpenLDAP 2.x libs for that purpose.

Additionally the package contains modules for other LDAP-related stuff (e.g. processing LDIF, LDAPURLs, LDAPv3 schema, etc.).

<<less
Download (0.073MB)
Added: 2007-07-25 License: Python License Price:
506 downloads
Public Fox 1.04

Public Fox 1.04


Public Fox cleans stuff after downloading. more>>
Public Fox cleans stuff after downloading.

Tired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.

Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.

<<less
Download (0.019MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
862 downloads
man-pages 2.63

man-pages 2.63


The manpages package contains a large collection of man pages for Linux covering programming APIs, file formats, protocols, etc. more>>
Linux documentation can be found in man pages, info files, HOWTOs and FAQs, and elsewhere. (For example, also the kernel Documentation directory contains a lot of good stuff.) A nice index for the man pages in Fedora Core 2 is found at the superman site.

Man pages belonging to programs are usually distributed together with those programs. Therefore, the Linux man-pages distribution mainly contains the pages for system calls and library routines, special devices, and file formats.

However, it also contains documentation for a number of programs, in cases where the authors or maintainers of the program do not distribute man pages themselves.
<<less
Download (2.4MB)
Added: 2007-07-23 License: Free To Use But Restricted Price:
824 downloads
Class::Classless 1.35

Class::Classless 1.35


Class::Classless is a Perl framework for classless OOP. more>>
Class::Classless is a Perl framework for classless OOP.

SYNOPSIS

use strict;
use Class::Classless;
my $ob1 = $Class::Classless::ROOT->clone;
$ob1->{NAME} = Ob1;
$ob1->{stuff} = 123;
$ob1->{Thing} = 789;

my $ob2 = $ob1->clone;
$ob2->{NAME} = Ob2;

printf "ob1 stuff: n", $ob1->{stuff};
printf "ob2 stuff: n", $ob2->{stuff};
printf "ob1 Thing: n", $ob1->{Thing};
printf "ob2 Thing: n", $ob2->{Thing};

$ob1->{METHODS}{zaz} = sub {
print "Zaz! on ", $_[0]{NAME}, "n";
};

$ob1->zaz;
$ob2->zaz;
$ob1->EXAMINE;
$ob2->EXAMINE;
This prints the following:
ob1 stuff: < 123 >
ob2 stuff: < 123 >
ob1 Thing: < 789 >
ob2 Thing: < >
Zaz! on Ob1
Zaz! on Ob2
< Class::Classless::X=HASH(0x200236f4) >
stuff, 123,
NAME, Ob1,
Thing, 789,
METHODS, { zaz, CODE(0x20068360) },
PARENTS, [ ROOT ],
< Class::Classless::X=HASH(0x2002cb48) >
stuff, 123,
NAME, Ob2,
METHODS, { },
PARENTS, [ Ob1 ],

In class-based OOP frameworks, methods are applicable to objects by virtue of objects belonging to classes that either provide those methods, or inherit them from classes that do.

In classless OOP frameworks (AKA delegation-and-prototypes frameworks), what methods an object is capable of is basically an attribute of that object. That is, in Perl terms: instead of methods being entries in the symbol table of the package/class the object belongs to, they are entries in a hash table inside the object. Inheritance is implemented not by having classes inheriting from other classes (via ISA lists), but by having objects inherit from other objects (via PARENTS lists).

In class-based OOP frameworks, you get new objects by calling constructors. In a classless framework, you get new objects by copying ("cloning") an existing object -- and the new clone becomes a child (inheritor) of the original object. (Where do you get the one original object? The language provides one, which has no parents, and which contains some general purpose methods like "clone".)

<<less
Download (0.023MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
eMeSeNe 0.2.2.1 / 030707

eMeSeNe 0.2.2.1 / 030707


eMeSeNe is a simple and nice looking MSN messenger clone. more>>
eMeSeNe is a simple and nice looking MSN messenger clone.

emesene is a python/gtk MSN messenger clone, it uses msnlib (MSNP8) and try to be a nice looking and simple MSN client.

You can login, send formated messages, smilies, use autoreply, change status, change nick and all the stuff you can do in a normal MSN client except, file transfers,custom emoticons and display picture (i hope someday will add that

<<less
Download (0.33MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
846 downloads
Lemuria 1.2.2

Lemuria 1.2.2


Lemuria is an OpenGL visualization for xmms and gmerlin-visualizer. more>>
Lemuria is an OpenGL visualization for xmms and gmerlin-visualizer. Lemuria features animated textures, several backgrounds, and a lot of fun stuff.

It integrates the Xaos fractal engine for making background textures, and can open the goom DLL.

<<less
Download (0.67MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
847 downloads
XRoar 0.19

XRoar 0.19


XRoar is an emulator for the Dragon 32, Dragon 64, and Tandy Coco2 computers all originally released in the early 80s. more>>
XRoar is an emulator for the Dragon 32, Dragon 64, and Tandy Coco2 computers all originally released in the early 80s.
The emulator runs under Unix-like OSes (using SDL for video and OSS for audio) and the GP32 handheld gaming device.
Enhancements:
- Fixed resizing and border alignment in OpenGL video module.
- Virtual floppy timings more accurate.
- JVC (".dsk") virtual disks supported.
- Preliminary CoCo disk support (some stuff works, NitrOS-9 doesnt).
- 6809-PIA interrupt interaction more accurate (fixes some games).
- Various command-line options added.
- CoCo can operate with or without Extended BASIC and Disk BASIC ROMs.
<<less
Download (0.10MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
856 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5