Below are snippets for RobHarrigan.

ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

8
Date Submitted Thu. Jan. 25th, 2007 11:16 AM
Revision 1
Helper RobHarrigan
Tags File | grab | lines | yank | yoink
Comments 0 comments
Use this utility to grab lines from a file. Arguments are the input file, starting ling number and ending line number.
7
Date Submitted Mon. Nov. 6th, 2006 1:48 PM
Revision 1
Helper RobHarrigan
Tags "first | "title | capitalize | case" | letter" | Perl
Comments 3 comments
Function to capitalize the first letter in every word in a string, but only if the entire string is in ALL CAPS.

Example:
"I LIKE TO SCREAM" becomes "I Like To Scream"
"I LIKE to RUN" remains "I LIKE to RUN".
5
Date Submitted Mon. Oct. 9th, 2006 8:44 AM
Revision 1
Helper RobHarrigan
Tags "form input" | "SQL Injection" | Clean | Prevent | XSS
Comments 1 comments
Sanitize form input using CGI.pm to prevent XXS & SQL injections:
5
Date Submitted Fri. Oct. 27th, 2006 8:30 AM
Revision 1
Helper RobHarrigan
Tags count | excel | group | macro | tally
Comments 0 comments
Excel macro to group and count the number of items in a range of cells, delimited by the pipe character "|". It returns a summary of the items including a percent of total and count for each item found, plus a grand total of all items.

Currently limited to 100 items, simple becasue I didn't have the time to spend to get dynamic arrays to work.


Sample Data:
--------------
cat|dog|bird
--------------
cat|bird
--------------
cat
--------------
frog

==================
OUTPUT from =total(A1:A4)
==================
42.9% - 3: cat
28.6% - 2: bird
14.3% - 1: dog
14.3% - 1: frog
---
7