Skip to content

Instantly share code, notes, and snippets.

View kennywall's full-sized avatar

Kenny Wall kennywall

View GitHub Profile
@kennywall
kennywall / oEmbed URL Example
Created August 12, 2020 01:12 — forked from kinlane/oEmbed URL Example
An example Flickr oEmbed API example.
http://www.flickr.com/services/oembed/?url=http%3A//www.flickr.com/photos/bees/2341623661/
@kennywall
kennywall / oEmbed Return Example
Created August 12, 2020 01:12 — forked from kinlane/oEmbed Return Example
This is an example Flickr oEmbed return example.
{
"version": "1.0",
"type": "photo",
"width": 240,
"height": 160,
"title": "ZB8T0193",
"url": "http://farm4.static.flickr.com/3123/2341623661_7c99f48bbf_m.jpg",
"author_name": "Bees",
"author_url": "http://www.flickr.com/photos/bees/",
"provider_name": "Flickr",
@kennywall
kennywall / Archive Twitter Profile Spreadsheet
Created August 12, 2020 01:12 — forked from kinlane/Archive Twitter Profile Spreadsheet
This is a Google Docs Spreadsheet that is a template for pulling your daily tweets and archiving them.
https://spreadsheets.google.com/ccc?key=0AncshzELR0ZHdDdoSWJKc0JtWjBYT0NpX0V6dlhzUUE&hl=en&authkey=CJr2ztYJ
@kennywall
kennywall / Convert Word and Powerpoint File to PDF with Google Docs API
Created August 12, 2020 01:12 — forked from kinlane/Convert Word and Powerpoint File to PDF with Google Docs API
This will convert Microsoft Word and Powerpoint files to PDF using the Google Docs Listing API.
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
@kennywall
kennywall / Business of APIs - XML
Created August 12, 2020 01:11 — forked from kinlane/Business of APIs - XML
Business of APIs - XML
<contact>
<firstname>Kin</firstname>
<lastname>Lane</lastname>
<age>38</age>
<website>apievangelist.com</website>
<address>
<streetaddress>123 2nd Street</streetaddress>
<city>New York</city>
<state>NY</state>
<postalcode>10021</postalcode>
@kennywall
kennywall / Business of APIs - JSON
Created August 12, 2020 01:11 — forked from kinlane/Business of APIs - JSON
Business of APIs - JSON
{
"firstName": "Kin",
"lastName": "Lane",
"age": 38,
"address":
{
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
@kennywall
kennywall / Shapeways Widget
Created August 12, 2020 01:11 — forked from kinlane/Shapeways Widget
Shapeways Widget
<iframe frameborder="0" src="http://www.shapeways.com/widget/include.php?fav=YOURSHOPNAME&style=light&rows=4&cols=1" style="border: 1px solid rgb(192, 192, 192); height: 620px; width: 168px;"> </iframe>
@kennywall
kennywall / Seevl API Request
Created August 12, 2020 01:11 — forked from kinlane/Seevl API Request
Seevl API Request
marvin:~ alex$ curl http://seevl.net/entity/?name=beatles -H "Accept: application/json" -H "X_APP_ID: 1c55b80a" -H "X_APP_KEY:65e7fbe154e8cee6c1704a9358dd8939"
{
"results" : [ {
"uri" : "http://seevl.net/entity/pzkVnsbP#id",
"sid" : "pzkVnsbP",
"name" : "The Beatles",
"description" : "The Beatles were an English rock band, formed in Liverpool in 1960, and one of the most commercially successful and critically acclaimed acts in the history of popular music. From 1962, the group consisted of John Lennon (rhythm guitar, vocals), Paul McCartney (bass guitar, vocals), George Harrison (lead guitar, vocals ..."
}, {
"uri" : "http://seevl.net/entity/eGnmzTZS#id",
@kennywall
kennywall / gist:4798ffd36339d287757d785764b806c1
Created August 12, 2020 01:11 — forked from kinlane/gist:1066419
Facebook Like with Google Analytics
FB.Event.subscribe('edge.create', function(targetUrl) {
_gaq.push(['_trackSocial', 'facebook', 'like', targetUrl]);
});
@kennywall
kennywall / gist:9e789c6c7c8fc113b79ce744b0108bdb
Created August 12, 2020 01:11 — forked from kinlane/gist:1066428
Facebook Shares with Google Analytics
FB.Event.subscribe('message.send', function(targetUrl) {
_gaq.push(['_trackSocial', 'facebook', 'send', targetUrl]);
});