Skip to content

Instantly share code, notes, and snippets.

// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}
@jonokane
jonokane / YQLUpdatesFirehoseQS
Created May 5, 2010 16:04
This is a simple code example, which illustrates how easy it is to not only get any YQL data rendered on a web page, but also how to call the Updates Firehose YQL Table. Follow the comments for additional help.
<?php
// This is a simple code example, which illustrates how easy it is to not only get any YQL data rendered on a web page, but also how to call the Updates Firehose YQL Table. Follow the comments for additional help.
// Your config file, which contains $CONSUMER_KEY & $CONSUMER_SECRET info
require_once('config.php');
// grab the following library here: http://github.com/yahoo/yos-social-php5
require_once('lib/OAuth/OAuth.php');