Tuesday, March 10, 2009
ImageMagick
I think ImageMagick is the right weapon for most image manipulation scripts...
I generally use mac ports to install / update it, I've found a small bug about
a mismatching checksum.
A port selfupdate solved all (since some good guy solved the checksum bug ahead)
Tuesday, March 03, 2009
reset mysql password
just a short memo, as usual:
stop mysql
restart in safe mode:
mysqld_safe --skip-grant-tables &
enter as root, now:
mysql -u root
and reset table password:
use mysql
update user set password=PASSWORD('newpassword') where user='root';
Labels:
MySql
Subscribe to:
Posts (Atom)