npr 0.0.0 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. data/.travis.yml +13 -0
  2. data/{LICENSE → MIT-LICENSE} +1 -1
  3. data/README.md +115 -3
  4. data/Rakefile +6 -0
  5. data/gemfiles/Gemfile.rb-1.8.7 +6 -0
  6. data/lib/npr/api/client.rb +87 -0
  7. data/lib/npr/api/message.rb +38 -0
  8. data/lib/npr/api/query_builder.rb +222 -0
  9. data/lib/npr/api/response.rb +32 -0
  10. data/lib/npr/api.rb +7 -0
  11. data/lib/npr/concern/attr_typecast.rb +59 -0
  12. data/lib/npr/concern/relation.rb +103 -0
  13. data/lib/npr/concern/shallow_attributes.rb +71 -0
  14. data/lib/npr/concern.rb +9 -0
  15. data/lib/npr/configuration.rb +120 -0
  16. data/lib/npr/core_ext/array/wrap.rb +15 -0
  17. data/lib/npr/entity/audio.rb +28 -0
  18. data/lib/npr/entity/author.rb +22 -0
  19. data/lib/npr/entity/base.rb +19 -0
  20. data/lib/npr/entity/book.rb +21 -0
  21. data/lib/npr/entity/book_edition.rb +26 -0
  22. data/lib/npr/entity/byline.rb +18 -0
  23. data/lib/npr/entity/collection.rb +11 -0
  24. data/lib/npr/entity/crop.rb +20 -0
  25. data/lib/npr/entity/enlargement.rb +20 -0
  26. data/lib/npr/entity/formats.rb +19 -0
  27. data/lib/npr/entity/image.rb +33 -0
  28. data/lib/npr/entity/intro_text.rb +21 -0
  29. data/lib/npr/entity/link.rb +23 -0
  30. data/lib/npr/entity/list.rb +28 -0
  31. data/lib/npr/entity/list_text.rb +19 -0
  32. data/lib/npr/entity/member.rb +23 -0
  33. data/lib/npr/entity/member_byline.rb +17 -0
  34. data/lib/npr/entity/member_promo_art.rb +17 -0
  35. data/lib/npr/entity/mp3.rb +23 -0
  36. data/lib/npr/entity/organization.rb +18 -0
  37. data/lib/npr/entity/paragraph.rb +27 -0
  38. data/lib/npr/entity/permissions.rb +18 -0
  39. data/lib/npr/entity/program.rb +24 -0
  40. data/lib/npr/entity/promo_art.rb +17 -0
  41. data/lib/npr/entity/promo_art_book_edition.rb +18 -0
  42. data/lib/npr/entity/provider.rb +23 -0
  43. data/lib/npr/entity/pull_quote.rb +16 -0
  44. data/lib/npr/entity/related_link.rb +21 -0
  45. data/lib/npr/entity/show.rb +19 -0
  46. data/lib/npr/entity/story.rb +179 -0
  47. data/lib/npr/entity/text.rb +22 -0
  48. data/lib/npr/entity/title.rb +21 -0
  49. data/lib/npr/entity/transcript.rb +16 -0
  50. data/lib/npr/entity.rb +7 -0
  51. data/lib/npr/errors.rb +17 -0
  52. data/lib/npr/version.rb +1 -1
  53. data/lib/npr.rb +64 -3
  54. data/npr.gemspec +12 -2
  55. data/spec/fixtures/README.md +30 -0
  56. data/spec/fixtures/atom/01_story_full_media.atom +36 -0
  57. data/spec/fixtures/atom/02_story_multiple_images.atom +32 -0
  58. data/spec/fixtures/atom/03_no_results.atom +10 -0
  59. data/spec/fixtures/atom/04_invalid_id.atom +344 -0
  60. data/spec/fixtures/atom/05_no_api_key.atom +9 -0
  61. data/spec/fixtures/atom/06_story_multiple_ids.atom +59 -0
  62. data/spec/fixtures/fetch_formats.rb +65 -0
  63. data/spec/fixtures/html/01_story_full_media.html +54 -0
  64. data/spec/fixtures/html/02_story_multiple_images.html +55 -0
  65. data/spec/fixtures/html/03_no_results.html +38 -0
  66. data/spec/fixtures/html/04_invalid_id.html +82 -0
  67. data/spec/fixtures/html/05_no_api_key.html +8 -0
  68. data/spec/fixtures/html/06_story_multiple_ids.html +69 -0
  69. data/spec/fixtures/js/01_story_full_media.js +1 -0
  70. data/spec/fixtures/js/02_story_multiple_images.js +1 -0
  71. data/spec/fixtures/js/03_no_results.js +1 -0
  72. data/spec/fixtures/js/04_invalid_id.js +1 -0
  73. data/spec/fixtures/js/05_no_api_key.js +8 -0
  74. data/spec/fixtures/js/06_story_multiple_ids.js +1 -0
  75. data/spec/fixtures/json/01_story_full_media.json +1 -0
  76. data/spec/fixtures/json/02_story_multiple_images.json +1 -0
  77. data/spec/fixtures/json/03_no_results.json +1 -0
  78. data/spec/fixtures/json/04_invalid_id.json +1 -0
  79. data/spec/fixtures/json/05_no_api_key.json +1 -0
  80. data/spec/fixtures/json/06_story_multiple_ids.json +1 -0
  81. data/spec/fixtures/json/list.json +1 -0
  82. data/spec/fixtures/mediarss/01_story_full_media.rss +31 -0
  83. data/spec/fixtures/mediarss/02_story_multiple_images.rss +40 -0
  84. data/spec/fixtures/mediarss/03_no_results.rss +17 -0
  85. data/spec/fixtures/mediarss/04_invalid_id.rss +279 -0
  86. data/spec/fixtures/mediarss/05_no_api_key.rss +31 -0
  87. data/spec/fixtures/mediarss/06_story_multiple_ids.rss +65 -0
  88. data/spec/fixtures/nprml/01_story_full_media.xml +271 -0
  89. data/spec/fixtures/nprml/02_story_multiple_images.xml +165 -0
  90. data/spec/fixtures/nprml/03_no_results.xml +14 -0
  91. data/spec/fixtures/nprml/04_invalid_id.xml +1780 -0
  92. data/spec/fixtures/nprml/05_no_api_key.xml +9 -0
  93. data/spec/fixtures/nprml/06_story_multiple_ids.xml +435 -0
  94. data/spec/fixtures/nprml/list.xml +440 -0
  95. data/spec/fixtures/podcast/01_story_full_media.rss +30 -0
  96. data/spec/fixtures/podcast/02_story_multiple_images.rss +32 -0
  97. data/spec/fixtures/podcast/03_no_results.rss +19 -0
  98. data/spec/fixtures/podcast/04_invalid_id.rss +186 -0
  99. data/spec/fixtures/podcast/05_no_api_key.rss +31 -0
  100. data/spec/fixtures/podcast/06_story_multiple_ids.rss +43 -0
  101. data/spec/fixtures/rss/01_story_full_media.rss +25 -0
  102. data/spec/fixtures/rss/02_story_multiple_images.rss +25 -0
  103. data/spec/fixtures/rss/03_no_results.rss +17 -0
  104. data/spec/fixtures/rss/04_invalid_id.rss +137 -0
  105. data/spec/fixtures/rss/05_no_api_key.rss +31 -0
  106. data/spec/fixtures/rss/06_story_multiple_ids.rss +33 -0
  107. data/spec/spec_helper.rb +23 -0
  108. data/spec/support/config_helper.rb +64 -0
  109. data/spec/support/fake_response.rb +54 -0
  110. data/spec/support/fixture_helper.rb +23 -0
  111. data/spec/unit/api/client_spec.rb +42 -0
  112. data/spec/unit/api/message_spec.rb +68 -0
  113. data/spec/unit/api/query_builder_spec.rb +195 -0
  114. data/spec/unit/api/response_spec.rb +45 -0
  115. data/spec/unit/configuration_spec.rb +63 -0
  116. data/spec/unit/entity/audio_spec.rb +75 -0
  117. data/spec/unit/entity/author_spec.rb +30 -0
  118. data/spec/unit/entity/base_spec.rb +87 -0
  119. data/spec/unit/entity/book_edition_spec.rb +57 -0
  120. data/spec/unit/entity/book_spec.rb +31 -0
  121. data/spec/unit/entity/byline_spec.rb +23 -0
  122. data/spec/unit/entity/collection_spec.rb +39 -0
  123. data/spec/unit/entity/crop_spec.rb +25 -0
  124. data/spec/unit/entity/englargement_spec.rb +21 -0
  125. data/spec/unit/entity/formats_spec.rb +41 -0
  126. data/spec/unit/entity/image_spec.rb +82 -0
  127. data/spec/unit/entity/intro_text_spec.rb +25 -0
  128. data/spec/unit/entity/link_spec.rb +25 -0
  129. data/spec/unit/entity/list_spec.rb +22 -0
  130. data/spec/unit/entity/list_text_spec.rb +31 -0
  131. data/spec/unit/entity/member_byline_spec.rb +21 -0
  132. data/spec/unit/entity/member_promo_art_spec.rb +21 -0
  133. data/spec/unit/entity/member_spec.rb +59 -0
  134. data/spec/unit/entity/mp3_spec.rb +25 -0
  135. data/spec/unit/entity/organization_spec.rb +29 -0
  136. data/spec/unit/entity/paragraph_spec.rb +25 -0
  137. data/spec/unit/entity/permissions_spec.rb +56 -0
  138. data/spec/unit/entity/program_spec.rb +27 -0
  139. data/spec/unit/entity/promo_art_book_edition_spec.rb +21 -0
  140. data/spec/unit/entity/promo_art_spec.rb +42 -0
  141. data/spec/unit/entity/pull_quote_spec.rb +29 -0
  142. data/spec/unit/entity/related_link_spec.rb +55 -0
  143. data/spec/unit/entity/show_spec.rb +41 -0
  144. data/spec/unit/entity/story_spec.rb +154 -0
  145. data/spec/unit/entity/text_spec.rb +54 -0
  146. data/spec/unit/entity/title_spec.rb +25 -0
  147. data/spec/unit/entity/transcript_spec.rb +22 -0
  148. metadata +340 -8
@@ -0,0 +1 @@
1
+ {"version": "0.94", "message": [{"id": "201", "level": "warning", "text": {"$text": "Query parameter '1' is invalid and was ignored."}, "timestamp": {"$text": "1355426271.34"}}], "list": {"title": {"$text": "NPR: Stories from NPR"}, "teaser": {"$text": "Assorted stories from NPR"}, "miniTeaser": {"$text": "Custom NPR News Feed API. Visit http://www.npr.org/templates/apidoc/index.php for more information."}, "link": [{"type": "api", "$text": "http://api.npr.org/query?id=1&apiKey=API_KEY"}], "story": [{"id": "167159547", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167159547&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZkTEfZ"}], "title": {"$text": "On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says"}, "partnerId": {"$text": "167159547"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "Fifty-five percent of those surveyed said President Obama is making a \"serious effort\" to work with Republicans. Just 32 percent said Republicans are making a serious effort to work with the Democratic president."}, "miniTeaser": {"$text": "Fifty-five percent said President Obama is making a \"serious effort\" to work with Republicans."}, "slug": {"$text": "The Two-Way"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/13/twosides132way_sq-5e343907998d9f07d5c1e4f01ee1fdbb8326ac27.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/13/twosides132way_sq-5e343907998d9f07d5c1e4f01ee1fdbb8326ac27.jpg?s=11"}, "provider": {"$text": "Getty Images"}}, "storyDate": {"$text": "Thu, 13 Dec 2012 15:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 12:33:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 12:33:32 -0500"}, "show": [{"program": {"id": "2", "code": "ATC", "$text": "All Things Considered"}, "showDate": {"$text": "Thu, 13 Dec 2012 15:00:00 -0500"}, "segNum": {"$text": "54"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "164716837", "type": "collection", "title": {"$text": "Two-Way Featured Post Two"}, "link": [{"type": "html", "$text": "http://www.npr.org/series/164716837/two-way-featured-post-two?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=164716837&apiKey=API_KEY"}]}, {"id": "164475099", "type": "tag", "title": {"$text": "fiscal cliff"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=164475099&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=164475099&apiKey=API_KEY"}]}, {"id": "137769525", "type": "tag", "title": {"$text": "deficit reduction "}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=137769525&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=137769525&apiKey=API_KEY"}]}, {"id": "128111167", "type": "tag", "title": {"$text": "taxes"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=128111167&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=128111167&apiKey=API_KEY"}]}, {"id": "127602855", "type": "category", "title": {"$text": "America"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=127602855&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=127602855&apiKey=API_KEY"}]}, {"id": "125939328", "type": "tag", "title": {"$text": "Pew Research Center"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=125939328&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125939328&apiKey=API_KEY"}]}, {"id": "103943429", "type": "blog", "slug": "true", "title": {"$text": "The Two-Way"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=103943429&apiKey=API_KEY"}]}, {"id": "1091", "type": "topic", "title": {"$text": "Around the Nation"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/around-the-nation/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1091&apiKey=API_KEY"}]}, {"id": "1014", "type": "primaryTopic", "title": {"$text": "Politics"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/politics/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1014&apiKey=API_KEY"}]}, {"id": "1014", "type": "topic", "title": {"$text": "Politics"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/politics/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1014&apiKey=API_KEY"}]}, {"id": "1003", "type": "topic", "title": {"$text": "U.S."}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/us/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1003&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}, {"id": "1001", "type": "topic", "title": {"$text": "News"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/news/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1001&apiKey=API_KEY"}]}], "audio": [{"id": "167163562", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "false"}}, "stream": {"active": "false"}}], "byline": [{"id": "167159628", "name": {"personId": "104192887", "$text": "Mark Memmott"}, "link": [{"type": "html", "$text": "http://www.npr.org/people/104192887/mark-memmott?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=104192887&apiKey=API_KEY"}]}], "image": [{"id": "167164034", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/twosides132way-0600cdf9eefdbc0d5c1021c23a48a9a6f8b9c719.jpg?s=12", "hasBorder": "false", "title": {"$text": "President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January."}, "caption": {"$text": "President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January."}, "link": {"url": ""}, "producer": {"$text": "Saul Loeb"}, "provider": {"url": "", "$text": "Getty Images"}, "copyright": {}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/13/twosides132way-0600cdf9eefdbc0d5c1021c23a48a9a6f8b9c719.jpg", "height": "349", "width": "465"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/13/twosides132way_sq-5e343907998d9f07d5c1e4f01ee1fdbb8326ac27.jpg", "height": "381", "width": "381"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/13/twosides132way_wide-ba3ed7e5c1630f2817210abfcd710583df363520.jpg", "height": "278", "width": "495"}]}], "text": {"paragraph": [{"num": "1", "$text": "As the end-of-year tax increases and spending cuts known as the \"fiscal cliff\" near, \"Democrats are in a strong position with the public,\" the Pew Research Center reports."}, {"num": "2", "$text": "A new national poll Pew released this morning shows that:"}, {"num": "3", "$text": "-- \"When it comes to the reaching an agreement to avoid the fiscal cliff, 55% say Obama is making a serious effort to work with Republicans. But just 32% say Republican leaders are making a serious effort to work with Obama on a deficit deal.\""}, {"num": "4", "$text": "-- President Obama's \"first post-reelection job approval rating has risen to 55%, up five points since July and 11 points since the start of the year. Obama's job rating is markedly higher than George W. Bush's first job measure (48%) after he won reelection in 2004.\""}, {"num": "5", "$text": "-- \"By a 53% to 33% margin, the public sees the Republican Party, rather than the Democratic Party, as 'more extreme in its positions.' Democrats, on the other hand, are seen as \"more willing to work with leaders from the other party\" by roughly two-to-one (53% vs. 27%).\""}, {"num": "6", "$text": "The national survey of 1,503 adults was conducted Dec. 5-9. Pew says that \"900 respondents were interviewed on a landline telephone, and 603 were interviewed on a cell phone, including 300 who had no landline telephone.\" The margin of error on results from the full survey is +/- 2.9 percentage points."}, {"num": "7", "$text": "The results echo those of a survey Pew did for The Washington Post in late November and earlier in December. In that poll, 53 percent of those surveyed said Republicans would be \"more to blame\" if there's no agreement reached to avoid going over the so-called cliff. Twenty-nine percent said Obama would be to blame."}, {"num": "8", "$text": "Andrew Kohut, president of the Pew Research Center, is due to speak with All Things Considered this afternoon about the latest poll results. We'll add the broadcast-version of that conversation to the top of this post later. Click here to find an NPR station that broadcasts or streams the show. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "As the end-of-year tax increases and spending cuts known as the \"<a href=\"http://www.npr.org/templates/archives/archive.php?thingId=164475099\" target=\"_blank\">fiscal cliff</a>\" near, \"Democrats are in a strong position with the public,\" the Pew Research Center reports."}, {"num": "2", "$text": "<a href=\"http://www.people-press.org/2012/12/13/as-fiscal-cliff-nears-democrats-have-public-opinion-on-their-side/\" target=\"_blank\">A new national poll Pew released this morning</a> shows that:"}, {"num": "3", "$text": "-- \"When it comes to the reaching an agreement to avoid the fiscal cliff, 55% say Obama is making a serious effort to work with Republicans. But just 32% say Republican leaders are making a serious effort to work with Obama on a deficit deal.\""}, {"num": "4", "$text": "-- President Obama's \"first post-reelection job approval rating has <a href=\"http://www.people-press.org/files/2012/12/12-13-12-1.png\"></a>risen to 55%, up five points since July and 11 points since the start of the year. Obama's job rating is markedly higher than George W. Bush's first job measure (48%) after he won reelection in 2004.\""}, {"num": "5", "$text": "-- \"By a 53% to 33% margin, the public sees the Republican Party, rather than the Democratic Party, as 'more extreme in its positions.' Democrats, on the other hand, are seen as \"more willing to work with leaders from the other party\" by roughly two-to-one (53% vs. 27%).\""}, {"num": "6", "$text": "The national survey of 1,503 adults was conducted Dec. 5-9. <a href=\"http://www.people-press.org/2012/12/13/about-the-surveys-21/\" target=\"_blank\">Pew says</a> that \"900 respondents were interviewed on a landline telephone, and 603 were interviewed on a cell phone, including 300 who had no landline telephone.\" The margin of error on results from the full survey is +/- 2.9 percentage points."}, {"num": "7", "$text": "The results <a href=\"http://www.people-press.org/2012/12/04/pessimism-about-fiscal-cliff-deal-republicans-still-get-more-blame/\" target=\"_blank\">echo those of a survey Pew did for <em>The Washington Post</em></a> in late November and earlier in December. In that poll, 53 percent of those surveyed said Republicans would be \"more to blame\" if there's no agreement reached to avoid going over the so-called cliff. Twenty-nine percent said Obama would be to blame."}, {"num": "8", "$text": "Andrew Kohut, president of the Pew Research Center, is due to speak with<em> All Things Considered</em> this afternoon about the latest poll results. We'll add the broadcast-version of that conversation to the top of this post later. <a href=\"http://www.npr.org/templates/stations/stations/\" target=\"_blank\">Click here</a> to find an NPR station that broadcasts or streams the show. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=On+%27Fiscal+Cliff%2C%27+Majority+Of+Public+Sides+With+Democrats%2C+Pew+Poll+Says&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says</h1> <input type=\"hidden\" id=\"title167159547\" value=\"On 'Fiscal Cliff,' Majority Of Public Sides With Democrats, Pew Poll Says\"></input> <input type=\"hidden\" id=\"modelShortUrl167159547\" value=\"http://n.pr/ZkTFQT\"></input> <input type=\"hidden\" id=\"modelFullUrl167159547\" value=\"http://www.npr.org/blogs/thetwo-way/2012/12/13/167159547/on-fiscal-cliff-majority-of-public-sides-with-democrats-pew-poll-says\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167159549\" previewTitle=\"bylines\"> <p class=\"byline\">by <a rel=\"author\" href=\"http://www.npr.org/people/104192887/mark-memmott\"><span>Mark Memmott</span></a></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167159549\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\">11:25 AM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"primaryaudio\" class=\"storylocation linkLocation\"> <div id=\"res167163562\" class=\"bucketwrap primary unavailable resaudio \"> <div class=\"listenicon\"> <a href=\"#\"></a> </div> <!-- END CLASS=\"LISTENICON\" --> <div class=\"avcontent listen\"> <p>Audio for this story from <a href=\"/templates/rundowns/rundown.php?prgId=2&prgDate=12-13-2012\">All Things Considered</a> will be available at approximately 7:00 p.m. ET.</p> </div> <!-- END CLASS=\"AVCONTENT LISTEN\" --> <p class=\"date\">December 13, 2012</p> <ul class=\"audiotools\"> <li><a class=\"pending\" title=\"Transcript Pending\" href=\"#\"><span>Transcript</span></a></li> </ul> <div class=\"spacer\"> &nbsp; </div> </div> <!-- END ID=\"RES167163562\" CLASS=\"BUCKETWRAP PRIMARY UNAVAILABLE RESAUDIO \" --></div><!-- END ID=\"PRIMARYAUDIO\" CLASS=\"STORYLOCATION LINKLOCATION\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167164034\" class=\"bucketwrap image large\" previewTitle=\"President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/twosides132way-0600cdf9eefdbc0d5c1021c23a48a9a6f8b9c719-s6.jpg\" title=\"President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.\" alt=\"President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>President Obama, with House Speaker John Boehner (R-Ohio) behind him, delivering his State of the Union address last January.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">Saul Loeb</span>/<span class=\"rightsnotice\">Getty Images</span></span> </div> <p>As the end-of-year tax increases and spending cuts known as the \"<a href=\"http://www.npr.org/templates/archives/archive.php?thingId=164475099\" target=\"_blank\">fiscal cliff</a>\" near, \"Democrats are in a strong position with the public,\" the Pew Research Center reports.</p> <p><a href=\"http://www.people-press.org/2012/12/13/as-fiscal-cliff-nears-democrats-have-public-opinion-on-their-side/\" target=\"_blank\">A new national poll Pew released this morning</a> shows that:</p> <p>&mdash; \"When it comes to the reaching an agreement to avoid the fiscal cliff, 55% say Obama is making a serious effort to work with Republicans. But just 32% say Republican leaders are making a serious effort to work with Obama on a deficit deal.\"</p> <p>&mdash; President Obama's \"first post-reelection job approval rating has <a href=\"http://www.people-press.org/files/2012/12/12-13-12-1.png\"></a>risen to 55%, up five points since July and 11 points since the start of the year. Obama's job rating is markedly higher than George W. Bush's first job measure (48%) after he won reelection in 2004.\"</p> <p>&mdash; \"By a 53% to 33% margin, the public sees the Republican Party, rather than the Democratic Party, as 'more extreme in its positions.' Democrats, on the other hand, are seen as \"more willing to work with leaders from the other party\" by roughly two-to-one (53% vs. 27%).\"</p> <p>The national survey of 1,503 adults was conducted Dec. 5-9. <a href=\"http://www.people-press.org/2012/12/13/about-the-surveys-21/\" target=\"_blank\">Pew says</a> that \"900 respondents were interviewed on a landline telephone, and 603 were interviewed on a cell phone, including 300 who had no landline telephone.\" The margin of error on results from the full survey is +/- 2.9 percentage points.</p> <p>The results <a href=\"http://www.people-press.org/2012/12/04/pessimism-about-fiscal-cliff-deal-republicans-still-get-more-blame/\" target=\"_blank\">echo those of a survey Pew did for <em>The Washington Post</em></a> in late November and earlier in December. In that poll, 53 percent of those surveyed said Republicans would be \"more to blame\" if there's no agreement reached to avoid going over the so-called cliff. Twenty-nine percent said Obama would be to blame.</p> <p>Andrew Kohut, president of the Pew Research Center, is due to speak with<em> All Things Considered</em> this afternoon about the latest poll results. We'll add the broadcast-version of that conversation to the top of this post later. <a href=\"http://www.npr.org/templates/stations/stations/\" target=\"_blank\">Click here</a> to find an NPR station that broadcasts or streams the show.</p></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=On+%27Fiscal+Cliff%2C%27+Majority+Of+Public+Sides+With+Democrats%2C+Pew+Poll+Says&utme=8(APIKey)9(API_KEY)\"/></div>"}}, {"id": "167177687", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167177687&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZlCkHr"}], "title": {"$text": "It's ScuttleButton Time!"}, "partnerId": {"$text": "167177687"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "This is the last ScuttleButton puzzle for 2012 — and your last chance to win a Political Junkie t-shirt and Official No-Prize button! (until next year, of course)"}, "miniTeaser": {"$text": "It's time to solve this week's ScuttleButton puzzle."}, "slug": {"$text": "Political Junkie"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/13/button_1207_1_sq-7676362472ddbb1e5cfc8a9c8bb42d29908f53ea.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/13/button_1207_1_sq-7676362472ddbb1e5cfc8a9c8bb42d29908f53ea.jpg?s=11"}, "provider": {"$text": "Ken Rudin collection"}}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:48:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 13:53:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 13:53:53 -0500"}, "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "126925951", "type": "tag", "slug": "true", "title": {"$text": "Political Junkie"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=126925951&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=126925951&apiKey=API_KEY"}]}, {"id": "125961350", "type": "tag", "title": {"$text": "ScuttleButton"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=125961350&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125961350&apiKey=API_KEY"}]}, {"id": "97248522", "type": "blog", "title": {"$text": "Political Junkie"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/politicaljunkie/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=97248522&apiKey=API_KEY"}]}, {"id": "1014", "type": "primaryTopic", "title": {"$text": "Politics"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/politics/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1014&apiKey=API_KEY"}]}, {"id": "1014", "type": "topic", "title": {"$text": "Politics"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/politics/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1014&apiKey=API_KEY"}]}], "byline": [{"id": "167178573", "name": {"personId": "1930204", "$text": "Ken Rudin"}, "link": [{"type": "html", "$text": "http://www.npr.org/people/1930204/ken-rudin?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1930204&apiKey=API_KEY"}]}], "image": [{"id": "167179279", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/button_1207_1_custom-2ea6e50cae5f62fcad63b4d42ff47f515d5f5302.jpg?s=12", "hasBorder": "false", "title": {"$text": "scuttle"}, "caption": {}, "link": {"url": ""}, "producer": {}, "provider": {"url": "", "$text": "Ken Rudin collection"}, "copyright": {}, "crop": [{"type": "square", "src": "http://media.npr.org/assets/img/2012/12/13/button_1207_1_sq-7676362472ddbb1e5cfc8a9c8bb42d29908f53ea.jpg", "height": "727", "width": "727"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/button_1207_1_custom-2ea6e50cae5f62fcad63b4d42ff47f515d5f5302.jpg", "height": "2192", "width": "727"}]}], "text": {"paragraph": [{"num": "1", "$text": "... And, it's the last ScuttleButton for 2012."}, {"num": "2", "$text": "ScuttleButton, of course, is that once-a-week waste of time exercise in which each Monday or Tuesday (or, as they call today, \"Thursday\") I put up a vertical display of buttons on this site. Your job is to simply take one word (or concept) per button, add 'em up, and, hopefully, you will arrive at a famous name or a familiar expression. (And seriously, by familiar, I mean it's something that more than one person on Earth would recognize.)"}, {"num": "3", "$text": "For years, a correct answer chosen at random would get his or her name posted in this column, an incredible honor in itself. Now the stakes are even higher. Thanks to the efforts of the folks at Talk of the Nation, that person also hears their name mentioned on the Wednesday show (by me) and receives a Political Junkie t-shirt in the bargain. Is this a great country or what?"}, {"num": "4", "$text": "You can't use the comments box at the bottom of the page for your answer. Send submission (plus your name and city/state — you won't win without that) to politicaljunkie@npr.org."}, {"num": "5", "$text": "(Why do people keep forgetting to include their name and city/state?)"}, {"num": "6", "$text": "And, by adding your name to the Political Junkie mailing list, you will be among the first on your block to receive notice about the column and the puzzle. Sign up at politicaljunkie@npr.org. Or you can make sure to get an automatic RSS feed whenever a new Junkie post goes up by clicking here."}, {"num": "7", "$text": "Good luck!"}, {"num": "8", "$text": "By the way, I always announce the winner on Wednesday's Junkie segment on TOTN. But with it now less than a week until the next show, your window for getting your answer in is smaller."}, {"num": "9", "$text": "Here are the buttons used and the answer to last week's puzzle:"}, {"num": "10", "$text": "I'm a Voter Too! — Worn by someone who apparently is also a voter."}, {"num": "11", "$text": "Anna Eshoo for Congress — A Democrat from California, she was first elected in 1992."}, {"num": "12", "$text": "Impeach 1/2 of LBJ — The idea behind this button: they like President Johnson's domestic policy but hate his Vietnam War policy."}, {"num": "13", "$text": "picture button of 3 men, including LBJ — The other two, on this North Dakota 1964 coattail button, are Sen. Quentin Burdick and Gov. William Guy. All three Democrats won in N.D. that year."}, {"num": "14", "$text": "So, when you combine Too + Anna + Half + Men, you may just very well end up with ..."}, {"num": "15", "$text": "Two and a Half Men. The popular CBS program that is, by some accounts, very funny and very dirty. Or at least it was when Charlie Sheen was on it, before he self-destructed. ."}, {"num": "16", "$text": "The winner, chosen completely at random, is ... Seth Denney of Danville, Iowa. Seth gets not only the coveted Political Junkie t-shirt — but the Official No Prize Button as well!"}, {"num": "17", "$text": "And don't forget to check out this week's Political Junkie column, which focuses on the surprise decision by South Carolina's Jim DeMint to leave the Senate, and the guessing game on his successor. Click here to read the column. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "... And, it's the last <strong>ScuttleButton</strong> for 2012."}, {"num": "2", "$text": "ScuttleButton, of course, is that once-a-week waste of time exercise in which each Monday or Tuesday (or, as they call today, \"Thursday\") I put up a vertical display of buttons on this site. Your job is to simply take one word (or concept) per button, add 'em up, and, hopefully, you will arrive at a famous name or a <em><strong>familiar</strong></em> expression. (And seriously, by familiar, I mean it's something that more than one person on Earth would recognize.)"}, {"num": "3", "$text": "For years, a correct answer chosen at random would get his or her name posted in this column, an incredible honor in itself. Now the stakes are even higher. Thanks to the efforts of the folks at <em>Talk of the Nation</em>, that person also hears their name mentioned on the Wednesday show (by me) and receives a <em><strong>Political Junkie</strong></em> t-shirt in the bargain. Is this a great country or what?"}, {"num": "4", "$text": "You can't use the comments box at the bottom of the page for your answer. Send submission (<em><strong>plus your name and city/state — you won't win without that</strong></em>) to <a href=\"mailto:politicaljunkie@npr.org\">politicaljunkie@npr.org</a>."}, {"num": "5", "$text": "(Why do people keep forgetting to include their name and city/state?)"}, {"num": "6", "$text": "And, by adding your name to the <em><strong>Political Junkie</strong></em> mailing list, you will be among the first on your block to receive notice about the column and the puzzle. Sign up at <a href=\"mailto:politicaljunkie@npr.org\">politicaljunkie@npr.org</a>. Or you can make sure to get an automatic RSS feed whenever a new Junkie post goes up by clicking <a href=\"http://www.npr.org/blogs/politicaljunkie/index.xml\">here</a>."}, {"num": "7", "$text": "Good luck!"}, {"num": "8", "$text": "By the way, I always announce the winner on Wednesday's Junkie segment on TOTN. But with it now less than a week until the next show, your window for getting your answer in is smaller."}, {"num": "9", "$text": "Here are the buttons used and the answer to <a href=\"http://www.npr.org/blogs/politicaljunkie/2012/12/03/166406400/its-scuttlebutton-time\">last week's puzzle</a>:"}, {"num": "10", "$text": "<em><strong>I'm a Voter Too!</strong></em> — Worn by someone who apparently is also a voter."}, {"num": "11", "$text": "<em><strong>Anna Eshoo for Congress</strong></em> — A Democrat from California, she was first elected in 1992."}, {"num": "12", "$text": "<em><strong>Impeach 1/2 of LBJ</strong></em> — The idea behind this button: they like President Johnson's domestic policy but hate his Vietnam War policy."}, {"num": "13", "$text": "<em><strong>picture button of 3 men, including LBJ</strong></em> — The other two, on this North Dakota 1964 coattail button, are Sen. Quentin Burdick and Gov. William Guy. All three Democrats won in N.D. that year."}, {"num": "14", "$text": "So, when you combine <em><strong>Too</strong></em> + <em><strong>Anna</strong></em> + <em><strong>Half</strong></em> + <em><strong>Men</strong></em>, you may just very well end up with ..."}, {"num": "15", "$text": "<strong><a href=\"http://www.cbs.com/shows/two_and_a_half_men/\">Two and a Half Men</a></strong>. The popular CBS program that is, by some accounts, very funny and very dirty. Or at least it was when Charlie Sheen was on it, before he self-destructed. ."}, {"num": "16", "$text": "The winner, chosen completely at random, is ... <em><strong>Seth Denney of Danville, Iowa</strong></em>. Seth gets not only the coveted <em><strong>Political Junkie</strong></em> t-shirt — but the Official No Prize Button as well!"}, {"num": "17", "$text": "And don't forget to check out this week's <em><strong>Political Junkie</strong></em> column, which focuses on the surprise decision by South Carolina's Jim DeMint to leave the Senate, and the guessing game on his successor. <a href=\"http://www.npr.org/blogs/politicaljunkie/2012/12/11/166700202/the-legacy-of-sen-jim-demint-the-good-the-bad-and-the-ugly\">Click here to read the column</a>. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=It%27s+ScuttleButton+Time%21&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>It's ScuttleButton Time!</h1> <input type=\"hidden\" id=\"title167177687\" value=\"It's ScuttleButton Time!\"></input> <input type=\"hidden\" id=\"modelShortUrl167177687\" value=\"http://n.pr/ZlCkHt\"></input> <input type=\"hidden\" id=\"modelFullUrl167177687\" value=\"http://www.npr.org/blogs/politicaljunkie/2012/12/13/167177687/its-scuttlebutton-time\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167177689\" previewTitle=\"bylines\"> <p class=\"byline\">by <a rel=\"author\" href=\"http://www.npr.org/people/1930204/ken-rudin\"><span>Ken Rudin</span></a></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167177689\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\"> 1:48 PM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167179279\" class=\"bucketwrap image small\" previewTitle=\"scuttle\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/button_1207_1_custom-2ea6e50cae5f62fcad63b4d42ff47f515d5f5302-s1.jpg\" title=\"scuttle\" alt=\"scuttle\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"rightsnotice\">Ken Rudin collection</span></span> </div> <p>... And, it's the last <strong>ScuttleButton</strong> for 2012.</p> <p>ScuttleButton, of course, is that once-a-week waste of time exercise in which each Monday or Tuesday (or, as they call today, \"Thursday\") I put up a vertical display of buttons on this site. Your job is to simply take one word (or concept) per button, add 'em up, and, hopefully, you will arrive at a famous name or a <em><strong>familiar</strong></em> expression. (And seriously, by familiar, I mean it's something that more than one person on Earth would recognize.)</p> <p>For years, a correct answer chosen at random would get his or her name posted in this column, an incredible honor in itself. Now the stakes are even higher. Thanks to the efforts of the folks at <em>Talk of the Nation</em>, that person also hears their name mentioned on the Wednesday show (by me) and receives a <em><strong>Political Junkie</strong></em> t-shirt in the bargain. Is this a great country or what?</p> <p>You can't use the comments box at the bottom of the page for your answer. Send submission (<em><strong>plus your name and city/state — you won't win without that</strong></em>) to <a href=\"mailto:politicaljunkie@npr.org\">politicaljunkie@npr.org</a>.</p> <p>(Why do people keep forgetting to include their name and city/state?)</p> <p>And, by adding your name to the <em><strong>Political Junkie</strong></em> mailing list, you will be among the first on your block to receive notice about the column and the puzzle. Sign up at <a href=\"mailto:politicaljunkie@npr.org\">politicaljunkie@npr.org</a>. Or you can make sure to get an automatic RSS feed whenever a new Junkie post goes up by clicking <a href=\"http://www.npr.org/blogs/politicaljunkie/index.xml\">here</a>.</p> <p>Good luck!</p> <p>By the way, I always announce the winner on Wednesday's Junkie segment on TOTN. But with it now less than a week until the next show, your window for getting your answer in is smaller.</p> <p>Here are the buttons used and the answer to <a href=\"http://www.npr.org/blogs/politicaljunkie/2012/12/03/166406400/its-scuttlebutton-time\">last week's puzzle</a>:</p> <p><em><strong>I'm a Voter Too!</strong></em> — Worn by someone who apparently is also a voter.</p> <p><em><strong>Anna Eshoo for Congress</strong></em> — A Democrat from California, she was first elected in 1992.</p> <p><em><strong>Impeach 1/2 of LBJ</strong></em> — The idea behind this button: they like President Johnson's domestic policy but hate his Vietnam War policy.</p> <p><em><strong>picture button of 3 men, including LBJ</strong></em> — The other two, on this North Dakota 1964 coattail button, are Sen. Quentin Burdick and Gov. William Guy. All three Democrats won in N.D. that year.</p> <p>So, when you combine <em><strong>Too</strong></em> + <em><strong>Anna</strong></em> + <em><strong>Half</strong></em> + <em><strong>Men</strong></em>, you may just very well end up with ...</p> <p><strong><a href=\"http://www.cbs.com/shows/two_and_a_half_men/\">Two and a Half Men</a></strong>. The popular CBS program that is, by some accounts, very funny and very dirty. Or at least it was when Charlie Sheen was on it, before he self-destructed. .</p> <p>The winner, chosen completely at random, is ... <em><strong>Seth Denney of Danville, Iowa</strong></em>. Seth gets not only the coveted <em><strong>Political Junkie</strong></em> t-shirt — but the Official No Prize Button as well!</p> <p>And don't forget to check out this week's <em><strong>Political Junkie</strong></em> column, which focuses on the surprise decision by South Carolina's Jim DeMint to leave the Senate, and the guessing game on his successor. <a href=\"http://www.npr.org/blogs/politicaljunkie/2012/12/11/166700202/the-legacy-of-sen-jim-demint-the-good-the-bad-and-the-ugly\">Click here to read the column</a>.</p></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=It%27s+ScuttleButton+Time%21&utme=8(APIKey)9(API_KEY)\"/></div>"}}, {"id": "167171524", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167171524&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/W965qz"}], "title": {"$text": "Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel "}, "partnerId": {"$text": "167171524"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "M75 fragrances for men and women get their name from rockets fired from Gaza into Israel in November. Sales have been soaring, shopkeepers say. No, they don't smell like rocket fuel. They're citrus-scented."}, "miniTeaser": {"$text": "There are M75 fragrances for men and women. The scents are citrus, not rocket fuel."}, "slug": {"$text": "The Two-Way"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/13/m75132way_sq-03b05522462b24e63b4a6d85328261a32479f564.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/13/m75132way_sq-03b05522462b24e63b4a6d85328261a32479f564.jpg?s=11"}, "provider": {"$text": "APA /Landov"}}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:15:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 13:17:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 13:17:51 -0500"}, "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "167171561", "type": "tag", "title": {"$text": "perfume"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=167171561&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167171561&apiKey=API_KEY"}]}, {"id": "127602464", "type": "category", "title": {"$text": "International"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=127602464&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=127602464&apiKey=API_KEY"}]}, {"id": "125940539", "type": "tag", "title": {"$text": "Israel"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=125940539&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125940539&apiKey=API_KEY"}]}, {"id": "125940537", "type": "tag", "title": {"$text": "Gaza"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=125940537&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125940537&apiKey=API_KEY"}]}, {"id": "103943429", "type": "blog", "slug": "true", "title": {"$text": "The Two-Way"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=103943429&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}, {"id": "1001", "type": "primaryTopic", "title": {"$text": "News"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/news/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1001&apiKey=API_KEY"}]}, {"id": "1001", "type": "topic", "title": {"$text": "News"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/news/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1001&apiKey=API_KEY"}]}], "byline": [{"id": "167174382", "name": {"personId": "104192887", "$text": "Mark Memmott"}, "link": [{"type": "html", "$text": "http://www.npr.org/people/104192887/mark-memmott?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=104192887&apiKey=API_KEY"}]}], "image": [{"id": "167176929", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803.jpg?s=12", "hasBorder": "false", "title": {"$text": "Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel."}, "caption": {"$text": "Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel."}, "link": {"url": ""}, "producer": {"$text": "Ashraf Amra "}, "provider": {"url": "", "$text": "APA /Landov"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way-16c1d87dd129c385ead40eda6210d3a982eeaea8.jpg", "height": "2617", "width": "3486"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way_sq-03b05522462b24e63b4a6d85328261a32479f564.jpg", "height": "3301", "width": "3301"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way_wide-804eb345b2f7d9f017eee3a913345a13d8b0aa8f.jpg", "height": "1924", "width": "3428"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803.jpg", "height": "3086", "width": "2578"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803.jpg", "height": "3086", "width": "2578"}]}], "text": {"paragraph": [{"num": "1", "$text": "Before anyone else does, we'll make the \"I love the smell of napalm in the morning\" reference that comes to mind when you read this:"}, {"num": "2"}, {"num": "3", "$text": "\"Sales of a citrus-scented perfume marketed in Gaza have soared since it was named in honor of the rockets that Palestinians shot at Israel during a war last month, the manufacturer said.\" (Reuters)"}, {"num": "4"}, {"num": "5", "$text": "The scent — there's one for men and another for women — is named M75. It's marketed by a Gaza company called Stay Stylish. The marketing director, who wanted only to be known as Shadi, tells CNN that in Gaza, M75 \"means a period of happiness, or the feeling of victory, and the use of the perfume is an expression of happiness as well.\""}, {"num": "6", "$text": "During eight days of fighting last month involving rockets fired from Hamas-controlled territory and air strikes by Israeli forces on Hamas targets in the Gaza Strip, more than 150 people were killed in Gaza and at least five people were killed in Israel."}, {"num": "7", "$text": "(H/T to NPR's Philip Reeves.) [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "Before anyone else does, we'll make the \"<a href=\"http://www.urbandictionary.com/define.php?term=i%20love%20the%20smell%20of%20napalm%20in%20the%20morning\" target=\"_blank\">I love the smell of napalm in the morning</a>\" reference that comes to mind when you read this:"}, {"num": "2", "$text": "<blockquote>"}, {"num": "3", "$text": "\"Sales of a citrus-scented perfume marketed in Gaza have soared since it was named in honor of the rockets that Palestinians shot at Israel during a war last month, the manufacturer said.\" (<a href=\"http://www.reuters.com/article/2012/12/12/us-palestinians-israel-perfume-idUSBRE8BB1QD20121212\" target=\"_blank\">Reuters</a>)"}, {"num": "4", "$text": "</blockquote>"}, {"num": "5", "$text": "The scent — there's one for men and another for women — is named M75. It's marketed by a Gaza company called Stay Stylish. The marketing director, who wanted only to be known as Shadi, <a href=\"http://www.cnn.com/2012/12/12/world/meast/gaza-rocket-perfume-m75/\" target=\"_blank\">tells CNN</a> that in Gaza, M75 \"means a period of happiness, or the feeling of victory, and the use of the perfume is an expression of happiness as well.\""}, {"num": "6", "$text": "During <a href=\"http://www.npr.org/blogs/thetwo-way/2012/11/21/165632139/no-peace-bomb-rips-apart-bus-in-tel-aviv-israel-continues-strikes-on-gaza\" target=\"_blank\">eight days of fighting last month</a> involving rockets fired from Hamas-controlled territory and air strikes by Israeli forces on Hamas targets in the Gaza Strip, more than 150 people were killed in Gaza and at least five people were killed in Israel."}, {"num": "7", "$text": "(H/T to NPR's Philip Reeves.) <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=Sales+Soar+In+Gaza+Of+Fragrance+Named+For+Rocket+Fired+At+Israel+&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel </h1> <input type=\"hidden\" id=\"title167171524\" value=\"Sales Soar In Gaza Of Fragrance Named For Rocket Fired At Israel \"></input> <input type=\"hidden\" id=\"modelShortUrl167171524\" value=\"http://n.pr/W965qB\"></input> <input type=\"hidden\" id=\"modelFullUrl167171524\" value=\"http://www.npr.org/blogs/thetwo-way/2012/12/13/167171524/sales-soar-in-gaza-of-fragrance-named-for-rocket-fired-at-israel\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167171526\" previewTitle=\"bylines\"> <p class=\"byline\">by <a rel=\"author\" href=\"http://www.npr.org/people/104192887/mark-memmott\"><span>Mark Memmott</span></a></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167171526\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\"> 1:15 PM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167176929\" class=\"bucketwrap image large\" previewTitle=\"Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/m75132way_custom-cc8a08679d92851f23eb4e23542a4c14ac7f9803-s6.jpg\" title=\"Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.\" alt=\"Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Bottles of M75 on sale at a shop in Gaza City. The fragrance is named for the rockets fired from Gaza into Israel.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">Ashraf Amra </span>/<span class=\"rightsnotice\">APA /Landov</span></span> </div> <p>Before anyone else does, we'll make the \"<a href=\"http://www.urbandictionary.com/define.php?term=i%20love%20the%20smell%20of%20napalm%20in%20the%20morning\" target=\"_blank\">I love the smell of napalm in the morning</a>\" reference that comes to mind when you read this:</p> <blockquote class=\"edTag\"><div> <p>\"Sales of a citrus-scented perfume marketed in Gaza have soared since it was named in honor of the rockets that Palestinians shot at Israel during a war last month, the manufacturer said.\" (<a href=\"http://www.reuters.com/article/2012/12/12/us-palestinians-israel-perfume-idUSBRE8BB1QD20121212\" target=\"_blank\">Reuters</a>)</p> </div></blockquote> <p>The scent — there's one for men and another for women — is named M75. It's marketed by a Gaza company called Stay Stylish. The marketing director, who wanted only to be known as Shadi, <a href=\"http://www.cnn.com/2012/12/12/world/meast/gaza-rocket-perfume-m75/\" target=\"_blank\">tells CNN</a> that in Gaza, M75 \"means a period of happiness, or the feeling of victory, and the use of the perfume is an expression of happiness as well.\"</p> <p>During <a href=\"http://www.npr.org/blogs/thetwo-way/2012/11/21/165632139/no-peace-bomb-rips-apart-bus-in-tel-aviv-israel-continues-strikes-on-gaza\" target=\"_blank\">eight days of fighting last month</a> involving rockets fired from Hamas-controlled territory and air strikes by Israeli forces on Hamas targets in the Gaza Strip, more than 150 people were killed in Gaza and at least five people were killed in Israel.</p> <p>(H/T to NPR's Philip Reeves.)</p></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=Sales+Soar+In+Gaza+Of+Fragrance+Named+For+Rocket+Fired+At+Israel+&utme=8(APIKey)9(API_KEY)\"/></div>"}}, {"id": "167163801", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167163801&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/W8UGaq"}], "title": {"$text": "One Photo, 126 Frames, 2 Billion Leaves, 247 Feet"}, "partnerId": {"$text": "167163801"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "Those numbers represent one giant sequoia. Oh, also: The \"President,\" as it's called, is more than 3,000 years old."}, "miniTeaser": {"$text": "Those numbers represent one giant sequoia. Oh, also: The tree is more than 3,000 years old."}, "slug": {"$text": "The Picture Show"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_sq-f7369a50afb94e8ada7b18c7bf9810f452b2ea3c.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_sq-f7369a50afb94e8ada7b18c7bf9810f452b2ea3c.jpg?s=11"}, "provider": {"$text": "National Geographic"}}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:01:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 13:01:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 13:01:35 -0500"}, "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "125399511", "type": "category", "title": {"$text": "National Geographic"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=125399511&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125399511&apiKey=API_KEY"}]}, {"id": "125399052", "type": "category", "title": {"$text": "Daily Picture Show"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=125399052&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=125399052&apiKey=API_KEY"}]}, {"id": "97635953", "type": "blog", "slug": "true", "title": {"$text": "The Picture Show"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/pictureshow/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=97635953&apiKey=API_KEY"}]}, {"id": "1143", "type": "primaryTopic", "title": {"$text": "Photography"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/photography/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1143&apiKey=API_KEY"}]}, {"id": "1143", "type": "topic", "title": {"$text": "Photography"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/photography/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1143&apiKey=API_KEY"}]}, {"id": "1047", "type": "topic", "title": {"$text": "Art & Design"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/art-design/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1047&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}], "byline": [{"id": "167163891", "name": {"$text": "Claire O'Neill"}}], "image": [{"id": "167166344", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88.jpg?s=12", "hasBorder": "false", "title": {"$text": "The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper."}, "caption": {"$text": "The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper."}, "link": {"url": ""}, "producer": {"$text": "Michael Nichols"}, "provider": {"url": "", "$text": "National Geographic"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002-3f4a0ae23c70b13d79f52b48749f2186d1e643a1.jpg", "height": "667", "width": "890"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_sq-f7369a50afb94e8ada7b18c7bf9810f452b2ea3c.jpg", "height": "560", "width": "560"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_wide-9f423279f12e63bc9c3804f61865e70d39c6670c.jpg", "height": "561", "width": "1000"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88.jpg", "height": "667", "width": "1000"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88.jpg", "height": "667", "width": "1000"}, {"type": "brick", "src": "http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_brick-a4c87dc547cfa84ff13066b12b32b1b31c0377c7.jpg", "height": "459", "width": "1000"}]}, {"id": "167164187", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/tree_custom-490978178ed5b70330c46529a5e3d3ca585f88a7.jpg?s=12", "hasBorder": "false", "title": {"$text": "Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs."}, "caption": {"$text": "Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs."}, "link": {"url": ""}, "producer": {"$text": "Michael Nichols"}, "provider": {"url": "", "$text": "National Geographic"}, "copyright": {}, "crop": [{"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/tree_custom-490978178ed5b70330c46529a5e3d3ca585f88a7.jpg", "height": "2648", "width": "1000"}]}, {"id": "167167707", "type": "standard", "width": "138", "src": "http://media.npr.org/assets/img/2012/12/13/natgeo-mag-1col_custom-a808c9c7d76afd6167e2533a63817c408fd4ec60.gif", "hasBorder": "false", "title": {"$text": "National Geographic"}, "caption": {}, "link": {"url": ""}, "producer": {}, "provider": {"url": "http://ngm.nationalgeographic.com/", "$text": "&nbsp;"}, "copyright": {}, "crop": [{"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/natgeo-mag-1col_custom-a808c9c7d76afd6167e2533a63817c408fd4ec60.gif", "height": "60", "width": "138"}]}], "text": {"paragraph": [{"num": "1", "$text": "Those numbers represent this giant sequoia. Oh, also: The tree is more than three millennia old, and contains about \"54,000 cubic feet of wood and bark,\" according to National Geographic magazine."}, {"num": "2", "$text": "A few years ago, photographer Michael Nichols photographed a 300-foot giant in California's Prairie Creek Redwoods State Park. The magazine's December issue has a follow-up: a huge tear-out of the \"President,\" a snowy monolith in the Sierra Nevadas."}, {"num": "3", "$text": "\"It's not quite the largest tree on Earth,\" the magazine article reads. \"It's the second largest. Recent research by scientist Steve Sillett of Humboldt State University and his colleagues has confirmed that the President ranks number two among all big trees that have ever been measured — and Sillett's team has measured quite a few.\""}, {"num": "4", "$text": "Sillett and his team are carefully measuring trees like the President by climbing them — and they're making interesting discoveries in doing so."}, {"num": "5", "$text": "What they have found, the article explains, is that despite popular belief, sequoias continue to grow rapidly even in old age. In fact, the yearly output of wood produced by a tree like the President is greater than that of younger trees. This research might overturn the long-standing premise that \"has justified countless management decisions in favor of short-rotation forestry,\" the article reads."}, {"num": "6", "$text": "There's more over at National Geographic — including a video about how the photograph was made and more photos. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "Those numbers represent this giant sequoia. Oh, also: The tree is more than <em>three millennia</em> old, and contains about \"54,000 cubic feet of wood and bark,\" according to <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/quammen-text\" target=\"_blank\">National Geographic magazine</a>."}, {"num": "2", "$text": "A few years ago, photographer Michael Nichols photographed <a href=\"http://www.npr.org/blogs/pictureshow/2009/09/redwoods.html\" target=\"_blank\">a 300-foot giant</a> in California's Prairie Creek Redwoods State Park. The magazine's December issue has a follow-up: a huge tear-out of the \"President,\" a snowy monolith in the Sierra Nevadas."}, {"num": "3", "$text": "\"It's not quite the largest tree on Earth,\" the magazine article reads. \"It's the second largest. Recent research by scientist Steve Sillett of Humboldt State University and his colleagues has confirmed that the President ranks number two among all big trees that have ever been measured — and Sillett's team has measured quite a few.\""}, {"num": "4", "$text": "Sillett and his team are carefully measuring trees like the President by climbing them — and they're making interesting discoveries in doing so."}, {"num": "5", "$text": "What they have found, the article explains, is that despite popular belief, sequoias continue to grow rapidly even in old age. In fact, the yearly output of wood produced by a tree like the President is greater than that of younger trees. This research might overturn the long-standing premise that \"has justified countless management decisions in favor of short-rotation forestry,\" the article reads."}, {"num": "6", "$text": "There's more over at <em>National Geographic</em> — including a video about <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/behind-the-scenes-video\" target=\"_blank\">how the photograph was made</a> and <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/nichols-photography\" target=\"_blank\">more photos</a>. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=One+Photo%2C+126+Frames%2C+2+Billion+Leaves%2C+247+Feet&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>One Photo, 126 Frames, 2 Billion Leaves, 247 Feet</h1> <input type=\"hidden\" id=\"title167163801\" value=\"One Photo, 126 Frames, 2 Billion Leaves, 247 Feet\"></input> <input type=\"hidden\" id=\"modelShortUrl167163801\" value=\"http://n.pr/W8UEzm\"></input> <input type=\"hidden\" id=\"modelFullUrl167163801\" value=\"http://www.npr.org/blogs/pictureshow/2012/12/13/167163801/one-photo-126-frames-2-billion-leaves-247-feet\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167163803\" previewTitle=\"bylines\"> <p class=\"byline\">by <span>Claire O'Neill</span></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167163803\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\"> 1:01 PM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167164187\" class=\"bucketwrap image large\" previewTitle=\"Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/tree_custom-490978178ed5b70330c46529a5e3d3ca585f88a7-s6.jpg\" title=\"Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.\" alt=\"Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Cloaked in the snows of California's Sierra Nevada, the 3,200-year-old giant sequoia called the President rises 247 feet. Two other sequoias have wider trunks, but none has a larger crown, say the scientists who climbed it. The figure at top seems taller than the other climbers because he's standing forward on one of the great limbs.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">Michael Nichols</span>/<span class=\"rightsnotice\">National Geographic</span></span> </div> <p>Those numbers represent this giant sequoia. Oh, also: The tree is more than <em>three millennia</em> old, and contains about \"54,000 cubic feet of wood and bark,\" according to <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/quammen-text\" target=\"_blank\">National Geographic magazine</a>.</p> <div id=\"res167167707\" class=\"bucketwrap image small\" previewTitle=\"National Geographic\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/natgeo-mag-1col_custom-a808c9c7d76afd6167e2533a63817c408fd4ec60-s1.gif\" title=\"National Geographic\" alt=\"National Geographic\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"rightsnotice\"><a href=\"http://ngm.nationalgeographic.com/\">&nbsp;</a></span></span> </div> <p>A few years ago, photographer Michael Nichols photographed <a href=\"http://www.npr.org/blogs/pictureshow/2009/09/redwoods.html\" target=\"_blank\">a 300-foot giant</a> in California's Prairie Creek Redwoods State Park. The magazine's December issue has a follow-up: a huge tear-out of the \"President,\" a snowy monolith in the Sierra Nevadas.</p> <p>\"It's not quite the largest tree on Earth,\" the magazine article reads. \"It's the second largest. Recent research by scientist Steve Sillett of Humboldt State University and his colleagues has confirmed that the President ranks number two among all big trees that have ever been measured — and Sillett's team has measured quite a few.\"</p> <div id=\"res167166344\" class=\"bucketwrap image large\" previewTitle=\"The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/giant_sequoias_mm7946_002_custom-ecf623469ff776e037de22f1d3b67fa590a57c88-s6.jpg\" title=\"The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.\" alt=\"The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>The giant sequoia is a snow tree, says scientist Steve Sillett, adapted for long winters in the Sierra Nevada. But it's a fire tree, too. Thick bark protects it from burning in lightning-caused fires, which open cones and clear the understory, allowing saplings to find light and prosper.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">Michael Nichols</span>/<span class=\"rightsnotice\">National Geographic</span></span> </div> <p>Sillett and his team are carefully measuring trees like the President by climbing them — and they're making interesting discoveries in doing so.</p> <p>What they have found, the article explains, is that despite popular belief, sequoias continue to grow rapidly even in old age. In fact, the yearly output of wood produced by a tree like the President is greater than that of younger trees. This research might overturn the long-standing premise that \"has justified countless management decisions in favor of short-rotation forestry,\" the article reads.</p> <p>There's more over at <em>National Geographic</em> — including a video about <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/behind-the-scenes-video\" target=\"_blank\">how the photograph was made</a> and <a href=\"http://ngm.nationalgeographic.com/2012/12/sequoias/nichols-photography\" target=\"_blank\">more photos</a>.</p></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=One+Photo%2C+126+Frames%2C+2+Billion+Leaves%2C+247+Feet&utme=8(APIKey)9(API_KEY)\"/></div>"}}, {"id": "167180401", "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/13/167180401/ncaa-shake-up-the-future-of-college-athletics?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167180401&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZlGtLG"}], "title": {"$text": "NCAA Shake-Up: The Future Of College Athletics"}, "partnerId": {"$text": "167180401"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences. Some believe that the realignment process will ultimately result in the creation of four \"super conferences.\" NPR's Mike Pesca talks about how conference shifts could effect the future of college athletics."}, "miniTeaser": {"$text": "In 2013 and 2014, there will be a number of substantial realignments in the NCAA conferences."}, "slug": {"$text": "Sports"}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 14:15:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 14:15:23 -0500"}, "show": [{"program": {"id": "5", "code": "TOTN", "$text": "Talk of the Nation"}, "showDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "segNum": {"$text": "2"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "1091", "type": "topic", "title": {"$text": "Around the Nation"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/around-the-nation/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1091&apiKey=API_KEY"}]}, {"id": "1055", "type": "topic", "slug": "true", "title": {"$text": "Sports"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/sports/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1055&apiKey=API_KEY"}]}, {"id": "1055", "type": "primaryTopic", "title": {"$text": "Sports"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/sports/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1055&apiKey=API_KEY"}]}], "audio": [{"id": "167180394", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "true"}}, "stream": {"active": "false"}}], "container": [{"id": "167181969", "title": {"$text": "Related NPR Stories"}, "introText": {}, "colSpan": {"$text": "0"}, "displayOptions": {"typeId": "0", "$text": "Hide Both"}, "link": [{"refId": "167181970", "num": "1"}, {"refId": "167181994", "num": "2"}]}], "relatedLink": [{"id": "167181970", "type": "internal", "caption": {"$text": " The NCAA: Is Membership Worth It?"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/04/11/150285525/the-ncaa-is-membership-worth-it?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=150285525&apiKey=API_KEY"}]}, {"id": "167181994", "type": "internal", "caption": {"$text": " In NCAA Tournament, A Kentucky Showdown"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/03/26/149411848/in-ncaa-tournament-a-kentucky-showdown?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=149411848&apiKey=API_KEY"}]}]}, {"id": "166745766", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=166745766&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/TPdqdh"}], "title": {"$text": "10 Artists You Should Have Known In 2012"}, "partnerId": {"$text": "166745766"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "It's hard to keep track of new artists these days. So we asked our colleagues around the country to recommend recent discoveries from their communities. Download 10 songs that helped put these musicians on the map in 2012."}, "miniTeaser": {"$text": "Download 10 songs from public radio's favorite new artists of the year."}, "slug": {"$text": "Best Music Of 2012"}, "thumbnail": {"medium": {"$text": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_sq-0278e070fed4ff04f67300bd2f85f599fd3ba3fc.jpg?s=13"}, "large": {"$text": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_sq-0278e070fed4ff04f67300bd2f85f599fd3ba3fc.jpg?s=11"}, "provider": {"$text": "KEXP"}}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 13:16:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 13:16:48 -0500"}, "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "166027976", "type": "category", "title": {"$text": "Lists"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/bestmusic2012/166027976/lists?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=166027976&apiKey=API_KEY"}]}, {"id": "166026576", "type": "blog", "slug": "true", "title": {"$text": "Best Music Of 2012"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/bestmusic2012/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=166026576&apiKey=API_KEY"}]}, {"id": "160609993", "type": "series", "title": {"$text": "Heavy Rotation"}, "link": [{"type": "html", "$text": "http://www.npr.org/series/160609993/heavy-rotation?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=160609993&apiKey=API_KEY"}]}, {"id": "100920965", "type": "newsPackage", "title": {"$text": "Music Articles"}, "link": [{"type": "html", "$text": "http://www.npr.org/series/100920965/music-articles/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=100920965&apiKey=API_KEY"}]}, {"id": "10001", "type": "genre", "title": {"$text": "Rock"}, "link": [{"type": "html", "$text": "http://www.npr.org/music/genres/rock/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=10001&apiKey=API_KEY"}]}, {"id": "1039", "type": "primaryTopic", "title": {"$text": "Music"}, "link": [{"type": "html", "$text": "http://www.npr.org/music/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1039&apiKey=API_KEY"}]}, {"id": "1039", "type": "topic", "title": {"$text": "Music"}, "link": [{"type": "html", "$text": "http://www.npr.org/music/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1039&apiKey=API_KEY"}]}, {"id": "1002", "type": "topic", "title": {"$text": "Home Page Top Stories"}, "link": [{"type": "html", "$text": "http://www.npr.org/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1002&apiKey=API_KEY"}]}], "image": [{"id": "166747887", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450.jpg?s=12", "hasBorder": "false", "title": {"$text": "Philadelphia's Aaron Brown."}, "caption": {"$text": "Philadelphia's Aaron Brown."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450.jpg", "height": "567", "width": "756"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450.jpg", "height": "567", "width": "756"}]}, {"id": "166747939", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c.jpg?s=12", "hasBorder": "false", "title": {"$text": "Los Angeles jazz guitarist Graham Dechter."}, "caption": {"$text": "Los Angeles jazz guitarist Graham Dechter."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c.jpg", "height": "1341", "width": "1791"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1_sq-946bcc20f6be7bffebfc254c10c89d278413ee13.jpg", "height": "925", "width": "925"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1_wide-09be748fde230a7d6751beda4d9970df225d6d96.jpg", "height": "1123", "width": "2000"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c.jpg", "height": "1341", "width": "1791"}, {"type": "brick", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1_brick-686e326ad0f9454a8ad7826ff1cf3a9f8b61c82e.jpg", "height": "918", "width": "2000"}, {"type": "slide", "src": "http://media.npr.org/assets/img/2012/12/07/grahamdechter1_slide-6bb90f0cb7b24b3399f88a9d72c708a250943828.jpg", "height": "1332", "width": "2000"}]}, {"id": "166748689", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a.jpg?s=12", "hasBorder": "false", "title": {"$text": "Oklahoma's John Fullbright."}, "caption": {"$text": "Oklahoma's John Fullbright."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a.jpg", "height": "1278", "width": "1700"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a.jpg", "height": "1278", "width": "1700"}]}, {"id": "166748836", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2.jpg?s=12", "hasBorder": "false", "title": {"$text": "L.A.'s Ben Schneider."}, "caption": {"$text": "L.A.'s Ben Schneider."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2.jpg", "height": "1578", "width": "2107"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider_sq-b7827c0162884b4d0f7e8e441fbfd83db3724f63.jpg", "height": "1578", "width": "1579"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider_wide-e396703f0d8ea0b12ca71bbd2c338c1bc79f6b48.jpg", "height": "1578", "width": "2808"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2.jpg", "height": "1578", "width": "2107"}, {"type": "brick", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider_brick-c57dcf35063343db7f30502184701652f5b0bac4.jpg", "height": "1303", "width": "2838"}, {"type": "slide", "src": "http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider_slide-c528f6b7d18b81a7eada8590e6637aea1b96767b.jpg", "height": "1578", "width": "2369"}]}, {"id": "166749403", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/6839382744_22a459a1a5_b-03ab159cbdaebd8469c1d24694ac029078324802.jpg?s=12", "hasBorder": "false", "title": {"$text": "Poliça lead singer Channy Leaneagh."}, "caption": {"$text": "Poliça lead singer Channy Leaneagh."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/6839382744_22a459a1a5_b-03ab159cbdaebd8469c1d24694ac029078324802.jpg", "height": "563", "width": "751"}]}, {"id": "166754358", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d.jpg?s=12", "hasBorder": "false", "title": {"$text": "From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty."}, "caption": {"$text": "From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d.jpg", "height": "720", "width": "959"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d.jpg", "height": "720", "width": "959"}]}, {"id": "166750827", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415.jpg?s=12", "hasBorder": "false", "title": {"$text": "Savoir Adore's Deidre Muro and Paul Hammer."}, "caption": {"$text": "Savoir Adore's Deidre Muro and Paul Hammer."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415.jpg", "height": "1552", "width": "2072"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415.jpg", "height": "1552", "width": "2072"}]}, {"id": "166751655", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda.jpg?s=12", "hasBorder": "false", "title": {"$text": "THEESatisfaction's Catherine Harris-White and Stasia Irons."}, "caption": {"$text": "THEESatisfaction's Catherine Harris-White and Stasia Irons."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda.jpg", "height": "1574", "width": "2100"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda.jpg", "height": "1574", "width": "2100"}]}, {"id": "166751814", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/20090617_pedromoraes_025-edit_saraiva_1251942567-51c6af0972c6078bf725a3a5e95bde727f13e5d9.jpg?s=12", "hasBorder": "false", "title": {"$text": "Brazilian guitarist and composer Pedro Moraes."}, "caption": {"$text": "Brazilian guitarist and composer Pedro Moraes."}, "link": {"url": ""}, "producer": {}, "provider": {"url": ""}, "copyright": {}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/20090617_pedromoraes_025-edit_saraiva_1251942567-51c6af0972c6078bf725a3a5e95bde727f13e5d9.jpg", "height": "300", "width": "399"}]}, {"id": "166753560", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f.jpeg?s=12", "hasBorder": "false", "title": {"$text": "Austin's Alejandro Rose-Garcia"}, "caption": {"$text": "Austin's Alejandro Rose-Garcia"}, "link": {"url": ""}, "producer": {}, "provider": {"url": "", "$text": "Kirk Stewart"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f.jpeg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f.jpeg", "height": "2592", "width": "3452"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f.jpeg", "height": "2592", "width": "3452"}]}, {"id": "166847471", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3.jpg?s=12", "hasBorder": "false", "title": {"$text": "Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012."}, "caption": {"$text": "Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012."}, "link": {"url": ""}, "producer": {"$text": "Dave Lichterman"}, "provider": {"url": "", "$text": "KEXP"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k-d91589774a4e7531c2dab431227980b833e0ff70.jpg", "height": "1161", "width": "1549"}, {"type": "square", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_sq-0278e070fed4ff04f67300bd2f85f599fd3ba3fc.jpg", "height": "1025", "width": "1025"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3.jpg", "height": "1150", "width": "2048"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3.jpg", "height": "1150", "width": "2048"}, {"type": "brick", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_brick-ca04de945bfb2737f0e8ac0d1df9755e99352590.jpg", "height": "705", "width": "1535"}, {"type": "slide", "src": "http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_slide-cb62d8594bdf9de383f0948c512ccab15db92384.jpg", "height": "1364", "width": "2048"}]}], "text": {"paragraph": [{"num": "1", "$text": "It's hard to keep track of new artists these days. Anyone with a credit card can start a Bandcamp page, and there are only so many hours in the day you can listen to music."}, {"num": "2", "$text": "In an effort to make it a littler easier on you, we asked some colleagues around the country to share their favorite new discoveries of 2012, bands that made a real dent in their communities. Here are the artists you should have known in 2012. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "It's hard to keep track of new artists these days. Anyone with a credit card can start a Bandcamp page, and there are only so many hours in the day you can listen to music."}, {"num": "2", "$text": "In an effort to make it a littler easier on you, we asked some colleagues around the country to share their favorite new discoveries of 2012, bands that made a real dent in their communities. Here are the artists you should have known in 2012. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=10+Artists+You+Should+Have+Known+In+2012&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>10 Artists You Should Have Known In 2012</h1> <input type=\"hidden\" id=\"title166745766\" value=\"10 Artists You Should Have Known In 2012\"></input> <input type=\"hidden\" id=\"modelShortUrl166745766\" value=\"http://n.pr/TPdqdk\"></input> <input type=\"hidden\" id=\"modelFullUrl166745766\" value=\"http://www.npr.org/blogs/bestmusic2012/2012/12/07/166745766/10-artists-you-should-have-known-in-2012\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\"> 1:00 PM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res166847471\" class=\"bucketwrap image large\" previewTitle=\"Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/09/7838896508_7caae34cb0_k_wide-8d7bb036235dd240c33cfd79ffe309b169fc95c3-s6.jpg\" title=\"Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.\" alt=\"Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Stasia Irons of THEESatisfaction performs at an All Songs Considered party at KEXP on August 20, 2012.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">Dave Lichterman</span>/<span class=\"rightsnotice\">KEXP</span></span> </div> <p>It's hard to keep track of new artists these days. Anyone with a credit card can start a Bandcamp page, and there are only so many hours in the day you can listen to music.</p> <p>In an effort to make it a littler easier on you, we asked some colleagues around the country to share their favorite new discoveries of 2012, bands that made a real dent in their communities. Here are the artists you should have known in 2012.</p> <div id=\"res166746180\" class=\"bucketwrap list\"> <h3 class=\"hed\">10 Artists You Should Have Known In 2012</h3> <ul> <li><div id=\"res166746468\" class=\"bucket listitem simplelistitem\"> <h3>Lord Huron</h3> <div id=\"res166748836\" class=\"bucketwrap image medium\" previewTitle=\"L.A.'s Ben Schneider.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/lord-huron-credit-ben-schneider-2daa81da0de3641bcfa08d642fa0ca5d3af2d5e2-s2.jpg\" title=\"L.A.'s Ben Schneider.\" alt=\"L.A.'s Ben Schneider.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>L.A.'s Ben Schneider.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>The sweeping majesty of <a href=\"http://www.npr.org/artists/163627550/lord-huron\">Lord Huron</a>'s <em>Lonesome Dreams</em> makes a compelling case for rushing right out the door, and leaving the mundane routine of everyday life in search of love. \"Run away with me, it'll all make sense\" urges Ben Schneider, singing of a life brimming with possibilities. \"We're going to leave tonight, by the light of the moon.\" If only we could accept this romantic invitation, but at least we have this album of brilliant atmospheric folk to take us on a fantastic journey of sorts, if only in our minds for a moment. --<em>Jason Bentley, <em><a href=\"http://kcrw.com\" target=\"_blank\">KCRW</a></em> music director in Santa Monica, Calif.</em></p><p></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Lord%20Huron%20-%20Time%20To%20Run.mp3\" target=\"_blank\">Download: \"Time to Run\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746468\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746548\" class=\"bucket listitem simplelistitem\"> <h3>THEEsatisfaction</h3> <div id=\"res166751655\" class=\"bucketwrap image medium\" previewTitle=\"THEESatisfaction's Catherine Harris-White and Stasia Irons.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/theesatisfaction_2012_1_davidbelisle_print-ea933f9b1882066e917ec566dc1ea51bfdddbeda-s2.jpg\" title=\"THEESatisfaction's Catherine Harris-White and Stasia Irons.\" alt=\"THEESatisfaction's Catherine Harris-White and Stasia Irons.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>THEESatisfaction's Catherine Harris-White and Stasia Irons.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Stasia Irons and Catherine Harris-White started out in living rooms, performed after-hours in an Eritrean restaurant, pressed their self-consciously weird souls to CDR; over four short years they rose to prominence in Seattle, and were eventually able to quit pushing shopping carts at Costco. Back in February, on Sub Pop Records, they dropped the album they'd been promising for years. <em>awE naturalE</em> is a deep, epic jazz poem that synthesizes and refracts several distinct phases of Black light, and more than lives up to the expectations. This year alone they saw the U.S., Europe, Australia and Iceland over the course of eight or nine tours. <a href=\"http://www.npr.org/artists/158793049/theesatisfaction\">THEESat</a><a href=\"http://www.npr.org/artists/158793049/theesatisfaction\">isfaction</a> has had a major 2012 and promises more this next cycle, alone together or alongside key collaborators like Shabazz Palaces. --<em>Larry Mizell Jr., host of <a href=\"http://www.kexp.org\" target=\"_blank\">KEXP</a> \"Street Sounds\" in Seattle</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/THEESatisfaction%20-%20QueenS.mp3\" target=\"_blank\">Download: \"QueenS (Live on KEXP)\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746548\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746473\" class=\"bucket listitem simplelistitem\"> <h3>Poliça</h3> <div id=\"res166749403\" class=\"bucketwrap image medium\" previewTitle=\"Poliça lead singer Channy Leaneagh.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/6839382744_22a459a1a5_b-03ab159cbdaebd8469c1d24694ac029078324802-s2.jpg\" title=\"Poliça lead singer Channy Leaneagh.\" alt=\"Poliça lead singer Channy Leaneagh.\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Poliça lead singer Channy Leaneagh.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>What started a side project has exploded into a full-time career for Channy Leaneagh and her bandmates in bedroom R&B project <a href=\"http://www.npr.org/artists/147716716/polica\">Poliça</a>. The quartet converged in the studio over a few humid Minneapolis summer days last year and emerged with a fire-and-ice sound that binds organic elements (dual drums, punchy basslines) with more alienating aspects like manipulated vocals and undulating and robotic laptop beats. Leaneagh is unabashed in her use of Auto-Tune and bends the effect to her will, letting just enough of her lyrics slip through the chromatics to reveal the deep sorrow and loss that inspired their debut, <em>Give You the Ghost</em>. It's an album that resonated immediately with a local fanbase already familiar with the band member's previous projects (producer Ryan Olson's Gayngs, Leaneagh's Roma di Luna); their mesmerizing live shows ignited a national spark at SXSW and have kept them on the road touring the U.S. and Europe ever since. <em>--</em> <em>Andrea Swensson, <a href=\"http://thecurrent.org\" target=\"_blank\">89.3 The Current in the Twin Cities</a></em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Polica%20-%20Lay%20Your%20Cards%20Out.mp3\" target=\"_blank\">Download: \"Lay Your Cards Out\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746473\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746338\" class=\"bucket listitem simplelistitem\"> <h3>John Fullbright</h3> <div id=\"res166748689\" class=\"bucketwrap image medium\" previewTitle=\"Oklahoma's John Fullbright.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/f010-fullbright-bdshoot-mar2012-033-vrf_20120330_144008-c5f81e4871348ab24f78ddad77b6f86f02e4671a-s2.jpg\" title=\"Oklahoma's John Fullbright.\" alt=\"Oklahoma's John Fullbright.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Oklahoma's John Fullbright.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>There is so much flavor on John Fullbright's debut, <em>From the Ground Up,</em> it could please folks accustomed to anything from soul to folk, to indie pop. It's not every day a new artist shows up out of the red Oklahoma dirt — Woody Guthrie's hometown, to be exact — and earns comparisons to great songwriters like Townes Van Zandt and Randy Newman, but Fullbright's music makes sense in such lofty company. His songs toss around themes of god and lust and faith and doubt like they're all dirty shirts that have been worn for too long. Take \"Jericho.\" Its gospel organ and dark, slogging rhythm support lyrics about searching for something — be it love or forgiveness, truth or transcendence. Everything here is on even ground — the profound as important as the profane. For Fullbright even the road to glory must be built from the ground up. <em>--Kim Ruehl, <a href=\"http://www.folkalley.com\" target=\"_blank\">FolkAlley.com</a></em></p><p><em><a href=\"http://www.folkalley.com\" target=\"_blank\"></a></em><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/John%20Fullbright%20-%20Jericho.mp3\" target=\"_blank\">Download: \"Jericho\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746338\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746508\" class=\"bucket listitem simplelistitem\"> <h3>Savoir Adore</h3> <div id=\"res166750827\" class=\"bucketwrap image medium\" previewTitle=\"Savoir Adore's Deidre Muro and Paul Hammer.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/savoiradore_ournaturephoto4_4-2eed3db56a2ace1f58226e7efb473bb9c609d415-s2.jpg\" title=\"Savoir Adore's Deidre Muro and Paul Hammer.\" alt=\"Savoir Adore's Deidre Muro and Paul Hammer.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Savoir Adore's Deidre Muro and Paul Hammer.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Savoir Adore's Deidre Muro and Paul Hammer sculpt exuberant synth-pop spun from fantasy concepts — their partially Kickstarter-built sophomore album, <em>Our Nature,</em> is a concept album loosely involving unrequited, otherworldly lovers surreptitiously meeting by riverbanks and wooded glens. But longtime friends Muro and Hammer — and their three bandmates — intuitively sharpen their dreamy dialogues with wiry, earthy hooks and defiant dance beats: the result is an ingenious marriage of esoteric artistry and easy accessibility. Tracks like \"Regalia,\" a percussive collision of the Cocteau Twins and the Spice Girls or the sweet, early-morning sunbeam of \"Dreamers\" are perfect pop manna. While conjuring such gems might come easily to Savoir Adore, what is inexplicably harder is getting these DIY-determined New Yorkers the effusive attention they deserve. <em>--Kara Manning, content editor at <a href=\"http://www.wfuv.org\" target=\"_blank\">WFUV's The Alternate Side</a> in New York City</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Savoir%20Adore%20-%20Dreamers.mp3\" target=\"_blank\">Download: \"Dreamers\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746508\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746320\" class=\"bucket listitem simplelistitem\"> <h3>Aaron & The Spell</h3> <div id=\"res166747887\" class=\"bucketwrap image medium\" previewTitle=\"Philadelphia's Aaron Brown.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/1343246959_heddy_bergsman-phillies-1f72671b8717dd80c9eae8e8da5f47cbc4247450-s2.jpg\" title=\"Philadelphia's Aaron Brown.\" alt=\"Philadelphia's Aaron Brown.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Philadelphia's Aaron Brown.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Finding one of Philly's best new artists is no easy task. Recently the city has seen a resurgence in creative energy with bands like Dr. Dog, War On Drugs, Work Drugs, Lushlife and Strand of Oaks representing the City of Brotherly Love. While there's no shortage of fantastic new bands from various genres, we decided to look to soul music for one of our best new artists. From The Sound Of Philadelphia to the Roots, Philly has always been steeped in soul. Singer-songwriter Aaron Brown is an exciting new name to add to the lineage of the city's expressive and emotionally intense soul singers. His self-released his album, <em>Sing,</em> recorded with some Philly scene up-and-comers backing him up and performing as The Spell, is an excellent new addition to the musical landscape. <em>--Bruce Warren, <a href=\"http://www.wxpn.org\">WXPN</a> program director in Philadelphia</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Aaron%20and%20The%20Spell%20-%20Don't%20Cry.mp3\" target=\"_blank\">Download: \"Don't Cry\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746320\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746332\" class=\"bucket listitem simplelistitem\"> <h3>Graham Dechter</h3> <div id=\"res166747939\" class=\"bucketwrap image medium\" previewTitle=\"Los Angeles jazz guitarist Graham Dechter.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/grahamdechter1-aef349a21423cc9ce62fe6c5aa49b55d5f70187c-s2.jpg\" title=\"Los Angeles jazz guitarist Graham Dechter.\" alt=\"Los Angeles jazz guitarist Graham Dechter.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Los Angeles jazz guitarist Graham Dechter.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Graham Dechter is a talented young guitarist who started composing music at a young age (he's the child of professional musicians & music educators). He focused early on classical-based composition until high school, when a jazz teacher told him that improvisation was \"composition in real time.\" The jazz light bulb switched on brightly, and within a few years, he was laying down grooves with the Clayton-Hamilton Jazz Orchestra. His playing and arranging skills are precise, lean, accessible and hooky. He plays with soulfulness and with experience seemingly beyond his years. <em>--Nick Francis, <a href=\"http://jazz24.org\" target=\"_blank\">Jazz24.org</a> music director</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Graham%20Dechter%20-%20Together%20and%20Apart.mp3\" target=\"_blank\">Download: \"Together & Apart\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746332\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746500\" class=\"bucket listitem simplelistitem\"> <h3>Radiation City</h3> <div id=\"res166754358\" class=\"bucketwrap image medium\" previewTitle=\"From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/1323796924radiation_img05_hires-6b42c22378ee8b13e882a67b6cf2685e40d41c1d-s2.jpg\" title=\"From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.\" alt=\"From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>From left, Radiation City's Cameron Spies, Lizzy Ellison, Randy Bemrose, Patti King and Matt Rafferty.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Our adoration for Radiation City actually dates back to 2011 — their impossibly catchy song \"The Color of Industry\" was our first introduction to the band midway through 2011. Infusing old-school soul and girl-group sounds with modern day indie pop, it was the most upbeat number amongst an impressively well-polished collection of slow burners on the quintet's debut <em>The Hands That Take You.</em> Earlier this year, the band followed with the <em>Cool Nightmare</em> EP, Lizzy Ellison's captivating voice presiding over a kind of bossa nova fever dream with one sparse composition often running into the next. The group impressed repeatedly on stages throughout the year, whether delivering a complexly reworked version of one of their songs or a note-perfect take on Etta James staple \"At Last.\" All reasons to say Radiation City is Portland's best new band. Their sophomore release will be out in early 2013 on Tender Loving Empire. <em>--Jeremy Petersen, <a href=\"http://opbmusic.org\" target=\"_blank\">opbmusic.org</a> in Portland</em></p><p><em></em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Radiation%20City%20-%20The%20Color%20of%20Industry.mp3\" target=\"_blank\">Download: \"The Color of Industry\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746500\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166746554\" class=\"bucket listitem simplelistitem\"> <h3>Pedro Moraes</h3> <div id=\"res166751814\" class=\"bucketwrap image medium\" previewTitle=\"Brazilian guitarist and composer Pedro Moraes.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/20090617_pedromoraes_025-edit_saraiva_1251942567-51c6af0972c6078bf725a3a5e95bde727f13e5d9-s2.jpg\" title=\"Brazilian guitarist and composer Pedro Moraes.\" alt=\"Brazilian guitarist and composer Pedro Moraes.\" /> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Brazilian guitarist and composer Pedro Moraes.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> </div> <div class=\"bucketblock\"> <p>Guitarist and singer Pedro Moraes is a great introduction to Rio de Janeiro's adventurous music scene. At turns rocking and lyrical, Moraes demonstrates his ability to mine Brazil's rich musical veins and turn traditional rhythms and forms on their heads. Like Jason Moran, Lionel Loueke and other roots-minded jazz musicians, Moraes finds surprising ways to embrace his past and carry it into the future. On January 14, Moraes hosts <a href=\"http://www.lepoissonrouge.com/lpr_events/brazilian-explorative-music-2013-jan-14th-2013/\"> a showcase of \"explorative\" music in New York at (le) Poisson Rouge, </a> with groups led by Ivo Senra, Elisa Cassini, Sergio Krakowski, Mauricio Zottarelli and Gabriel Santiago. Since many of these musicians are rarely heard outside of Brazil — or even outside of Lapa, Rio's hot bohemian neighborhood — this will be a rare chance to hear some of Brazil's most fertile musical imaginations at work. --<em>Tim Wilkins, <a href=\"http://www.wbgo.org\" target=\"_blank\">WBGO's The Jazz Bee</a></em></p><p></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Pedro%20Moraes%20-%20Marcela.mp3\" target=\"_blank\">Download: \"Marcela\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166746554\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> <li><div id=\"res166753349\" class=\"bucket listitem simplelistitem\"> <h3>Shakey Graves</h3> <div id=\"res166753560\" class=\"bucketwrap image medium\" previewTitle=\"Austin's Alejandro Rose-Garcia\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/07/shakeygraves_credit-kirkstewart-f9eba33e7bbd8f61b3e508e60e1698bfde75f68f-s2.jpeg\" title=\"Austin's Alejandro Rose-Garcia\" alt=\"Austin's Alejandro Rose-Garcia\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Austin's Alejandro Rose-Garcia</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"rightsnotice\">Kirk Stewart</span></span> </div> <div class=\"bucketblock\"> <p>Alejandro Rose-Garcia is only slightly less well known than his nom de guerre \"Shakey Graves,\" but those in the know feel like they're in on a very special secret. This Austin native (and talented actor — you may have caught him in his recurring role in <em>Friday Night Lights</em>) is fast developing a reputation as the city's most astonishing one man show. His lo-fi recordings can only approximate his intense, haunting live shows, where he's as likely to be playing to his rapidly growing circle of fans from one of Austin's larger venues as from a front porch stage or an impromptu midnight showcase at a highway underpass. Shakey Graves is more than just a stage name for a seriously talented flatpicker and songwriter: thanks to his unique blues-infused flatpicking style, a voice that can flicker from a fragile whisper to a startling howl and a pocketful of hook-heavy original songs, Shakey Graves is becoming an antifolk phenomenon even in a city weary of \"next big things\". Unclassifiably original. And frighteningly good. <em>--David Brown, <a href=\"http://www.kut.org\">KUT</a> in Austin</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Shakey%20Graves%20-%20Roll%20the%20Bones%20-%20Built%20to%20Roam.mp3\" target=\"_blank\">Download: \"Built to Roam\"</a></strong></p> </div> <!-- END CLASS=\"BUCKETBLOCK\" --></div><!-- END ID=\"RES166753349\" CLASS=\"BUCKET LISTITEM SIMPLELISTITEM\" --></li> </ul> </div> <!-- END ID=\"RES166746180\" CLASS=\"BUCKETWRAP LIST\" --></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=10+Artists+You+Should+Have+Known+In+2012&utme=8(APIKey)9(API_KEY)\"/></div>"}, "collection": [{"type": "list", "displayType": "Simple Story", "id": "166746180", "title": {"$text": "10 Artists You Should Have Known In 2012"}, "introText": {}, "member": [{"refId": "166746468", "num": "1", "label": "none"}, {"refId": "166746548", "num": "2", "label": "none"}, {"refId": "166746473", "num": "3", "label": "none"}, {"refId": "166746338", "num": "4", "label": "none"}, {"refId": "166746508", "num": "5", "label": "none"}, {"refId": "166746320", "num": "6", "label": "none"}, {"refId": "166746332", "num": "7", "label": "none"}, {"refId": "166746500", "num": "8", "label": "none"}, {"refId": "166746554", "num": "9", "label": "none"}, {"refId": "166753349", "num": "10", "label": "none"}]}], "member": [{"id": "166746320", "title": {"num": "1", "$text": "Aaron & The Spell"}, "image": {"refId": "166747887", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Finding one of Philly's best new artists is no easy task. Recently the city has seen a resurgence in creative energy with bands like Dr. Dog, War On Drugs, Work Drugs, Lushlife and Strand of Oaks representing the City of Brotherly Love. While there's no shortage of fantastic new bands from various genres, we decided to look to soul music for one of our best new artists. From The Sound Of Philadelphia to the Roots, Philly has always been steeped in soul. Singer-songwriter Aaron Brown is an exciting new name to add to the lineage of the city's expressive and emotionally intense soul singers. His self-released his album, <em>Sing,</em> recorded with some Philly scene up-and-comers backing him up and performing as The Spell, is an excellent new addition to the musical landscape. <em>--Bruce Warren, <a href=\"http://www.wxpn.org\">WXPN</a> program director in Philadelphia</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Aaron%20and%20The%20Spell%20-%20Don't%20Cry.mp3\" target=\"_blank\">Download: \"Don't Cry\"</a></strong></p>"}}, {"id": "166746332", "title": {"num": "1", "$text": "Graham Dechter"}, "image": {"refId": "166747939", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Graham Dechter is a talented young guitarist who started composing music at a young age (he's the child of professional musicians & music educators). He focused early on classical-based composition until high school, when a jazz teacher told him that improvisation was \"composition in real time.\" The jazz light bulb switched on brightly, and within a few years, he was laying down grooves with the Clayton-Hamilton Jazz Orchestra. His playing and arranging skills are precise, lean, accessible and hooky. He plays with soulfulness and with experience seemingly beyond his years. <em>--Nick Francis, <a href=\"http://jazz24.org\" target=\"_blank\">Jazz24.org</a> music director</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Graham%20Dechter%20-%20Together%20and%20Apart.mp3\" target=\"_blank\">Download: \"Together & Apart\"</a></strong></p>"}}, {"id": "166746338", "title": {"num": "1", "$text": "John Fullbright"}, "image": {"refId": "166748689", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>There is so much flavor on John Fullbright's debut, <em>From the Ground Up,</em> it could please folks accustomed to anything from soul to folk, to indie pop. It's not every day a new artist shows up out of the red Oklahoma dirt — Woody Guthrie's hometown, to be exact — and earns comparisons to great songwriters like Townes Van Zandt and Randy Newman, but Fullbright's music makes sense in such lofty company. His songs toss around themes of god and lust and faith and doubt like they're all dirty shirts that have been worn for too long. Take \"Jericho.\" Its gospel organ and dark, slogging rhythm support lyrics about searching for something — be it love or forgiveness, truth or transcendence. Everything here is on even ground — the profound as important as the profane. For Fullbright even the road to glory must be built from the ground up. <em>--Kim Ruehl, <a href=\"http://www.folkalley.com\" target=\"_blank\">FolkAlley.com</a></em></p><p><em><a href=\"http://www.folkalley.com\" target=\"_blank\"></a></em><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/John%20Fullbright%20-%20Jericho.mp3\" target=\"_blank\">Download: \"Jericho\"</a></strong></p>"}}, {"id": "166746468", "title": {"num": "1", "$text": "Lord Huron"}, "image": {"refId": "166748836", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>The sweeping majesty of <a href=\"http://www.npr.org/artists/163627550/lord-huron\">Lord Huron</a>'s <em>Lonesome Dreams</em> makes a compelling case for rushing right out the door, and leaving the mundane routine of everyday life in search of love. \"Run away with me, it'll all make sense\" urges Ben Schneider, singing of a life brimming with possibilities. \"We're going to leave tonight, by the light of the moon.\" If only we could accept this romantic invitation, but at least we have this album of brilliant atmospheric folk to take us on a fantastic journey of sorts, if only in our minds for a moment. --<em>Jason Bentley, <em><a href=\"http://kcrw.com\" target=\"_blank\">KCRW</a></em> music director in Santa Monica, Calif.</em></p><p></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Lord%20Huron%20-%20Time%20To%20Run.mp3\" target=\"_blank\">Download: \"Time to Run\"</a></strong></p>"}}, {"id": "166746473", "title": {"num": "1", "$text": "Poliça"}, "image": {"refId": "166749403", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>What started a side project has exploded into a full-time career for Channy Leaneagh and her bandmates in bedroom R&B project <a href=\"http://www.npr.org/artists/147716716/polica\">Poliça</a>. The quartet converged in the studio over a few humid Minneapolis summer days last year and emerged with a fire-and-ice sound that binds organic elements (dual drums, punchy basslines) with more alienating aspects like manipulated vocals and undulating and robotic laptop beats. Leaneagh is unabashed in her use of Auto-Tune and bends the effect to her will, letting just enough of her lyrics slip through the chromatics to reveal the deep sorrow and loss that inspired their debut, <em>Give You the Ghost</em>. It's an album that resonated immediately with a local fanbase already familiar with the band member's previous projects (producer Ryan Olson's Gayngs, Leaneagh's Roma di Luna); their mesmerizing live shows ignited a national spark at SXSW and have kept them on the road touring the U.S. and Europe ever since. <em>--</em> <em>Andrea Swensson, <a href=\"http://thecurrent.org\" target=\"_blank\">89.3 The Current in the Twin Cities</a></em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Polica%20-%20Lay%20Your%20Cards%20Out.mp3\" target=\"_blank\">Download: \"Lay Your Cards Out\"</a></strong></p>"}}, {"id": "166746500", "title": {"num": "1", "$text": "Radiation City"}, "image": {"refId": "166754358", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Our adoration for Radiation City actually dates back to 2011 — their impossibly catchy song \"The Color of Industry\" was our first introduction to the band midway through 2011. Infusing old-school soul and girl-group sounds with modern day indie pop, it was the most upbeat number amongst an impressively well-polished collection of slow burners on the quintet's debut <em>The Hands That Take You.</em> Earlier this year, the band followed with the <em>Cool Nightmare</em> EP, Lizzy Ellison's captivating voice presiding over a kind of bossa nova fever dream with one sparse composition often running into the next. The group impressed repeatedly on stages throughout the year, whether delivering a complexly reworked version of one of their songs or a note-perfect take on Etta James staple \"At Last.\" All reasons to say Radiation City is Portland's best new band. Their sophomore release will be out in early 2013 on Tender Loving Empire. <em>--Jeremy Petersen, <a href=\"http://opbmusic.org\" target=\"_blank\">opbmusic.org</a> in Portland</em></p><p><em></em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Radiation%20City%20-%20The%20Color%20of%20Industry.mp3\" target=\"_blank\">Download: \"The Color of Industry\"</a></strong></p>"}}, {"id": "166746508", "title": {"num": "1", "$text": "Savoir Adore"}, "image": {"refId": "166750827", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Savoir Adore's Deidre Muro and Paul Hammer sculpt exuberant synth-pop spun from fantasy concepts — their partially Kickstarter-built sophomore album, <em>Our Nature,</em> is a concept album loosely involving unrequited, otherworldly lovers surreptitiously meeting by riverbanks and wooded glens. But longtime friends Muro and Hammer — and their three bandmates — intuitively sharpen their dreamy dialogues with wiry, earthy hooks and defiant dance beats: the result is an ingenious marriage of esoteric artistry and easy accessibility. Tracks like \"Regalia,\" a percussive collision of the Cocteau Twins and the Spice Girls or the sweet, early-morning sunbeam of \"Dreamers\" are perfect pop manna. While conjuring such gems might come easily to Savoir Adore, what is inexplicably harder is getting these DIY-determined New Yorkers the effusive attention they deserve. <em>--Kara Manning, content editor at <a href=\"http://www.wfuv.org\" target=\"_blank\">WFUV's The Alternate Side</a> in New York City</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Savoir%20Adore%20-%20Dreamers.mp3\" target=\"_blank\">Download: \"Dreamers\"</a></strong></p>"}}, {"id": "166746548", "title": {"num": "1", "$text": "THEEsatisfaction"}, "image": {"refId": "166751655", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Stasia Irons and Catherine Harris-White started out in living rooms, performed after-hours in an Eritrean restaurant, pressed their self-consciously weird souls to CDR; over four short years they rose to prominence in Seattle, and were eventually able to quit pushing shopping carts at Costco. Back in February, on Sub Pop Records, they dropped the album they'd been promising for years. <em>awE naturalE</em> is a deep, epic jazz poem that synthesizes and refracts several distinct phases of Black light, and more than lives up to the expectations. This year alone they saw the U.S., Europe, Australia and Iceland over the course of eight or nine tours. <a href=\"http://www.npr.org/artists/158793049/theesatisfaction\">THEESat</a><a href=\"http://www.npr.org/artists/158793049/theesatisfaction\">isfaction</a> has had a major 2012 and promises more this next cycle, alone together or alongside key collaborators like Shabazz Palaces. --<em>Larry Mizell Jr., host of <a href=\"http://www.kexp.org\" target=\"_blank\">KEXP</a> \"Street Sounds\" in Seattle</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/THEESatisfaction%20-%20QueenS.mp3\" target=\"_blank\">Download: \"QueenS (Live on KEXP)\"</a></strong></p>"}}, {"id": "166746554", "title": {"num": "1", "$text": "Pedro Moraes"}, "image": {"refId": "166751814", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Guitarist and singer Pedro Moraes is a great introduction to Rio de Janeiro's adventurous music scene. At turns rocking and lyrical, Moraes demonstrates his ability to mine Brazil's rich musical veins and turn traditional rhythms and forms on their heads. Like Jason Moran, Lionel Loueke and other roots-minded jazz musicians, Moraes finds surprising ways to embrace his past and carry it into the future. On January 14, Moraes hosts <a href=\"http://www.lepoissonrouge.com/lpr_events/brazilian-explorative-music-2013-jan-14th-2013/\"> a showcase of \"explorative\" music in New York at (le) Poisson Rouge, </a> with groups led by Ivo Senra, Elisa Cassini, Sergio Krakowski, Mauricio Zottarelli and Gabriel Santiago. Since many of these musicians are rarely heard outside of Brazil — or even outside of Lapa, Rio's hot bohemian neighborhood — this will be a rare chance to hear some of Brazil's most fertile musical imaginations at work. --<em>Tim Wilkins, <a href=\"http://www.wbgo.org\" target=\"_blank\">WBGO's The Jazz Bee</a></em></p><p></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Pedro%20Moraes%20-%20Marcela.mp3\" target=\"_blank\">Download: \"Marcela\"</a></strong></p>"}}, {"id": "166753349", "title": {"num": "1", "$text": "Shakey Graves"}, "image": {"refId": "166753560", "crop": "standard", "num": "2"}, "introText": {"num": "3", "$text": "<p>Alejandro Rose-Garcia is only slightly less well known than his nom de guerre \"Shakey Graves,\" but those in the know feel like they're in on a very special secret. This Austin native (and talented actor — you may have caught him in his recurring role in <em>Friday Night Lights</em>) is fast developing a reputation as the city's most astonishing one man show. His lo-fi recordings can only approximate his intense, haunting live shows, where he's as likely to be playing to his rapidly growing circle of fans from one of Austin's larger venues as from a front porch stage or an impromptu midnight showcase at a highway underpass. Shakey Graves is more than just a stage name for a seriously talented flatpicker and songwriter: thanks to his unique blues-infused flatpicking style, a voice that can flicker from a fragile whisper to a startling howl and a pocketful of hook-heavy original songs, Shakey Graves is becoming an antifolk phenomenon even in a city weary of \"next big things\". Unclassifiably original. And frighteningly good. <em>--David Brown, <a href=\"http://www.kut.org\">KUT</a> in Austin</em></p><p><strong><a href=\"http://pd.npr.org/anon.npr-mp3/npr/specials/2012/12/Shakey%20Graves%20-%20Roll%20the%20Bones%20-%20Built%20to%20Roam.mp3\" target=\"_blank\">Download: \"Built to Roam\"</a></strong></p>"}}]}, {"id": "167180399", "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/13/167180399/options-for-intervention-in-malis-growing-crisis?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167180399&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZlGtLE"}], "title": {"$text": "Options For Intervention In Mali's Growing Crisis"}, "partnerId": {"$text": "167180399"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "A military coup brought down Mali's prime minister in March, allowing radical Islamists from Mali and surrounding areas to take hold of an area the size of Texas. As al-Qaida-linked militants take over the northern part of the country, many wonder what the U.S. and other can do to intervene."}, "miniTeaser": {"$text": "A crisis brews in Mali as militants linked to al-Qaida take over the northern part of the nation."}, "slug": {"$text": "Africa"}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 14:13:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 14:13:31 -0500"}, "show": [{"program": {"id": "5", "code": "TOTN", "$text": "Talk of the Nation"}, "showDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "segNum": {"$text": "1"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "1126", "type": "topic", "slug": "true", "title": {"$text": "Africa"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/africa/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1126&apiKey=API_KEY"}]}, {"id": "1126", "type": "primaryTopic", "title": {"$text": "Africa"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/africa/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1126&apiKey=API_KEY"}]}, {"id": "1004", "type": "topic", "title": {"$text": "World"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/world/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1004&apiKey=API_KEY"}]}], "audio": [{"id": "167180392", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "true"}}, "stream": {"active": "false"}}], "container": [{"id": "167180835", "title": {"$text": "Guests"}, "introText": {}, "colSpan": {"$text": "1"}, "displayOptions": {"typeId": "2", "$text": "Display Both"}, "listText": {"refId": "167180812", "num": "1"}}, {"id": "167181658", "title": {"$text": "Related NPR Stories"}, "introText": {}, "colSpan": {"$text": "0"}, "displayOptions": {"typeId": "0", "$text": "Hide Both"}, "link": [{"refId": "167181725", "num": "1"}, {"refId": "167181659", "num": "2"}, {"refId": "167181696", "num": "3"}]}], "relatedLink": [{"id": "167181725", "type": "internal", "caption": {"$text": " Why No One's Going To Timbuktu These Days"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/06/166593065/why-no-ones-going-to-timbuktu-these-days?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=166593065&apiKey=API_KEY"}]}, {"id": "167181659", "type": "internal", "caption": {"$text": " Morocco Warns Of Growing Terrorist Threat In Mali"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/04/166519642/morocco-warns-of-growing-terrorist-threat-in-mali?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=166519642&apiKey=API_KEY"}]}, {"id": "167181696", "type": "internal", "caption": {"$text": " Mali In Crisis Fractures Along Twin Fault Lines"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/08/07/157998664/mali-in-crisis-fractures-along-twin-fault-lines?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=157998664&apiKey=API_KEY"}]}], "listText": [{"id": "167180812", "tag": "p", "paragraph": [{"num": "1", "$text": "<strong>Sudarsan Raghavan,</strong> Africa bureau chief, <em>Washington Post</em><br /><strong>J. Peter Pham,</strong> director of the Michael S. Ansari Africa Center, Atlantic Council"}]}]}, {"id": "167180403", "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/13/167180403/drought-continues-farmers-shippers-feel-pressure?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167180403&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZlGtLK"}], "title": {"$text": "Drought Continues: Farmers, Shippers Feel Pressure"}, "partnerId": {"$text": "167180403"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "The United States is facing its worst drought since the 1950s, according to the National Oceanic and Atmospheric Administration. With little to no signs of relief on the horizon, many analysts expect conditions to worsen well into next year."}, "miniTeaser": {"$text": "The United States is facing its worst drought since the 1950s, according NOAA."}, "slug": {"$text": "Environment"}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 14:17:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 14:17:06 -0500"}, "show": [{"program": {"id": "5", "code": "TOTN", "$text": "Talk of the Nation"}, "showDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "segNum": {"$text": "3"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "1091", "type": "topic", "title": {"$text": "Around the Nation"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/around-the-nation/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1091&apiKey=API_KEY"}]}, {"id": "1025", "type": "topic", "slug": "true", "title": {"$text": "Environment"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/environment/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1025&apiKey=API_KEY"}]}, {"id": "1025", "type": "primaryTopic", "title": {"$text": "Environment"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/environment/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1025&apiKey=API_KEY"}]}], "audio": [{"id": "167180396", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "true"}}, "stream": {"active": "false"}}], "container": [{"id": "167181321", "title": {"$text": "Guests"}, "introText": {}, "colSpan": {"$text": "1"}, "displayOptions": {"typeId": "2", "$text": "Display Both"}, "listText": {"refId": "167181319", "num": "1"}}, {"id": "167182248", "title": {"$text": "Related NPR Stories"}, "introText": {}, "colSpan": {"$text": "0"}, "displayOptions": {"typeId": "0", "$text": "Hide Both"}, "link": [{"refId": "167182366", "num": "1"}, {"refId": "167182249", "num": "2"}, {"refId": "167182329", "num": "3"}]}], "relatedLink": [{"id": "167182366", "type": "internal", "caption": {"$text": " An Arbor Embolism? Why Trees Die In Drought"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/11/23/165667600/an-arbor-embolism-why-trees-die-in-drought?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=165667600&apiKey=API_KEY"}]}, {"id": "167182249", "type": "internal", "caption": {"$text": " Planning For A Sustainable Mississippi River"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/10/03/162232865/planning-for-a-sustainable-mississippi-river?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=162232865&apiKey=API_KEY"}]}, {"id": "167182329", "type": "internal", "caption": {"$text": " Drought Dries Up Crops, But Not Airline Schedules"}, "link": [{"type": "html", "$text": "http://www.npr.org/2012/08/21/159485936/drought-dries-up-crops-but-not-airline-schedules?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=159485936&apiKey=API_KEY"}]}], "listText": [{"id": "167181319", "tag": "p", "paragraph": [{"num": "1", "$text": "<strong>Keith Kissling,</strong> manager, Kissling Farms<br /><strong>Gary McManus,</strong> associate state climatologist for Oklahoma<br /><strong>Mark Fletcher,</strong> co-owner, Ceres Barge Lines"}]}]}, {"id": "167180405", "link": [{"type": "html", "$text": "http://www.npr.org/2012/12/13/167180405/open-or-closed-book-exams-which-style-works-best?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167180405&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/ZlGwHf"}], "title": {"$text": "Open Or Closed-Book Exams: Which Style Works Best?"}, "partnerId": {"$text": "167180405"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "Afshin Gharib, a psychology professor at Dominican University of California, prefers to give open-book tests. His colleague William Phillips only lets students use cheat sheets. After several arguments about the techniques, they decided to conduct an experiment to find out which method works best."}, "miniTeaser": {"$text": "Two psychology professors debate the most effective exam styles."}, "slug": {"$text": "Education"}, "storyDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 14:08:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 14:08:02 -0500"}, "show": [{"program": {"id": "5", "code": "TOTN", "$text": "Talk of the Nation"}, "showDate": {"$text": "Thu, 13 Dec 2012 13:00:00 -0500"}, "segNum": {"$text": "4"}}], "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "1057", "type": "topic", "title": {"$text": "Opinion"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/opinion/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1057&apiKey=API_KEY"}]}, {"id": "1013", "type": "topic", "slug": "true", "title": {"$text": "Education"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/education/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1013&apiKey=API_KEY"}]}, {"id": "1013", "type": "primaryTopic", "title": {"$text": "Education"}, "link": [{"type": "html", "$text": "http://www.npr.org/sections/education/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=1013&apiKey=API_KEY"}]}], "audio": [{"id": "167180398", "type": "primary", "title": {}, "duration": {"$text": "0"}, "description": {}, "format": {}, "rightsHolder": {}, "permissions": {"download": {"allow": "false"}, "stream": {"allow": "true"}, "embed": {"allow": "true"}}, "stream": {"active": "false"}}]}, {"id": "167169109", "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167169109&apiKey=API_KEY"}, {"type": "short", "$text": "http://n.pr/W928Cf"}], "title": {"$text": "No Alarm Sounded When The West Virginia Pipeline Exploded"}, "partnerId": {"$text": "167169109"}, "subtitle": {}, "shortTitle": {}, "teaser": {"$text": "The NTSB is investigating why no warning sounded in the control center of pipeline operator, Columbia Gas Transmission, when the explosion occurred."}, "miniTeaser": {"$text": "The NTSB is investigating why no alarms sounded in pipeline owner's control room."}, "slug": {"$text": "The Two-Way"}, "storyDate": {"$text": "Thu, 13 Dec 2012 12:26:00 -0500"}, "pubDate": {"$text": "Thu, 13 Dec 2012 12:26:00 -0500"}, "lastModifiedDate": {"$text": "Thu, 13 Dec 2012 12:26:24 -0500"}, "keywords": {}, "priorityKeywords": {}, "organization": [{"orgId": "1", "orgAbbr": "NPR", "name": {"$text": "National Public Radio"}, "website": {"$text": "http://www.npr.org/"}}], "parent": [{"id": "167169585", "type": "tag", "title": {"$text": "West Virginia explosion"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=167169585&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=167169585&apiKey=API_KEY"}]}, {"id": "130208826", "type": "tag", "title": {"$text": "gas pipeline explosion"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/archives/archive.php?thingId=130208826&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=130208826&apiKey=API_KEY"}]}, {"id": "127602855", "type": "category", "title": {"$text": "America"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=127602855&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=127602855&apiKey=API_KEY"}]}, {"id": "127602334", "type": "category", "title": {"$text": "Accidents and Disasters"}, "link": [{"type": "html", "$text": "http://www.npr.org/templates/story/story.php?storyId=127602334&ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=127602334&apiKey=API_KEY"}]}, {"id": "103943429", "type": "blog", "slug": "true", "title": {"$text": "The Two-Way"}, "link": [{"type": "html", "$text": "http://www.npr.org/blogs/thetwo-way/?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=103943429&apiKey=API_KEY"}]}], "byline": [{"id": "167169260", "name": {"personId": "2100373", "$text": "Korva Coleman"}, "link": [{"type": "html", "$text": "http://www.npr.org/people/2100373/korva-coleman?ft=3&f="}, {"type": "api", "$text": "http://api.npr.org/query?id=2100373&apiKey=API_KEY"}]}], "image": [{"id": "167169813", "type": "primary", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367.jpg?s=12", "hasBorder": "false", "title": {"$text": "Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va."}, "caption": {"$text": "Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va."}, "link": {"url": ""}, "producer": {"$text": "NTSB"}, "provider": {"url": "", "$text": "AP"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/13/ntsb-8841bc55713ff7952b4aadbd11c578e755fa7030.jpg", "height": "1096", "width": "1463"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/13/ntsb_wide-4020e9014166d125fed71ccdc2e84e87336bd3f9.jpg", "height": "1029", "width": "1833"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367.jpg", "height": "1108", "width": "1833"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367.jpg", "height": "1108", "width": "1833"}]}, {"id": "167169935", "type": "standard", "width": "200", "src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248.jpg?s=12", "hasBorder": "false", "title": {"$text": "A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11."}, "caption": {"$text": "A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11."}, "link": {"url": ""}, "producer": {"$text": "West Virginia State Police"}, "provider": {"url": "", "$text": "Associated Press"}, "copyright": {}, "enlargement": {"src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248.jpg", "caption": {}}, "crop": [{"type": "standard", "src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012-5bfd3fdebc480533115c1ec26d5ae324cbc87029.jpg", "height": "733", "width": "978"}, {"type": "wide", "src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_wide-a7df8ae0fbc0432357273c611e707cb7b339a58c.jpg", "height": "549", "width": "978"}, {"type": "enlargement", "src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248.jpg", "height": "734", "width": "978"}, {"type": "custom", "src": "http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248.jpg", "height": "734", "width": "978"}]}], "text": {"paragraph": [{"num": "1", "$text": "When the 20-inch gas pipeline next to Interstate 77 in West Virginia first ruptured on Tuesday, nobody at pipeline operator, Columbia Gas Transmission, knew it."}, {"num": "2", "$text": "Now, the National Transportation Safety Board is trying to find out why. NTSB member Robert Sumwalt says no warning went off in the operating company's control center in nearby Charleston, so investigators are going there to interview staffers and review data."}, {"num": "3", "$text": "The explosion shut down the freeway and leveled at least four homes. No one was killed or badly injured."}, {"num": "4", "$text": "It's unclear how CGT learned of the disaster. CGT's parent company, NiSource Gas Transmission and Storage, reports the explosion occurred just before 1 P.M. Sumwalt says there were no reports of a gas odor and no 911 calls were placed ahead of the blast."}, {"num": "5", "$text": "Federal officials are also examining a 20-foot hunk of the pipe flung off by the force of the blast; they're going to take undamaged pipe sections near the breach for comparison and analysis."}, {"num": "6", "$text": "There was a gas explosion in about the same region in 2002, Sumwalt acknowledged, but no link has been determined to this event. He was firm during a press briefing that no information would be released until it was verified - he noted that before NTSB investigators came to the scene north of Charleston, they were incorrectly told by the company that the pipe was larger than it turned out to be."}, {"num": "7", "$text": "Searching is still treacherous at the site. When NTSB officials went to the pipe breach, they had to take along gas detectors and couldn't use their cameras or phones, because of the danger of sparks. However, I-77 remains open to travelers. [Copyright 2012 National Public Radio]"}]}, "textWithHtml": {"paragraph": [{"num": "1", "$text": "When the 20-inch gas pipeline next to Interstate 77 in West Virginia first ruptured on Tuesday, nobody at pipeline operator, Columbia Gas Transmission, knew it."}, {"num": "2", "$text": "Now, the National Transportation Safety Board is trying to find out why. NTSB member Robert Sumwalt says no warning went off in the operating company's control center in nearby Charleston, so <a href=\"http://www.ntsb.gov/investigations/2012/sissonville_wva/sissonville_wva.html\">investigators are going there to interview staffers</a> and review data."}, {"num": "3", "$text": "The explosion <a href=\"http://www.npr.org/blogs/thetwo-way/2012/12/12/167038823/gas-explosion-blows-up-section-of-west-virginia-interstate\">shut down the freeway</a> and leveled at least four homes. No one was killed or badly injured."}, {"num": "4", "$text": "It's unclear how CGT learned of the disaster. CGT's parent company, NiSource Gas Transmission and Storage, reports <a href=\"http://www.ngts.com/en/about-us/sissonville2.aspx\">the explosion occurred just before 1 P.M</a>. Sumwalt says there were no reports of a gas odor and no 911 calls were placed ahead of the blast."}, {"num": "5", "$text": "Federal officials are also examining a 20-foot hunk of the pipe flung off by the force of the blast; they're going to take undamaged pipe sections near the breach for comparison and analysis."}, {"num": "6", "$text": "There was a gas explosion in about the same region in 2002, Sumwalt acknowledged, but no link has been determined to this event. He was firm during a press briefing that no information would be released until it was verified - he noted that before NTSB investigators came to the scene north of Charleston, they were incorrectly told by the company that the pipe was larger than it turned out to be."}, {"num": "7", "$text": "Searching is still treacherous at the site. When NTSB officials went to the pipe breach, they had to take along gas detectors and couldn't use their cameras or phones, because of the danger of sparks. However, I-77 remains open to travelers. <div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=No+Alarm+Sounded+When+The+West+Virginia+Pipeline+Exploded&utme=8(APIKey)9(API_KEY)\"/></div>"}]}, "fullText": {"$text": "<div class=\"storytitle\"> <h1>No Alarm Sounded When The West Virginia Pipeline Exploded</h1> <input type=\"hidden\" id=\"title167169109\" value=\"No Alarm Sounded When The West Virginia Pipeline Exploded\"></input> <input type=\"hidden\" id=\"modelShortUrl167169109\" value=\"http://n.pr/W928Ch\"></input> <input type=\"hidden\" id=\"modelFullUrl167169109\" value=\"http://www.npr.org/blogs/thetwo-way/2012/12/13/167169109/no-alarm-sounded-when-the-west-virginia-pipeline-exploded\"></input></div><!-- END CLASS=\"STORYTITLE\" --><div id=\"story-meta\"> <div id=\"storybyline\" class=\" linkLocation\"> <div class=\"bucketwrap byline\" id=\"res167169111\" previewTitle=\"bylines\"> <p class=\"byline\">by <a rel=\"author\" href=\"http://www.npr.org/people/2100373/korva-coleman\"><span>Korva Coleman</span></a></p> </div> <!-- END CLASS=\"BUCKETWRAP BYLINE\" ID=\"RES167169111\" PREVIEWTITLE=\"BYLINES\" --> </div> <!-- END ID=\"STORYBYLINE\" CLASS=\" LINKLOCATION\" --> <div class=\"dateblock\"> <time datetime=\"2012-12-13\"><span class=\"date\">December 13, 2012</span><span class=\"time\">12:26 PM</span></time> </div></div><!-- END ID=\"STORY-META\" --><div id=\"storytext\" class=\"storytext storylocation linkLocation\"> <div id=\"res167169813\" class=\"bucketwrap image large\" previewTitle=\"Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/ntsb_custom-146b1ff151f7305817057c0d852f726ce62e9367-s6.jpg\" title=\"Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.\" alt=\"Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>Investigators examine a 20-foot long section of gas pipeline found more than 40 feet from the rupture site north of Charleston, W. Va.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">NTSB</span>/<span class=\"rightsnotice\">AP</span></span> </div> <p>When the 20-inch gas pipeline next to Interstate 77 in West Virginia first ruptured on Tuesday, nobody at pipeline operator, Columbia Gas Transmission, knew it.</p> <p>Now, the National Transportation Safety Board is trying to find out why. NTSB member Robert Sumwalt says no warning went off in the operating company's control center in nearby Charleston, so <a href=\"http://www.ntsb.gov/investigations/2012/sissonville_wva/sissonville_wva.html\">investigators are going there to interview staffers</a> and review data.</p> <p>The explosion <a href=\"http://www.npr.org/blogs/thetwo-way/2012/12/12/167038823/gas-explosion-blows-up-section-of-west-virginia-interstate\">shut down the freeway</a> and leveled at least four homes. No one was killed or badly injured.</p> <div id=\"res167169935\" class=\"bucketwrap image medium\" previewTitle=\"A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.\"> <div class=\"imagewrap\"> <img src=\"http://media.npr.org/assets/img/2012/12/13/sissonvilletwoway2012_custom-8a3e86fa855d7d86a73adda5f930bca5b0d97248-s2.jpg\" title=\"A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.\" alt=\"A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.\" /> <a href=\"#\" class=\"enlargebtn\" title=\"Enlarge\">Enlarge image</a> <a href=\"#\" class=\"enlargebtn enlarge-smallscreen\" title=\"Enlarge\">i</a> </div> <!-- END CLASS=\"IMAGEWRAP\" --> <div class=\"captionwrap\"> <div class=\"caption\"> <p><i>A fireball over Interstate 77 after a gas line ruptured in Sissonville, W. Va. on Tuesday, Dec. 11.</i></p> </div> <!-- END CLASS=\"CAPTION\" --> </div> <!-- END CLASS=\"CAPTIONWRAP\" --> <span class=\"creditwrap\"><span class=\"credit\">West Virginia State Police</span>/<span class=\"rightsnotice\">Associated Press</span></span> </div> <p>It's unclear how CGT learned of the disaster. CGT's parent company, NiSource Gas Transmission and Storage, reports <a href=\"http://www.ngts.com/en/about-us/sissonville2.aspx\">the explosion occurred just before 1 P.M</a>. Sumwalt says there were no reports of a gas odor and no 911 calls were placed ahead of the blast.</p> <p>Federal officials are also examining a 20-foot hunk of the pipe flung off by the force of the blast; they're going to take undamaged pipe sections near the breach for comparison and analysis.</p> <p>There was a gas explosion in about the same region in 2002, Sumwalt acknowledged, but no link has been determined to this event. He was firm during a press briefing that no information would be released until it was verified - he noted that before NTSB investigators came to the scene north of Charleston, they were incorrectly told by the company that the pipe was larger than it turned out to be.</p> <p>Searching is still treacherous at the site. When NTSB officials went to the pipe breach, they had to take along gas detectors and couldn't use their cameras or phones, because of the danger of sparks. However, I-77 remains open to travelers.</p></div><div class=\"fullattribution\">Copyright 2012 National Public Radio. To see more, visit http://www.npr.org/.<img src=\"http://www.google-analytics.com/__utm.gif?utmac=UA-5828686-4&utmdt=No+Alarm+Sounded+When+The+West+Virginia+Pipeline+Exploded&utme=8(APIKey)9(API_KEY)\"/></div>"}}]}}
@@ -0,0 +1 @@
1
+ {"version": "0.6", "messages": {"message": {"id": "101", "level": "error", "text": {"$text": "An unexpected error occurred when processing your request. Please visit http://www.npr.org/contact/ and select the office 'Online / Technical Support' to contact us for assistance."}, "timestamp": {"$text": "0"}}, "message": {"id": "310", "level": "error", "text": {"$text": "The API key passed in () was invalid or no API key was passed in. Please register for a valid API key."}, "timestamp": {"$text": "1355514471.33"}}}}