Use MySQL Gui tools to securely connect to remote database
October 27th, 2007 by Aaron
This particular example is going to be based on a connection from Windows XP using Putty, MySQL GUI tools and Dreamhost.
Quick summary of issue: I want to use MySQL Query Browser to access my database on my dreamhost account. The database allows connections from the webserver only - nothing external. I have an SSH account on the webserver.
Quick answer: This requires us to tunnel from our machine to the webserver and connect through this tunnel to the database server.
Lets take a look on how we can accomplish this:
Continue reading Use MySQL Gui tools to securely connect to remote database
Writing a Spelling Corrector
October 23rd, 2007 by Aaron
Normally I like to post content that I’ve actually written, but I can’t pass up linking to this article: How to write a spelling corrector. Its a great piece that explains the math behind the spelling correcting that Google, Yahoo, etc… do when you’re doing a search and gives code examples on how this is accomplished. Very great read!
