Technology: Augmented Reality & Google Wave

Diggin’ Jason Kolb’s blog. http://bit.ly/tnmcD is about “Augmented Reality” (overlaying digital displays on the real world, typically using a mobile device as the viewport). I learned about Jason from my brother, Lance, who mentioned another one of Jason’s posts, “Google Wave: You need to pay attention to this” – http://bit.ly/M93E5

|

WordPress 2.8.4 Security Release Upgrade & Plugin Upgrade Errors

Upgraded to WordPress 2.8.4 Security Release on reidwalley.com/wordpress Also upgraded all plugins, with the following 2 fatal errors: 1. WP E-Commerce 3.7 plugin (When upgrading to 3.7.1) Fatal error: Out of memory (allocated 32243712) (tried to allocate 65771 bytes) in /homepages/30/d119280860/htdocs/reidwalley/wordpress/wp-admin/includes/class-pclzip.php on line 3846 2. GD Star Rating 1.5.4 plugin (When upgrading to 1.6.1) Fatal…

|

WordPress Tutorial – Remove the Word “Protected:” from Title Text of Password-protected Pages

Remove the word “Protected:” from title text of password-protected pages. Big thanks to t31os on the WordPress forums. Check out t31os’s site for more WordPress tips. The following filter function code is placed in the functions.php file, this way it doesn’t accidentally get replaced when WordPress is upgraded. <?php function the_title_trim($title) { $pattern[0] = ‘/Protected:/’;…