August 7, 2008
This barely qualifies for a blog post, but what to do if you loaded, via django-admin.py loaddata
a full json file from someone during testing, and don’t have their user’s password?
Just run the django-admin.py shell, and by hand reset all the passwords:
from django.contrib.auth.models import User
for u in Users:
u.set_password(’secret’)
u.save()
That’s why you have to keep your shell login [...]
Read the full article →
August 3, 2008
Scratch is a programing language and environment designed by the MediaLab for used by young children. It is best described as a tool for making programmable media. It is used not just for programming as you know it, but for making games, telling stories, making dynamic artwork.
Education and Computer is an interest of mine. I [...]
Read the full article →