125 + 140 points
Calend'art by GeneShark Tom
January 30th, 2008 1:52 PM
Here's my alternative calender gift to you all, what the time and date aren't!
What the time isn't
Here's an offer you just simply can't afford to miss, in this unique calender from JML inconvenience stores!
What the time isn't gives you up to date coverage on what the time currently isn't in your time zone!
Never be stuck for what the time isn't again!
But wait, there's more!
Use the JML what the time isn't today, and get FREE what the date isn't!
You can astound your friends, close relatives and strangers with your amazing prowess at knowing what date it isn't!
CALL NOW
If you can't see the swf very well, try viewing it on this page.
And for anyone interested in the code behind this:
//DATE
datedisplay = new Date();
weekday = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
month = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
dayrandom = random(7);
monthrandom = random(12);
yearrandom = random(datedisplay.getFullYear());
daterandom = random(31);
day = datedisplay.getDay();
actualmonth = datedisplay.getMonth();
year = datedisplay.getFullYear();
date = datedisplay.getDate();
if (date == daterandom) {
daterandom = date -= 1;
}
if (day == dayrandom&&day>=1) {
dayrandom = day-1;
}
if (day == dayrandom&&day<=1) {
dayrandom = day+1;
}
if (actualmonth == monthrandom&&actualmonth>=1) {
monthrandom = actualmonth -= 1;
}
if (actualmonth == monthrandom&&actualmonth<=1) {
monthrandom = actualmonth += 1;
}
if (year == yearrandom) {
yearrandom = year -= 1;
}
if(yearrandom<=9){
yearrandom="000"+yearrandom;
}else if(yearrandom<=99){
yearrandom="00"+yearrandom;
}else if(yearrandom<=999){
yearrandom="0"+yearrandom;
}
if(dayrandom==0){
dayrandom+=1;
}
if(monthrandom==0){
monthrandom+=1;
}
if (daterandom == 1 || daterandom == 21 || daterandom == 31) {
suffix = "st";
} else if (daterandom == 2 || daterandom == 22) {
suffix = "nd";
} else if (daterandom == 3 || daterandom == 23) {
suffix = "rd";
} else {
suffix = "th";
}
_root.notyear = (yearrandom);
_root.notmonth = (month[monthrandom]);
_root.notday = (weekday[dayrandom]);
_root.notdate = (daterandom+suffix);
datedisplay = (weekday[datedisplay.getDay()]+" "+datedisplay.getDate()+" "+month[datedispay.getMonth()]+" "+datedisplay.getFullYear());
_root.notfulldate = (_root.notday+" "+_root.notdate+" of "+_root.notmonth+" "+_root.notyear);
//TIME
timedisplay = new Date();
var hours = timedisplay.getHours()>9 ? timedisplay.getHours() : "0"+timedisplay.getHours();
var minutes = timedisplay.getMinutes()>9 ? timedisplay.getMinutes() : "0"+timedisplay.getMinutes();
var seconds = timedisplay.getSeconds()>9 ? timedisplay.getSeconds() : "0"+timedisplay.getSeconds();
timedisplay = (hours + " . " + minutes + " : " + seconds);
hoursrandom=random(23);
minutesrandom=random(59);
secondsrandom=random(59);
if(hoursrandom==hours){
hoursrandom=hours-1;
}
if(minutesrandom==minutes){
minutesrandom=minutes-1;
}
if(secondsrandom==seconds){
secondsrandom=seconds-1;
}
_root.nottime=(hoursrandom+" : "+minutesrandom+" : "+secondsrandom);
What the time isn't
Here's an offer you just simply can't afford to miss, in this unique calender from JML inconvenience stores!
What the time isn't gives you up to date coverage on what the time currently isn't in your time zone!
Never be stuck for what the time isn't again!
But wait, there's more!
Use the JML what the time isn't today, and get FREE what the date isn't!
You can astound your friends, close relatives and strangers with your amazing prowess at knowing what date it isn't!
CALL NOW
If you can't see the swf very well, try viewing it on this page.
And for anyone interested in the code behind this:
//DATE
datedisplay = new Date();
weekday = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
month = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
dayrandom = random(7);
monthrandom = random(12);
yearrandom = random(datedisplay.getFullYear());
daterandom = random(31);
day = datedisplay.getDay();
actualmonth = datedisplay.getMonth();
year = datedisplay.getFullYear();
date = datedisplay.getDate();
if (date == daterandom) {
daterandom = date -= 1;
}
if (day == dayrandom&&day>=1) {
dayrandom = day-1;
}
if (day == dayrandom&&day<=1) {
dayrandom = day+1;
}
if (actualmonth == monthrandom&&actualmonth>=1) {
monthrandom = actualmonth -= 1;
}
if (actualmonth == monthrandom&&actualmonth<=1) {
monthrandom = actualmonth += 1;
}
if (year == yearrandom) {
yearrandom = year -= 1;
}
if(yearrandom<=9){
yearrandom="000"+yearrandom;
}else if(yearrandom<=99){
yearrandom="00"+yearrandom;
}else if(yearrandom<=999){
yearrandom="0"+yearrandom;
}
if(dayrandom==0){
dayrandom+=1;
}
if(monthrandom==0){
monthrandom+=1;
}
if (daterandom == 1 || daterandom == 21 || daterandom == 31) {
suffix = "st";
} else if (daterandom == 2 || daterandom == 22) {
suffix = "nd";
} else if (daterandom == 3 || daterandom == 23) {
suffix = "rd";
} else {
suffix = "th";
}
_root.notyear = (yearrandom);
_root.notmonth = (month[monthrandom]);
_root.notday = (weekday[dayrandom]);
_root.notdate = (daterandom+suffix);
datedisplay = (weekday[datedisplay.getDay()]+" "+datedisplay.getDate()+" "+month[datedispay.getMonth()]+" "+datedisplay.getFullYear());
_root.notfulldate = (_root.notday+" "+_root.notdate+" of "+_root.notmonth+" "+_root.notyear);
//TIME
timedisplay = new Date();
var hours = timedisplay.getHours()>9 ? timedisplay.getHours() : "0"+timedisplay.getHours();
var minutes = timedisplay.getMinutes()>9 ? timedisplay.getMinutes() : "0"+timedisplay.getMinutes();
var seconds = timedisplay.getSeconds()>9 ? timedisplay.getSeconds() : "0"+timedisplay.getSeconds();
timedisplay = (hours + " . " + minutes + " : " + seconds);
hoursrandom=random(23);
minutesrandom=random(59);
secondsrandom=random(59);
if(hoursrandom==hours){
hoursrandom=hours-1;
}
if(minutesrandom==minutes){
minutesrandom=minutes-1;
}
if(secondsrandom==seconds){
secondsrandom=seconds-1;
}
_root.nottime=(hoursrandom+" : "+minutesrandom+" : "+secondsrandom);
28 vote(s)
- Adam
- teucer
- GYØ Daryl
- Sir Ducksbane
- Ink Tea
- Augustus deCorbeau
- Bex.
- Lincøln
- Tricia Tanaka
- JTony Loves Brains
- Coreopsis Major Bloden Melen
- susy derkins
- Lank
- lara black
- niallsb: Forevolution
- C.M. Gonzalez
- Ben Whitehouse
- Secret Agent
- Thain Stormbringer
- Burn Unit
- chris gray
- ge[off]
- Sombrero Guy
- GYØ Ben
- Askew.
- Flash Harry
- Piscean Electron
- ♫ babe
Favorite of:
Terms
(none yet)8 comment(s)
posted by Coreopsis Major Bloden Melen on January 30th, 2008 7:21 PM
you win the internets. and a vote from me.
posted by Lank on January 30th, 2008 8:36 PM
I like it. I like it a lot.
Thanks for the gift!
posted by GYØ Daryl on February 1st, 2008 10:14 AM
30th September 1990 was not a Saturday I checked :P
It was a sunday
posted by GeneShark Tom on February 2nd, 2008 12:02 PM
Then it's definately not the date is it?
























.jpg)










How dare you?
It is actually 7:24am on the 15th July 1092 in GMT+1.
This task fails.