Author: Off The Wall Media

Unlimited Olive Garden Pasta for 49 Days? Sorry, SOLD OUT

Olive Garden’s most popular promotion the “Never Ending Pasta Bowl” is back with an even better offer.  A lucky 1,000 people across the country were able to snag the limited number of $100 “Never Ending Pasta Passes”.   The passes went on sale Monday and sold out within 45 minutes.  Many fans were expressing their […]

The Smartest Engagement Ring of the Future

  Move over smartwatch, the SmartRing by MOTA might be the next big thing in wearable technology.  MOTA just announced the new device at the IFA Consumer Electronics Show in Berlin.   The ring wirelessly connects to your Android or iOS smartphone and receives notifications for text messages, emails, calendar events and incoming calls.  Facebook, […]

Great White Shark Attacks Twitter

Looking for someone new and interesting to follow on Twitter? How about Mary Lee, the 3,456 pound great white shark with a tracking device actively “pinging” her location via satellite transmitter.  In the past couple years five sharks were tagged with Ocearch to provide real-time tracking data.  Mary Lee has traveled 16,000 miles in the […]

Bud Light builds its own town ‘Whatever USA’ in Crested Butte, Colorado

Bud Light began its “Up for Whatever” ad campaign in ads for Super Bowl XLVIII where random fans off the street were sent on crazy celebrity-filled adventures. For this promotional campaign Are You #UpForWhaterver happening September 5-7th, Crested Butte will become the ficticous town of Whatever, USA. Bud Light has selected 1,000 fans across the […]

A custom jQuery method to AJAXify forms with .AJAXify()

// Function to AJAXify forms $.fn.AJAXify = function(resultscontainer){ // Check if the element is on the page first if(this.length){ // Keep track of original element var og = this; // Unbind submit event this.submit(function(e){ // Initialize e.preventDefault(); var postobj = {}; // Loop through each child element and add to post object og.find(‘input, textarea, select, […]

Add qTranslate support to Contact Form 7

For those of you using WordPress that would like a non-intrusive simple way to add qTranslate support to your Contact Form 7 contact forms, here’s a simple snippet you can insert into functions.php: // Add qTranslate support to contact form 7 add_filter(‘wpcf7_form_elements’, ‘rl_wpcf7_form_elements’); function rl_wpcf7_form_elements($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ return qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($content); } } add_filter(‘wpcf7_form_class_attr’, ‘rl_wpcf7_form_class_attr’); function rl_wpcf7_form_class_attr($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ […]

Installing GeoIP on CentOS 6.x 64bit

If you don’t have EPEL installed: rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm Install the GeoIP package with dependencies: yum install GeoIP GeoIP-devel GeoIP-data zlib-devel libxml service httpd restart