Name: Austin Marshall
Member since: 2001-09-09 19:53:17
Last Login: 2006-12-28 14:55:56
Homepage: http://youxylo.com
21 Dec 2006 (updated 21 Dec 2006 at 04:16 UTC) »
How do they stack up now?
And blocabulary? 124 from 0 in April '03!
My how the times have changed.
20 Dec 2006 (updated 20 Dec 2006 at 18:07 UTC) »
Array.prototype.indexOf = function(o)
{
for (var i = 0; i < this.length; i++)
{
if ( typeof o == 'function' )
{
if ( o(this[i],i) )
{
return i;
}
} else if ( typeof o == 'object' && typeof
this[i]
== 'object' ) {
var k = $A($H(o).keys());
var total = k.inject(0,function(sum,p)
{
if ( this[p] == o[p] )
{
return sum + 1;
} else {
return sum;
}
}.bind(this[i]));
if (total == k.length)
{
return i;
}
} else {
if (this[i] == o)
{
return i;
}
}
}
return -1;
};
var aList = $A(
[
1,
'a',
{
'year':2006,
'make':'Porsche',
'model':'Cayman S'
}
]);
alert(aList.indexOf(1));
alert(aList.indexOf({'year':2006}));
alert(aList.indexOf(function(o,i) { return ( o == 'a' ); }));
Alert(ed) results: 0,2,1
You get the idea
Break Your Cingular Contract Without Fee, Thanks 2 Txt Msg $ Raise - Consumerist
im so n2 ths.I was planning on cancelling after the new year anyway, even with the $150 cancellation fee. This makes it all that much sweeter.
Syndicated 2006-12-20 14:16:00 from Something More Than a Machine
New search module
I replaced the Rollyo search box with one provided by technorati. Unfortunately, it only searches blogposts and not ReBlogs. I presume because in the RSS feed, ReBlogs don't link to youxylo.com, but instead they are linked to their original source. This works out fine if I want to provide a blog post-only search box, but not so much if you want to search the site for something that was ReBlogged. Providing the ability to search ReBlogs will either require a change to the way ReBlogs are represented in the feed (like by implementing some kind of redirect from youxylo.com based on a link id) or by providing a separate search box altogether.
Syndicated 2006-12-20 04:24:43 from Something More Than a Machine
Frank van der Salm, Photography
Beautiful.Syndicated 2006-12-20 02:21:43 from Something More Than a Machine
amars certified others as follows:
Others have certified amars as follows:
[ Certification disabled because you're not logged in. ]
FOAF updates: Trust rankings are now exported, making the data available to other users and websites. An external FOAF URI has been added, allowing users to link to an additional FOAF file.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!