I have to say, stack overflow's user authentication system is probably the best out there.
I truly admire using cookies to store anonymous's identity and was planning to do something like that for my sites too (since it is so convenient).
I am fluent in django and python, is that enough to build an authentication system which is based on cookies? (and if the user decides to sign up, a proper authentication system can be taken care by django).
I am interested in seeing how you guys would break down the implementation of this authentication system. I am not interested in knowing how to call OpenID's api etc.