New Toy: Meshly
Meshly is like Digg in that you canpost recent articles with you comments. Meshly is also like Twitter in that you can post through most IM clients. AOL/AIM/GAIM (now called Pidgin) seems to work the best, but I have tried a Jabber client yet. Another nice feature is that you can added your own metatag content and create your own channels.
ASP function to show only the differences between arrays
ASP function to
<%
‘ Return an array of items that are NOT duplicated in an array
function ShowDiff(array1, array2)
dim d, item, thekeys, build_arr
‘ Build Array - a command that will be Execute
build_arr = “anArray = ARRAY(”
‘ Loop through the first array, add to output
for x = lbound(array1) to ubound(array1)
build_arr = build_arr & “array1(” & x & “), ”
next
‘ Loop through the second array, add to output
for y = lbound(array2) to ubound(array2)
build_arr = build_arr & “array2(” & y & “), ”
next
‘ Cleanup last comma
build_arr = left(build_arr, len(build_arr) - 2)
build_arr = build_arr & ” )”
‘ Excute the build statement
execute build_arr
‘ Show differences
set d = CreateObject(”Scripting.Dictionary”)
d.removeall
d.CompareMode = 0
for each item in anArray
if not d.Exists(item) then
d.Add item, item
else
d.Remove item
end if
next
thekeys = d.keys
set d = nothing
ShowDiff = thekeys
end function
%>
Catholic Church Puts Limbo In Limbo
This is a great stride in the right direction. The closet time the bible ever refers to anything like limbo is “Abraham’s Bosom” and “Paradise”. Both of which are places that the righteous go. Both are good places. The bible and the leading of the Holy Spirit should always prevail over doctrine written of men.
From Digg: “The Roman Catholic Church has effectively ditched the concept of limbo, the place where centuries of tradition and teaching held that those who die without baptism went for all eternity. Hey, do you think their earthly decision to *mod this one up* frees the zillions who were previously condemned?”