Main > Free Download Search >

Free organized living software for linux

organized living

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 503
songanizer 0.8

songanizer 0.8


Songanizer is a shell script to organize a directory containing a collection of MP3 files. more>>
Songanizer is a shell script to organize a directory containing a collection of MP3 files. The goal is to create virtual directory structures, which give different view of the data, but without having redundant copies of the files themselves.

The files are organized according to information gathered from the tags of files stored in subdirectories located under the base directory, which bear the prefix _data in their name. Parallel virtual directory structures containing symbolic links to the actual files are created, which give different views of the same data. Each virtual directory stucture gives a view based on a particular attribute specified by the user. The _data directories themselves can be symbolic links to directories on other devices, and can have multiple levels of sub-directories within them holding the actual song files.

After songanization, the BASE directory will contain the following directories:
(i) _data* --> All directories starting with _data contain the real data.
(ii) _artist --> Contains the link structure on the basis of the artist tag.
(iii) _genre --> Contains the link structure on the basis of the genre tag.
(iv) _initial --> Contains the link structure on the basis of the initial.
... and more, depending on the switches passed to the script

Since Songanizer is a shell script, a running shell is the first and foremost requirement. Preferably it should be a Bourne Again SHell. You may report problems encountered on any shell to the project maintainer.

Getopt (enhanced) is needed to extract the options from the command line arguments. Alongwith that you should have gettext for internationalization support.

The mp3info tool should be installed in the system to process the file tags. It can be downloaded from http://ibiblio.org/mp3info/.
<<less
Download (0.013MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
Organize Status Bar 0.5.2

Organize Status Bar 0.5.2


Organize Status Bar is an extension which allows you to organize your status bar icons. more>>
Organize Status Bar is an extension which allows you to organize your status bar icons.

This extension will enable you to organize your status bar icons. You can now rearrange or remove any item (icon or text) in the Firefox status bar.

If your status bar is full and cluttered like mine was, give this a try.

<<less
Download (0.031MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
939 downloads
Podgrid 0.5.1

Podgrid 0.5.1


Podgrid is your personal internet radio news receiver. more>>
Podgrid is a personal Internet radio news receiver for your living room.

It can download your favorite podcasts automatically to your entertainment PC and mix them into the music you are listening to. Podgrid comprises a plugin for XMMS.

Currently, XMMS on Linux is the only supported player. A Winamp/Windows version is in the works.
<<less
Download (0.37MB)
Added: 2005-09-02 License: GPL (GNU General Public License) Price:
1512 downloads
B*Gallery for Linux 3.2.1

B*Gallery for Linux 3.2.1


B*Gallery allows you to create living HTML-based web galleries. more>> B*Gallery allows you to create living HTML-based web galleries that can be updated, extended and shared with ease. Since organization and customization are central points, B*Gallery is your ideal long-term solution for publishing lots of photos.
B*Gallery comes with pre-configured themes that you can use to create galleries immediately. You can customize themes as much as youd like, varying colors, fonts, and other settings. Each theme offers a robust set of features, including a gallery index page, album slideshow, photo details page, and more. Advanced users have full access to the template files that make up a theme, and can fully integrate galleries into their web sites, matching their look and feel.
B*Gallery never requires you to start from scratch if you want to edit your albums or photos. Web pages can be easily regenerated at any time if you want to update the look and feel of your gallery. You can even resize every image in your gallery with only a couple clicks- you dont need to start over just because you decide you want smaller thumbnails, larger images, etc. Features like these make B*Gallery one of the most powerful web gallery software packages on the market today.
B*Gallery is currently available for Windows, Linux, and Mac OS X. Best of all, B*Gallery is free! No ads, no spyware, no spam, no nagging, and no strings attached. If you like B*Gallery and want to help out, please feel free to make a donation.13949712720901ForOSX
<<less
Download (8.42MB)
Added: 2009-04-21 License: Freeware Price: Free
185 downloads
Voltalinux 1.0

Voltalinux 1.0


Voltalinux is a GNU/Linux distribution based on Slackware Linux and the pkgsrc package system from NetBSD. more>>
Voltalinux is a GNU/Linux distro based on Slackware GNU/linux and the pkgsrc package system from NetBSD. The two pieces of software put together give you great power.
Great availability of software for a strong and solid distribution as Linux Slackware. The pkgsrc is already available to the linux user.
Now this project want to offer a prebuilt distribution with those feature readily available. Any user can enjoy the clean design of slackware with the availability of about 5400 ports (real ports) ready to be installed.
In minutes you can have running software such as postfix or courier, imap, qmail and so on.
The distro is a core based on about 60 packages from Slackware 10.2 and the pkgsrc 2005 Q3 (packaged for slack) system from NetBSD.
The advantage is that mantaining only few quantity of pieces it is possible to have a complete operating system (thanks to the existing work of many other, of course !!!)
The distribution is mainly intended for server use but you can do what you want.
Main features:
- is Slackware 100% compatible, whatever is done for slack work also on Voltalinux !!!
- you dont have to compile anything to have a working system (in about half an hour you have a base system)
- you have many prebuilt kernels
- more than 5400 ports ready to be used.
Version restrictions:
- you will have two packages system living together one for the core system (slack), the other for the applications (ports)
<<less
Download (260MB)
Added: 2006-06-10 License: GPL (GNU General Public License) Price:
1233 downloads
Game::Life 0.04

Game::Life 0.04


Game::Life - Plays Conways Game of Life. more>>
Game::Life - Plays Conways Game of Life.

SYNOPSIS

use Game::Life;
my $game = new Game::Life( 20 );
my $starting = [
[ 1, 1, 1 ],
[ 1, 0, 0 ],
[ 0, 1, 0 ]
];

$game->place_points( 10, 10, $starting );
for (1..20) {
my $grid = $game->get_grid();
foreach ( @$grid ) {
print map { $_ ? X : . } @$_;
print "n";
}
print "nn";
$game->process();
}

Conways Game of Life is a basic example of finding living patterns in rather basic rulesets (see NOTES). The Game of Life takes place on a 2-D rectangular grid, with each grid point being either alive or dead. If a living grid point has 2 or 3 neighbors within the surrounding 8 points, the point will remain alive in the next generation; any fewer or more will kill it. A dead grid point will become alive if there are exactly 3 living neighbors to it. With these simple rules, fascinating structures such as gliders that move across the grid, glider guns that generate these gliders, XOR gates, and others have been found.

This module simply provides a way to simulate the Game of Life in Perl.

In terms of coordinate systems as used in place_points, toggle_point and other functions, the first coodinate is the vertical direction, 0 being the top of the board, and the second is the horizontal direaction, 0 being the left side of the board. Thus, toggling the point of (3,2) will switch the state of the point in the 4th row and 3rd column.

The edges of the board are currently set as "flat"; cells on the edge do not have any neighbors, and thus will fall off the board. Future versions may allow for warp edges (if a cell moves off the left side it reappears on the right side).

<<less
Download (0.006MB)
Added: 2007-02-16 License: Perl Artistic License Price:
983 downloads
intel-wings Driver 0.2

intel-wings Driver 0.2


The intel-wings project is a Linux driver for the Intel Wireless Series of input devices. more>>
The intel-wings project is a Linux driver for the Intel Wireless Series of input devices.
Somehow, Intel managed to avoid using the USB Human Interface Device standards with their wireless gamepads.
All other USB gamepads work out-of-the-box: plug it in, and the computer knows that it has an X axis, a Y axis, and six buttons. Not Intel. Thats where intel-wings comes in.
Wireless Series?
Yes, youve seen them. Everyone hated them. The keyboards were of poor manufacturing, the mice eat batteries like theres no tomorrow, and the whole system was ridiculously expensive. They were killed off by Intel several years ago -- after hitting the shelves and getting a lukewarm reaction, manufacturing was stopped, and support was terminated 18 months after release.
All of these complaints are valid. On the other hand, when used infrequently, the mice last a few months, and work great on a glass coffee table in my living room. (A newer wireless optical mouse wouldnt work.)
The gamepads are actually pretty fun, in my opinion: you can have a whole bunch of them attached to one base station, which is great for playing old console games with friends. You can get a complete set of devices for $10 on eBay, and with Linux-based PVRs becoming increasingly common, I find my devices to be a great addition to my living room.
Note that I wouldnt recommend the mice to anyone that uses their computer on a regular basis, but its easier for navigating menus than a remote control. In my opinion, the Intel Wireless Series devices on Linux PVRs are the way to go.
Enhancements:
- Preliminary keyboard support was added.
- The Intel wireless keyboards are at least partially functional.
<<less
Download (0.008MB)
Added: 2005-10-24 License: GPL (GNU General Public License) Price:
1464 downloads
Fortune Osho 1.1

Fortune Osho 1.1


Fortune Osho project consists of quotes from the spiritual guru Osho. more>>
Fortune Osho project consists of quotes from the spiritual guru Osho.
Examples:
Awareness
Mind can never be intelligent - only no-mind is intelligent. Only no-mind is original and radical. Only no-mind is revolutionary - revolution in action.
This mind gives you a sort of stupor. Burdened by the memories of the past, burdened by the projections of the future, you go on living - at the minimum. You dont live at the maximum. Your flame remains very dim.
Once you start dropping thoughts, the dust that you have collected in the past, the flame arises - clean, clear, alive, young. Your whole life becomes a flame, and a flame without any smoke. That is what awareness is.

Enhancements:
- More cookies has been added. The count now reaches to 50.
<<less
Download (0.016MB)
Added: 2006-12-13 License: Freely Distributable Price:
1049 downloads
Prey Dedicated Server 1.2

Prey Dedicated Server 1.2


Prey tells the story of Tommy, a Cherokee garage mechanic stuck on a reservation going nowhere. more>>
Prey tells the story of Tommy, a Cherokee garage mechanic stuck on a reservation going nowhere. His life changes when an otherworldly crisis forces him to awaken spiritual powers from his long-forgotten birthright. Abducted along with his people to a menacing mothership orbiting Earth, he sets out to save himself and his girlfriend and eventually his planet.
Prey is serious, dark story, based on authentic Cherokee mythology. Themes of sacrifice, love and responsibility are explored and the story dives into emotional territory not yet explored by similar games. You will find nothing familiar with this game.
Overview
In Prey, gamers enter an unpredictable world where nothing can be taken for granted. Most of the game takes place within a living ship, a giant entity that can sense and react to Tommys presence.
Prey makes use of Josephs Campbells renowned story structure, "The Heros Journey," for guiding the main character arc. Campbells extensive work on mythological story progression was made famous when George Lucas used it for Luke Skywalkers story arc in the original Star Wars.
Main features:
- Built on an enhanced Doom 3 engine, the most impressive 3D engine used in a released game.
- Portal technology adds a new dimension to gameplay, allowing enemies to appear out of thin air and create new and completely original puzzles and gameplay styles.
- Several never-before-seen gameplay elements such as Spirit Walking, Wall Walking, and Deathwalk.
- Highly organic, living environment that itself can attack Tommy.
- A deep, emotional story of love and sacrifice.
- Tommy has a sidekick, a spiritual hawk that can help him fight enemies and decipher the alien language of the living ship.
- Multiplayer game support that takes advantage of the unique gameplay styles in Prey.
<<less
Download (25.1MB)
Added: 2007-01-15 License: Freeware Price:
1013 downloads
Subsonic 3.1

Subsonic 3.1


Subsonic is a Web-based media streamer. more>>
Subsonic is a free, web-based media streamer. Although primarily designed for MP3, it works for any audio or video format that can stream over HTTP (for instance WMA and OGG).
With Subsonic you have access to your entire music collection wherever you are. Use Subsonic application to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.
Subsonic is designed to handle very large music collections (many thousand albums). It uses a combination of directory structure and tag parsing to organize the music.
If you have constrained bandwidth, you may set an upper limit for the bitrate of the music streams. Subsonic will then automatically resample the music to a suitable bitrate. (Supported for MP3 only).
In addition to being a streaming media server, Subsonic works very well as a local jukebox. The intuitive web interface, as well as search and index facilities, are optimized for efficient browsing through large media libraries.
Subsonic is free software distributed under the LGPL open-source licence.
Main features:
- Supports MP3, OGG, AAC, WMA and any other music or video format that can be streamed over HTTP.
- Works with any network-enabled media player, such as Winamp, iTunes, XMMS, MusicMatch and Windows Media Player.
- Displays cover art, dynamically scaling it to fit nicely on the screen.
- Finds cover art and album info using Amazon Web Services.
- On-the-fly resampling to lower bitrates using the high-quality LAME encoder (MP3 only).
- Common playlist features (add, remove, rearrange, repeat, shuffle, undo).
- Playlists can be saved and restored. Both M3U and PLS formats are supported.
- Configurable index.
- Google-like search functionality.
- Automatic update of search index at specified intervals.
- Supports multiple simultaneous players. The playlist for any player can be managed from any location.
- Secure. Users must log in using a username and password.
- Lean web interface optimized for constrained bandwidth environments and efficient browsing through large music collections.
- WAP interface allows you to control Subsonic from any mobile phone or PDA.
- In addition to streaming, single files or entire directories may be downloaded from Subsonic.
- Files can be uploaded to Subsonic. Zip-files can be automatically unpacked.
- Implements the SHOUTcast protocol. Players which support this (including Winamp, iTunes and XMMS) will display the current artist and song name.
- Provides links to album reviews and more at allmusic.com.
- Supports internationalization. Currently, English and Norwegian translations are provided.
Enhancements:
- New: Optimized scanning of music folders. Dramatic improvement for network disks.
- Bugfix: Fixed minor concurrency bug in search index creation.
- Bugfix: Make cache work if clocks on remote disks are out of sync.
- Bugfix: Ensure that cover art images are ordered alphabetically.
- Bugfix: Remove nag message for licensed users.
<<less
Download (11MB)
Added: 2007-08-03 License: LGPL (GNU Lesser General Public License) Price:
841 downloads
Gantry 3.2.1

Gantry 3.2.1


Gantry is a robust Perl-based Web application framework for Apache/mod_perl, CGI, and Fast-CGI. more>>
Gantry is a robust Perl-based Web application framework for Apache/mod_perl, CGI, and Fast-CGI.
Object-oriented design allows for a pragmatic, modular approach to URL dispatching. Gantry project supports MVC and initiates rapid development, offering an organized coding scheme for Web applications.
Main features:
- Plugin architecture
- Supports mod_perl 1.3 and 2.0
- Supports CGI and Fast-CGI
- Supports Template Toolkit and the ability to plugin other templating systems
- Inherited framework code for a standard CRUD application.
- Calendaring support
- Cookie management
- Form generation and validation
- User authentication: user, group and page-based
- Class::DBI integration
- Database and SQL utilities
- AJAX Support
- TinyMCE Support
- Code generation with BigTop
<<less
Download (0.13MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1275 downloads
TOAD C++ GUI Library 0.64.1

TOAD C++ GUI Library 0.64.1


TOAD C++ GUI Library is a library for creating graphical user interfaces. more>>
TOAD C++ GUI Library aims to make GUI development being more fun.
The TOAD C++ GUI Library is a set of C++ classes for developing X Window applications. Since there are so many other GUI libraries around (the living ones: GTK+, Qt, LessTif, Motif, fltk, Xclasses, notif, OpenLook, wxWindows, Fox and the dead ones: SUIT, Andrew Toolkit, InterViews, Fresco, XForms, ET++, Common Point and many more) you may ask yourself why one should use the TOAD C++ GUI Library? Take a look at it and you will see the answer (or not ;) ).
The TOAD C++ GUI Library is free software under the terms of the GNU Lesser General Public License 2.1 (LGPL).
Main features:
- UTF-8 text encoding
- True Color and color dithering on 4 to 8 bit display depths
- Platform independent font specification via fontconfig (for both X11 and FreeType fonts)
- Pluggable Layout Managers
- 2D vector graphic editor and PostScript(TM) output
- Minimal HTML Viewer for Online Documentation
- ISO C++ Template based Signal & Slot alike callbacks with optional closures
- Model-View Architecture
- Decoupled Menubar
- Methods and the menubar/toolbar are connected automatically over the window hierarchy.
- Decoupled Undo Management
- Undo objects and undomangers/menubars are connected automatically over the window hierarchy.
- Runtime Layout Editor
- Layouts of dialogs, menubars, formlayouts, etc. can be configured at runtime.
- ATV based Object Serialisation
<<less
Download (1.0MB)
Added: 2007-07-04 License: LGPL (GNU Lesser General Public License) Price:
515 downloads
Salonify 0.82

Salonify 0.82


Salonify is a Perl script which displays images that you have organized in a directory hierarchy. more>>
Salonify is a Perl script which displays images that you have organized in a directory hierarchy.
The Web user can choose to see photos as thumbnails or in small, medium, or full-size format; rotate the images; modify the captions; move from folder to folder or image to image easily; and customize the layout.
The administrator can also take away any of these abilities from the user if they want. By default, the captioning is totally democratic (or wiki-like)--anyone visiting your site can change the captions. You can also lock this down.
Salonify generates nearly w3c-compliant HTML (getting closer all the time) and renders quite well in all tested browsers, including w3m-img, lynx, Mozilla, Opera, Netscape, Internet Explorer, etc..
It uses JavaScript when available but does not depend on it, and makes special allowances for bugs in certain browsers.
Enhancements:
- New feature to permit visitors to download entire album as a ZIP file. See the config file for the new options, salonify_generate_static_archive_file and salonify_generate_dynamic_archive_file. The "dynamic generate" is enabled by default, but if you want to limit disk space usage, youll need a script that runs occasionally to delete the ZIP files that are created.
- If this feature is enabled, a new "download album" button will appear above the thumbnail view.
- More error checking when loading modules--try to tell user what is missing.
- More error checking when using RCS to check out files--give user option to override RCS lock on make_salonify.
- Update documentation, in particular the USAGE file.
<<less
Download (0.036MB)
Added: 2005-09-16 License: GPL (GNU General Public License) Price:
1498 downloads
Monodiary 0.1

Monodiary 0.1


Monodiary project is a simple an effective way to work with an user diary. more>>
Monodiary project is a simple an effective way to work with an user diary.

Monodiary use xml to store the information, organized by dates, In the future,
implementing the NoteManagers interface methods, the information can be stored over other format or database, like mysql, postgresql, sqlite, ...

The apps configuration is stored using gconf.

<<less
Download (0.23MB)
Added: 2006-01-18 License: GPL (GNU General Public License) Price:
1376 downloads
PagingMon 0.1

PagingMon 0.1


PagingMon project is a Paging Activity Monitor. more>>
PagingMon project is a Paging Activity Monitor.
PagingMon project provides useful tools based on windows platform to monitor the page activity of the remote computer system in real time through UDP packages.
To use it, user needs configure the Linux site and the monitor site over Window platform. This user manual is organized by server and client site.
Our solution to the above problem consists of the following three functional modules:
- The (Linux) kernel plug-in, which records the paging activities;
- The tracing daemon, which send out the recorded paging activities; and
- The visualization tool, which normally sits in another box receiving the record and displaying it in real time.
We hope that our design would incur little interference to the operating system we are monitoring, such that the data we gain reflects the (nearly) real situation.
<<less
Download (5.0MB)
Added: 2007-07-17 License: BSD License Price:
830 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5