Setting up Apache and Mysql on Lion

May 1st, 2012

http://akrabat.com/php/setting-up-php-mysql-on-os-x-10-7-lion/

Useful info

Useful preg match right to left (match last value in string between [] brackets)

April 24th, 2012

http://stackoverflow.com/questions/8750135/regex-to-find-content-of-the-last-occurence-of-square-brackets

Ajax: simple operation

April 23rd, 2012

http://www.dynamicajax.com/fr/AJAX_Web_Chat_JavaScript-271_290_291_292.html

Shibboleth Vs. OpenID

April 15th, 2012

http://vsmith.info/OpenID

Get/Set javascript radio buttons

April 12th, 2012

http://www.somacon.com/p143.php

Date picker for HTML Forms

April 4th, 2012

http://marcgrabanski.com/articles/jquery-ui-datepicker

Qwalitee.

Great article for managing checkboxes with php

March 5th, 2012

http://www.html-form-guide.com/php-form/php-form-checkbox.html

Grabbing Git trees

February 15th, 2012

git clone https://github.com/mynameisdongyoung/Face-to-Face2.0.git

Ignoring SSL certificate mismatches when fetching git hubs

env GIT_SSL_NO_VERIFY=true git clone https://github.com/mynameisdongyoung/Face-to-Face2.0.git

(Face to Face moodle 2.0 https://github.com/mynameisdongyoung/Face-to-Face2.0)

Update Core insufficient permissions Wordpress

February 8th, 2012

http://wordpress.org/support/topic/update-core-you-do-not-have-sufficient-permissions-to-access-this-page-1

Update usermeta field wp_capabilities to a:1:{s:13:”administrator”;b:1;}

Find out latest tables in MySQL to be updated

February 6th, 2012

Useful when you’re trying to find out what gets updated in a DB

SELECT * FROM INFORMATION_SCHEMA.TABLES
WHERE DATE_SUB(NOW(), INTERVAL 1 MINUTE) < UPDATE_TIME

(Can also have HOUR instead of MINUTE)

http://stackoverflow.com/questions/2492040/query-to-find-tables-modified-in-the-last-hour