Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread rtconner

On Jul 22, 9:17 am, Derek Anderson <[EMAIL PROTECTED]> wrote:
> Tim Chase wrote:
> > Or, if you're away from the web, [...]
>
> because his secretary prints out and hand-delivers his emails?  ;-P

That was funny. :P


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread Derek Anderson

Tim Chase wrote:
> 
> This is also why I prefer mercurial (hg) as my version-control.
> Svn is nice if you're connected to your central repository all
> the time, but I also like to be able to use my version-control
> while I'm disconnected...yet still be able to sync up to a main
> repo.  I tried git and svk, but their interfaces were too
> unwieldy and the crowd was surly, however hg's interface is
> fairly close to svn's so it was easy to learn and its
> documentation has been good too.  Bzr holds promise, but it's
> still a bit young, a bit slow, has some warts, and the
> documentation is scattered across sites and versions which makes
> it hard to reference.  I'll be interested to see where it is in a
> year or two.
> 

have you tried monotone?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread Tim Chase

>> Or, if you're away from the web, [...]
> 
> because his secretary prints out and hand-delivers his emails?  ;-P

Or, as I frequently do, download my email before going offline
(whether on a plane, on a bus, at a site without network access,
etc).  Reading through the email offline, it's nice to have an
answer to my question without going online, especially if it's in
code known to be on the machine.  Fortunately, Django's code is
fairly clean (and the occasional unclean parts are usually
labeled with comments like "this is hackish, and needs to be
fixed"), fairly well documented, and easy to follow.


This is also why I prefer mercurial (hg) as my version-control.
Svn is nice if you're connected to your central repository all
the time, but I also like to be able to use my version-control
while I'm disconnected...yet still be able to sync up to a main
repo.  I tried git and svk, but their interfaces were too
unwieldy and the crowd was surly, however hg's interface is
fairly close to svn's so it was easy to learn and its
documentation has been good too.  Bzr holds promise, but it's
still a bit young, a bit slow, has some warts, and the
documentation is scattered across sites and versions which makes
it hard to reference.  I'll be interested to see where it is in a
year or two.


-tim (the too-frequently offline)








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread Derek Anderson

Tim Chase wrote:
> Or, if you're away from the web, [...]

because his secretary prints out and hand-delivers his emails?  ;-P



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread Tim Chase

>> Who may help me to design a software? I want an account number, the
>> password producer (because I do not have means to think of quite good
>> account number password)
> 
> If I understand you correctly, I think you're looking for a random  
> password generator. Just search Google for "random password generator".
> 
> Here's a Python example, if that's what you're looking for:
> 
> 

Or, if you're away from the web, you can use the same code that
already exists in Django's User.objects.make_random_password()
method:

def make_random_password(self, length=10,
allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'):
"Generates a random password with the given length and
given allowed_chars"
# Note that default value of allowed_chars does not have
"I" or letters
# that look like it -- just to avoid confusion.
from random import choice
return ''.join([choice(allowed_chars) for i in
range(length)])


Incidentally, other than the letter "Q", the uppercase portion of
the default allowed_chars is the same set of characters allowed
in a VIN (Vehicle Identification Number, found in several places
such as the dash and door-frame on cars at least in the US) for
exactly the same reason...1/i/l look alike as do 0/O/Q

useless trivia for today :)

-tim





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Wanted A PERSON design a software (account number, the password producer )

2007-07-22 Thread Tyson Tate

On Jul 22, 2007, at 12:15 AM, Alvin wrote:

> Who may help me to design a software? I want an account number, the
> password producer (because I do not have means to think of quite good
> account number password)

If I understand you correctly, I think you're looking for a random  
password generator. Just search Google for "random password generator".

Here's a Python example, if that's what you're looking for:



Regards,
Tyson

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---