Main > Free Download Search >

Free praying each day software for linux

praying each day

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 731
Pay day Cash Loan 1.0

Pay day Cash Loan 1.0


Pay day Cash Loan toolbar for IE with useful gadgets including a quick launch To-do List, Daily Calorie Counter, Email Notifier, Weather and News Tick... more>> <<less
Download (1101KB)
Added: 2009-04-11 License: Freeware Price: Free
196 downloads
Array::Each::Tutorial 0.02

Array::Each::Tutorial 0.02


Array::Each::Tutorial - POD giving various examples how to use Array::Each. more>>
Array::Each::Tutorial - POD giving various examples how to use Array::Each.

SYNOPSIS

man Array::Each
man Array::Each::Tutorial

or

perldoc Array::Each
perldoc Array::Each::Tutorial

Overview

This tutorial contains only POD, so dont do this:

use Array::Each::Tutorial; # dont do this

Rather, simply read the POD (as you are doing). But first, please read the docs for Array::Each, because the whole scoop is there.

This tutorial is intended to augment those docs with examples showing situations where you might want to use Array::Each instead of other techniques.

EXAMPLES

Parallel Arrays vs. Using a Hash

First of all, use a hash. Its almost always the best solution if you want to associate a "key" with a "value". And there are modules available that will let you do wonderful things with hashes, like keeping the keys sorted or keeping them in the order they were added.

So given a hash, you might at some point want to do this:

my %h = ( a=>1, b=>2, c=>3, d=>4, e=>5 );
while( my( $k, $v ) = each %h ) {
# ... do something with $k and $v ...
}

On the other hand, if parallel arrays better implement your algorithm, then you may find you want to do something like this:

my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
for my $i ( 0 .. $#k ) {
my( $k, $v ) = ( $k[$i], $v[$i] );
# ... do something with $k and $v (and maybe $i) ...
}

Using Array::Each, you could do the same thing this way:

use Array::Each;
my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
my $obj = Array::Each->new( @k, @v );
while( my( $k, $v, $i ) = $obj->each ) {
# ... do something with $k and $v (and maybe $i) ...
}

If you dont need $i at all, you can leave it out, e.g.,

while( my( $k, $v ) = $obj->each ) {
# ... do something with $k and $v ...
}

If you have more than two parallel arrays, include them all in the call to new() and add as many "capture" variables as you need, e.g.,

my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
my @p = qw( - + ~ = : );
my $obj = Array::Each->new( @k, @v, @p );
while( my( $k, $v, $p, $i ) = $obj->each ) {
# ... do something with $k, $v, and $p (and maybe $i) ...
}

<<less
Download (0.020MB)
Added: 2007-07-14 License: Perl Artistic License Price:
832 downloads
gtrainer 0.0.2-1

gtrainer 0.0.2-1


gtrainer is a simple tool for manage sports trainings. more>>
gtrainer is a simple tool for manage sports trainings.
Program written in Gtkmm to manage sports trainings. It can store differents records about your daily training:
- Daily weight
- Characteristics of your exercise like: kilometers a day, hours a day, temperature, the route, etc.
- Specific training sessions: series, recoveries, heart rate, etc.
With the routes interface you can save your favourites routes as well. Find the largest route, or the hardest one easily.
You can save these records locally (sqlite3) or remotely (PostgreSQL, MySQL soon). You will know exactly how your training goes, with different kinds of charts and monthly reports, in order to improve your results or just as a curiosity.
<<less
Download (0.32MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
976 downloads
PMbyAS 3.1a

PMbyAS 3.1a


PMbyAS is an Italian Web-based management system for time and money spent on resources on a day by day basis. more>>
PMbyAS is an Italian Web-based management system for time and money spent on resources on a day by day basis.

PMbyAS project can reports on jobs that are currently in progress as well as jobs that fall between given dates.

A single job can refer to a customer order, an inner or external project, or any other activity of the company.
<<less
Download (MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
983 downloads
Rachota 2.1

Rachota 2.1


Rachota is a small application for those who work with computers on a daily basis and are curious how efficiently they use time. more>>
Rachota is a small application for those who work with computers on a daily basis and are curious how efficiently they use their time.

Rachota is basically a scheduler that measures how much time one spends on pre-defined tasks during the day. The data can be used later for evaluation or generation of reports, e.g. for managers.

<<less
Download (0.30MB)
Added: 2007-01-24 License: SUN Community Source License Price:
1006 downloads
Amarok Music Diary 0.3.4

Amarok Music Diary 0.3.4


Amarok Music Diary creates a SQLite3 Database with every song played a day. more>>
Amarok Music Diary creates a SQLite3 Database with every song played a day. It is possible to add a custom lyric to every database entry html-File export is provided. An example: http://www.sbox.tugraz.at/home/s/stifi/stifi_blog/

Usage:

The database is stored in ~/.kde/share/apps/amarok/scripts-data/amarok-diary.db
To add lyrics, use to Context Menu Entry
For viewing it, use sqlitebrowser http://sqlitebrowser.sourceforge.net
(To due a change in the sqlite data format you may need the CVS Version of the sqlitebrowser)

To export the database use the context menu entry. Per default only songs with the public flag set are exported. This option can be changed in the configuration file.

<<less
Download (0.090MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
964 downloads
triggers 0.41

triggers 0.41


trigger is a lightweight, asynchronous notification mechanism to set off events in and across systems. more>>
trigger is a lightweight, asynchronous notification mechanism to set off events in and across systems. The poor mans daily snapshot, glastree builds live backup trees, with branches for each day. Users directly browse the past to recover older documents or retrieve lost files. Hard links serve to compress out unchanged files, while modified ones are copied verbatim. A prune utility effects a constant, sliding window.

<<less
Download (0.014MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1198 downloads
ZengaiaSpace 0.2.1a

ZengaiaSpace 0.2.1a


Zengaia Space is a multiplayer game which can be played over a central Internet server. more>>
Zengaia Space project is a multiplayer game which can be played over a central Internet server.
In the game, you have to build ships, settle new planets, build new shipyards, fight your enemy, and conquer new planets and solar systems.
Enhancements:
- A large bug has been fixed that caused the MySQL connection to crash after about a day running the server.
- Now the server should be up 24/7 again.
<<less
Download (0.14MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1369 downloads
Agenda Displayer 1.4

Agenda Displayer 1.4


Agenda is a Web-based application that let you manage your appointments. more>>
Agenda is a Web-based application that let you manage your appointments.
It can display information by day, week, month, and year. Agenda Displayer supports official holidays.
Enhancements:
- This release added a world clock, an astrological calendar, a todo handler, a login system, a countdown function, support for generating iCal files with a .ics extension, a new way to handle your annual days off, sunrise and sunset times, and moon phase classes.
<<less
Download (0.18MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1270 downloads
Oangband 1.1.0

Oangband 1.1.0


Oangband is one of many variants of Angband, emphasising intuitive rules, varied gameplay, and extra coolness. more>>
Oangband project is one of many variants of Angband, emphasising intuitive rules, varied gameplay, and extra coolness.

This long-established variant (one of the older ones active) offers more individual and distinct classes and specializations, more intelligent and diverse monsters, and more subtle and interesting objects.

Depth of play is tremendous, with well-balanced ways to kill monsters that work from the moment you walk into the dungeon, to that dread day you face Morgoth, wielder of the Udun-Fire.
<<less
Download (1.4MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
963 downloads
Picture of the Day PHP Script 1.0

Picture of the Day PHP Script 1.0


Picture of the Day PHP Script shows daily changing pictures. more>>
Picture of the Day PHP Script shows daily changing pictures. Each Web page can contain several pictures. Each picture is taken in random order from its own set of directories. An unlimited number of images and directories may be used. Picture of the Day PHP Script doesnt use a database.
Main features:
- Can display several images per page
- Each image is taken from its own set of directories
- Image is randomly taken from directories
- Images are changed daily
- Unlimited number of images
- Unlimited number of directories
- Unlimited number of images per page
- Compatible with Unix and Windows
- Doesnt use database.
<<less
Download (0.013MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1294 downloads
GNOME Word of the Day 0.2.0

GNOME Word of the Day 0.2.0


GNOME Word of the Day is a GNOME applet that displays a new vocabulary word each day. more>>
GNOME Word of the Day is a GNOME applet that displays a new vocabulary word each day.

No one likes to be lost in a sea of unknown words. With GNOME Word of the Day Applet, your vocabulary will evince perennial growth. Its a must when preparing for the SAT or GRE tests and for improving both reading comprehension and writing precision.

GNOME word of the day sits in your notification area as a whole word or as a small icon. You can retrieve words from a selection of online sources.

<<less
Download (0.043MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1189 downloads
Zorgan 1.2

Zorgan 1.2


Zorgan is a Personal Informations Manager. more>>
Zorgan is a Personal Informations Manager (PIM) for Linux. It requires TclX 7.5 / TkX 4.1 or more.
Main features:
- Book: a collection of records, each record having one or more fields. Useful to manage a lot of data of the same kind.
- Todo list: a list of things to do with states completed, not completed and aborted.
- Task list: a list of tasks with date range when it should be done.
- Budget: make a sum of items with associated amounts.
- Notes: a place where to write any text.
- Planner: each hour, day and month may have notes. Presented day by day, one month at a time or a full year calendar.
-
- Useful and practical usages:
-
- Address book
- Rolodex
- Buy list
- Birthday indicators
- List of expenses
- And much more !
-
- All the informations may be exported in ASCII or HTML format in order to be viewed in any text editor, printed or even put on the web.
<<less
Download (0.05MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1639 downloads
Calorie Burning Calculator 2.1

Calorie Burning Calculator 2.1


Calorie Burning Calculator can calculate how many calories they require a day to maintain their body weight. more>>
Calorie Burning Calculator project is a free, nicely-formatted online calculator to help your web site visitors calculate how many calories they require a day to maintain their body weight, or basal metabolic rate (BMR).
Main features:
- Calorie Burning Calculator is easy to install, just unzip, upload and youre done!
- Simple interface makes it easy for visitors to use the calculator, and will encourage them to come back to use it again and again!
- Adjust the Calorie Burning Calculator to fit the look and feel of your own site.
- A great way to add some extra content to your health related web site.
- Calorie Burning Calculator is completely free!
<<less
Download (0.025MB)
Added: 2006-03-17 License: Freeware Price:
1317 downloads
MySpace Feed 1.01

MySpace Feed 1.01


MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace. more>>
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace (or Friendster) page.

MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
<<less
Download (0.072MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1146 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5