<?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 16:50:40 +0000</lastBuildDate>
    <item>
      <title>(Java) Load Existing Email Message and Modify its Contents inside Android Apps - johansonkatherine</title>
      <link>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</link>
      <description>&lt;p&gt;This technical tip shows how to load any existing email message and modify its contents before saving it back to disk using Aspose.Email for Android API. To do this successfully, specify the MessageFormat when loading the email message from disk. In addition, it is important to specify the correct MailMessageSaveType when saving the message back to disk.&#13;
&#13;
To update and save an email, the following steps can be used:&#13;
1.	Create an instance of the MailMessage class.&#13;
2.	Load an existing message using the MailMessage class' load() method and specifying the MessageFormat of the existing message.&#13;
3.	Get the subject using getSubject().&#13;
4.	After modifying the subject, set it again using the setSubject() method.&#13;
5.	Get the body using getHtmlBody().&#13;
6.	AFter modifying the body, set it using the setHtmlBody() method .&#13;
7.	Create an instance of the MailAddressCollection class.&#13;
8.	Get the recipients from the TO field into a MailAddressCollection object using the getTo() method exposed by the MailMessage class.&#13;
9.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
10.	Get the recipients from the CC field into a MailAddressCollection object using the getCC() method exposed by MailMessage class.&#13;
11.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
12.	Call the save() method exposed by the MailMessage class, specifying the correct MailMessageSaveType to save the message file to the disk in MSG format.&lt;/p&gt;</description>
      <pubDate>Thu, 22 May 2014 14:54:02 UTC</pubDate>
      <guid>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</guid>
    </item>
    <item>
      <title>(Ruby) Load Simple Pag Nokogiri - danielousky</title>
      <link>https://snipplr.com/view/72277/load-simple-pag-nokogiri</link>
      <description>&lt;p&gt;Ejemplo de Carga de PÃ¡gina con Nokogiri&lt;/p&gt;</description>
      <pubDate>Wed, 04 Sep 2013 08:04:17 UTC</pubDate>
      <guid>https://snipplr.com/view/72277/load-simple-pag-nokogiri</guid>
    </item>
    <item>
      <title>(JavaScript) Focus OnLoad in JavaScript - apphp-snippets</title>
      <link>https://snipplr.com/view/72179/focus-onload-in-javascript</link>
      <description>&lt;p&gt;You can put the user's cursor inside a text box or put focus on select box as soon as your page is loaded. This helps ensure that visitors do not 'overlook' an important form item on your site and this snippet only uses one line of code!&lt;/p&gt;</description>
      <pubDate>Thu, 22 Aug 2013 18:30:09 UTC</pubDate>
      <guid>https://snipplr.com/view/72179/focus-onload-in-javascript</guid>
    </item>
    <item>
      <title>(Bash) Perl CPU Killer - beaknit</title>
      <link>https://snipplr.com/view/66705/perl-cpu-killer</link>
      <description>&lt;p&gt;Set the last parameter to the number of cores.&#13;
&#13;
End with 'killall perl'&lt;/p&gt;</description>
      <pubDate>Mon, 13 Aug 2012 23:59:38 UTC</pubDate>
      <guid>https://snipplr.com/view/66705/perl-cpu-killer</guid>
    </item>
    <item>
      <title>(jQuery) Speed up jQuery UI Autocomplete Combobox with very large select lists - Huskie</title>
      <link>https://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists</link>
      <description>&lt;p&gt;With the current combobox implementation, the full list is emptied and re-rendered every time you expand the dropdown. Also you are stuck with setting the minLength to 0, because it has to do an empty search to get the full list.&#13;
&#13;
Here is my own implementation extending the autocomplete widget. It renders the full list just once, and reuses it whenever the dropdown button is clicked. This also removes the dependence of the option minLength = 0. It also works with arrays, and ajax as list source. Also if you have multiple large list, the widget initialization is added to a queue so it can run in the background, and not freeze the browser.&lt;/p&gt;</description>
      <pubDate>Tue, 17 Apr 2012 19:56:43 UTC</pubDate>
      <guid>https://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists</guid>
    </item>
    <item>
      <title>(jQuery) Ajax non load cash - Tyde</title>
      <link>https://snipplr.com/view/59534/ajax-non-load-cash</link>
      <description>&lt;p&gt;From time to time I need a Ajax function to not cashe the template it load. I only have notest this problem in IE.&lt;/p&gt;</description>
      <pubDate>Fri, 07 Oct 2011 20:58:19 UTC</pubDate>
      <guid>https://snipplr.com/view/59534/ajax-non-load-cash</guid>
    </item>
    <item>
      <title>(PHP) Load one model into another in CodeIgniter - shalomfriss</title>
      <link>https://snipplr.com/view/59010/load-one-model-into-another-in-codeigniter</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 23 Sep 2011 12:00:44 UTC</pubDate>
      <guid>https://snipplr.com/view/59010/load-one-model-into-another-in-codeigniter</guid>
    </item>
    <item>
      <title>(C#) LazyLoader - a simple, thread-safe class that can be used to load data on demand. - stewartrae</title>
      <link>https://snipplr.com/view/57114/lazyloader--a-simple-threadsafe-class-that-can-be-used-to-load-data-on-demand</link>
      <description>&lt;p&gt;A simple, thread-safe wrapper class for lazy-loading data into an instance on-demand (i.e. when the instance is first accessed.)&#13;
&#13;
Usage:&#13;
&#13;
LazyLoader&lt;Foo&gt; l = new LazyLoader&lt;Foo&gt;(() =&gt; Foo.LoadFromDataSource("DB Connection String"));&#13;
&#13;
// For access to the lazy-loaded instance:&#13;
var x = l.Instance.Bar;&#13;
&#13;
// Need to ensure that the data is loaded deterministically? Use this:&#13;
l.EnsureLoad();&lt;/p&gt;</description>
      <pubDate>Mon, 25 Jul 2011 15:28:10 UTC</pubDate>
      <guid>https://snipplr.com/view/57114/lazyloader--a-simple-threadsafe-class-that-can-be-used-to-load-data-on-demand</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Loading and Accessing fonts in external SWF at Runtime - adrianparr</title>
      <link>https://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime</link>
      <description>&lt;p&gt;These two classes demonstrate how to create an external font SWF that contains embedded fonts, and how to then load that external font SWF and access and use the fonts inside it.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2011 21:01:41 UTC</pubDate>
      <guid>https://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Example Font SWF - adrianparr</title>
      <link>https://snipplr.com/view/56912/as3-example-font-swf</link>
      <description>&lt;p&gt;This font SWF was created using the handy tool FontSwffer (http://blog.madebypi.co.uk/2011/02/28/fontswffer-1-1/)&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2011 19:43:00 UTC</pubDate>
      <guid>https://snipplr.com/view/56912/as3-example-font-swf</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>(ActionScript 3) Load External SWF - russdogg</title>
      <link>https://snipplr.com/view/55455/load-external-swf</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 18 Jun 2011 08:17:58 UTC</pubDate>
      <guid>https://snipplr.com/view/55455/load-external-swf</guid>
    </item>
    <item>
      <title>(Java) Load file from classpath - cupakob</title>
      <link>https://snipplr.com/view/54711/load-file-from-classpath</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jun 2011 16:49:57 UTC</pubDate>
      <guid>https://snipplr.com/view/54711/load-file-from-classpath</guid>
    </item>
    <item>
      <title>(PHP) Write server load to logfile per day - remko</title>
      <link>https://snipplr.com/view/54573/write-server-load-to-logfile-per-day</link>
      <description>&lt;p&gt;Tiny script to write a daily logfile with the serverload. Can be run every X minutes using a cron for example. &#13;
&#13;
Result in logfile:&#13;
&#13;
13.40 | 2.45      2.45      2.43&#13;
&#13;
13.45 | 1.62      2.02      2.25&lt;/p&gt;</description>
      <pubDate>Sun, 29 May 2011 21:55:56 UTC</pubDate>
      <guid>https://snipplr.com/view/54573/write-server-load-to-logfile-per-day</guid>
    </item>
    <item>
      <title>(Other) Load Postgres database with psql dump - greeneggs614</title>
      <link>https://snipplr.com/view/52694/load-postgres-database-with-psql-dump</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 Apr 2011 03:03:19 UTC</pubDate>
      <guid>https://snipplr.com/view/52694/load-postgres-database-with-psql-dump</guid>
    </item>
    <item>
      <title>(JavaScript) Amazing Website Javascript Initialization Code Block v1 - cmndo</title>
      <link>https://snipplr.com/view/52435/amazing-website-javascript-initialization-code-block-v1</link>
      <description>&lt;p&gt;Link body class names to trigger javascript. It requires jQuery.&lt;/p&gt;</description>
      <pubDate>Fri, 22 Apr 2011 01:32:08 UTC</pubDate>
      <guid>https://snipplr.com/view/52435/amazing-website-javascript-initialization-code-block-v1</guid>
    </item>
    <item>
      <title>(jQuery) Basic AJAX load with jQuery - Savio</title>
      <link>https://snipplr.com/view/48614/basic-ajax-load-with-jquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 08 Feb 2011 22:12:15 UTC</pubDate>
      <guid>https://snipplr.com/view/48614/basic-ajax-load-with-jquery</guid>
    </item>
    <item>
      <title>(JavaScript) Emulate Click with jQuery on Page Enter / Direct Lightbox Opening - disas</title>
      <link>https://snipplr.com/view/48078/emulate-click-with-jquery-on-page-enter--direct-lightbox-opening</link>
      <description>&lt;p&gt;This snippet could be useful if you use an div based design eg. with a slider or something similar. it grabs variables from the base url splitted by "#".&#13;
&#13;
So you can browse to your site like "http://www.example.com/#1#2" and use the first and second variable to emulate an click on a menu or an lightbox collection eg.  for opening an lightbox directly when you enter the site.&lt;/p&gt;</description>
      <pubDate>Sat, 29 Jan 2011 05:55:07 UTC</pubDate>
      <guid>https://snipplr.com/view/48078/emulate-click-with-jquery-on-page-enter--direct-lightbox-opening</guid>
    </item>
    <item>
      <title>(ActionScript 3) xml loader class - hejaaa</title>
      <link>https://snipplr.com/view/47134/xml-loader-class</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 14 Jan 2011 20:58:34 UTC</pubDate>
      <guid>https://snipplr.com/view/47134/xml-loader-class</guid>
    </item>
    <item>
      <title>(ActionScript 3) Simple load manager with cache - kuril</title>
      <link>https://snipplr.com/view/45888/simple-load-manager-with-cache</link>
      <description>&lt;p&gt;Simple manager that loads display objects via single method call and caches loaded objects&lt;/p&gt;</description>
      <pubDate>Fri, 17 Dec 2010 23:17:20 UTC</pubDate>
      <guid>https://snipplr.com/view/45888/simple-load-manager-with-cache</guid>
    </item>
    <item>
      <title>(HTML) Proper way of loading jQuery from Google\'s CDN with fallback to local lib if necessary - hced</title>
      <link>https://snipplr.com/view/45859/proper-way-of-loading-jquery-from-googles-cdn-with-fallback-to-local-lib-if-necessary</link>
      <description>&lt;p&gt;Proper way of loading libs such as jQuery from Google's CDN. Place these JavaScripts at the bottom for fast page loading. To target different versions, you can be more specific if you want; eg. /1.4/ or even /1.4.4/.&#13;
&#13;
(NOTE: you may either use http:// or https:// depending on your needs. Both will work.)&lt;/p&gt;</description>
      <pubDate>Fri, 17 Dec 2010 05:28:35 UTC</pubDate>
      <guid>https://snipplr.com/view/45859/proper-way-of-loading-jquery-from-googles-cdn-with-fallback-to-local-lib-if-necessary</guid>
    </item>
    <item>
      <title>(SAS) SAS Oracle Bulk Load - mprabhuram</title>
      <link>https://snipplr.com/view/45037/sas-oracle-bulk-load</link>
      <description>&lt;p&gt;use bulk load to save a large SAS dataset into oracle/DB2/SQL Server/ Teradata for joining with other tables etc..&#13;
&#13;
Alternate link : http://www2.sas.com/proceedings/sugi29/106-29.pdf&lt;/p&gt;</description>
      <pubDate>Tue, 30 Nov 2010 06:14:29 UTC</pubDate>
      <guid>https://snipplr.com/view/45037/sas-oracle-bulk-load</guid>
    </item>
    <item>
      <title>(PHP) Config Class load config.txt - sb_01</title>
      <link>https://snipplr.com/view/43674/config-class-load-configtxt</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 06 Nov 2010 05:59:30 UTC</pubDate>
      <guid>https://snipplr.com/view/43674/config-class-load-configtxt</guid>
    </item>
    <item>
      <title>(jQuery) Load external scripts FIRST for injected DOM HTML content - harikaram</title>
      <link>https://snipplr.com/view/43449/load-external-scripts-first-for-injected-dom-html-content</link>
      <description>&lt;p&gt;When injecting via jQuery HTML content which contains script tags referencing external scripts, which are then referenced via scripting elsewhere in the injected HTML, some browsers (Chrome) will not wait for the external scripts to load causing the internal scripts to throw an error.  This code parses the external script tags, loads them seperately and then calls the callback function passing the given HTML minus the external script tags for you to inject.&#13;
---------&#13;
UPDATE:  I've made this considerably more complex after some IE problems (really!).  Hope it helps someone out...&lt;/p&gt;</description>
      <pubDate>Wed, 03 Nov 2010 03:07:50 UTC</pubDate>
      <guid>https://snipplr.com/view/43449/load-external-scripts-first-for-injected-dom-html-content</guid>
    </item>
    <item>
      <title>(JavaScript) flexible feed dialog function for Facebook  JavaScript SDK FB.ui - coprolit</title>
      <link>https://snipplr.com/view/40141/flexible-feed-dialog-function-for-facebook--javascript-sdk-fbui</link>
      <description>&lt;p&gt;A more flexible version of the 'official' Facebook feed dialog example.&#13;
&#13;
"The Feed Dialog prompts the user to publish an individual story to a profile's feed. This does not require any extended permissions."&#13;
&#13;
"The following simple JavaScript example demonstrates using the FB.ui method in the JavaScript SDK to use the Feed Dialog:"&lt;/p&gt;</description>
      <pubDate>Wed, 08 Sep 2010 23:07:57 UTC</pubDate>
      <guid>https://snipplr.com/view/40141/flexible-feed-dialog-function-for-facebook--javascript-sdk-fbui</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Load External Text File - adrianparr</title>
      <link>https://snipplr.com/view/39430/as3-load-external-text-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 23 Aug 2010 20:24:05 UTC</pubDate>
      <guid>https://snipplr.com/view/39430/as3-load-external-text-file</guid>
    </item>
    <item>
      <title>(PHP) Page View Counter - FelixT</title>
      <link>https://snipplr.com/view/39092/page-view-counter</link>
      <description>&lt;p&gt;A simple PHP application for counting how many views a page gets.&lt;/p&gt;</description>
      <pubDate>Sun, 15 Aug 2010 19:01:18 UTC</pubDate>
      <guid>https://snipplr.com/view/39092/page-view-counter</guid>
    </item>
    <item>
      <title>(jQuery) Load an image with a fade in - supermauerbros</title>
      <link>https://snipplr.com/view/38253/load-an-image-with-a-fade-in</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 03 Aug 2010 06:49:17 UTC</pubDate>
      <guid>https://snipplr.com/view/38253/load-an-image-with-a-fade-in</guid>
    </item>
    <item>
      <title>(jQuery) jQuery dynamic loader - load jquery using pure js javascript if jQ is undefined or does not exist - brandonjp</title>
      <link>https://snipplr.com/view/37958/jquery-dynamic-loader--load-jquery-using-pure-js-javascript-if-jq-is-undefined-or-does-not-exist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 28 Jul 2010 01:36:35 UTC</pubDate>
      <guid>https://snipplr.com/view/37958/jquery-dynamic-loader--load-jquery-using-pure-js-javascript-if-jq-is-undefined-or-does-not-exist</guid>
    </item>
    <item>
      <title>(jQuery) Load jQuery From Google Without Risk of Breaking Your Site - stancox</title>
      <link>https://snipplr.com/view/37094/load-jquery-from-google-without-risk-of-breaking-your-site</link>
      <description>&lt;p&gt;Related Categories: jQuery, Tips&#13;
&#13;
We've all heard the best practices recommendation to load jQuery (or other JavaScript libraries) from a CDN, such as Google's for performance reasons. But what happens if, in the rare chance, Google's network is down or inaccessible? At a minimum, your site would start throwing errors &amp; wouldn't function properly.&#13;
&#13;
Fear not, all is not lost. Using the code below, we can try to load the file from the Google CDN and then quickly test if it successfully loaded. If it did load properly, we don't do anything different. But if it didn't, we can load the file from another location, assumingly our web server. Then our site will function properly and once Google's CDN is re-accessible, visitors will continue to benefit from the use of the CDN.&lt;/p&gt;</description>
      <pubDate>Sun, 11 Jul 2010 02:36:43 UTC</pubDate>
      <guid>https://snipplr.com/view/37094/load-jquery-from-google-without-risk-of-breaking-your-site</guid>
    </item>
    <item>
      <title>(jQuery) js - jQuery - jQueryLoader - check if $ is undefined, then load jquery with pure javascript if needed - brandonjp</title>
      <link>https://snipplr.com/view/36788/js--jquery--jqueryloader--check-if--is-undefined-then-load-jquery-with-pure-javascript-if-needed</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Jul 2010 03:53:16 UTC</pubDate>
      <guid>https://snipplr.com/view/36788/js--jquery--jqueryloader--check-if--is-undefined-then-load-jquery-with-pure-javascript-if-needed</guid>
    </item>
    <item>
      <title>(jQuery) Load jQuery using pure js javascript - single line - jquery.com latest - brandonjp</title>
      <link>https://snipplr.com/view/36785/load-jquery-using-pure-js-javascript--single-line--jquerycom-latest</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Jul 2010 03:47:48 UTC</pubDate>
      <guid>https://snipplr.com/view/36785/load-jquery-using-pure-js-javascript--single-line--jquerycom-latest</guid>
    </item>
    <item>
      <title>(JavaScript) Set or clear input values on load, focus &amp; blur with jQuery - phil7085</title>
      <link>https://snipplr.com/view/36375/set-or-clear-input-values-on-load-focus--blur-with-jquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jun 2010 23:18:20 UTC</pubDate>
      <guid>https://snipplr.com/view/36375/set-or-clear-input-values-on-load-focus--blur-with-jquery</guid>
    </item>
    <item>
      <title>(HTML) Load jQuery from Google API - phil7085</title>
      <link>https://snipplr.com/view/36374/load-jquery-from-google-api</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jun 2010 23:18:19 UTC</pubDate>
      <guid>https://snipplr.com/view/36374/load-jquery-from-google-api</guid>
    </item>
    <item>
      <title>(jQuery) Check if Jquery Exist if not load it - crispunk</title>
      <link>https://snipplr.com/view/36354/check-if-jquery-exist-if-not-load-it</link>
      <description>&lt;p&gt;If you are working on apps development to adapt on different sites that you don't have access to them, and need to load Jquery, but don't wanna load it twice this will help you !&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jun 2010 09:04:42 UTC</pubDate>
      <guid>https://snipplr.com/view/36354/check-if-jquery-exist-if-not-load-it</guid>
    </item>
    <item>
      <title>(HTML) HTML5 Beginers Layout With Google  Ajax Load - crispunk</title>
      <link>https://snipplr.com/view/36353/html5-beginers-layout-with-google--ajax-load</link>
      <description>&lt;p&gt;Basic HTML5 layout for beginners&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jun 2010 08:49:43 UTC</pubDate>
      <guid>https://snipplr.com/view/36353/html5-beginers-layout-with-google--ajax-load</guid>
    </item>
    <item>
      <title>(HTML) HTML5 Basic Template (w /Google Load) - tigerthemes</title>
      <link>https://snipplr.com/view/36139/html5-basic-template-w-google-load</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 25 Jun 2010 03:12:25 UTC</pubDate>
      <guid>https://snipplr.com/view/36139/html5-basic-template-w-google-load</guid>
    </item>
    <item>
      <title>(HTML) xhtml template with google load (jquery, prototype, swfobject...) - knedle</title>
      <link>https://snipplr.com/view/36117/xhtml-template-with-google-load-jquery-prototype-swfobject</link>
      <description>&lt;p&gt;blank xhtml template from NetBeans 6,9 with load all google AJAX Libraries API&lt;/p&gt;</description>
      <pubDate>Thu, 24 Jun 2010 22:36:10 UTC</pubDate>
      <guid>https://snipplr.com/view/36117/xhtml-template-with-google-load-jquery-prototype-swfobject</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Loading and Displaying an External SWF File - adrianparr</title>
      <link>https://snipplr.com/view/31920/as3-loading-and-displaying-an-external-swf-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 05:42:58 UTC</pubDate>
      <guid>https://snipplr.com/view/31920/as3-loading-and-displaying-an-external-swf-file</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Loading Variables from an External Text File - adrianparr</title>
      <link>https://snipplr.com/view/31917/as3-loading-variables-from-an-external-text-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 05:39:52 UTC</pubDate>
      <guid>https://snipplr.com/view/31917/as3-loading-variables-from-an-external-text-file</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Loading and Playing an External FLV File - adrianparr</title>
      <link>https://snipplr.com/view/31916/as3-loading-and-playing-an-external-flv-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 05:29:37 UTC</pubDate>
      <guid>https://snipplr.com/view/31916/as3-loading-and-playing-an-external-flv-file</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Loading and Playing an External MP3 File - adrianparr</title>
      <link>https://snipplr.com/view/31915/as3-loading-and-playing-an-external-mp3-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 05:28:14 UTC</pubDate>
      <guid>https://snipplr.com/view/31915/as3-loading-and-playing-an-external-mp3-file</guid>
    </item>
    <item>
      <title>(JavaScript) Random HTML content on load - supermauerbros</title>
      <link>https://snipplr.com/view/28817/random-html-content-on-load</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 23 Feb 2010 21:39:32 UTC</pubDate>
      <guid>https://snipplr.com/view/28817/random-html-content-on-load</guid>
    </item>
    <item>
      <title>(JavaScript) Loading XML Using Raw Javascript - alvincrespo</title>
      <link>https://snipplr.com/view/28570/loading-xml-using-raw-javascript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 18 Feb 2010 16:33:14 UTC</pubDate>
      <guid>https://snipplr.com/view/28570/loading-xml-using-raw-javascript</guid>
    </item>
    <item>
      <title>(ActionScript 3) Load Multiple XML Files - alvincrespo</title>
      <link>https://snipplr.com/view/28221/load-multiple-xml-files</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Feb 2010 02:34:46 UTC</pubDate>
      <guid>https://snipplr.com/view/28221/load-multiple-xml-files</guid>
    </item>
    <item>
      <title>(C#) Presentation Framework Imaging Classes Gray-Scale Example (loading, drawing, encoding) - bryanlyman</title>
      <link>https://snipplr.com/view/27700/presentation-framework-imaging-classes-grayscale-example-loading-drawing-encoding</link>
      <description>&lt;p&gt;You must include these DLL references in your vsweb or vscode project:\r\nPresentationCore,\r\nPresentationFramework,\r\nWindowsBase. \r\nNotice how I am manipulating the RGB values of each pixel, this is the power of these classes. The Drawing classes have the pixel drawing capabilities to draw lines and such already written for you, but handling a grayscale byte for byte is faster than relying on their other classes. I also chose to load and encode as PNG, but they have loaders and encoders for other file types as well that work the same way.&lt;/p&gt;</description>
      <pubDate>Thu, 04 Feb 2010 12:51:39 UTC</pubDate>
      <guid>https://snipplr.com/view/27700/presentation-framework-imaging-classes-grayscale-example-loading-drawing-encoding</guid>
    </item>
    <item>
      <title>(JavaScript) Mootools Lazy Load - kcmr</title>
      <link>https://snipplr.com/view/25723/mootools-lazy-load</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 Dec 2009 13:09:54 UTC</pubDate>
      <guid>https://snipplr.com/view/25723/mootools-lazy-load</guid>
    </item>
    <item>
      <title>(jQuery) jQuery - Random On Load - thehamilton</title>
      <link>https://snipplr.com/view/20491/jquery--random-on-load</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 Sep 2009 15:50:16 UTC</pubDate>
      <guid>https://snipplr.com/view/20491/jquery--random-on-load</guid>
    </item>
    <item>
      <title>(jQuery) jQuery run code after image loads - nd6</title>
      <link>https://snipplr.com/view/19184/jquery-run-code-after-image-loads</link>
      <description>&lt;p&gt;Taken from TVIDesign's 25 Excellent jQuery tips&lt;/p&gt;</description>
      <pubDate>Wed, 02 Sep 2009 13:58:09 UTC</pubDate>
      <guid>https://snipplr.com/view/19184/jquery-run-code-after-image-loads</guid>
    </item>
    <item>
      <title>(Emacs Lisp) load-my-favorite-file - bigfaceworm</title>
      <link>https://snipplr.com/view/18678/loadmyfavoritefile</link>
      <description>&lt;p&gt;Answer to one of the examples here: http://stackoverflow.com/questions/41522/tips-for-learning-elisp/59589#59589&lt;/p&gt;</description>
      <pubDate>Fri, 21 Aug 2009 14:41:32 UTC</pubDate>
      <guid>https://snipplr.com/view/18678/loadmyfavoritefile</guid>
    </item>
  </channel>
</rss>
