Author | Message | Time |
---|---|---|
Newby | Yes! http://www.google.com/gmail/help/whatsnew.html You can watch a ticker as they raise the cap. It's pretty cool! | April 1, 2005, 5:21 PM |
UserLoser. | What ticker? | April 1, 2005, 5:23 PM |
CrAz3D | "You are currently using 16 MB (1%) of your 1448 MB."...I don't have 2 gig | April 1, 2005, 5:24 PM |
UserLoser. | Yes, 1448 for me too. I could have sworn it just said 1447 a few minutes ago | April 1, 2005, 5:24 PM |
The-Rabid-Lord | Thats rediculoues mind. You dont need 1gb of space. It will take years to fill it. You are currently using 26 MB (2%) of your 1449 MB. | April 1, 2005, 5:26 PM |
Newby | Log out of your account. It'll go to the login screen with the ticker on it. | April 1, 2005, 5:28 PM |
UserLoser. | [quote author=Newby link=topic=11137.msg106766#msg106766 date=1112376498] Log out of your account. It'll go to the login screen with the ticker on it. [/quote] Ah, neat | April 1, 2005, 5:31 PM |
CrAz3D | You are currently using 16 MB (1%) of your 1455 MB. :( It went down | April 1, 2005, 5:38 PM |
Spht | They're dynamically giving every account more space as the space becomes available. They're letting reach and go over 2 GB, if you read the article clearly. | April 1, 2005, 5:41 PM |
hismajesty | [quote author=Meh - (S-1-0-0) link=topic=11137.msg106762#msg106762 date=1112376378] Thats rediculoues mind. You dont need 1gb of space. It will take years to fill it. You are currently using 26 MB (2%) of your 1449 MB. [/quote] That's the point. Hardly anybody will even use 200mb, and they know this. They can keep giving more, which makes them look good compared to the competition (now that other email providers are raising their space limiations.) I'm sure Google probably has the space, as it's got like the most elaborate network in the world - is the only site that has had 100% uptime, etc. but they're never going to need to use all the space for gmail. Even if they didn't have it, they could continue to give it out. It's like hotels and airlines, etc. when they overbook - knowing some people will cancel. I hope this isn't an April Fools joke. :( | April 1, 2005, 5:59 PM |
Mr. Neo | On topic with Gmail, does anybody know a speedy way to import ~100,000 messages into Gmail from Thunderbird? Right now I'm using the Google Mail Loader by Mark Lyon but its horribly slow. At the rate that it is going, I should have everything imported in more than two days time. Are there any faster methods or is this as good as it gets? | April 1, 2005, 6:24 PM |
LW-Falcon | You are currently using 5 MB (0%) of your 1590 MB. I think they did this to compete with yahoo, which recently increased their space to 1gb. | April 1, 2005, 9:34 PM |
Mangix | i have a yahoo account. its still 250MB :(. | April 2, 2005, 10:18 AM |
hismajesty | Dude, get GMail. | April 2, 2005, 10:54 AM |
Soul Taker | 2050 megs, mmm. | April 2, 2005, 11:06 AM |
Mangix | [quote author=hismajesty[yL] link=topic=11137.msg106939#msg106939 date=1112439278] Dude, get GMail. [/quote]i do have GMail silly :P. i use my Yahoo account for Yahoo Messagner(Trillian). | April 2, 2005, 11:15 AM |
hismajesty | You are currently using 46 MB (2%) of your 2050 MB. | April 2, 2005, 4:18 PM |
idoL | You are currently using 38 MB (2%) of your 2050 MB. | April 2, 2005, 4:38 PM |
hismajesty | That post was not needed, mine was to show that the allotment went above 2GB. | April 2, 2005, 6:02 PM |
dRAgoN | You are currently using 0 MB (0%) of your 2051 MB dont use my gmail to often heh | April 2, 2005, 6:16 PM |
idoL | I'd rather see more people post thier storage quote so we can see some consistency or not. | April 2, 2005, 6:24 PM |
KkBlazekK | You are currently using 4 MB (0%) of your 2051 MB. :P | April 2, 2005, 6:27 PM |
CrAz3D | You are currently using 16 MB (1%) of your 2051 MB. YAY! 1%! | April 2, 2005, 6:37 PM |
Quarantine | You are currently using 999 MB (4million%) of your 9999 MB | April 2, 2005, 6:39 PM |
KkBlazekK | :P That makes no sense but its still funny. | April 2, 2005, 6:42 PM |
CrAz3D | [quote author=Warrior link=topic=11137.msg106995#msg106995 date=1112467186] You are currently using 999 MB (4million%) of your 9999 MB [/quote]uhm.....that's only like 10% | April 2, 2005, 6:50 PM |
KkBlazekK | [quote author=CrAz3D link=topic=11137.msg106997#msg106997 date=1112467805] [quote author=Warrior link=topic=11137.msg106995#msg106995 date=1112467186] You are currently using 999 MB (4million%) of your 9999 MB [/quote]uhm.....that's only like 10% [/quote]Thats why I said it doesn't make sense. | April 2, 2005, 6:52 PM |
Quarantine | You don't take into account the square root. Silly Craz3D | April 2, 2005, 7:01 PM |
CrAz3D | Square root of what?! Since when do you square root stuff to find a percentage? Has math changed THAT MUCH since I last took a class? | April 2, 2005, 7:04 PM |
R.a.B.B.i.T | You are currently using 1 MB (0%) of your 2051 MB. | April 2, 2005, 7:40 PM |
JoeTheOdd | [code]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); } } function format(num) { var str = String(num); var dot = str.indexOf('.'); if (dot < 0) { return str + PAD; } if (PAD.length > (str.length - dot)) { return str + PAD.substring(str.length - dot); } else { return str.substring(0, dot + PAD.length); } } [/code] EDIT -- W00T! P4G3BR34K! | April 3, 2005, 3:58 AM |
Fr0z3N | You are currently using 42 MB (2%) of your 2055 MB. Haha I find it funny that I have the most lol. | April 4, 2005, 12:28 AM |
Lenny | Well everyone seems to be having problems filling their 2GB or so of space. Well, no need to worry, there is a solution... I, like some of you, believe google is playing a clever bluff. Their outlook is that by the time a user even uses 200 MB of space, the technology will be there to support they space they promise now... GmailFS (Linux) http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html GMail Drive shell extension (Windows) http://www.viksoe.dk/code/gmail.htm | April 4, 2005, 12:55 AM |
iago | I'm currently using 181MB of a maximum of 1.50G. Of course, I can repartition and get more, if I need to, but I don't see that happening anytime soon. | April 4, 2005, 1:04 AM |
Myndfyr | Meh. The extent of the email use I get from Gmail is for school. Most of the time I just email papers to myself. | April 4, 2005, 4:10 PM |