<?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/load</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 14:09:08 GMT</pubDate>
<item>
<title>(Bash) Watch server load - deanhouseholder</title>
<link>http://snipplr.com/view/70804/watch-server-load/</link>
<description><![CDATA[ <p>Watch system load every 5 seconds.</p> ]]></description>
<pubDate>Tue, 16 Apr 2013 15:13:01 GMT</pubDate>
<guid>http://snipplr.com/view/70804/watch-server-load/</guid>
</item>
<item>
<title>(Bash) Perl CPU Killer - beaknit</title>
<link>http://snipplr.com/view/66705/perl-cpu-killer/</link>
<description><![CDATA[ <p>Set the last parameter to the number of cores.

End with 'killall perl'</p> ]]></description>
<pubDate>Mon, 13 Aug 2012 23:59:38 GMT</pubDate>
<guid>http://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>http://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists/</link>
<description><![CDATA[ <p>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.

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.</p> ]]></description>
<pubDate>Tue, 17 Apr 2012 19:56:43 GMT</pubDate>
<guid>http://snipplr.com/view/64623/speed-up-jquery-ui-autocomplete-combobox-with-very-large-select-lists/</guid>
</item>
<item>
<title>(SQL) Load Extension into Sqlite3 - jerryvig</title>
<link>http://snipplr.com/view/63879/load-extension-into-sqlite3/</link>
<description><![CDATA[ <p>This shows how to load an extension into sqlite3.</p> ]]></description>
<pubDate>Sun, 11 Mar 2012 10:59:58 GMT</pubDate>
<guid>http://snipplr.com/view/63879/load-extension-into-sqlite3/</guid>
</item>
<item>
<title>(HTML) Faster page load hack - IE conditional comments - Huskie</title>
<link>http://snipplr.com/view/62494/faster-page-load-hack--ie-conditional-comments/</link>
<description><![CDATA[ <p>This empty conditional comment hack is used to basically increase performance of a website. When conditional comments are used on a site, for example, for an IE6 conditional stylesheet, it will block further downloads until the css files are fully downloaded, hence increasing load time. To solve this issue, an empty conditional comment, like below, is used before any CSS is loaded in the document, and the problem will be solved!</p> ]]></description>
<pubDate>Thu, 12 Jan 2012 02:04:40 GMT</pubDate>
<guid>http://snipplr.com/view/62494/faster-page-load-hack--ie-conditional-comments/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Pie Chart - adrianparr</title>
<link>http://snipplr.com/view/61685/as3-pie-chart/</link>
<description><![CDATA[ <p>Credit goes to http://snipplr.com/users/MaRmAR/</p> ]]></description>
<pubDate>Tue, 06 Dec 2011 03:00:46 GMT</pubDate>
<guid>http://snipplr.com/view/61685/as3-pie-chart/</guid>
</item>
<item>
<title>(jQuery) Ajax non load cash - Tyde</title>
<link>http://snipplr.com/view/59534/ajax-non-load-cash/</link>
<description><![CDATA[ <p>From time to time I need a Ajax function to not cashe the template it load. I only have notest this problem in IE.</p> ]]></description>
<pubDate>Fri, 07 Oct 2011 20:58:19 GMT</pubDate>
<guid>http://snipplr.com/view/59534/ajax-non-load-cash/</guid>
</item>
<item>
<title>(PHP) Load one model into another in CodeIgniter - shalomfriss</title>
<link>http://snipplr.com/view/59010/load-one-model-into-another-in-codeigniter/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 23 Sep 2011 12:00:44 GMT</pubDate>
<guid>http://snipplr.com/view/59010/load-one-model-into-another-in-codeigniter/</guid>
</item>
<item>
<title>(JavaScript) Delay no carregamento de blocos no HTML - thiagotargino</title>
<link>http://snipplr.com/view/58167/delay-no-carregamento-de-blocos-no-html/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 26 Aug 2011 00:15:06 GMT</pubDate>
<guid>http://snipplr.com/view/58167/delay-no-carregamento-de-blocos-no-html/</guid>
</item>
<item>
<title>(Other) Preload Images - silentpro</title>
<link>http://snipplr.com/view/57361/preload-images/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 30 Jul 2011 03:32:05 GMT</pubDate>
<guid>http://snipplr.com/view/57361/preload-images/</guid>
</item>
<item>
<title>(C#) LazyLoader - a simple, thread-safe class that can be used to load data on demand. - stewartrae</title>
<link>http://snipplr.com/view/57114/lazyloader--a-simple-threadsafe-class-that-can-be-used-to-load-data-on-demand/</link>
<description><![CDATA[ <p>A simple, thread-safe wrapper class for lazy-loading data into an instance on-demand (i.e. when the instance is first accessed.)

Usage:

LazyLoader l = new LazyLoader(() => Foo.LoadFromDataSource("DB Connection String"));

// For access to the lazy-loaded instance:
var x = l.Instance.Bar;

// Need to ensure that the data is loaded deterministically? Use this:
l.EnsureLoad();</p> ]]></description>
<pubDate>Mon, 25 Jul 2011 15:28:10 GMT</pubDate>
<guid>http://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>http://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime/</link>
<description><![CDATA[ <p>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.</p> ]]></description>
<pubDate>Wed, 20 Jul 2011 21:01:41 GMT</pubDate>
<guid>http://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>http://snipplr.com/view/56912/as3-example-font-swf/</link>
<description><![CDATA[ <p>This font SWF was created using the handy tool FontSwffer (http://blog.madebypi.co.uk/2011/02/28/fontswffer-1-1/)</p> ]]></description>
<pubDate>Wed, 20 Jul 2011 19:43:00 GMT</pubDate>
<guid>http://snipplr.com/view/56912/as3-example-font-swf/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Load and access JSON data example - adrianparr</title>
<link>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</link>
<description><![CDATA[ <p>For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib</p> ]]></description>
<pubDate>Fri, 08 Jul 2011 05:33:20 GMT</pubDate>
<guid>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</guid>
</item>
<item>
<title>(ActionScript 3) Load External SWF - russdogg</title>
<link>http://snipplr.com/view/55455/load-external-swf/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 18 Jun 2011 08:17:58 GMT</pubDate>
<guid>http://snipplr.com/view/55455/load-external-swf/</guid>
</item>
<item>
<title>(Java) Load file from classpath - cupakob</title>
<link>http://snipplr.com/view/54711/load-file-from-classpath/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 01 Jun 2011 16:49:57 GMT</pubDate>
<guid>http://snipplr.com/view/54711/load-file-from-classpath/</guid>
</item>
<item>
<title>(PHP) Write server load to logfile per day - remko</title>
<link>http://snipplr.com/view/54573/write-server-load-to-logfile-per-day/</link>
<description><![CDATA[ <p>Tiny script to write a daily logfile with the serverload. Can be run every X minutes using a cron for example. 

Result in logfile:

13.40 | 2.45      2.45      2.43

13.45 | 1.62      2.02      2.25</p> ]]></description>
<pubDate>Sun, 29 May 2011 21:55:56 GMT</pubDate>
<guid>http://snipplr.com/view/54573/write-server-load-to-logfile-per-day/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 XML Load/Parse - merrittwjm</title>
<link>http://snipplr.com/view/53161/as3-xml-loadparse/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 06 May 2011 23:00:27 GMT</pubDate>
<guid>http://snipplr.com/view/53161/as3-xml-loadparse/</guid>
</item>
<item>
<title>(Other) Load Postgres database with psql dump - greeneggs614</title>
<link>http://snipplr.com/view/52694/load-postgres-database-with-psql-dump/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 28 Apr 2011 03:03:19 GMT</pubDate>
<guid>http://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>http://snipplr.com/view/52435/amazing-website-javascript-initialization-code-block-v1/</link>
<description><![CDATA[ <p>Link body class names to trigger javascript. It requires jQuery.</p> ]]></description>
<pubDate>Fri, 22 Apr 2011 01:32:08 GMT</pubDate>
<guid>http://snipplr.com/view/52435/amazing-website-javascript-initialization-code-block-v1/</guid>
</item>
</channel>
</rss>