- Mon, 13:03: side note – ridesharing: Trying carpooling on non telework days this week… It can be tight. People forget that... http://t.co/El0i0COZsc
- Mon, 13:03: My tweets: Sun, 12:39: My tweets: Sat, 12:44: My tweets: Fri, 12:50: My tweets: Thu, 12:22: My tweets: Wed, 1... http://t.co/C7CFT2UB3m
- Mon, 14:01: side note – ridesharing http://t.co/tlktRjcP89
- Mon, 18:05: One week in. http://t.co/mijuo4L32U
- Mon, 18:05: posted a new entry to 'scottobear' at LiveJournal. http://t.co/1T6A4vyTCX
- Mon, 18:07: New post: "One week in." http://t.co/FOSYTKDWoY
- Mon, 18:29: One week in.: 904 is full so I’ll get on the next one. Actually, the one after that since the next one only hi... http://t.co/uFa19PCstq
- Mon, 19:57: One week in. http://t.co/tCyvSm3oNN
- Mon, 20:41: Relaxing at home at last. (@ North Beach in North Beach, MD) https://t.co/R6ipOZSt7A http://t.co/J0LecMVKpz
- Mon, 22:00: I’m at North Beach! Relaxing at home at last. http://t.co/AoZGUf0zx1
Nov. 25th, 2014
cf method to merge a list and array
Nov. 25th, 2014 03:41 pmPretty self explanatory:
/**
* mergeListToArray
* When provided a list and an array, we convert the list to an array and merge them.
* @param {Array} a Array to merge list to {required}
* @param {String} l List to merge with array {required}
* @param {String} delim Delimiters to use default = ','
* @return {Array}
*/
public Array function mergeListToArray(required array a,required string l,required string delim=','){
var tmpArr = ListToArray(trim(arguments.l),delim);
var newArr = arguments.a;
if(IsArray(newArr) && IsArray(tmpArr)){
// loop over current array and append to new array
for(i=1; i LTE ArrayLen(tmpArr); i=(i+1)){
ArrayAppend(newArr,tmpArr[i]);
}//end loop
}//end isarray
return newArr;
};
Originally published at The Scotto Grotto. You can comment here or there.
A horse playing the cello at the WMATA station. A product of the crazy weather, perhaps.
Is that you, Nix E Rizardbreath A-Bomb ? Beats most of the buskers and panhandlers there, for sure.
Originally published at The Scotto Grotto. You can comment here or there.
