Use Firebug? Then, stop using alert() to debug your JavaScript.
(0)Monthly Archive for November, 2008
I have just committed a major update to my K2 Hook Up plugin. As soon as I released my plugin—which allows smart people using the K2 theme to insert arbitrary HTML, CSS, or JavaScript code into any of the 7 custom template hooks that K2 provides—I got the same question: When will it support inserting PHP code?
I’m happy to report that its day has come, and that day is today.
I just added another shell script to the growing library of open source code available on xentek.net. This entry is nothing special, but may prove useful to you. The script can generate a string, between 3 and 32 characters long, that you can use when setting new passwords.
The passwords won’t be the most secure in the world (doesn’t include any Uppercase Letters) but does bookend a random md5 string with some special characters to increase the complexity. You can pass in a number between 1 – 32 to control how long of a password it generates for you.
Download the random password script it from the code library.
Hot Tip of the Day: If you shift+delete in a firefox menu of possible auto-fill form field values, it will remove it from the list forever. Great for getting rid of typos in your choices. Go forth and be productive.
(0)Sometimes you need to move folders around, and when they are under version control, this can cause problems. If you’re feeling lazy and don’t want to svn export, then run this from the folder you want to scrub:
find . -name .svn | xargs rm -rf
comments