Skip to content

Instantly share code, notes, and snippets.

View pkarman's full-sized avatar

Peter Karman pkarman

View GitHub Profile
my %TOPIC_DOCS = (
'Arts' => '89944632-fe7c-47df-bc2c-b2036d823f98',
'Culture' => '9c3c8f9e-f038-4b7e-9719-f5c4b1404c1a',
'Education' => '7a1c4403-0bce-4866-a9eb-8066da226985',
'Food' => '635bb7a1-9e49-4a5d-bab3-048ff945b5fb',
'Health' => '9bd2ec35-be2f-4eb1-9ef9-54a59405dd85',
'Money' => '4d0acb4c-7057-4771-987d-97fc21ad0bcc',
'Music' => '4993cf23-968a-4182-acb2-4d46a96d0ac8',
'News' => '5c0f1387-024e-4a84-8804-43048779cc37',
'Politics' => '588eb430-d600-4617-ab8f-f601839436a9',
@pkarman
pkarman / gist:8a4b0c0edad8cfb8943a
Created September 28, 2014 03:12
example of json that provokes 403 ES error
{"index":{"_id":2284}}
{"collection_id":93,"created_at":"2013-04-15T16:40:58Z","date_broadcast":"2000-03-01","date_created":"2013-03-01","date_peg":null,"description":"The Walrus was Paul","digital_format":"audio/mpeg3","digital_location":null,"duration":9900,"episode_title":"Episode","extra":{"notes_":"African-American politician. http://dc.lib.unc.edu/cdm/compoundobject/collection/sohp/id/8466/rec/16"},"id":2284,"identifier":null,"image":null,"is_public":false,"language":null,"music_sound_used":null,"notes":null,"physical_format":null,"physical_location":null,"series_title":null,"tags":["civil rights","georgia","race relations"],"title":"Love - The Beatles - Right","updated_at":"2013-04-15T16:54:25Z","contributors":["Lennon and McCartney"],"producers":[],"interviewers":[],"interviewees":[],"creators":["Lennon and McCartney"],"hosts":[],"guests":[],"transcripts":[],"collection_title":"Jack_s_spreadsheet_for_Pop_Up_beta_testers.csv","confirmed_entities":[],"low_unconfirmed_entities":[],"mid_unconfirmed_entiti
@pkarman
pkarman / gist:5f4cb8388bbf40a9def8
Created June 1, 2014 19:07
apm audio api html5 example
<html lang="en">
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
var audioId = 'apm-audio:/marketplace/segments/2013/07/19/marketplace_segment11_20130719';
$.ajax({
url: 'http://api.publicradio.org/audio/v2/?id='+audioId+'&ref=bar',
//dataType: 'jsonp',
})
$.ajaxSetup({
xhrFields: {
withCredentials : true // allow FF to send auth cookie
},
headers: {
"X-Requested-With" : "xmlhttprequest" // tell server we're ajax
}
});
@pkarman
pkarman / gist:9395637
Created March 6, 2014 17:58
templated json
contentjson : [
{ guid : '9cb7e642-1156-4d79-8aa0-dec85a74aa87', type : 'image/jpeg' },
{ text : 'hello world' },
{ guid : 'b9d9b0d4-799b-45f7-b662-991143a48640', type : 'audio/mpeg' }
]