WolfmanNCSU
04-04-2005, 04:30 PM
Apparantly GMail didn't stop at 2 gigs. They Promissed beyond 2 gigs, and they are right.
So looking at the JavaScript at the main page, seems like we will have 2075 MB by next Saturday...
var CP = [
[ 1112331600000, 1025 ],
[ 1112439600000, 2050 ],
[ 1113062400000, 2075 ]
];
var quota;
and the updateQuota function is now
function updateQuota() {
if (!quota) {
return;
}
var now = (new Date()).getTime();
var i;
for (i = 0; i < CP.length; i++) {
if (now < CP[i][0]) {
break;
}
}
if (i == 0) {
setTimeout(updateQuota, 1000);
} else if (i == CP.length) {
quota.innerHTML = 'Over ' + CP[i - 1][1];
} else {
var ts = CP[i - 1][0];
var bs = CP[i - 1][1];
quota.innerHTML = format(((now-ts) / (CP[i][0]-ts) * (CP[i][1]-bs)) + bs);
setTimeout(updateQuota, 50);
}
}
The array CP now holds the time and I assume the quota at that time:
Fri, 01 Apr 2005 05:00:00 GMT (i.e. midnight EST) - quota = 1025MB
Sat, 02 Apr 2005 11:00:00 GMT (6AM EST) - quota = 2050MB
Sat, 09 Apr 2005 16:00:00 GMT (10AM EST) - quota = 2075MB
So they weren't kidding when yesterday they said something like "we intend to give you more today, tomorrow, and beyond". They increased by 1 full GB in just over 1 day, but they're increasing slowly 25MB over the next week, or about 3.5MB/day. So we'll see what happens after next saturday!
So looking at the JavaScript at the main page, seems like we will have 2075 MB by next Saturday...
var CP = [
[ 1112331600000, 1025 ],
[ 1112439600000, 2050 ],
[ 1113062400000, 2075 ]
];
var quota;
and the updateQuota function is now
function updateQuota() {
if (!quota) {
return;
}
var now = (new Date()).getTime();
var i;
for (i = 0; i < CP.length; i++) {
if (now < CP[i][0]) {
break;
}
}
if (i == 0) {
setTimeout(updateQuota, 1000);
} else if (i == CP.length) {
quota.innerHTML = 'Over ' + CP[i - 1][1];
} else {
var ts = CP[i - 1][0];
var bs = CP[i - 1][1];
quota.innerHTML = format(((now-ts) / (CP[i][0]-ts) * (CP[i][1]-bs)) + bs);
setTimeout(updateQuota, 50);
}
}
The array CP now holds the time and I assume the quota at that time:
Fri, 01 Apr 2005 05:00:00 GMT (i.e. midnight EST) - quota = 1025MB
Sat, 02 Apr 2005 11:00:00 GMT (6AM EST) - quota = 2050MB
Sat, 09 Apr 2005 16:00:00 GMT (10AM EST) - quota = 2075MB
So they weren't kidding when yesterday they said something like "we intend to give you more today, tomorrow, and beyond". They increased by 1 full GB in just over 1 day, but they're increasing slowly 25MB over the next week, or about 3.5MB/day. So we'll see what happens after next saturday!