<?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/favorites/vbert</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sat, 11 Oct 2008 06:47:52 GMT</pubDate>
<item>
<title>(JavaScript) Associative Array - advance - vbert</title>
<link>http://snipplr.com/view/5136/associative-array--advance/</link>
<description><![CDATA[ <p>/* ---===[ EXAMPLE ]===--- */

var TT = new AssociativeArray();

TT.add("k-1", "Value 1");
TT.add("k-2", "Value 2");
TT.add("k-3", "Value 3");
TT.add("k-4", "Value 4");

alert(TT.to_string());</p> ]]></description>
<pubDate>Wed, 20 Feb 2008 20:30:22 GMT</pubDate>
<guid>http://snipplr.com/view/5136/associative-array--advance/</guid>
</item>
<item>
<title>(JavaScript) Simple hash table (associate array) in JavaScript - vbert</title>
<link>http://snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript/</link>
<description><![CDATA[ <p>/* --==[ EXAMPLE ]==--

var colors = new AArray();
colors.add("k01", {bk:"#fff",tk:"b",it:"hello"});

var oC = colors.get("k01");

var tT = '';
for(K in oC) tT += "[" + K + "]: " + oC[K] + "\n";

tT += "\n\n";
tT += oC.bk + "\n";
tT += oC.tk + "\n";
tT += oC.it + "\n";

alert(tT);
*/</p> ]]></description>
<pubDate>Tue, 19 Feb 2008 12:40:34 GMT</pubDate>
<guid>http://snipplr.com/view/5122/simple-hash-table-associate-array-in-javascript/</guid>
</item>
<item>
<title>(JavaScript) Slide menu - vbert</title>
<link>http://snipplr.com/view/5054/slide-menu/</link>
<description><![CDATA[ <p>/**
 * Slide menu with jQuery
 *
 * @package bitemibajtem.pl
 * @copyright 2007-2008 (C) BITEM I BAJTEM
 * @author Wojciech Sobczak (vbert) 
 * @access public
 */</p> ]]></description>
<pubDate>Wed, 13 Feb 2008 23:18:48 GMT</pubDate>
<guid>http://snipplr.com/view/5054/slide-menu/</guid>
</item>
<item>
<title>(JavaScript) Google Analytics code - vbert</title>
<link>http://snipplr.com/view/5045/google-analytics-code/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 13 Feb 2008 11:34:46 GMT</pubDate>
<guid>http://snipplr.com/view/5045/google-analytics-code/</guid>
</item>
<item>
<title>(CSS) CSS Image Preloader - vbert</title>
<link>http://snipplr.com/view/2122/css-image-preloader/</link>
<description><![CDATA[ <p>A low-tech but useful technique that uses only CSS.  After placing the css in your stylesheet, insert this just below the body tag of your page: "".  Whenever the images are referenced throughout your pages they will now be loaded from cache.</p> ]]></description>
<pubDate>Sun, 04 Feb 2007 19:47:05 GMT</pubDate>
<guid>http://snipplr.com/view/2122/css-image-preloader/</guid>
</item>
<item>
<title>(Bash) Show sound cards detected (linux) - vbert</title>
<link>http://snipplr.com/view/1494/show-sound-cards-detected-linux/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 29 Oct 2006 01:43:05 GMT</pubDate>
<guid>http://snipplr.com/view/1494/show-sound-cards-detected-linux/</guid>
</item>
<item>
<title>(Bash) GnuPG key - vbert</title>
<link>http://snipplr.com/view/1470/gnupg-key/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 25 Oct 2006 16:14:57 GMT</pubDate>
<guid>http://snipplr.com/view/1470/gnupg-key/</guid>
</item>
<item>
<title>(Bash) useful apt-get commands - vbert</title>
<link>http://snipplr.com/view/1337/useful-aptget-commands/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 06 Oct 2006 16:20:27 GMT</pubDate>
<guid>http://snipplr.com/view/1337/useful-aptget-commands/</guid>
</item>
<item>
<title>(PHP) Using iconv to convert character encodings - vbert</title>
<link>http://snipplr.com/view/1004/using-iconv-to-convert-character-encodings/</link>
<description><![CDATA[ <p>Example conversion from iso8859-1 to utf-8</p> ]]></description>
<pubDate>Sat, 02 Sep 2006 12:44:13 GMT</pubDate>
<guid>http://snipplr.com/view/1004/using-iconv-to-convert-character-encodings/</guid>
</item>
<item>
<title>(JavaScript) Email javascript validation - vbert</title>
<link>http://snipplr.com/view/814/email-javascript-validation/</link>
<description><![CDATA[ <p>Simple javascript email validation</p> ]]></description>
<pubDate>Tue, 15 Aug 2006 08:03:29 GMT</pubDate>
<guid>http://snipplr.com/view/814/email-javascript-validation/</guid>
</item>
<item>
<title>(CSS) ClearFix - vbert</title>
<link>http://snipplr.com/view/489/clearfix/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 18 Jul 2006 03:25:59 GMT</pubDate>
<guid>http://snipplr.com/view/489/clearfix/</guid>
</item>
<item>
<title>(HTML) Countries Menu - vbert</title>
<link>http://snipplr.com/view/338/countries-menu/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 10 Jul 2006 15:07:00 GMT</pubDate>
<guid>http://snipplr.com/view/338/countries-menu/</guid>
</item>
<item>
<title>(CSS) min/max-width fix for IE6 - vbert</title>
<link>http://snipplr.com/view/318/minmaxwidth-fix-for-ie6/</link>
<description><![CDATA[ <p>Javascript expression in css to allow for min/max widths. replaces the min-width, max-width that works for IE6.</p> ]]></description>
<pubDate>Sun, 09 Jul 2006 19:48:32 GMT</pubDate>
<guid>http://snipplr.com/view/318/minmaxwidth-fix-for-ie6/</guid>
</item>
<item>
<title>(CSS) Opacity Hack - vbert</title>
<link>http://snipplr.com/view/200/opacity-hack/</link>
<description><![CDATA[ <p>Sets the opacity of an element and its children. Doesn't validate. Mozilla began supporting the opacity rule in version 1.7, so '-moz-opacity' may not be necessary...</p> ]]></description>
<pubDate>Sun, 02 Jul 2006 16:31:25 GMT</pubDate>
<guid>http://snipplr.com/view/200/opacity-hack/</guid>
</item>
</channel>
</rss>