<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - jlvallelonga</title>
<link>http://snipplr.com/users/jlvallelonga</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 14 Feb 2012 14:00:29 GMT</pubDate>
<item>
<title>(ASP) get today date string</title>
<link>http://snipplr.com/view/40693/get-today-date-string/</link>
<description><![CDATA[ <p>gets you a date string for today in YearMonthDay formant like this 20100917</p> ]]></description>
<pubDate>Sat, 18 Sep 2010 01:31:17 GMT</pubDate>
<guid>http://snipplr.com/view/40693/get-today-date-string/</guid>
</item>
<item>
<title>(ASP) Are Arrays Equal</title>
<link>http://snipplr.com/view/25783/are-arrays-equal/</link>
<description><![CDATA[ <p>This function checks to see if two arrays are equal</p> ]]></description>
<pubDate>Thu, 31 Dec 2009 12:56:39 GMT</pubDate>
<guid>http://snipplr.com/view/25783/are-arrays-equal/</guid>
</item>
<item>
<title>(ASP) display array</title>
<link>http://snipplr.com/view/20266/display-array/</link>
<description><![CDATA[ <p>this procedure displays the passed array</p> ]]></description>
<pubDate>Fri, 25 Sep 2009 14:13:25 GMT</pubDate>
<guid>http://snipplr.com/view/20266/display-array/</guid>
</item>
<item>
<title>(ASP) remove value from array</title>
<link>http://snipplr.com/view/20265/remove-value-from-array/</link>
<description><![CDATA[ <p>This function returns the array with all instances of the specified value removed</p> ]]></description>
<pubDate>Fri, 25 Sep 2009 14:11:22 GMT</pubDate>
<guid>http://snipplr.com/view/20265/remove-value-from-array/</guid>
</item>
<item>
<title>(ASP) contains value</title>
<link>http://snipplr.com/view/20264/contains-value/</link>
<description><![CDATA[ <p>This function returns whether or not the value was found in the array</p> ]]></description>
<pubDate>Fri, 25 Sep 2009 11:44:12 GMT</pubDate>
<guid>http://snipplr.com/view/20264/contains-value/</guid>
</item>
<item>
<title>(PHP) formatWebAddress</title>
<link>http://snipplr.com/view/17747/formatwebaddress/</link>
<description><![CDATA[ <p>this function formats a web address for use in a link.
echo formatWebAddress("google.com");
http://www.google.com/</p> ]]></description>
<pubDate>Sat, 01 Aug 2009 01:52:19 GMT</pubDate>
<guid>http://snipplr.com/view/17747/formatwebaddress/</guid>
</item>
<item>
<title>(PHP) insertString PHP</title>
<link>http://snipplr.com/view/17655/insertstring-php/</link>
<description><![CDATA[ <p>use this function to insert a string into another string at a certain position.
echo insertString("legendary", " wait for it ... ", 5);
legen wait for it ... dary</p> ]]></description>
<pubDate>Thu, 30 Jul 2009 00:58:30 GMT</pubDate>
<guid>http://snipplr.com/view/17655/insertstring-php/</guid>
</item>
<item>
<title>(JavaScript) confirm password background change</title>
<link>http://snipplr.com/view/13411/confirm-password-background-change/</link>
<description><![CDATA[ <p>I just put all the functions in here
the validateConfPass function uses the key event and the two text fields to change the background color of the confPassword field when it does not equal the pass field</p> ]]></description>
<pubDate>Tue, 24 Mar 2009 15:11:24 GMT</pubDate>
<guid>http://snipplr.com/view/13411/confirm-password-background-change/</guid>
</item>
<item>
<title>(JavaScript) getCharacterPressed</title>
<link>http://snipplr.com/view/13410/getcharacterpressed/</link>
<description><![CDATA[ <p>send in an event
it returns the key that you pressed if it was alphanumeric or backspace
otherwise it returns "-1"
use with getKeyCode and isAlphaNumeric</p> ]]></description>
<pubDate>Tue, 24 Mar 2009 15:03:04 GMT</pubDate>
<guid>http://snipplr.com/view/13410/getcharacterpressed/</guid>
</item>
<item>
<title>(JavaScript) getKeyCode</title>
<link>http://snipplr.com/view/13409/getkeycode/</link>
<description><![CDATA[ <p>send in the event to get the key code
useful with onKeyPress javascript event</p> ]]></description>
<pubDate>Tue, 24 Mar 2009 14:56:47 GMT</pubDate>
<guid>http://snipplr.com/view/13409/getkeycode/</guid>
</item>
<item>
<title>(JavaScript) pressedPrintableChar</title>
<link>http://snipplr.com/view/13408/pressedprintablechar/</link>
<description><![CDATA[ <p>to use this function send in an ASCII character code (use my getKeyCode function)
it will return true if the code corresponds to a printable character (not backspace code - 8, enter code - 13, or "undefined")</p> ]]></description>
<pubDate>Tue, 24 Mar 2009 14:49:02 GMT</pubDate>
<guid>http://snipplr.com/view/13408/pressedprintablechar/</guid>
</item>
<item>
<title>(ASP) genPassword</title>
<link>http://snipplr.com/view/13283/genpassword/</link>
<description><![CDATA[ <p>pass in the length of the password to generate and out comes a random alphanumeric password</p> ]]></description>
<pubDate>Thu, 19 Mar 2009 12:50:30 GMT</pubDate>
<guid>http://snipplr.com/view/13283/genpassword/</guid>
</item>
<item>
<title>(JavaScript) validate length of string</title>
<link>http://snipplr.com/view/12300/validate-length-of-string/</link>
<description><![CDATA[ <p>this function returns if the passed string is shorter than the limit or not
when you press keys other than F5, backspace, or any arrow keys and the limit is reached it shows an alert.

use with isValueInArray function</p> ]]></description>
<pubDate>Tue, 17 Feb 2009 13:21:36 GMT</pubDate>
<guid>http://snipplr.com/view/12300/validate-length-of-string/</guid>
</item>
<item>
<title>(JavaScript) is value in array</title>
<link>http://snipplr.com/view/12299/is-value-in-array/</link>
<description><![CDATA[ <p>this function tells you whether or not the passed value is in the passed array</p> ]]></description>
<pubDate>Tue, 17 Feb 2009 13:15:00 GMT</pubDate>
<guid>http://snipplr.com/view/12299/is-value-in-array/</guid>
</item>
<item>
<title>(JavaScript) get http object</title>
<link>http://snipplr.com/view/12298/get-http-object/</link>
<description><![CDATA[ <p>this funciton returns an XMLHttpRequest object for use in ajax pages</p> ]]></description>
<pubDate>Tue, 17 Feb 2009 12:19:21 GMT</pubDate>
<guid>http://snipplr.com/view/12298/get-http-object/</guid>
</item>
<item>
<title>(JavaScript) Display HTML</title>
<link>http://snipplr.com/view/12297/display-html/</link>
<description><![CDATA[ <p>this function displays the given page with the given query string in the given div
usage: </p> ]]></description>
<pubDate>Tue, 17 Feb 2009 12:16:57 GMT</pubDate>
<guid>http://snipplr.com/view/12297/display-html/</guid>
</item>
<item>
<title>(ASP) Get Tabs</title>
<link>http://snipplr.com/view/12157/get-tabs/</link>
<description><![CDATA[ <p>This function returns the number of tabs that you specify as 4 spaces per tab</p> ]]></description>
<pubDate>Thu, 12 Feb 2009 13:47:27 GMT</pubDate>
<guid>http://snipplr.com/view/12157/get-tabs/</guid>
</item>
<item>
<title>(ASP) Delete Last Comma</title>
<link>http://snipplr.com/view/12074/delete-last-comma/</link>
<description><![CDATA[ <p>This function takes a string and deletes the last comma in it.
It is meant for strings with a trailing comma such as "13, 24, 15, "</p> ]]></description>
<pubDate>Tue, 10 Feb 2009 12:08:29 GMT</pubDate>
<guid>http://snipplr.com/view/12074/delete-last-comma/</guid>
</item>
<item>
<title>(ASP) Format Web Address</title>
<link>http://snipplr.com/view/11657/format-web-address/</link>
<description><![CDATA[ <p>this function formats a web address for use in a link</p> ]]></description>
<pubDate>Thu, 29 Jan 2009 15:06:28 GMT</pubDate>
<guid>http://snipplr.com/view/11657/format-web-address/</guid>
</item>
</channel>
</rss>
