Adding support for SSH2 on MAMP

Recently, I am in need to use SFTP on one of my PHP script. Fortunately, PHP does support it through SSH2 binding. Unfortunately, however, MAMP doesn’t come with SSH2 extension. So it looks like I have to recompile myself.
Adding SSH2 extension to your MAMP the easy way
I’ve compiled SSH2 extension for Mac. Note that it [...]

Posted on December 11th, 2009 under MacOS X • No Comments

Swap values in 2 rows SQL

I encountered a situation at work that I feel would be a good brain teaser. I was working on a project and needed a way to swap values from 2 different rows in a SQL table. Obviously I can do it on client side (like PHP) to do it; but that wouldn’t be a good [...]

Posted on October 11th, 2009 under General SQL, MySQL, PostgreSQL • 6 Comments

Updating wp-ban to include bad URLs

I’ve posteda while back. Now I’m getting tired of these bozos trying to hack my system in vain, wasting my bandwith and driving up fake page views on my StatPress. So I decided to patch wp-ban to include what I considered bad URLs.
Since I’ll be using wp-ban, it should go without saying that you need [...]

Posted on September 6th, 2009 under Security • 2 Comments

PHP exception handling.

I normally post tutorials, how-tos or the likes. This post is a little bit different than the others. It’s more like a thought that I came across when I finally decided to use PHP’s exception handling.
Here’s the basic form of PHP’s exception handling.

try {
// Do something
} catch (DataErrorException $e) {
// Handle data error here
} catch [...]

Posted on August 23rd, 2009 under PHP • No Comments

Solving sudoku using PostgreSQL PL/pgSQL

I have no idea why I would want to solve sudoku in PostgreSQL PL/pgSQL. My guess would be just for the fun of it. I’m also hoping that it can serve as a tutorial example in programming PostgreSQL PL/pgSQL.
So what is sudoku? It is basically a number puzzle where the objective is to fill 9×9 [...]

Posted on August 19th, 2009 under General / Algorithm, PostgreSQL • No Comments

Page 1 of 1012345»...Last »