• Changing root password in phpMyAdmin on MAMP

    To change the root password on MAMP for phpMyAdmin, run this command in terminal: (replace newpass with the new password you want. For password, leave it as password, do not use your current password, you will be prompted for that when you hit enter. keep newpass in single quotes) /Applications/MAMP/Library/bin/mysqladmin -u root -p password ’newpass’ Now you should be prompted for your current password. Enter your current password and the change should take effect. Make…Continue reading

  • Removing .svn directories from a folder in Terminal

    Well i was trying to find a way to remove all the .svn files from a directory on OSx. I found this code worked the best for fully removing all .svn files recursively. find . -name .svn -print0 | xargs -0 rm -rf Remember to cd to the directory you are wanting to remove the .svn files from. cd Sites/projectContinue reading

  • My 17" mac screen cracked

    SoNyne Sucks so much Continue reading

1