Main > Free Download Search >

Free dave ramsey software for linux

dave ramsey

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 124
Dave Gnukem 0.56

Dave Gnukem 0.56


Dave Gnukem is a 2D scrolling platform shooter. more>>
Dave Gnukem is a 2D scrolling platform shooter. It is inspired by and similar to Duke Nukem 1, one of my all-time favourite games. It currently runs on Windows, Linux and BeOS.

Although this is by no means a finished game, it is playable. You can walk, jump, shoot baddies, collect stuff, die, teleport, open doors, use lifts, open boxes etc. There is also a level editor.

I started writing this back in 1995 in my first year at university (actually it goes back longer than that, before that there was a pascal/assembly version), and work on it intermittently whenever I get time and inspiration.

It was originally a DOS-based 16 color EGA game; I then converted it to Linux/GGI, then I did a DirectX-based Windows port, and then I converted it to SDL. The code is a bit messy due to its colourful history, Im slowly trying to clean it up.

Let me know if you would like to help with this project; comments, code, graphics, sound and levels are all very welcome.

<<less
Download (2.5MB)
Added: 2005-09-23 License: GPL (GNU General Public License) Price:
1495 downloads
DarkFire IRC Daemon 1.3.9

DarkFire IRC Daemon 1.3.9


This is a modern and efficient IRCd for small and medium sized networks. more>>

DarkFire IRC Daemon 1.3.9 is specially designed for easy conversation. It is actually a modern and efficient IRCd for small and medium sized networks. This IRCd is designed for use primarily on the DarkFire IRC Network, but can be used freely elsewhere.

Enhancements:

  • Numeric 001 sends real host, not disguised host (fixes DCC issues)
  • Added fix for _res link errors (from bahamut)
  • ULine exempt from SVSMODE +Z (just in case)
  • Cleaned up command line interface, added help (ircd -h)
  • Fixed errors on failed ircd starts
  • Do not update counts (/lusers info) more than once every 2 seconds
  • Added an implementation of NICKIP for local clients only: currently applies to dvs kills, klines/akills, and channel bans
<<less
Added: 2005-10-08 License: GPL Price: FREE
1 downloads
OpenVerse 8.0.7

OpenVerse 8.0.7


OpenVerse is an open source graphical chat system written in TCL/Tk. more>>
OpenVerse is an open source graphical chat system written in TCL/Tk.

The program connects to any OpenVerse server (server and client code included).

OpenVerse is similar to other graphical chat systems like Excite Chat and Microsoft Chat with the main differences being that our OpenVerse is open source software, has no advertisements, and also runs on a variety of systems including Windows, Unix, Macintosh, and just about anything else for which you can find a copy of TCL/TK!

<<less
Download (0.31MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1137 downloads
Bible Dave 0.7.5

Bible Dave 0.7.5


Bible Dave is a crashed pilot, scattered Bibles and a deadline. more>>
Bible Dave is a crashed pilot, scattered Bibles and a deadline.

A sidescroller game written in python involving a crashed pilot, scattered Bibles and a deadline. This is a community project of ChristianCoders.com -- a site that connects people interested in Christian video games. Chat in #ccn-chatzone @ Freenode

<<less
Download (6.0MB)
Added: 2007-02-04 License: GPL (GNU General Public License) Price:
998 downloads
Params::Validate 0.88

Params::Validate 0.88


Params::Validate is a Perl module to validate method/function parameters. more>>
Params::Validate is a Perl module to validate method/function parameters.

SYNOPSIS

use Params::Validate qw(:all);

# takes named params (hash or hashref)
sub foo
{
validate( @_, { foo => 1, # mandatory
bar => 0, # optional
}
);
}

# takes positional params
sub bar
{
# first two are mandatory, third is optional
validate_pos( @_, 1, 1, 0 );
}


sub foo2
{
validate( @_,
{ foo =>
# specify a type
{ type => ARRAYREF },

bar =>
# specify an interface
{ can => [ print, flush, frobnicate ] },

baz =>
{ type => SCALAR, # a scalar ...
# ... that is a plain integer ...
regex => qr/^d+$/,
callbacks =>
{ # ... and smaller than 90
less than 90 => sub { shift() < 90 },
},
}
}
);
}

sub with_defaults
{
my %p = validate( @_, { foo => 1, # required
# $p{bar} will be 99 if bar is not
# given. bar is now optional.
bar => { default => 99 } } );
}

sub pos_with_defaults
{
my @p = validate_pos( @_, 1, { default => 99 } );
}

sub sets_options_on_call
{
my %p = validate_with
( params => @_,
spec => { foo => { type SCALAR, default => 2 } },
normalize_keys => sub { $_[0] =~ s/^-//; lc $_[0] },
);
}

The Params::Validate module allows you to validate method or function call parameters to an arbitrary level of specificity. At the simplest level, it is capable of validating the required parameters were given and that no unspecified additional parameters were passed in.

It is also capable of determining that a parameter is of a specific type, that it is an object of a certain class hierarchy, that it possesses certain methods, or applying validation callbacks to arguments.

<<less
Download (0.078MB)
Added: 2007-04-11 License: Perl Artistic License Price:
927 downloads
HTTP::DAV 0.31

HTTP::DAV 0.31


HTTP::DAV is a WebDAV client library for Perl5. more>>
HTTP::DAV is a WebDAV client library for Perl5.
SYNOPSIS
# DAV script that connects to a webserver, safely makes
# a new directory and uploads all html files in
# the /tmp directory.
use HTTP::DAV;
$d = new HTTP::DAV;
$url = "http://host.org:8080/dav/";
$d->credentials( -user=>"pcollins",-pass =>"mypass",
-url =>$url, -realm=>"DAV Realm" );
$d->open( -url=>"$url )
or die("Couldnt open $url: " .$d->message . "n");
# Make a null lock on newdir
$d->lock( -url => "$url/newdir", -timeout => "10m" )
or die "Wont put unless I can lock for 10 minutesn";
# Make a new directory
$d->mkcol( -url => "$url/newdir" )
or die "Couldnt make newdir at $urln";
# Upload multiple files to newdir.
if ( $d->put( -local => "/tmp/*.html", -url => $url ) ) {
print "successfully uploaded multiple files to $urln";
} else {
print "put failed: " . $d->message . "n";
}
$d->unlock( -url => $url );
Main features:
- Full RFC2518 method support. OPTIONS, TRACE, GET, HEAD, DELETE, PUT, COPY, MOVE, PROPFIND, PROPPATCH, LOCK, UNLOCK.
- A fully object-oriented API.
- Recursive GET and PUT for site backups and other scripted transfers.
- Transparent lock handling when performing LOCK/COPY/UNLOCK sequences.
- http and https support (https requires the Crypt::SSLeay library). See INSTALLATION.
- Basic AND Digest authentication support (Digest auth requires the MD5 library). See INSTALLATION.
- dave, a fully-functional ftp-style interface written on top of the HTTP::DAV API and bundled by default with the HTTP::DAV library. (If youve already installed HTTP::DAV, then dave will also have been installed (probably into /usr/local/bin). You can see its man page by typing "perldoc dave" or going to http://www.webdav.org/perldav/dave/.
- It is built on top of the popular LWP (Library for WWW access in Perl). This means that HTTP::DAV inherits proxy support, redirect handling, basic (and digest) authorization and many other HTTP operations. See LWP for more information.
- Popular server support. HTTP::DAV has been tested against the following servers: mod_dav, IIS5, Xythos webfile server and mydocsonline. The library is growing an impressive interoperability suite which also serves as useful "sample scripts". See "make test" and t/*.
<<less
Download (0.075MB)
Added: 2007-07-20 License: Perl Artistic License Price:
826 downloads
Scavenger 1.4.4

Scavenger 1.4.4


Scavenger project is a Lode Runner arcade game clone. more>>
Scavenger project is a Lode Runner arcade game clone.
Youve got to run around and collect objects while avoiding enemies. Some objects are buried and youve got to dig down to get at them.
Its an addictive game and some of the levels are devilishly (cruelly) complicated to solve.
The game runs under Linux/Xwindows. It comes with a level editor so you can make your own levels.
There is also a graphics/sprite editor built into the game to allow you to paint your own graphics.
Enhancements:
- Fix for if sound fork doesnt open successfully, it exits and doesnt bog down the cpu or something.
- Icon for if the program is minimized.
<<less
Download (0.18MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1137 downloads
Web diary 0.3.5

Web diary 0.3.5


Web Diary is a Web-based multi-user CGI diary applet. more>>
Web Diary is a Web-based multi-user CGI diary applet. It includes scripts for allowing users to make entries publicly viewable, easy administration, and user preference editing.

There are two changes to the database structure in this release and is very simple:

1. There is a new table (see diary.tbls), categories, and two pieces of information that needs to go in there. Nothing too complicated.
2. There needs to be one column added to, and one column removed from entries. You can accomplish this via something like:

alter table entries add entFCat int not null default 1
update entries set entFCat=2 where entFIsPublic=1
alter table entries drop entFIsPublic

Though, as usual, you might be wise to make a backup, though this is what I did, and didnt have a problem with it. What this does, in order, is 1) creates the new column, 2) preserves the public entries.
3) gets rid of the old column.

Other than that, I dont recall any signigicant changes that were made in
thi version that will affect the database.

<<less
Download (0.055MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1220 downloads
Renameit 0.0.2b

Renameit 0.0.2b


renameit is an MP3 filename standardizer. more>>
renameit is an MP3 filename standardizer. It formats your MP3 filenames based on the ID3 tag info, removes embedded spaces, and notifies you when an MP3 has no ID3 tag.

This is an example for usage:
Some Song from some album.mp3 with ID3 Artist of "Some Dudez" and ID3 Trackname of "Some Song" ends up beingSome_Song(Some_Dudez).mp3

./addtag FileToBeTagged.mp3
It will prompt you for artist and track name, add the tag, and then move
the file up to the mp3s directory, where you can run renameit on it.

./batchrenameit
It will get all the mp3 filenames in top directory, and call renameit for
each.

./edittag FileToBeEdited.mp3
Displays current ID3 tag and prompts for edit. After edit, calls
renameit.

./batchtag
Mass file tagger. Gets all mp3 filenames in need_id3 directory and calls
addtag for each.

./batchtagedit
It will get all the mp3 filenames in this directory tree, and call edittag
for each. Great for adjusting things like bands named Perl Jam..altho that
might be a kewl name for a band ;)

./makeindexfile
This builds index.html for all mp3 files in this directory tree. The
index will only show the mp3 files.
<<less
Download (0.003MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1218 downloads
MOSDEF 0.6

MOSDEF 0.6


MOSDEF is a next generation exploitation tool. more>>
MOSDEF project is a next generation exploitation tool. As a pure-Python C compiler, it offers advantages other techniques dont.

This is a pure python C compiler. It actually works, although lots of C features are not at all implemented. Basic things like arrays, function calls, arguments, while, if, and + should work.

I learned a lot of things the hard way while coding this.

Feel free to email the MOSDEF list on www.immunitysec.com if you have further questions.
<<less
Download (0.055MB)
Added: 2006-03-10 License: GPL (GNU General Public License) Price:
1324 downloads
SPIKE Proxy 1.4.8

SPIKE Proxy 1.4.8


Spike Proxy is an open source HTTP proxy for finding security flaws in web sites. more>>
Spike Proxy is an open source HTTP proxy for finding security flaws in web sites.

SPIKE Proxy is part of the Spike Application Testing Suite and supports automated SQL injection detection, web site crawling, login form brute forcing, overflow detection, and directory traversal detection.

To Use:

python spkproxy.py [ optional port argument, 8080 is default ]
Then set up your browser to use that port for both HTTP and
HTTPS proxies.

Then watch the traffic go!

<<less
Download (0.61MB)
Added: 2006-03-10 License: Freeware Price:
1341 downloads
Redland RDF library 1.0.6

Redland RDF library 1.0.6


Redland RDF library is an RDF (Resource Description Framework) library. more>>
Redland RDF library is a set of free software packages that provide support for the Resource Description Framework (RDF).
Main features:
- Modular, object based libraries written in C.
- APIs for manipulating the RDF graph, triples, URIs and Literals.
- Triple sequences for efficient streaming.
- Parsers and Serializers for reading and writing RDF as RDF/XML, N-Triples and Turtle Terse RDF Triple Language syntaxes via the Raptor RDF Parser Toolkit.
- Storage for graphs in memory, with Sleepycat/Berkeley DB, MySQL 3/4, AKT Triplestore, SQLite, files or URIs.
- Querying with RDQL and SPARQL using the Rasqal RDF Query Library.
- Redland contexts for managing data aggregation and recording provenance.
- Language Bindings in C#, Java, Obj-C, Perl, PHP, Python, Ruby and Tcl via the Redland Bindings package.
- Command line utility programs rdfproc (RDF), rapper (parsing) and roqet (query).
- Portable, fast and with no known memory leaks.
Enhancements:
- The code was updated to use Rasqal RDF query library 0.9.14 and Raptor RDF parser/serializer library 1.4.15.
- A new transaction API was added, implemented with MySQL for consistent changes to the graph.
- A new query results formatter class was added.
- Many other bugs were fixed.
<<less
Download (0.43MB)
Added: 2007-05-06 License: GPL (GNU General Public License) Price:
902 downloads
Infotrope ACAP Server 0.2.1

Infotrope ACAP Server 0.2.1


Infotrope ACAP Server provides an RFC2244-conformant ACAP server. more>>
Infotrope ACAP Server provides an RFC2244-conformant ACAP server.
The Infotrope ACAP Server is an implementation of RFC2244, complete with asynchronous notification of changes, stored search results, ACLs, and data inheritance, etc. It supports TLS and SASL encryption as well as the entire base standard, plus a few optional extensions.
ACAP allows applications to store configuration data in a way that is standard, fully interoperable, and easily managed by users, administrators, and technical support teams alike.
Infotropes key features include the ability to randomly crash the server without data loss, and backing up of data (even while its being written) without losing integrity.
Main features:
- Its got the finest grained ACLs available anywhere!
- Its got data inheritance, AKA stacking, for all your configuration management and prepopulation needs!
- Itll do personal addressbooks, bookmarks, and all in client-independent ways!
- Its got notifications with filters, and schemaless searching!
- Fully namespaced, so no chance of clients clobbering each other!
- Yes, welcome to the power and technology of, erm, 1997.
<<less
Download (0.19MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
966 downloads
Podget 0.5.8

Podget 0.5.8


Podget is a Bash script to automate the downloading Podcast audio content from RSS feeds. more>>
Podget is a project that can automate the downloading Podcast audio content from RSS feeds (such as those listed at Ipodder.org), storing it in categories & folders, and automatically creating a playlist for new content.
Enhancements:
- A filename format issue with the BBC World News Bulletin was fixed.
- Downloaded files named filename.mp3?123456 and now converted to filename123456.mp3.
- Support for creating ASX playlists for Windows Media Player was added.
<<less
Download (0.008MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1016 downloads
eXtace 1.9.6

eXtace 1.9.6


eXtace is a Audio Visualization plugin for the X-Window System. more>>
eXtace is a Audio Visualization plugin for the X-Window System.
eXtace project connects to ESD (Enlightened Sound Daemon) and displays the audio data as either a pseudo 3D flying landscape, pseudo 3D pointed landscape, 16-256 channel graphic EQ, multi-mode Oscilloscopes, Horizontal Spectrogram, or a combination Hi-res FFT with a Vertical Spectrogram.
All modes are fully scalable to nearly ANY resolution! (within your CPU/X11 capabilites) Resolutions up to 1600x1200 at 40 FPS use typially less than 30% CPU, depending on your host CPU/X11 capabilities.
Enhancements:
- Fixed problem with dragging of traces.
- Added new line EQ mode., removed old code cruft.
<<less
Download (0.42MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1056 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5