Skip to content

Instantly share code, notes, and snippets.

View stillatmylinux's full-sized avatar

Matt Thiessen stillatmylinux

View GitHub Profile
@kingkool68
kingkool68 / Serial Array Search and Replace WordPress plugin
Created March 13, 2013 12:58
Search and replace values in serialized arrays in specific tables. Thanks to http://interconnectit.com/124/search-and-replace-for-wordpress-databases/ for sharing.
<?php
/*
Plugin Name: Pew Serial Array Search and Replace
Description: Search and replace values in serialized arrays in specific tables. Thanks to http://interconnectit.com/124/search-and-replace-for-wordpress-databases/ for sharing.
Version: 1.0
Author: Russell Heimlich
Author URI: http://www.russellheimlich.com
*/
/********************/
@pcmccull
pcmccull / Remove _notes directories
Created January 6, 2012 18:15
Remove all _notes directories from a project that has been 'touched' by Dreamweaver
find . -name _notes -type d -exec rm -rf {} \;