- @jcayzac Have you looked at their implementation BTW? It's terrible. Fitting for Mixi. >>
- RT @serkantoto: Mixi introduces location-based service. Good to see it didn't take them 2 years now to copy Facebook, like with apps. >>
- RT @AnoshIrani: Overheard today at visa office: Officer: "What do you for a living?" Young lady: "I'm a poet." Officer: "What do you d ... >>
- @TokyoDan I love you but please don't retweet 10 things frmo the same person in a row, unless it is the delightful author of Tokyo Vice. >>
- @jcayzac cheap, reliable, fast - pick two. (JR is quite cheap in Tokyo, believe it or not) >>
My current project is building a mobile website for Japanese cellphones that can stand about 10-20k hits within an hour without getting completely trashed. Admittedly, this isn’t exactly the easiest thing in the world to do, but Google App engine makes it a lot easier. In the process, I had to brush up on my Python, and in particular, email validation.
The obvious way to deal with email validation is to use google’s “mail.is_email_valid” function. Unfortunately, this seems to return true as long as you have a string, as it mentions on Aral Balkan’s helpful post on the subject. I had to dig a little more to find out how to use mail_re; here’s the code for anyone curious.
from django.core.validators import email_reprint (email_re.match(‘test_email@fakedomain.com’) != None)print (email_re.match(‘bademail’) != None)







