Monthly Archives: February 2012

Posted by Pinaki Kathiari on February 22, 2012

John Ridgeway Joins Digital Agency Local Wisdom as Director of New Business and Digital Strategy

0

John RidgewayPRINCETON JUNCTION, N.J. — Princeton-based digital agency Local Wisdom appointed John Ridgeway to the position of Director New Business and Digital Strategy, starting February 7, 2012. In his new role, Ridgeway will be responsible for identifying, securing and managing new business relationships as well as developing compelling and results-driven digital strategies to existing customers and accounts.

Ridgeway brings with him over 20 years of digital marketing experience and services in a diverse group of industries. He joins Local Wisdom from John Ridgeway Design where he served as a Digital Strategist, Integrated Marketing and Social Media Consultant to Fortune 100 Companies and was responsible for the creative execution, development and implementation of direct-to-consumer sales and marketing online programs.

“We are thrilled to have John join the Local Wisdom family. It’s a testament to our growth as a company to attract talent of his caliber,” explains Chief Marketing Officer, Pinaki Kathiari. “John’s experience and people-centric approach in working with executive teams to conceptualize, build, and manage digital platforms fits perfectly with the philosophy and approach of Local Wisdom.”

Prior to having his own digital marketing consulting business, John served as a Director of Digital Marketing for Merrill Lynch & Co., Chase Online Banking, and Vonage where he was responsible for helping define new product strategy, new product offerings, and first-in-category online marketing techniques. Ridgeway holds a Bachelor’s Degree in Advertising and Graphic Design from School of Visual Arts and a Master’s of Science Degree in Integrated Marketing from New York University. “I am excited to begin my new role as the Director New Business and Digital Strategy,” says Ridgeway. “As a veteran in the online industry I believe Local Wisdom has a solid approach in building websites, mobile apps, intranets, and other digital platforms. Their passion for bringing a brand’s digital world to life is at the heart of what makes a digital agency truly successful.”

About Local Wisdom

Founded in 1999, Local Wisdom is a digital agency headquarted in Princeton Junction, NJ specializing in architecture, design, development and curation of Internet and Intranet sites, web applications and mobile apps. Delivering custom, digital solutions that drive business growth, Local Wisdom’s roster of clients include Johnson & Johnson, ELS Educational Services, Purdue Pharma L.P., Ortho-McNeil-Janssen, and other Fortune companies. To learn more about Local Wisdom, visit www.localwisdom.com.


Topics:

Posted by Shawn Venkat on February 17, 2012

Weatherwise and Photomash Win Honorable Mentions in the Best App Ever Awards!

0

WeatherwiseI am proud to announce that  Weatherwise and Photomash received honorable mentions in the annual Best App Ever Awards for 2011 in the following categories for Android devices:

Weatherwise: Best Weather App, Best Visual Design

Photomash: Best Photo Editing App

In its fourth year, 148Apps bestows the Best App Ever Awards to promote apps that are “truly the best, not just the best-selling,” as chosen by 148Apps readers.

At Local Wisdom, we strive to deliver great design utilizing the latest technology. Weatherwise and Photomash are certainly testaments to that mission. If you haven’t had the chance to download Photomash, visit the iTunes App Store or the Android Marketplace. The Weatherwise app for iOS and Android can be found there as well.


Topics: , , ,

Posted by Michael Alfaro on February 16, 2012

Wiki plugin for WordPress

1

Found this useful for a pet project of mine.  Wanted to setup a wiki, but leverage some of the infrastructure we already have like logins.  Found this Wiki plugin for wordpress which seems to do the job: http://premium.wpmudev.org/project/wiki-lite

After some more testing, I’ll let write a followup and let you know the results.

Here’s a description of it from the plugin site:

“WordPress Wiki Lite transforms your WordPress website into a fully functional wiki or add wiki pages to your WordPress blog.

You can use Wiki lite to create…

  • A WordPress based Wiki site
  • Multiple Wiki sites on a WordPress MultiSite install – so any user of your site can have their own Wiki.”


Topics: , ,

Posted by Michael Alfaro on February 13, 2012

Make WordPress faster with APC Object Cache

1

If your linux box doesn’t have this installed, would suggest as a way to make your wordpress site handle significantly more load at a faster rate.

Source link: http://wordpress.org/extend/plugins/apc/

“APC Object Cache provides a persistent memory-based backend for the WordPress object cache. APC must be available on your PHP install.

An object cache is a place for WordPress and WordPress extensions to store the results of complex operations. On subsequent loads, this data can be fetched from the cache, which will be must faster than dynamically generating it on every page load.”


Topics: , , , ,

Posted by Michael Alfaro on February 8, 2012

UIWebView rotation on iPad, width adjustment issue

0

Found this today on trying to prototype an app for a client.  If you point to an HTML page through the UIWebView, when you switch between portrait and landscape, the HTML page wouldn’t be passed a new width and shows up slightly wider than the view, so some content get’s cut off.  The solution was found on stack overflow again: http://stackoverflow.com/questions/3632084/uiwebview-rotation-on-ipad

“Just solved my issue with this by adding this HTML5 Viewport meta tag:

<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />

to the head section of my HTML, maybe a variation of this meta tag may help?

Although my issue was triggered when my app was started in landscape mode, while yours in portrait mode, it may be a common cause.

I also had another funny issue with the webView in iPad and the common solution seems to be that meta tag:

http://stackoverflow.com/questions/2790482/ipad-simulator-webview-google-maps-api-issue


Topics: , , , ,

Posted by Michael Alfaro on February 6, 2012

Google Cloud Print – Print anywhere, from any device.

0

Found this to expose some of our printers to the internet.  Here’s the details (http://www.google.com/cloudprint/learn/):

Google Cloud Print

Print anywhere, from any device.

Google Cloud Print is a new technology that connects your printers to the web. Using Google Cloud Print, you can make your home and work printers available to you and anyone you choose, from the applications you use every day. Google Cloud Print works on your phone, tablet, Chromebook, PC, and any other web-connected device you want to print from.

 

 


Topics: , , , ,

Posted by Michael Alfaro on February 6, 2012

Lightweight mobile javascript – zepto.js

0

This link was shared internally a while back by Tim Jaeger.  If you’re looking for a lightweight javascript framework for mobile, here’s zepto.js.

Source:http://zeptojs.com/

Zepto.js is a minimalist JavaScript framework for modern web browsers*, with a jQuery-compatible syntax.

The goal: a 5-10k library that handles most basic drudge work with a nice API so you can concentrate on getting stuff done.

Zepto’s primary focus is on mobile devices, where small file sizes and tapping into the latest browser features matter most for fast loading and optimal runtime performance.

*Zepto supports Safari, Chrome, Firefox and Opera and any mobile WebKit-based browser, including iOS Mobile Safari, Android browser, HP webOS browser, Blackberry Tablet OS browser and others. Zepto does not support Internet Explorer.


Topics: , , , , , ,

Posted by Michael Alfaro on February 6, 2012

File upload size validation through javascript

0

It’s tough to tell a user that they’ve hit a file limit after the download is done.   Found this on stack overflow to be able to check the file size through javascript before the file get’s uploaded.  Here’s the source: http://stackoverflow.com/questions/3717793/javascript-file-upload-size-validation

Yes, there’s a new feature from the W3C that’s supported by some modern browsers, the File API. It can be used for this purpose, and it’s easy to test whether it’s supported and fall back (if necessary) to another mechanism if it isn’t.

And here it is in action: http://jsbin.com/ificu4 Try that with a recent version of Chrome or Firefox.

Here’s a complete example:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Show File Data</title>
<style type='text/css'>
body {
    font-family: sans-serif;
}
</style>
<script type='text/javascript'>
function showFileSize() {
    var input, file;

    if (typeof window.FileReader !== 'function') {
        bodyAppend("p", "The file API isn't supported on this browser yet.");
        return;
    }

    input = document.getElementById('fileinput');
    if (!input) {
        bodyAppend("p", "Um, couldn't find the fileinput element.");
    }
    else if (!input.files) {
        bodyAppend("p", "This browser doesn't seem to support the `files` property of file inputs.");
    }
    else if (!input.files[0]) {
        bodyAppend("p", "Please select a file before clicking 'Load'");
    }
    else {
        file = input.files[0];
        bodyAppend("p", "File " + file.name + " is " + file.size + " bytes in size");
    }
}

function bodyAppend(tagName, innerHTML) {
    var elm;

    elm = document.createElement(tagName);
    elm.innerHTML = innerHTML;
    document.body.appendChild(elm);
}
</script>
</head>
<body>
<form action='#' onsubmit="return false;">
<input type='file' id='fileinput'>
<input type='button' id='btnLoad' value='Load' onclick='showFileSize();'>
</form>
</body>
</html>

Topics: , , ,

Posted by Michael Alfaro on February 6, 2012

Free Website performance testing

0

Had this link in my bag of free testing sites for a while, wanted to share with the world. Very similar to the results you can get through firebug network testing, but they can do it from various locations.
http://www.webpagetest.org/


Topics: , ,

Posted by Michael Alfaro on February 6, 2012

How much is the meeting costing the company?

0

Would you like to know how much your meetings cost? If you know the number of attendees and the average rate per person, this meeting ticker could help you track the cost. You’d be surprised how expensive meetings get!
Source site: http://tobytripp.github.com/meeting-ticker/


Topics: , , ,