WareSeeker Search Software

date


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

G.Date


script CGI Perl Free
View Detail
Download G.DateDownload G.Date
A simple script that offers an easy way to add the date to your webpages.
2

Date.pl


script CGI Perl Free
View Detail
Download Date.plDownload Date.pl
Date.pl is a CGI/PERL script that automates the display of banners related to the number date. The script also displays the day, month, date and year in a text format underneath the graphic. The image itself can be linked to the URL of your choice by editing the image list. The script starts at the top of a list defined in a separate text file and displays an image for every date in the year. At the end of the year, it starts back at the beginning. We have provided an alternate list that includes the leap year. 366 date graphics are included in the archive.
3

Titlebar Date 2


windows Utilities->Other Tools Free
View Detail
Download Titlebar Date 2Download Titlebar Date 2
174 KB
Displays the day of the week and date in the titlebar of the active window. You do not have to set the day or the date. The program gets this information from your computers operating system. Titlebar Date is a desktop enhancement and will auto start when you start windows. No Splash Screen. No advertisements. No spam from the producers. No adware.
4

Date To Date 1.1


pda Business->Calendar FREE
View Detail
Download Date To Date 1.1Download Date To Date 1.1
4.00 KB
Date To Date computes the distance (in days) between two dates. If you are in frequent need of date calculations, then this is for you.

Requirements:

· Java compatible

5

Date::Manip 5.44


linux Programming->Libraries Free
View Detail
Download Date::Manip 5.44Download Date::Manip 5.44
0.14 MB
Date::Manip is a date manipulation routines.

SYNOPSIS

use Date::Manip;

$version = DateManipVersion;

$date = ParseDate(@args);
$date = ParseDate($string);
$date = ParseDate($string);

@date = UnixDate($date,@format);
$date = UnixDate($date,@format);

$delta = ParseDateDelta(@args);
$delta = ParseDateDelta($string);
$delta = ParseDateDelta($string);

@str = Delta_Format($delta,$dec,@format);
$str = Delta_Format($delta,$dec,@format);

$recur = ParseRecur($string,$base,$date0,$date1,$flags);
@dates = ParseRecur($string,$base,$date0,$date1,$flags);

$flag = Date_Cmp($date1,$date2);

$d = DateCalc($d1,$d2 [,$errref] [,$del]);

$date = Date_SetTime($date,$hr,$min,$sec);
$date = Date_SetTime($date,$time);

$date = Date_SetDateField($date,$field,$val [,$nocheck]);

$date = Date_GetPrev($date,$dow,$today,$hr,$min,$sec);
$date = Date_GetPrev($date,$dow,$today,$time);

$date = Date_GetNext($date,$dow,$today,$hr,$min,$sec);
$date = Date_GetNext($date,$dow,$today,$time);

$name = Date_IsHoliday($date);

$listref = Events_List($date);
$listref = Events_List($date0,$date1);

$date = Date_ConvTZ($date);
$date = Date_ConvTZ($date,$from);
$date = Date_ConvTZ($date,"",$to);
$date = Date_ConvTZ($date,$from,$to);

$flag = Date_IsWorkDay($date [,$flag]);

$date = Date_NextWorkDay($date,$off [,$time]);

$date = Date_PrevWorkDay($date,$off [,$time]);

$date = Date_NearestWorkDay($date [,$tomorrowfirst]);

&Date_Init();
&Date_Init("VAR=VAL","VAR=VAL",...);
@list = Date_Init();
@list = Date_Init("VAR=VAL","VAR=VAL",...);

The above routines all check to make sure that Date_Init is called. If it hasnt been, they will call it automatically. As a result, there is usually no need to call Date_Init explicitely unless you want to change some of the config variables (described below). They also do error checking on the input.

The routines listed below are intended primarily for internal use by other Date::Manip routines. They do little or no error checking, and do not explicitely call Date_Init. Those functions are all done in the main Date::Manip routines above.

Because they are significantly faster than the full Date::Manip routines, they are available for use with a few caveats. Since little or no error checking is done, it is the responsibility of the programmer to ensure that valid data (AND valid dates) are passed to them. Passing invalid data (such as a non-numeric month) or invalid dates (Feb 31) will fail in unpredictable ways (possibly returning erroneous results). Also, since Date_Init is not called by these, it must be called explicitely by the programmer before using these routines.

In the following routines, $y may be entered as either a 2 or 4 digit year (it will be converted to a 4 digit year based on the variable YYtoYYYY described below). Month and day should be numeric in all cases. Most (if not all) of the information below can be gotten from UnixDate which is really the way I intended it to be gotten, but there are reasons to use these (these are significantly faster).

$day = Date_DayOfWeek($m,$d,$y);
$secs = Date_SecsSince1970($m,$d,$y,$h,$mn,$s);
$secs = Date_SecsSince1970GMT($m,$d,$y,$h,$mn,$s);
$days = Date_DaysSince1BC($m,$d,$y);
$day = Date_DayOfYear($m,$d,$y);
($y,$m,$d,$h,$mn,$s) = Date_NthDayOfYear($y,$n);
$days = Date_DaysInYear($y);
$days = Date_DaysInMonth($m,$y);
$wkno = Date_WeekOfYear($m,$d,$y,$first);
$flag = Date_LeapYear($y);
$day = Date_DaySuffix($d);
$tz = Date_TimeZone();

6

Date::Hijri 0.02


linux Programming->Libraries Free
View Detail
Download Date::Hijri 0.02Download Date::Hijri 0.02
0.004 MB
Date::Hijri is a Perl extension to convert islamic (hijri) and gregorian dates.

SYNOPSIS

use Date::Hijri;

# convert gregorian to hijri date
my ($hd, $hm, $hy) = g2h($gd, $gm, $gy);

# convert hijri to gregorian date
my ($gd, $gm, $gy) = h2g($hd, $hm, $hy);

This simple module converts gregorian dates to islamic (hijri) and vice versa.
The dates must be given as an array containing the day, month and year, and return the corresponding date as a list with the same elements.


7

Date::ICal 1.72


linux Programming->Libraries Free
View Detail
Download Date::ICal 1.72Download Date::ICal 1.72
0.043 MB
Date::ICal is a Perl extension for ICalendar date objects.

SYNOPSIS

use Date::ICal;

$ical = Date::ICal->new( ical => 19971024T120000 );
$ical = Date::ICal->new( epoch => time );
$ical = Date::ICal->new( year => 1964,
month => 10, day => 16, hour => 16,
min => 12, sec => 47 );

$hour = $ical->hour;
$year = $ical->year;

$ical_string = $ical->ical;
$epoch_time = $ical->epoch;

$ical2 = $ical + $duration;
(Where $duration is either a duration string, like P2W3DT7H9M, or a Date::ICal::Duration (qv) object.
$ical += P6DT12H;

$duration = $ical1 - $ical2;
$ical3 = $ical1 - $duration;


8

Titlebar Date 2.0


windows Home Shell Desktop->Other Free
View Detail
Download Titlebar Date 2.0Download Titlebar Date 2.0
173KB

Displays the day of the week and date in the titlebar of the active window.

Titlebar Dates executive file is a very small file so there will be almost no startup lag as a result of Titlebar Date starting when you start your computer.

You do not have to set the day or the date. The program gets this information from your computers operating system. Titlebar Date is a desktop enhancement and will auto start when you start windows. If other users of your computer want to use Titlebar Date, place a shortcut to Titlebar Date in the Start Menus Startup folder under their profile.

No tray icon to clutter up your tray area.

No Splash Screen. No advertisements. No spam from the producers. No adware.
9

PHP Date Library


script PHP $11.00
View Detail
Download PHP Date LibraryDownload PHP Date Library
The PHP Date Library is collection of professional native PHP functions to work with dates. It does not require any PHP extensions. This library includes most useful functions to work with dates. It includes functions to validate the date, shift date by given amount of days, calculate difference between two dates, calculate week number for given date and much more. It properly handles leap years and is ISO compatible. Professional programmer has spent 3+ days to study the subject, code the library, write manual and put it all here.
10

Tray Date 2


windows Home Shell Desktop->Other Free
View Detail
Download Tray Date 2Download Tray Date 2
188KB
Tray Date is a very small program that displays the current date in an attractive tray icon.

Tray Dates executive file is a very small file so there will be virtually no startup lag as a result of Tray Date starting when you start your computer.

You do not have to set the date. The program gets this information from your computers operating system. Tray Date is a desktop enhancement and will auto start when you start windows. If other users of your computer want to use Tray Date, place a shortcut to Tray Date in the Start Menus Startup folder under their profile.

No Splash Screen. No advertisements. No spam from the producers. No adware. Tray Date does not create a bunch of folders and files to clutter up your computers file system with little programs that are going to advertise to you stuff you do not want, do not need, and do not want to see even if it might have a dancing rabbit.
11

Date::Pcalc 1.2


linux Programming->Libraries Free
View Detail
Download Date::Pcalc 1.2Download Date::Pcalc 1.2
0.060 MB
Date-Pcalc is a Perl module and is a direct translation of Steffen Beyers excellent Date::Calc module to use Perl only instead of a combination of Perl and C.

This package consists of a Perl module for all kinds of date calculations based on the Gregorian calendar (the one used in all western countries today), thereby complying with all relevant norms and standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where applicable).


12

Tk::Date 0.42


linux Programming->Libraries Free
View Detail
Download Tk::Date 0.42Download Tk::Date 0.42
0.018 MB
Tk::Date is a date/time widget for perl/Tk.

SYNOPSIS

use Tk::Date;
$date_widget = $top->Date->pack;
$date_widget->get("%x %X");

Tk::Date implements a date/time widget. There are three ways to input a date:
Using the keyboard to input the digits and the tab key or the mouse pointer to move focus between fields.

Using up and down cursor keys to increment/decrement the date (only with installed Tk::NumEntryPlain widget).

Selecting up and down arrow buttons will increment or decrement the value of the active field (only with installed Tk::FireButton widget).

The Date/Time Format

Unlike Java, Perl does not have a date/time object. However, it is possible to use the unix time (seconds since epoch, that is 1st January 1970) as a replacement. This is limited, since on most architectures, the valid range is between 14th December 1901 and 19th January 2038. For other dates, it is possible to use a hash notation:

{ y => year,
m => month,
d => day,
H => hour,
M => minute,
S => second }

The abbreviations are derivated from the format letters of strftime. Note that year is the full year (1998 instead of 98) and month is the real month number, as opposed to the output of localtime(), where the month is subtracted by one.

In this document, the first method will be referred as unixtime and the second method as datehash.

STANDARD OPTIONS

Tk::Date descends from Frame and inherits all of its options.

-orient

Specified orientation of the increment and decrements buttons. May be vertical (default) or horizontal.


13

Titlebar Date 2.0


windows System->System Miscellaneous Free
View Detail
Download Titlebar Date 2.0Download Titlebar Date 2.0
173 KB
Titlebar Date description
Once the program is started, the day of the week and the date, will be displayed in the active windows title bar Titlebar Date is a useful, small and freeware tool.

Once the program is started, the day of the week and the date, will be displayed
in the active windows title bar. You do not have to set the day or date- the program gets this information from your computers operating system.

There is no Tray icon installed to clutter up your tray area and no splash screen.

This program is fully functional with no advertisements , spyware, or ad-ware..

Requirements:

· .NET Framework 1.1

14

Wyrd Date 1.7


pda Business->Databases FREE
View Detail
Download Wyrd Date 1.7Download Wyrd Date 1.7
26.00 KB
Wyrd Date is an addition to the onboard datebook.

It allows you to separate different dates into categories without having to store them in a different program.

What Wyrd Date does is adds a prefix to the beginning of the dates description, you can then list all dates with the same prefix.

It lets you find the appointments you want quicker and easier then before.

Adding a prefix to the dates description it simplifies the look and it takes up less memory.

Requirements:

· Palm III
· Palm OS v3.0

15

Habs Date 1.1


mac Dashboard Widgets->Sports Free
View Detail
Download Habs Date 1.1Download Habs Date 1.1
110 KB
Shows today s date in the form of a Montreal Canadiens jersey. Includes 31 different players. Most of which are part of the Canadiens Hall of Fame. Players include Plante, Carbonneau, Blake, Geoffrion, Lefleur, Richard, and more.

As it seemed wrong not to include Roy, he has been substituted as number 13. It will automatically update when you open Dashboard.

Whats New in This Release:

· Improved graphics to conform to the project at HockeyWidgets.com.
· Fonts and sizes for the names and numbers re-done. Now one fifth the file size.

16

Date::Convert::French_Rev 0.05


linux Programming->Libraries Free
View Detail
Download Date::Convert::French_Rev 0.05Download Date::Convert::French_Rev 0.05
0.036 MB
Date::Convert::French_Rev can convert from / to French Revolutionary Calendar.

SYNOPSIS

use Date::Convert::French_Rev;
Converting from Gregorian (or other) to Revolutionary
$date=new Date::Convert::Gregorian(1799, 11, 9);
convert Date::Convert::French_Rev $date;
print $date->date_string, "n";
print $date->date_string($format), "n";
Converting from Revolutionary to Gregorian (or other)
$date=new Date::Convert::French_Rev(8, 2, 18);
convert Date::Convert::Gregorian $date;
print $date->date_string, "n";


17

Flashstar Date-Calendar


script PHP Free
View Detail
Download Flashstar Date-CalendarDownload Flashstar Date-Calendar
A Flash based PHP/MySQL Calendar. Includes an admin kit to add, edit and delete dates.
18

date-diff.php


script PHP Free
View Detail
Download date-diff.phpDownload date-diff.php
This is a simple script to calculate the difference between two dates and express it in years, months and days. Use as in: my daughter is 4 years, 2 month and 17 days old ... Feel free to use this script for whatever you want.
19

Jaslabs Date Suite


script PHP $29.99
View Detail
Download Jaslabs Date SuiteDownload Jaslabs Date Suite
Features 1) Includes source for all flash and .php files 2) Unlimited site license 3) Multiple templates 4) Advanced site statistics 5) Options for search-engine optimization, including meta tags and URL-rewriting (requires .htaccess file) 6) Add multiple administrators, and specify permissions 7) Advanced Flash-based image editor for your members. 8) Affiliates system with administrator controls and statistics. 9) Multiple payment methods are available, and fully configurable via the admin panel. 10) supports the following databases: mysql,postgres,interbase, minisql,microsoft SQL,oracle 7/8/8i,ODBC,sybase,inform ix,Frontbase 11) Advanced, web-based banner management. Specify start and end dates for which banners should be displayed. 12) SMTP mail support 13) A built-in, Flash instant messenger is availabe to your members so that they can send notes to other users who are online. 14) In/out box is available to your members
20

Desktop Date 1.0


windows Home Shell Desktop->Other Free
View Detail
Download Desktop Date 1.0Download Desktop Date 1.0
372 KB
Desktop Date is an application that displays the date on the Desktop.

It is the perfect application if you intend to have your date just in front of your work.

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search