… with profanity as its pinnacle:
Well, maybe we could treat profanity as a sub-area of pragmatics.
(Hat tip to Christine Wilcox.)
Madhu's Shared Clipboard
… with profanity as its pinnacle:
Well, maybe we could treat profanity as a sub-area of pragmatics.
(Hat tip to Christine Wilcox.)
Clothes make the man--and they might also reflect his mind. A recent study of London teens reveals that choice of clothing style may affect mental health.
Researchers at Queen Mary, University of London, queried Bangladeshi adolescents attending London schools about their fashion preferences and, two years later, assessed their mental health. The scientist reported in the Journal of Epidemiology and Community Health in May that the girls who wore traditional Bangladeshi clothing were less likely to suffer later from psychological problems, such as depression, than were those who wore Western-style garments. “We were expecting to find that people who were able to mix with new cultural groups would be better off,” says Kamaldeep Bhui, the lead researcher. “I was really surprised to find that traditional identity expressed through clothing was protective.”
[More]It’s always the simple things that get me.
OK, maybe you don’t find that equation as fascinating as I do.
But I also get distracted by shiny objects and Wheel of Fortune.
Dear valued user,
You have reached the error page for the error page...
You win!!



It was only a matter of time before Amazon would decide to release a Content Delivery Network, and according to the company in an official statement released today, it has done just that.
Designed to complement its S3 storage service and EC2 web services, the CDN will be available later this year and will provide users with a high performance method of distributing content to end users. Amazon claims it will have low latency and high data transfer rates when users access the content and it will be specifically designed (in the beginning at least) for “developers and businesses who need to deliver popular, publicly readable content over HTTP connections.”
Although the CDN space is crowded with similar services from Akamai Technologies and Limelight Networks, Amazon thinks it knows how to be successful in the space. And one of the key components of its plan is to undercut others on price and make it much easier to buy CDN services.
According to Amazon, it will charge customers based on usage instead of the common practice of charging through long-term contracts, but it would not discuss pricing at this time.
Amazon getting into the CDN business seems like the ideal move for a company that’s trying to provide storage and on-demand computing services already. And considering its size makes it easier for it to adapt its business model to satisfy smaller businesses and those that are less likely to want to enter into long-term agreements, Amazon could quite easily push its competitors aside and cement itself as the leader in the market.
And with a video streaming and distribution service already in place, Amazon is quickly becoming a CDN for itself, so it may know a thing or two about providing a robust service to its customers when its CDN becomes available later this year.
Crunch Network: MobileCrunch Mobile Gadgets and Applications, Delivered Daily.
Shared by Jeetu
This is nice! Worth a try. At last I can implement my Cricket-Scores-Bot without having to deal with a XMPP client :) Still need to scrape someone!
This quick tutorial will show you how to develop your own functional IM bot that works with Google Talk, Yahoo! Messenger, Windows Live and all other popular instant messaging clients.
To get started, all you need to know are some very basic programming skills (any language would do) and web space to host your “bot”.
For this example, I have created a dummy bot called “labnol” that listens to your IM messages and return related search phrases based on Google Suggest. To see this live, add labnol@bot.im to your GTalk buddy list and start chatting.

If you like to write a personal IM bot, just follow these simple steps:
Step 1: Go to imified.com and request an invite. You should also give your bot a decent name because you can have just one bot per email address.
Step 2. An email with a secret key should arrive in your Inbox the next minute. Copy that key to the clipboard and go here to redeem that key.
Step 3. Now it’s time to create a bot which is actually a simple script that resides on your public web server. It could be in PHP, Perl, Python or any other language. More here.
This is the source of the PHP script I wrote for the labnol IM bot - pretty self explanatory - it reads your message, gets the relevant data from Google Suggest and echoes it back to the IM window.
<?php
// Get all the related keywords from Google Suggest
$u = "http://google.com/complete/search?output=toolbar";
$u = $u . "&q=" . $_REQUEST['msg'];
// Using the curl library since dreamhost doesn't allow fopen
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $u);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$xml = simplexml_load_string(curl_exec($ch));
curl_close($ch);
// Parse the keywords and echo them out to the IM window
$result = $xml->xpath('//@data');
while (list($key, $value) = each($result)) {
echo $value ."<br>";
}
?>
Step 4: Once your script is ready, put it somewhere on your web server and copy the full URI to the clipboard.
Now login to your imified account, paste the script URL and add that im bot your friends list. That’s it.
This was a very basic bot but the possibilities are endless.
For instance, you could write a bot that will send an email to all your close friends via a simple IM message. Or you could write one that will does currency conversion. See stuff that is already implemented in this list of most useful Google Talk bots.
How to Write Your Own IM Bot in Less Than 5 Minutes - Digital Inspiration
In 2007, researchers at Aberdeen University’s Face Research Laboratory showed that women found the face of a man more attractive when the face of a woman was smiling at it. (NewScientist) Biologists have a term, “mate choice copying”, for similar behavior in birds.
I was looking at some photos of couples on FaceStat and wanted to run a quick and dirty version of this experiment, and including the other FaceStat variables. I photoshopped out the girl from guy/girl photos and reuploaded. The results followed the same trend as the Aberdeen study (although the Turkers are mixed gender). The strongest, most consistent difference for the photoshopped photo was in relationship status (more single, obviously) and in attractiveness (25% of people found them less attractive). Some examples:
Some details and other results:
The guy’s face was clearly identified in the couple photo. I know this because 100% of Turkers classified the person in the couple photo as male.
The single guys were also consistently identified as more conservative and heavier.
-Mike
That last line is directed solely at my own damn self.