<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 22:40:15 +0000</lastBuildDate>
    <item>
      <title>(JavaScript) Add/Get objects From/To LocalStorage - burnandbass</title>
      <link>https://snipplr.com/view/80188/addget-objects-fromto-localstorage</link>
      <description>&lt;p&gt;saveToStorage("objectName", {javascript:"object"});&#13;
&#13;
To get the object use getFromStorage("objectName");&#13;
&#13;
If the object does not exist, the function returns new empty object;&lt;/p&gt;</description>
      <pubDate>Thu, 23 Oct 2014 21:10:28 UTC</pubDate>
      <guid>https://snipplr.com/view/80188/addget-objects-fromto-localstorage</guid>
    </item>
    <item>
      <title>(Java) Some uses of JSONObject, JSONWriter and JSONTokener classes of org.json - prgrmmraben</title>
      <link>https://snipplr.com/view/77006/some-uses-of-jsonobject-jsonwriter-and-jsontokener-classes-of-orgjson</link>
      <description>&lt;p&gt;This snippet of code, illustrates how to put, remove or accumulate values in a JSONObject object, use of JSONWriter for putting key/value pairs in "quick and convenient way" as stated by official documentation,  and more practical uses for org.json beginners&lt;/p&gt;</description>
      <pubDate>Sat, 06 Sep 2014 07:29:58 UTC</pubDate>
      <guid>https://snipplr.com/view/77006/some-uses-of-jsonobject-jsonwriter-and-jsontokener-classes-of-orgjson</guid>
    </item>
    <item>
      <title>(PHP) Creating and Parsing JSON Data in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/73510/creating-and-parsing-json-data-in-php</link>
      <description>&lt;p&gt;This code demonstrates how to create and parse the JSON data format of using array of PHP. It's a very simple code, that allows you to perform this task.&lt;/p&gt;</description>
      <pubDate>Mon, 27 Jan 2014 21:04:35 UTC</pubDate>
      <guid>https://snipplr.com/view/73510/creating-and-parsing-json-data-in-php</guid>
    </item>
    <item>
      <title>(Other) Sample JSON representation of an Esri Web Map for Export Web Map task - azmi</title>
      <link>https://snipplr.com/view/72400/sample-json-representation-of-an-esri-web-map-for-export-web-map-task</link>
      <description>&lt;p&gt;A sample JSON representation of an Esri Web map based on the [ExportWebMap specifications](&#13;
http://resources.arcgis.com/en/help/rest/apiref/exportwebmap_spec.html)&#13;
&#13;
The JSON is a parameter to be input into the [Export Web Map task](&#13;
http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task/execute)&lt;/p&gt;</description>
      <pubDate>Thu, 19 Sep 2013 16:48:50 UTC</pubDate>
      <guid>https://snipplr.com/view/72400/sample-json-representation-of-an-esri-web-map-for-export-web-map-task</guid>
    </item>
    <item>
      <title>(Other) Expression Engine JSON (Webpage Template) Code - darith</title>
      <link>https://snipplr.com/view/72124/expression-engine-json-webpage-template-code</link>
      <description>&lt;p&gt;This can load live map JSON data from Expression Engine Database Locations Entry.&lt;/p&gt;</description>
      <pubDate>Thu, 15 Aug 2013 07:33:30 UTC</pubDate>
      <guid>https://snipplr.com/view/72124/expression-engine-json-webpage-template-code</guid>
    </item>
    <item>
      <title>(Python) Objectjson - JSON to nested object. - plainwreck</title>
      <link>https://snipplr.com/view/71218/objectjson--json-to-nested-object</link>
      <description>&lt;p&gt;Makes working with JSON data, in my eyes, easier in Python.&#13;
&#13;
Instead of&#13;
&#13;
    json_data['key']['key']['key']&#13;
&#13;
Do&#13;
&#13;
    json_data.key.key.key&#13;
&#13;
This can also be modified to work the same way with dict types.&lt;/p&gt;</description>
      <pubDate>Fri, 17 May 2013 23:23:24 UTC</pubDate>
      <guid>https://snipplr.com/view/71218/objectjson--json-to-nested-object</guid>
    </item>
    <item>
      <title>(PHP) JSONP Public API with jQuery getJSON (callback) (MySql) - halk</title>
      <link>https://snipplr.com/view/68583/jsonp-public-api-with-jquery-getjson-callback-mysql</link>
      <description>&lt;p&gt;This is a public jsonp api. I use it with jQuery Like This:&#13;
$.getJSON("http://yourdomain/yourpath/jsonp_api.php?method=getSchema&amp;params=your_db_name&amp;jsoncallback=?",&#13;
        function(data){&#13;
         //DO SOMETHING WITH THE DATA HERE&#13;
        }&#13;
    );&lt;/p&gt;</description>
      <pubDate>Fri, 16 Nov 2012 09:08:46 UTC</pubDate>
      <guid>https://snipplr.com/view/68583/jsonp-public-api-with-jquery-getjson-callback-mysql</guid>
    </item>
    <item>
      <title>(JavaScript) JSON Tree(1 function 15 lines)Nested Ul from single or multidimensional json object - halk</title>
      <link>https://snipplr.com/view/67767/json-tree1-function-15-linesnested-ul-from-single-or-multidimensional-json-object</link>
      <description>&lt;p&gt;Any valid json object will be recursively traversed building a nested unordered list of its properties and their values.  This example parses the json entered in the text area into an object that is passed to the json_tree() function.  I use the twitter bootstrap to make collapsible trees.  That is the purpose of thee css and the random string i generate.  I left it in as an example of how you might style the returned list.  This is very much a work in progress so if you have any suggestions please post a comment.  I have posted the entire html for a working example page just create the file and open it in your browser.(make sure your json validates - http://jsonlint.com - only valid json will produce a tree)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Oct 2012 04:48:13 UTC</pubDate>
      <guid>https://snipplr.com/view/67767/json-tree1-function-15-linesnested-ul-from-single-or-multidimensional-json-object</guid>
    </item>
    <item>
      <title>(PHP) REST API products and categories from pinnacleCart - crypticsoft</title>
      <link>https://snipplr.com/view/66798/rest-api-products-and-categories-from-pinnaclecart</link>
      <description>&lt;p&gt;This is a useful class which utilizes Phil Sturgeon's helpful restclient (http://getsparks.org/packages/restclient/versions/HEAD/show). Reference the URL attached for PinnacleCart API docs.&#13;
&#13;
Example request URLs to get products and categories:&#13;
&#13;
# Get product by product_id (XX##) or keyword(s)&#13;
~/products/getProducts/search/10/oj70/oj77/oj75&#13;
&#13;
# Recently added products by CategoryID (/cID/batchSize)&#13;
~/products/getProductsByCategory/92/10&#13;
&#13;
# Recently added product images by CategoryID (/cID/batchSize) &#13;
-- This was to remove the 'Description' key/value for slide shows&#13;
~/products/getProductImagesByCategory/92/10&#13;
&#13;
# Recently added products by limit&#13;
~/products/getRecentlyAdded/20&#13;
&#13;
# Get all categories&#13;
~/products/getCategories&lt;/p&gt;</description>
      <pubDate>Sat, 18 Aug 2012 02:50:58 UTC</pubDate>
      <guid>https://snipplr.com/view/66798/rest-api-products-and-categories-from-pinnaclecart</guid>
    </item>
    <item>
      <title>(JavaScript) CRM 2011 Zip Code Lookup - evshell18</title>
      <link>https://snipplr.com/view/65848/crm-2011-zip-code-lookup</link>
      <description>&lt;p&gt;Allows the ability to fill City and State fields in CRM 2011 based on the value of a Zip Code field (and optionally Country). &#13;
&#13;
Requires JQuery and JSON&#13;
&#13;
Uses Yahoo geocode service&#13;
&#13;
Originally written by Bill Caldwell ( http://dynamicscrmdenver.com/2012/05/25/dynamics-crm-2011-javascript-zipcodepostal-code-lookup/ )&lt;/p&gt;</description>
      <pubDate>Thu, 28 Jun 2012 07:16:57 UTC</pubDate>
      <guid>https://snipplr.com/view/65848/crm-2011-zip-code-lookup</guid>
    </item>
    <item>
      <title>(PHP) Listing Google Spreadsheet answers with PHP (Parsing JSON) - Felladrin</title>
      <link>https://snipplr.com/view/64777/listing-google-spreadsheet-answers-with-php-parsing-json</link>
      <description>&lt;p&gt;Make your spreadsheet public to get a key like this: 0AsfENoKj1ir7dE8yR6U0aUtpdTVNM20wRlNJOhZaclG&#13;
&#13;
Set it on the script and you're all done.&lt;/p&gt;</description>
      <pubDate>Wed, 02 May 2012 09:07:04 UTC</pubDate>
      <guid>https://snipplr.com/view/64777/listing-google-spreadsheet-answers-with-php-parsing-json</guid>
    </item>
    <item>
      <title>(SAS) [SAS] JSON output - ccw</title>
      <link>https://snipplr.com/view/64161/sas-json-output</link>
      <description>&lt;p&gt;SAS code to output in JSON format&lt;/p&gt;</description>
      <pubDate>Mon, 26 Mar 2012 14:44:52 UTC</pubDate>
      <guid>https://snipplr.com/view/64161/sas-json-output</guid>
    </item>
    <item>
      <title>(PHP) Pass PHP array parameter to Javascript Function - Narayon</title>
      <link>https://snipplr.com/view/63829/pass-php-array-parameter-to-javascript-function</link>
      <description>&lt;p&gt;Writing an PHP array in a javascript file with json_encode.&lt;/p&gt;</description>
      <pubDate>Sat, 10 Mar 2012 03:17:29 UTC</pubDate>
      <guid>https://snipplr.com/view/63829/pass-php-array-parameter-to-javascript-function</guid>
    </item>
    <item>
      <title>(Bash) Adding jstontools jar to Maven repository - ef</title>
      <link>https://snipplr.com/view/63609/adding-jstontools-jar-to-maven-repository</link>
      <description>&lt;p&gt;Way to install jsontools jar. Inspired by http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html&lt;/p&gt;</description>
      <pubDate>Tue, 28 Feb 2012 03:18:35 UTC</pubDate>
      <guid>https://snipplr.com/view/63609/adding-jstontools-jar-to-maven-repository</guid>
    </item>
    <item>
      <title>(PHP) JSON with a PHP proxy - inreflection7</title>
      <link>https://snipplr.com/view/61836/json-with-a-php-proxy</link>
      <description>&lt;p&gt;Use PHP to get JSON&#13;
&#13;
1) set the PHP to the URL of the JSON&#13;
2) echo a variable with the loaded data&#13;
3) use a request via jQuery to get the variable from PHP&lt;/p&gt;</description>
      <pubDate>Tue, 13 Dec 2011 08:28:13 UTC</pubDate>
      <guid>https://snipplr.com/view/61836/json-with-a-php-proxy</guid>
    </item>
    <item>
      <title>(Ruby) Fetch remote JSON in Ruby - vestimir</title>
      <link>https://snipplr.com/view/61726/fetch-remote-json-in-ruby</link>
      <description>&lt;p&gt;An example method for fetching remote JSON data in Ruby.&lt;/p&gt;</description>
      <pubDate>Wed, 07 Dec 2011 23:55:02 UTC</pubDate>
      <guid>https://snipplr.com/view/61726/fetch-remote-json-in-ruby</guid>
    </item>
    <item>
      <title>(PHP) JS data from json - CrossDomian - nicolaspar</title>
      <link>https://snipplr.com/view/60895/js-data-from-json--crossdomian</link>
      <description>&lt;p&gt;If not have access to edit json, setting url possible is:&#13;
url: 'http://graph.facebook.com/4/?callback=getDatosUsuario'&lt;/p&gt;</description>
      <pubDate>Thu, 17 Nov 2011 01:32:04 UTC</pubDate>
      <guid>https://snipplr.com/view/60895/js-data-from-json--crossdomian</guid>
    </item>
    <item>
      <title>(JavaScript) Lawnchair persistant localstorage example JSON - stur</title>
      <link>https://snipplr.com/view/60888/lawnchair-persistant-localstorage-example-json</link>
      <description>&lt;p&gt;Default adapter saves to DOM.&lt;/p&gt;</description>
      <pubDate>Wed, 16 Nov 2011 21:48:11 UTC</pubDate>
      <guid>https://snipplr.com/view/60888/lawnchair-persistant-localstorage-example-json</guid>
    </item>
    <item>
      <title>(JavaScript) Json to string. if native JSON.stringify not exists. - oozolii</title>
      <link>https://snipplr.com/view/59538/json-to-string-if-native-jsonstringify-not-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 07 Oct 2011 23:12:00 UTC</pubDate>
      <guid>https://snipplr.com/view/59538/json-to-string-if-native-jsonstringify-not-exists</guid>
    </item>
    <item>
      <title>(HTML) HTML JSON PAGINATION JQUERY - ayaz</title>
      <link>https://snipplr.com/view/59393/html-json-pagination-jquery</link>
      <description>&lt;p&gt;HTML PAGED LIST , USING AJAX, JSON AND DATABASE&lt;/p&gt;</description>
      <pubDate>Tue, 04 Oct 2011 15:05:10 UTC</pubDate>
      <guid>https://snipplr.com/view/59393/html-json-pagination-jquery</guid>
    </item>
    <item>
      <title>(JavaScript) json date format regex - pflangan</title>
      <link>https://snipplr.com/view/58675/json-date-format-regex</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Sep 2011 20:19:57 UTC</pubDate>
      <guid>https://snipplr.com/view/58675/json-date-format-regex</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3: JSON.decode - chrisaiv</title>
      <link>https://snipplr.com/view/56393/as3-jsondecode</link>
      <description>&lt;p&gt;I always have trouble preparing JSON to work nicely with as3corelib.  Here's an example of what I do whenever the array I'm looking for is nested within more JSON. This really isn't for anyone other than myself.&lt;/p&gt;</description>
      <pubDate>Mon, 11 Jul 2011 14:18:52 UTC</pubDate>
      <guid>https://snipplr.com/view/56393/as3-jsondecode</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Load and access JSON data example - adrianparr</title>
      <link>https://snipplr.com/view/56283/as3-load-and-access-json-data-example</link>
      <description>&lt;p&gt;For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib&lt;/p&gt;</description>
      <pubDate>Fri, 08 Jul 2011 05:33:20 UTC</pubDate>
      <guid>https://snipplr.com/view/56283/as3-load-and-access-json-data-example</guid>
    </item>
    <item>
      <title>(PHP) PHP + JSON + Twitter API - richardmaisano</title>
      <link>https://snipplr.com/view/54710/php--json--twitter-api</link>
      <description>&lt;p&gt;Nothing revolutionary, just a simple implementation.&#13;
&#13;
A reworking from Brian Cray's source code:&#13;
http://briancray.com/2009/08/21/tweeted-links-twitter-api-php-cache/&#13;
&#13;
Note: requires creating a cache file, '/caches/twitter', relative to source.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jun 2011 14:59:48 UTC</pubDate>
      <guid>https://snipplr.com/view/54710/php--json--twitter-api</guid>
    </item>
    <item>
      <title>(ActionScript 3) Actionscript JSON - camdagr8</title>
      <link>https://snipplr.com/view/52826/actionscript-json</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 30 Apr 2011 08:12:15 UTC</pubDate>
      <guid>https://snipplr.com/view/52826/actionscript-json</guid>
    </item>
    <item>
      <title>(JavaScript) Signed_Request decoded JSON (Facebook) - Maelstrom</title>
      <link>https://snipplr.com/view/52790/signedrequest-decoded-json-facebook</link>
      <description>&lt;p&gt;The user id was randomized from the original one, and the oauth_token similarly mangled.  It is also likely expired anyways.  It is just for reference of the structure.&lt;/p&gt;</description>
      <pubDate>Fri, 29 Apr 2011 07:21:42 UTC</pubDate>
      <guid>https://snipplr.com/view/52790/signedrequest-decoded-json-facebook</guid>
    </item>
    <item>
      <title>(PHP) Create a Basic Web Service Using PHP, MySQL, XML, and JSON - mb2o</title>
      <link>https://snipplr.com/view/52131/create-a-basic-web-service-using-php-mysql-xml-and-json</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 15 Apr 2011 17:00:40 UTC</pubDate>
      <guid>https://snipplr.com/view/52131/create-a-basic-web-service-using-php-mysql-xml-and-json</guid>
    </item>
    <item>
      <title>(PHP) Object to Array - frederichoule</title>
      <link>https://snipplr.com/view/51420/object-to-array</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Apr 2011 13:30:51 UTC</pubDate>
      <guid>https://snipplr.com/view/51420/object-to-array</guid>
    </item>
    <item>
      <title>(XML) Json VS  XML syntax - kashif21</title>
      <link>https://snipplr.com/view/51212/json-vs--xml-syntax</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 28 Mar 2011 22:13:04 UTC</pubDate>
      <guid>https://snipplr.com/view/51212/json-vs--xml-syntax</guid>
    </item>
    <item>
      <title>(JavaScript) get twitter feed using json / jquery - crypticsoft</title>
      <link>https://snipplr.com/view/50151/get-twitter-feed-using-json--jquery</link>
      <description>&lt;p&gt;Note: replace "USERNAME" with your own twitter username.&#13;
This is using cycle plugin with easing which is applied after the tweets are populated.&lt;/p&gt;</description>
      <pubDate>Sun, 06 Mar 2011 10:40:39 UTC</pubDate>
      <guid>https://snipplr.com/view/50151/get-twitter-feed-using-json--jquery</guid>
    </item>
    <item>
      <title>(jQuery) Get a tweet from user timeline using JSON and jQuery - eddequincey</title>
      <link>https://snipplr.com/view/49120/get-a-tweet-from-user-timeline-using-json-and-jquery</link>
      <description>&lt;p&gt;Updated code (December, 2012) to get a tweet from a user's twitter timeline using JSON and jQuery&lt;/p&gt;</description>
      <pubDate>Thu, 17 Feb 2011 07:00:40 UTC</pubDate>
      <guid>https://snipplr.com/view/49120/get-a-tweet-from-user-timeline-using-json-and-jquery</guid>
    </item>
    <item>
      <title>(JavaScript) Variation on webmonkey tutorial: - eddequincey</title>
      <link>https://snipplr.com/view/49118/variation-on-webmonkey-tutorial</link>
      <description>&lt;p&gt;Found that the webmonkey tutorial code didn't work as double quotes were used around JSON string.&lt;/p&gt;</description>
      <pubDate>Thu, 17 Feb 2011 06:36:39 UTC</pubDate>
      <guid>https://snipplr.com/view/49118/variation-on-webmonkey-tutorial</guid>
    </item>
    <item>
      <title>(JavaScript) getting an objects key values - iroybot</title>
      <link>https://snipplr.com/view/48653/getting-an-objects-key-values</link>
      <description>&lt;p&gt;I wanted to pass a form submission (array) as a JSON object to another function.&#13;
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.&#13;
In order to access values of that JSON obj I needed to find out the key names in order to get data out of it.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Feb 2011 10:29:19 UTC</pubDate>
      <guid>https://snipplr.com/view/48653/getting-an-objects-key-values</guid>
    </item>
    <item>
      <title>(JavaScript) getting an objects key values - iroybot</title>
      <link>https://snipplr.com/view/48652/getting-an-objects-key-values</link>
      <description>&lt;p&gt;I wanted to pass a form submission (array) as a JSON object to another function.&#13;
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.&#13;
In order to access values of that JSON obj I needed to find out the key names in order to get data out of it.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Feb 2011 10:28:28 UTC</pubDate>
      <guid>https://snipplr.com/view/48652/getting-an-objects-key-values</guid>
    </item>
    <item>
      <title>(PHP) PHP JSON Headers - simondiercks</title>
      <link>https://snipplr.com/view/48337/php-json-headers</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 03 Feb 2011 18:39:37 UTC</pubDate>
      <guid>https://snipplr.com/view/48337/php-json-headers</guid>
    </item>
    <item>
      <title>(PHP) Example of a JSON encoded repsonse - dropthenerd</title>
      <link>https://snipplr.com/view/48263/example-of-a-json-encoded-repsonse</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Feb 2011 11:04:10 UTC</pubDate>
      <guid>https://snipplr.com/view/48263/example-of-a-json-encoded-repsonse</guid>
    </item>
    <item>
      <title>(Groovy) Jackson Demo from Groovy Console - hansamann</title>
      <link>https://snipplr.com/view/48071/jackson-demo-from-groovy-console</link>
      <description>&lt;p&gt;Make sure Jackson core and Mappers are on classpath. So who can explain why userImage has a size of 7. I assume the byte-Array is encoded. What format?&lt;/p&gt;</description>
      <pubDate>Sat, 29 Jan 2011 01:38:58 UTC</pubDate>
      <guid>https://snipplr.com/view/48071/jackson-demo-from-groovy-console</guid>
    </item>
    <item>
      <title>(PHP) Check if a string it's json encoded using regular expressions - jatubio</title>
      <link>https://snipplr.com/view/47562/check-if-a-string-its-json-encoded-using-regular-expressions</link>
      <description>&lt;p&gt;Check if a string it's json encoded using regular expressions&#13;
&#13;
Thanks to Jens Anders Bakke for his mootools code published in webfreak.no&#13;
&#13;
http://webfreak.no/wp/2007/09/07/jsontest-for-mootools/&lt;/p&gt;</description>
      <pubDate>Thu, 20 Jan 2011 05:20:02 UTC</pubDate>
      <guid>https://snipplr.com/view/47562/check-if-a-string-its-json-encoded-using-regular-expressions</guid>
    </item>
    <item>
      <title>(C#) Filter JSON-&gt;JSONP for .NET 3.5 - FMalk</title>
      <link>https://snipplr.com/view/46627/filter-jsonjsonp-for-net-35</link>
      <description>&lt;p&gt;The filter only needs to know which requests need to be returned as JSONP, doesn't care how. Modify "OnBeginRequest" accordinly.&#13;
If original .asmx doesn't return JSON, extend it like example shows.&#13;
JSONP only works for GET requests, so don't forget to change [ScriptMethod] if needed.&lt;/p&gt;</description>
      <pubDate>Thu, 06 Jan 2011 06:47:46 UTC</pubDate>
      <guid>https://snipplr.com/view/46627/filter-jsonjsonp-for-net-35</guid>
    </item>
    <item>
      <title>(JavaScript) javascript json snips - sospartan</title>
      <link>https://snipplr.com/view/46284/javascript-json-snips</link>
      <description>&lt;p&gt;copy from google code search result page&lt;/p&gt;</description>
      <pubDate>Thu, 30 Dec 2010 16:18:29 UTC</pubDate>
      <guid>https://snipplr.com/view/46284/javascript-json-snips</guid>
    </item>
    <item>
      <title>(PHP) PHP Array into Javascript Array with JSON - whak</title>
      <link>https://snipplr.com/view/45626/php-array-into-javascript-array-with-json</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 11 Dec 2010 17:52:21 UTC</pubDate>
      <guid>https://snipplr.com/view/45626/php-array-into-javascript-array-with-json</guid>
    </item>
    <item>
      <title>(jQuery) Using jQuery to Get the Nth Twitter Status - mikemore</title>
      <link>https://snipplr.com/view/45011/using-jquery-to-get-the-nth-twitter-status</link>
      <description>&lt;p&gt;As of my ongoing preparation for the 1K tweet :) I was interested to see the 1000th tweet from some friends timeline. And when I didn't find an existing method, I thought I could write few jQuery lines to solve this..&lt;/p&gt;</description>
      <pubDate>Mon, 29 Nov 2010 11:57:58 UTC</pubDate>
      <guid>https://snipplr.com/view/45011/using-jquery-to-get-the-nth-twitter-status</guid>
    </item>
    <item>
      <title>(PHP) Processing json POST request with PHP - wnasich</title>
      <link>https://snipplr.com/view/44820/processing-json-post-request-with-php</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 25 Nov 2010 03:42:28 UTC</pubDate>
      <guid>https://snipplr.com/view/44820/processing-json-post-request-with-php</guid>
    </item>
    <item>
      <title>(PHP) Store array in cookie - liamchapman</title>
      <link>https://snipplr.com/view/43435/store-array-in-cookie</link>
      <description>&lt;p&gt;Simple function to store an array in a cookie. Uses JSON. &#13;
&#13;
To pull data out of cookie use 'json_decode()'. It can then be looped etc.&lt;/p&gt;</description>
      <pubDate>Tue, 02 Nov 2010 21:04:47 UTC</pubDate>
      <guid>https://snipplr.com/view/43435/store-array-in-cookie</guid>
    </item>
    <item>
      <title>(PHP) Flickr Photos Pull-In PHP JSON - mloberg</title>
      <link>https://snipplr.com/view/42794/flickr-photos-pullin-php-json</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 23 Oct 2010 05:51:54 UTC</pubDate>
      <guid>https://snipplr.com/view/42794/flickr-photos-pullin-php-json</guid>
    </item>
    <item>
      <title>(PHP) Twitter PHP Script - mloberg</title>
      <link>https://snipplr.com/view/42740/twitter-php-script</link>
      <description>&lt;p&gt;A Twitter pull-in that I coded using PHP. Uses the JSON user_timeline Twitter API call. It displays the tweet with links to any urls, users, or hashtags, the time ago, and if it was in reply to anyone.&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 05:37:06 UTC</pubDate>
      <guid>https://snipplr.com/view/42740/twitter-php-script</guid>
    </item>
    <item>
      <title>(jQuery) jQuery Vimeo Player - mloberg</title>
      <link>https://snipplr.com/view/42715/jquery-vimeo-player</link>
      <description>&lt;p&gt;This is a two file video player. I use JSON to get the list of videos from a user, then when a thumbnail is clicked, an AJAX request is sent with the id of the video, and an oEmbed response is sent back.&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 02:04:31 UTC</pubDate>
      <guid>https://snipplr.com/view/42715/jquery-vimeo-player</guid>
    </item>
    <item>
      <title>(PHP) Simple Vimeo JSON API Implementation - mloberg</title>
      <link>https://snipplr.com/view/42652/simple-vimeo-json-api-implementation</link>
      <description>&lt;p&gt;This is a very simple use of the Vimeo API. All it does is list the video title, a thumbnail of the video, and the description. More advance script coming later.&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 07:22:05 UTC</pubDate>
      <guid>https://snipplr.com/view/42652/simple-vimeo-json-api-implementation</guid>
    </item>
    <item>
      <title>(PHP) Tumblr JSON API Implementation - mloberg</title>
      <link>https://snipplr.com/view/42648/tumblr-json-api-implementation</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 06:01:26 UTC</pubDate>
      <guid>https://snipplr.com/view/42648/tumblr-json-api-implementation</guid>
    </item>
    <item>
      <title>(JavaScript) Latest 5 titles from Tumblr API using jquery - morningcatmedia</title>
      <link>https://snipplr.com/view/42450/latest-5-titles-from-tumblr-api-using-jquery</link>
      <description>&lt;p&gt;Get the latest 5 titles from the Tumblr API using jquery&lt;/p&gt;</description>
      <pubDate>Sun, 17 Oct 2010 21:08:12 UTC</pubDate>
      <guid>https://snipplr.com/view/42450/latest-5-titles-from-tumblr-api-using-jquery</guid>
    </item>
  </channel>
</rss>
