Google has a serious liking for goats and goat based Easter eggs. There has even been previous Stack Overflow posts about it.
As has been mentioned in previous posts, it also exists within the Chrome task manager (it first appeared in the wild in 2009):
<message name="IDS_TASK_MANAGER_GOATS_TELEPORTED_COLUMN" desc="The goats teleported column">
Goats Teleported
</message>
And then in Windows, Linux and Mac versions of Chrome early 2010). The number of "Goats Teleported" is in fact random:
int TaskManagerModel::GetGoatsTeleported(int index) const {
int seed = goat_salt_ * (index + 1);
return (seed >> 16) & 255;
}
Other Google references to goats include:
The earliest correlation of goats and Google belongs in the original "Mowing with goats" blog post, as far as I can tell.
We can safely assume that it's merely an Easter egg and has no real-world use, except for returning false
.