<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/using</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sat, 18 May 2013 22:25:08 GMT</pubDate>
<item>
<title>(Java) Android plist Parser using dd-plist - l01241</title>
<link>http://snipplr.com/view/66288/android-plist-parser-using-ddplist/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 23 Jul 2012 18:44:37 GMT</pubDate>
<guid>http://snipplr.com/view/66288/android-plist-parser-using-ddplist/</guid>
</item>
<item>
<title>(JavaScript) strip html tags using javascript - satinfo30</title>
<link>http://snipplr.com/view/63714/strip-html-tags-using-javascript/</link>
<description><![CDATA[ <p>this code is used to remove the html code in the given string</p> ]]></description>
<pubDate>Mon, 05 Mar 2012 13:53:07 GMT</pubDate>
<guid>http://snipplr.com/view/63714/strip-html-tags-using-javascript/</guid>
</item>
<item>
<title>(PHP) Display recent Twitter tweets using PHP - i-am-andy</title>
<link>http://snipplr.com/view/61700/display-recent-twitter-tweets-using-php/</link>
<description><![CDATA[ <p>If you’ve ever wanted to display your latest Twitter tweets on a website, here is method to do that using PHP.</p> ]]></description>
<pubDate>Tue, 06 Dec 2011 20:12:54 GMT</pubDate>
<guid>http://snipplr.com/view/61700/display-recent-twitter-tweets-using-php/</guid>
</item>
<item>
<title>(JavaScript) sql query using javascript - kashif21</title>
<link>http://snipplr.com/view/51134/sql-query-using-javascript/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 26 Mar 2011 02:43:33 GMT</pubDate>
<guid>http://snipplr.com/view/51134/sql-query-using-javascript/</guid>
</item>
<item>
<title>(HTML) Aligning divs on one line using a floated left unorderd list - bobbym245</title>
<link>http://snipplr.com/view/45434/aligning-divs-on-one-line-using-a-floated-left-unorderd-list/</link>
<description><![CDATA[ <p>The css style's in the  tags are important for this snippet to work.</p> ]]></description>
<pubDate>Wed, 08 Dec 2010 07:57:45 GMT</pubDate>
<guid>http://snipplr.com/view/45434/aligning-divs-on-one-line-using-a-floated-left-unorderd-list/</guid>
</item>
<item>
<title>(jQuery) js javascript browser language detection, get the user\'s browser\'s language preference setting using jquery to detect users br - brandonjp</title>
<link>http://snipplr.com/view/37953/js-javascript-browser-language-detection-get-the-users-browsers-language-preference-setting-using-jquery-to-detect-users-br/</link>
<description><![CDATA[ <p>JQ - detect users browser language using http headers via ajax jsonp ajaxhttpheaders</p> ]]></description>
<pubDate>Tue, 27 Jul 2010 23:45:11 GMT</pubDate>
<guid>http://snipplr.com/view/37953/js-javascript-browser-language-detection-get-the-users-browsers-language-preference-setting-using-jquery-to-detect-users-br/</guid>
</item>
<item>
<title>(SAS) CALL EXECUTE: Easy way to print or sort multiple files. - sarathannapareddy</title>
<link>http://snipplr.com/view/33199/call-execute-easy-way-to-print-or-sort-multiple-files/</link>
<description><![CDATA[ <p>When printing multiple files, or sorting multiple datasets, the traditional method is to write multiple steps as below.

Proc print data=libref.ae; var _all_; run;
Proc print data=libref.conmed; var _all_; run;
Proc print data=libref.demog; var _all_; run;
Proc print data=libref.lab; var _all_; run;
Proc print data=libref.medhist; var _all_; run; 
If you are like me who likes to simplify the traditional SAS code here is the tip. CALL EXECUTE comes to rescue here.</p> ]]></description>
<pubDate>Mon, 26 Apr 2010 19:42:48 GMT</pubDate>
<guid>http://snipplr.com/view/33199/call-execute-easy-way-to-print-or-sort-multiple-files/</guid>
</item>
<item>
<title>(PHP) Flatten Array Using Index - iloveitaly</title>
<link>http://snipplr.com/view/24948/flatten-array-using-index/</link>
<description><![CDATA[ <p>Before:
`
Array
(
    [0] => Array
        (
            [total_sessions] => 24
            [study_type_id] => 1
        )

    [1] => Array
        (
            [total_sessions] => 24
            [study_type_id] => 2
        )

    [2] => Array
        (
            [total_sessions] => 20
            [study_type_id] => 3
        )

    [3] => Array
        (
            [total_sessions] => 10
            [study_type_id] => 4
        )

    [4] => Array
        (
            [total_sessions] => 10
            [study_type_id] => 5
        )

    [5] => Array
        (
            [total_sessions] => 10
            [study_type_id] => 6
        )

    [6] => Array
        (
            [total_sessions] => 10
            [study_type_id] => 7
        )

    [7] => Array
        (
            [total_sessions] => 8
            [study_type_id] => 10
        )

    [8] => Array
        (
            [total_sessions] => 8
            [study_type_id] => 12
        )

)
`
After:
`
Array
(
    [1] => Array
        (
            [total_sessions] => 24
        )

    [2] => Array
        (
            [total_sessions] => 24
        )

    [3] => Array
        (
            [total_sessions] => 20
        )

    [4] => Array
        (
            [total_sessions] => 10
        )

    [5] => Array
        (
            [total_sessions] => 10
        )

    [6] => Array
        (
            [total_sessions] => 10
        )

    [7] => Array
        (
            [total_sessions] => 10
        )

    [10] => Array
        (
            [total_sessions] => 8
        )

    [12] => Array
        (
            [total_sessions] => 8
        )
)
`</p> ]]></description>
<pubDate>Thu, 17 Dec 2009 10:16:03 GMT</pubDate>
<guid>http://snipplr.com/view/24948/flatten-array-using-index/</guid>
</item>
<item>
<title>(jQuery) jQuery Search API - brianyang</title>
<link>http://snipplr.com/view/19136/jquery-search-api/</link>
<description><![CDATA[ <p>How to load jQuery and then use the Search API with it.</p> ]]></description>
<pubDate>Tue, 01 Sep 2009 17:21:46 GMT</pubDate>
<guid>http://snipplr.com/view/19136/jquery-search-api/</guid>
</item>
<item>
<title>(XML) Print all XML elements, where given attribute has certain value - mikander</title>
<link>http://snipplr.com/view/17567/print-all-xml-elements-where-given-attribute-has-certain-value/</link>
<description><![CDATA[ <p>Extract all  elements (and sub nodes), where the attribute 'id' has one of a number of given values</p> ]]></description>
<pubDate>Tue, 28 Jul 2009 08:59:01 GMT</pubDate>
<guid>http://snipplr.com/view/17567/print-all-xml-elements-where-given-attribute-has-certain-value/</guid>
</item>
<item>
<title>(C#) Simple insert SPROC call - ixia</title>
<link>http://snipplr.com/view/4653/simple-insert-sproc-call/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 18 Jan 2008 23:51:35 GMT</pubDate>
<guid>http://snipplr.com/view/4653/simple-insert-sproc-call/</guid>
</item>
</channel>
</rss>