namaz prayer
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8
Eprayer Beta 8.1
Eprayer is a prayer request script that is easy to install and customize. more>>
Eprayer is a prayer request script that is easy to install and customize. It requires a MySQL database, but also creates a flat file for exporting into Excel.
Main features:
- Easy to customize
- Sends to multiple recipients
- Sends reply email to requester
- Valid XHTML and CSS
- Records information to a MySQL database as well as a flatfile for excel exporting
- Requires confirmation before sending
- Checks for errors
- Displays random requests on prayer request page
- Ability to set banned email addresses and banned words
- Released under GPL
- Free support via message boards
<<lessMain features:
- Easy to customize
- Sends to multiple recipients
- Sends reply email to requester
- Valid XHTML and CSS
- Records information to a MySQL database as well as a flatfile for excel exporting
- Requires confirmation before sending
- Checks for errors
- Displays random requests on prayer request page
- Ability to set banned email addresses and banned words
- Released under GPL
- Free support via message boards
Download (0.015MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
961 downloads
Religion::Islam::PrayerTimes 1.02
Religion::Islam::PrayerTimes is a Perl module that calculates Muslim Prayers Times and Sunrise. more>>
Religion::Islam::PrayerTimes is a Perl module that calculates Muslim Prayers Times and Sunrise.
SYNOPSIS
use Religion::Islam::PrayerTimes;
#create new object with default options
my $prayer = Religion::Islam::PrayerTimes->new();
#Juristic Methods:
# 1 = Standard (Imams Shafii, Hanbali, and Maliki),
#2 = Hanafi
#The difference is in the Aser time only
$prayer->JuristicMethod(1);
# Calculation Method
#1: Umm Al-Qura Committee
#2: Muslim World League
#3: Egyptian General Authority of Survey
#4: University Of Islamic Sciences, Karachi
#5: ISNA, Islamic Society of North America
$prayer->CalculationMethod(3);
# Q. What is daylight saving? Ans. Many countries try to adopt their work time by subtracting
# from their clocks one hour in the Fall and Winter seasons.
$prayer->DaylightSaving(1);
#print "DaylightSaving: ". $prayer->DaylightSaving() ."n";
# set the location to clculate prayer times for.
# for Cairo, Egypt:
# http://heavens-above.com/countries.asp
$prayer->PrayerLocation(
Latitude => 30.050,
Longitude => 31.250,
Altitude => 24,
TimeZone => 2
);
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
$mon++; $year += 1900;
#Adjust the Gregorian Dates by making sure that the month lengths
#are correct if not so take the extra days to next month or year.
my ($yg0, $mg0, $dg0) = $prayer->GDateAjust($year, $mon, $mday);
# Now calculate the prayer times. Times returns in hours decimal format
#%result = $prayer->PrayerTimes($year, $mon, $mday);
%result = $prayer->PrayerTimes($yg0, $mg0, $dg0);
#print "Fajr: " . $result{Fajr} . "n";
#print "Sunrise: " . $result{Sunrise} . "n";
#print "Zohar: " . $result{Zohar} . "n";
#print "Aser: " . $result{Aser} . "n";
#print "Maghrib: " . $result{Maghrib} . "n";
#print "Isha: " . $result{Isha} . "n";
#print "Fajir Rabita: " . $result{FajirRabita} . "n"; #Fajer using exact Rabita method for places >48
#print "Isha Rabita: " . $result{IshaRabita} . "n"; #Ash using exact Rabita method for places >48
#print "Eid Prayer Time: " . $result{Eid} . "n"; #Eid Prayer Time
#print "n";
# set time mode for 12 or 24 hour for FormatTime function.
$prayer->TimeMode(1);
#print time formated
#print "TimeMode: " . $prayer->TimeMode() ."n";
my ($h, $m, $ap);
($h, $m, $ap) = $prayer->FormatTime($result{Fajr});
print "Fajr: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Sunrise});
print "Sunrise: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Zohar});
print "Zohar: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Aser});
print "Aser: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Maghrib});
print "Maghrib: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Isha});
print "Isha: $h:$m $apn";
#($h, $m, $ap) = $prayer->FormatTime($result{FajirRabita});
#print "Fajir Rabita: $h:$m $apn"; #Fajer using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{IshaRabita});
#print "Isha Rabita: $h:$m $apn"; #Ash using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{Eid});
#print "Eid Prayer Time: $h:$m $apn"; #Eid Prayer Time
<<lessSYNOPSIS
use Religion::Islam::PrayerTimes;
#create new object with default options
my $prayer = Religion::Islam::PrayerTimes->new();
#Juristic Methods:
# 1 = Standard (Imams Shafii, Hanbali, and Maliki),
#2 = Hanafi
#The difference is in the Aser time only
$prayer->JuristicMethod(1);
# Calculation Method
#1: Umm Al-Qura Committee
#2: Muslim World League
#3: Egyptian General Authority of Survey
#4: University Of Islamic Sciences, Karachi
#5: ISNA, Islamic Society of North America
$prayer->CalculationMethod(3);
# Q. What is daylight saving? Ans. Many countries try to adopt their work time by subtracting
# from their clocks one hour in the Fall and Winter seasons.
$prayer->DaylightSaving(1);
#print "DaylightSaving: ". $prayer->DaylightSaving() ."n";
# set the location to clculate prayer times for.
# for Cairo, Egypt:
# http://heavens-above.com/countries.asp
$prayer->PrayerLocation(
Latitude => 30.050,
Longitude => 31.250,
Altitude => 24,
TimeZone => 2
);
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
$mon++; $year += 1900;
#Adjust the Gregorian Dates by making sure that the month lengths
#are correct if not so take the extra days to next month or year.
my ($yg0, $mg0, $dg0) = $prayer->GDateAjust($year, $mon, $mday);
# Now calculate the prayer times. Times returns in hours decimal format
#%result = $prayer->PrayerTimes($year, $mon, $mday);
%result = $prayer->PrayerTimes($yg0, $mg0, $dg0);
#print "Fajr: " . $result{Fajr} . "n";
#print "Sunrise: " . $result{Sunrise} . "n";
#print "Zohar: " . $result{Zohar} . "n";
#print "Aser: " . $result{Aser} . "n";
#print "Maghrib: " . $result{Maghrib} . "n";
#print "Isha: " . $result{Isha} . "n";
#print "Fajir Rabita: " . $result{FajirRabita} . "n"; #Fajer using exact Rabita method for places >48
#print "Isha Rabita: " . $result{IshaRabita} . "n"; #Ash using exact Rabita method for places >48
#print "Eid Prayer Time: " . $result{Eid} . "n"; #Eid Prayer Time
#print "n";
# set time mode for 12 or 24 hour for FormatTime function.
$prayer->TimeMode(1);
#print time formated
#print "TimeMode: " . $prayer->TimeMode() ."n";
my ($h, $m, $ap);
($h, $m, $ap) = $prayer->FormatTime($result{Fajr});
print "Fajr: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Sunrise});
print "Sunrise: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Zohar});
print "Zohar: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Aser});
print "Aser: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Maghrib});
print "Maghrib: $h:$m $apn";
($h, $m, $ap) = $prayer->FormatTime($result{Isha});
print "Isha: $h:$m $apn";
#($h, $m, $ap) = $prayer->FormatTime($result{FajirRabita});
#print "Fajir Rabita: $h:$m $apn"; #Fajer using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{IshaRabita});
#print "Isha Rabita: $h:$m $apn"; #Ash using exact Rabita method for places >48
#($h, $m, $ap) = $prayer->FormatTime($result{Eid});
#print "Eid Prayer Time: $h:$m $apn"; #Eid Prayer Time
Download (0.015MB)
Added: 2007-05-24 License: Perl Artistic License Price:
893 downloads
PrayerWall 60912-2115
This script is great for churches: put a prayer wall up on your web site. more>> This script is free for a limited time.Does your church web site have a way for people to post prayer requests? If not, this script may be a nice enhancement.With the integrated RSS feed, people can subscribe using their RSS reader and always have the latest prayer requests available.Be alerted everytime there is a new request. Even allow the whole church to subscribe to requests (using a group, such as Yahoo groups). When there are new requests, the group gets an email and the RSS feed is automatically updated.Theres a sample script running in the test area, so give it a try. Login as admin/password to view the adminsration area.<<less
Download (10KB)
Added: 2009-04-05 License: Freeware Price: Free
201 downloads
Zmanim 1.1.1
Zmanim is a software package that computes zmanim. more>>
Zmanim project can computes zmanim, the times (according to Jewish law) by which an observant Jew must complete specific prayers.
The default branch is a console version for Linux, and the QT branch is a GUI version for Linux using the QT GUI libraries.
Enhancements:
- The sunrise and sunset were normalized correctly so that 24 hours dont get added to the results, while still being in GMT with the appropriate day in it.
- This fixes issues with DST starting a day earlier in March than it should under Bushs energy bill.
- putenv() is used instead of setenv() to let this compile on Solaris (and probably other Unix systems as well).
- The use of the Hebrew word "Netz" was corrected to "HaNetz".
<<lessThe default branch is a console version for Linux, and the QT branch is a GUI version for Linux using the QT GUI libraries.
Enhancements:
- The sunrise and sunset were normalized correctly so that 24 hours dont get added to the results, while still being in GMT with the appropriate day in it.
- This fixes issues with DST starting a day earlier in March than it should under Bushs energy bill.
- putenv() is used instead of setenv() to let this compile on Solaris (and probably other Unix systems as well).
- The use of the Hebrew word "Netz" was corrected to "HaNetz".
Download (0.076MB)
Added: 2006-08-27 License: GPL (GNU General Public License) Price:
1163 downloads
Salat Book 1.00
Salat Book gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. more>>
Salat Book 1.00 gives you the wonderful choice of a Salat / Namaz prayer database and tracking application. It is using month calendars, salat completion datagrid, statistics and graphs and is specially useful for Kaza (missed Salat) prayers.
Enhancements:
- Statistics filter & Graphs flter now changed to single Date Filter.
- Date Filter now enabled for Pie Charts & Bar Chart.
- Removal of Error Statistics debugging pop-ups with grand total stats.
- Graphs Bar Chart legend moved to top left.
- Application window & components resized & compacted for better visibility on
- lower resolution screens.
- Prayer Tab Salat selection button highlighting added.
- Prayer Tab Month datagrid...absent salah colour changed from light red/pink
- red to a darker red.
- Options Tab Backup function now enabled.
- Options Tab Restore function now enabled.
- Options Tab Error removal on Edit/Save function, corrupting data files.
- Application data files integrity check & repair code added during startup.
Requirements:
- Adobe AIR
Added: 2009-06-29 License: Freeware Price: FREE
1 downloads
Salvation Focus 0.99
Salvation Focus is a web application that allows you to focus your prayer on individuals who have not yet come to know Jesus. more>>
Salvation Focus project is a web application that allows you to focus your prayer on individuals who have not yet come to know Jesus Christ as Lord and Saviour.
The intent is to cycle through a list of prebelievers, as we like to call them, and pray for each one for as long as you feel led to pray.
Salvation Focus makes administration simple and allows you to keep track of the information of the people who submitted the prebelievers name for prayer. In this way, we hope that the list does not get filled up with people we have lost contact with or those we had little information for to begin with.
<<lessThe intent is to cycle through a list of prebelievers, as we like to call them, and pray for each one for as long as you feel led to pray.
Salvation Focus makes administration simple and allows you to keep track of the information of the people who submitted the prebelievers name for prayer. In this way, we hope that the list does not get filled up with people we have lost contact with or those we had little information for to begin with.
Download (0.10MB)
Added: 2007-02-09 License: MIT/X Consortium License Price:
988 downloads
Ubuntu Muslim Edition 0.2
Ubuntu Muslim Edition is a free, open source operating system based on the popular Ubuntu Linux. more>>
Ubuntu Muslim Edition is a free, open source operating system based on the popular Ubuntu Linux. UbuntuME stands for Ubuntu Muslim Edition.
What is Linux?
Linux is a free, efficient and secured operating system. Unlike Micro$oft Windows and other proprietary systems, Linux is publicly open and extendible by contributors.
What is Ubuntu?
Ubuntu is a popular Linux distribution, designed with the intent of overthrowing Micro$oft Windows as the worlds most widely-used operating system.
The distro is composed entirely of open source components, which have been heavily modified for easy of use and migration for users familiar with Micro$oft Windows, take a look here. The name Ubuntu is derived from the Zulu word for humanity, which has been incorporated into South African culture as "humanity towards others".
Ubuntu Muslim Edition customize the Ubuntu distro by installing islamic softwares (prayer times, Quran study tool, Arabic learning software etc.) and by changing its "look".
Enhancements:
- Same version as v0.1 but size reduced to fit on a CD (java5 has been removed but there is java4 installed by default
<<lessWhat is Linux?
Linux is a free, efficient and secured operating system. Unlike Micro$oft Windows and other proprietary systems, Linux is publicly open and extendible by contributors.
What is Ubuntu?
Ubuntu is a popular Linux distribution, designed with the intent of overthrowing Micro$oft Windows as the worlds most widely-used operating system.
The distro is composed entirely of open source components, which have been heavily modified for easy of use and migration for users familiar with Micro$oft Windows, take a look here. The name Ubuntu is derived from the Zulu word for humanity, which has been incorporated into South African culture as "humanity towards others".
Ubuntu Muslim Edition customize the Ubuntu distro by installing islamic softwares (prayer times, Quran study tool, Arabic learning software etc.) and by changing its "look".
Enhancements:
- Same version as v0.1 but size reduced to fit on a CD (java5 has been removed but there is java4 installed by default
Download (702MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
608 downloads
Suite-C Web 20060729
Suite-C Web is a collection of modules for Drupal that allow a church to manage itself and communicate with its memebers. more>>
Suite-C Web is a collection of modules for Drupal that allow a church to manage itself and communicate with its memebers.
Suite-C Web project currently consists of a PrayerRequests module, which lets Web site visitors submit prayer requests and later mark requests as answered (or no longer relevant), which filters the request them from the list of current prayer requests.
Main features:
- A shared PrayerList
- Prayer answered date
<<lessSuite-C Web project currently consists of a PrayerRequests module, which lets Web site visitors submit prayer requests and later mark requests as answered (or no longer relevant), which filters the request them from the list of current prayer requests.
Main features:
- A shared PrayerList
- Prayer answered date
Download (0.010MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above namaz prayer 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