Microsoft has added forward link search to Live Search. Unfortunately it is pretty useless, because you can only search for links from a domain, not a particular URL, and in fact by domain I mean second level domain, e.g. classy.dk but not www.classy.dk. So if your site is in the UK (where domains for sale are all subdomains of co.uk) you're just out of luck. I have a hard time coming up with a good reason for this restriction. It pretty much kills the usefulness of the feature, which would otherwise have given me the tag hack for free.
Except for people in the business of scaring other people, i.e. security experts, is anybody buying the The "this will give hackers the advantage" response to Google Code Search?
(ah, ok here are a few examples. Copy paste it was. People reuploading code but with changed password. Interesting case. Imagine Google actually warning these people, wouldn't that be nice.)
I worry when my computer languages exhibit the following kind of behaviour
This example fails! The block variable, far from being a local parameter in the block, actually exists in the same scope as the array a. to evaluate the block the procedure assigns to the variable a destorying the array.
# example 1 does not work
a = [2,3,4,5]
puts a.max {|a,b| a <=> b}
puts a.max {|a,b| a <=> b} #runtime error - a is now an integer
# example 2 works
def max(a)
a.max {|a,b| a <=> b}
enda = [2,3,4,5]
puts(max(a))
puts(max(a))
Bug or quirk? I think bug.