stuffed belly
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 490
Media Database 0.1
Media Database is a media database that uses PHP for the GUI and MySQL for data storage. more>>
Media Database is a media database that uses PHP for the GUI and MySQL for data storage.
It has movie, series, and anime listings. Media Database has lending and wishlist capabilities.
Installation:
Unpack mediadb-*.tar.gz to www dir or public_html dir.
Edit config.php, change mysql_user_name, mysql_password and mysql_server_host to match your MySQL database username, password and host.
run url: http://url_to_mediadatabase/install_mediadb.php, and follow the link and log in as admin and make default yourself a user.
*******************************************************************
****** Dont use the admin user for adding films and stuff. ******
*******************************************************************
If there are any problems, please send a short description of where it occurs and the error message to my email addres: marco (at) cakebox (dot) net, marc the topic with [mediadb]: (something you find fitting)
<<lessIt has movie, series, and anime listings. Media Database has lending and wishlist capabilities.
Installation:
Unpack mediadb-*.tar.gz to www dir or public_html dir.
Edit config.php, change mysql_user_name, mysql_password and mysql_server_host to match your MySQL database username, password and host.
run url: http://url_to_mediadatabase/install_mediadb.php, and follow the link and log in as admin and make default yourself a user.
*******************************************************************
****** Dont use the admin user for adding films and stuff. ******
*******************************************************************
If there are any problems, please send a short description of where it occurs and the error message to my email addres: marco (at) cakebox (dot) net, marc the topic with [mediadb]: (something you find fitting)
Download (0.025MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1213 downloads
Tubesock 0.2
Tubesock is a GTK/GNOME Shockwave player. more>>
Tubesock is a GTK/GNOME swf player released under the GPL. Currently the code right now is parsing SWF files, and can dump the contents, and can display some stuff.
Tubesock is written 100% in c, and depends on glib2 and gtk2.
Installation
./configure
make
cd src/tubesock
./tubesock PATH_TO_SWF_FILE.swf
<<lessTubesock is written 100% in c, and depends on glib2 and gtk2.
Installation
./configure
make
cd src/tubesock
./tubesock PATH_TO_SWF_FILE.swf
Download (0.18MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1676 downloads
SoftwareUpdate 1.10
SoftwareUpdate is a Java class that assists with adding an automatic software-update feature to applications. more>>
SoftwareUpdate is a Java class that assists with adding an automatic software-update feature to applications.
It doesnt perform the update, but takes care of administrative stuff like looking up the version number of the latest version, with the ability to distinguish and check different places based on operating system.
SoftwareUpdate also builds the OS-specific URLs to make it easy to do a quick latest-version check in any desktop or server application.
<<lessIt doesnt perform the update, but takes care of administrative stuff like looking up the version number of the latest version, with the ability to distinguish and check different places based on operating system.
SoftwareUpdate also builds the OS-specific URLs to make it easy to do a quick latest-version check in any desktop or server application.
Download (0.051MB)
Added: 2006-07-13 License: Other/Proprietary License Price:
1198 downloads
Autofs CD Changer 3.1.3
Autofs CD Changer is a patch for autofs. more>>
Autofs CD Changer is a patch for autofs. It automatically changes the slots and remounts cds as needed giving the impression that they are all simultaneously mounted. Its not for much use if you use multisession stuff, but works fine for mp3 lists that span many cds.
<<less Download (0.008MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1185 downloads
JuggleMaster 0.4
JuggleMaster project is a juggling siteswap animator. more>>
JuggleMaster project is a juggling siteswap animator.
JuggleMaster is a cross-platform juggling animator [understanding siteswap].
Anyone who doesnt know what siteswap is can still download it and look at the patterns that come with it, and examine the cool stuff they could do if they did understand it.
Enhancements:
- all: Makefile voodoo
- jmqt: initial add
- jmlib: Added patterns.h and patterns.cpp, which parse pattern files
- data: Added some style data for completeness
- jmdlx: Added printing mpegs. Thanks to luap for the color stuff.
- jmdlx: Added printing images
- jmdlx: HUGE list of fixes and changes from arkanes in #wxwidgets
- jmdlx: Added Visual Studio build stuff, also arkanes
- jmpocket: initial add
- jmlib: minor jmpocket compatability fixes
<<lessJuggleMaster is a cross-platform juggling animator [understanding siteswap].
Anyone who doesnt know what siteswap is can still download it and look at the patterns that come with it, and examine the cool stuff they could do if they did understand it.
Enhancements:
- all: Makefile voodoo
- jmqt: initial add
- jmlib: Added patterns.h and patterns.cpp, which parse pattern files
- data: Added some style data for completeness
- jmdlx: Added printing mpegs. Thanks to luap for the color stuff.
- jmdlx: Added printing images
- jmdlx: HUGE list of fixes and changes from arkanes in #wxwidgets
- jmdlx: Added Visual Studio build stuff, also arkanes
- jmpocket: initial add
- jmlib: minor jmpocket compatability fixes
Download (0.13MB)
Added: 2006-11-20 License: GPL (GNU General Public License) Price:
1070 downloads
Contenido 4.6.15
Contenido is an open source Web Content Management System. more>>
Contenido is a CMS (content management system) for the Web environment.
Contenido features advanced user management, in-site editing, a WYSIWYG editor, and more.
This is the bundled PEAR for Contenido. The reason why we bundled PEAR is that we are going to move parts of Contenido to PEAR, but we dont want to "loose" users of older PHP versions and/or people which providers dont allow PEAR stuff.
<<lessContenido features advanced user management, in-site editing, a WYSIWYG editor, and more.
This is the bundled PEAR for Contenido. The reason why we bundled PEAR is that we are going to move parts of Contenido to PEAR, but we dont want to "loose" users of older PHP versions and/or people which providers dont allow PEAR stuff.
Download (4.4MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1005 downloads
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
<<lessSYNOPSIS
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
Download (0.015MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
RefDbg 1.2
RefDbg is a GObject reference count debugger. more>>
RefDbg project is a GObject reference count debugger GObject is part of the glib library (not to be confused with glibc) which forms the basis of GTK+ (the Gimp ToolKit), Gnome, GStreamer and many other projects. The GObject library adds object oriented stuff to C which by itself lacks object oriented features.
Since C lacks garbage collection, a reference counting system is used. Each object has a count of how many other references (pointers) there are to it. Reference count bugs can be very hard to track down and can lead to crashes and memory leaks. Refdbg is a tool that can be used interactively with GDB to log, display and break on reference count activity, thereby making this task easier.
<<lessSince C lacks garbage collection, a reference counting system is used. Each object has a count of how many other references (pointers) there are to it. Reference count bugs can be very hard to track down and can lead to crashes and memory leaks. Refdbg is a tool that can be used interactively with GDB to log, display and break on reference count activity, thereby making this task easier.
Download (0.33MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1173 downloads
Sakuraplayer 2.1.7
Sakuraplayer is a Qt/KDE-based frontend for the command-line TFMX-player. more>>
You want to play those good old Amiga TFMX songs under Linux with a nice KDE3-based GUI? No problem!
This program is almost complete, with the exception of i18n (translation). I probaly wont have time to do the i18n stuff, so any help is appreciated.
Quick-and-dirty installation guide:
First, make sure KDEDIR points to your KDE3-directory (e.g.
"/opt/kde3") and QTDIR points to your Qt3.x.x-directory
(e.g. "/usr/lib/qt3"), then run
"./configure --prefix=$KDEDIR"
Start the program from KDE3 by selecting "Sakuraplayer" from the "Multimedia" submenu.
Each time you upgrade to a newer version, the splash-screen will reappear once. Click on it or wait for ten seconds...
<<lessThis program is almost complete, with the exception of i18n (translation). I probaly wont have time to do the i18n stuff, so any help is appreciated.
Quick-and-dirty installation guide:
First, make sure KDEDIR points to your KDE3-directory (e.g.
"/opt/kde3") and QTDIR points to your Qt3.x.x-directory
(e.g. "/usr/lib/qt3"), then run
"./configure --prefix=$KDEDIR"
Start the program from KDE3 by selecting "Sakuraplayer" from the "Multimedia" submenu.
Each time you upgrade to a newer version, the splash-screen will reappear once. Click on it or wait for ten seconds...
Download (1.1MB)
Added: 2005-09-12 License: GPL (GNU General Public License) Price:
1503 downloads
yaGTD 0.1.5
yaGTD is a very simple utility designed to make the management of your to-do list quick and easy. more>>
What I wanted was something lightweight and flexible, a simple way to carry and maintain my tasks around on a USB stick.
The program needed to be capable of running on different platforms and must not depend on any data format or any web connection.
yaGTD incorporates major features from Allens Getting Things Done philosophy and notion of urgency and importance preached by Stephen Covey (cf Seven Habits of Highly Effective People book).
To resume, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.
The project is released under the GPL so anyone can try it and make their own modifications.
<<lessThe program needed to be capable of running on different platforms and must not depend on any data format or any web connection.
yaGTD incorporates major features from Allens Getting Things Done philosophy and notion of urgency and importance preached by Stephen Covey (cf Seven Habits of Highly Effective People book).
To resume, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.
The project is released under the GPL so anyone can try it and make their own modifications.
Download (0.026MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1036 downloads
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
<<lessSYNOPSIS
# 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
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
Deepest Sender 0.8.0
Deepest Sender is a client that will allow you to post to blogs from directly within Firefox. more>>
Deepest Sender is a client that will allow you to post to blogs from directly within Firefox. The project is primarily a LiveJournal client, although it supports Blogger (GData) and WordPress (metaWeblog) too, with support for more stuff to come.
Note that the actual Deepest Sender website will always have the most up to date version.
If DS wont load for you in Firefox 2, and youre using a non-US English version (ie. British English or whatever), you will need to download a spellcheck dictionary in order for it to work. Non US English builds dont come with dictionaries.
If DS keeps loading in Russian and youre running SeaMonkey, check the LiveJournal group, it has a guide to solving the problem.
<<lessNote that the actual Deepest Sender website will always have the most up to date version.
If DS wont load for you in Firefox 2, and youre using a non-US English version (ie. British English or whatever), you will need to download a spellcheck dictionary in order for it to work. Non US English builds dont come with dictionaries.
If DS keeps loading in Russian and youre running SeaMonkey, check the LiveJournal group, it has a guide to solving the problem.
Download (0.30MB)
Added: 2007-05-08 License: MPL (Mozilla Public License) Price:
917 downloads
X-pired 1.22
X-pired is an action-puzzle game. more>>
X-pired is an action-puzzle game written in C using SDL, SDL_mixer, SDL_image and SDL_gfx libraries distributed under the terms of GNU GPL.
The goal of the game in each level is to reach the exit square, avoiding exploding barrels and other deadly stuff...
Enhancements:
- Some loading bugs fixed.
- Rare and strange cycling bug fixed(?).
- X-pir-Ed-It supports some command line opts, fullscreen mode (but it sucks under Win) and "save as" feature now.
<<lessThe goal of the game in each level is to reach the exit square, avoiding exploding barrels and other deadly stuff...
Enhancements:
- Some loading bugs fixed.
- Rare and strange cycling bug fixed(?).
- X-pir-Ed-It supports some command line opts, fullscreen mode (but it sucks under Win) and "save as" feature now.
Download (2.1MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1535 downloads
Linux Multimedia System 0.1.2
LMMS is a window manager written in Python/Pygame. more>>
LMMS is a project trying to create a gui for TV that can be used with a gamepad/joystick. In future there shall be various applications for playing audiofiles (Ogg-Vorbis, MP3, WMA, CD etc) and videofiles (DivX, MPEG, DVD, TV etc). Games and other stuff (recording TV etc) are planed too.
For now the whole project is written in python/pygame and there are some applications available:
Menu - for choosing another application
Image-Viewer - as the name says, it will allow you to watch some images
CD-Player - for playing Audio-CDs
Audio-Player - with support for Ogg and MP3
Actually the following gamepads/joysticks are supported:
Gravis Gamepad Pro
Microsofts X-Box pad
Nintendos SNES pad
<<lessFor now the whole project is written in python/pygame and there are some applications available:
Menu - for choosing another application
Image-Viewer - as the name says, it will allow you to watch some images
CD-Player - for playing Audio-CDs
Audio-Player - with support for Ogg and MP3
Actually the following gamepads/joysticks are supported:
Gravis Gamepad Pro
Microsofts X-Box pad
Nintendos SNES pad
Download (3.1MB)
Added: 2005-11-15 License: GPL (GNU General Public License) Price:
1439 downloads
THC-Probe 4.1
THC-Probe is the ultimate host scanner compilation for Linux, featuring nmap, snmpscan, netbios auditing tool. more>>
THC-Probe is the ultimate host scanner compilation for Linux, featuring nmap, snmpscan, netbios auditing tool and super-cool vh shell script.
INSTALL: just run "make install". Everything will be installed in /usr/local
RUN: just run "netprobe" and see the options.
Every host scanned will be saved as a "host.bla.com.probe" file in your current directory.
It does many stuff like snmp guessing, samba pw guessing and information gathering.
Nothing great and big, but it suits my needs.
<<lessINSTALL: just run "make install". Everything will be installed in /usr/local
RUN: just run "netprobe" and see the options.
Every host scanned will be saved as a "host.bla.com.probe" file in your current directory.
It does many stuff like snmp guessing, samba pw guessing and information gathering.
Nothing great and big, but it suits my needs.
Download (0.64MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1333 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above stuffed belly 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